From 5d03c92ce4c6590d6f41382160731f9d5062a24f Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Sun, 31 Mar 2024 00:41:50 +0100 Subject: [PATCH] update generated --- tree_sitter_v/bindings/node_types.v | 4 +- tree_sitter_v/src/grammar.json | 107 +- tree_sitter_v/src/node-types.json | 17 +- tree_sitter_v/src/parser.c | 459020 ++++++++++++------------- 4 files changed, 228563 insertions(+), 230585 deletions(-) diff --git a/tree_sitter_v/bindings/node_types.v b/tree_sitter_v/bindings/node_types.v index 66f0e40d..db1861ff 100644 --- a/tree_sitter_v/bindings/node_types.v +++ b/tree_sitter_v/bindings/node_types.v @@ -31,6 +31,7 @@ pub enum NodeType { attributes binary_expression block + block_comment break_statement c_string_literal call_expression @@ -173,7 +174,6 @@ pub enum NodeType { var_definition_list visibility_modifiers wrong_pointer_type - block_comment escape_sequence false_ float_literal @@ -342,6 +342,7 @@ const node_type_name_to_enum = { 'attributes': NodeType.attributes 'binary_expression': NodeType.binary_expression 'block': NodeType.block + 'block_comment': NodeType.block_comment 'break_statement': NodeType.break_statement 'c_string_literal': NodeType.c_string_literal 'call_expression': NodeType.call_expression @@ -484,7 +485,6 @@ const node_type_name_to_enum = { 'var_definition_list': NodeType.var_definition_list 'visibility_modifiers': NodeType.visibility_modifiers 'wrong_pointer_type': NodeType.wrong_pointer_type - 'block_comment': NodeType.block_comment 'escape_sequence': NodeType.escape_sequence 'false': NodeType.false_ 'float_literal': NodeType.float_literal diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index f649b813..ea28116c 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -146,33 +146,90 @@ ] }, "block_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "/*" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^*]*.*\\*" - }, - { - "type": "PATTERN", - "value": "(?:[^/][^*]+\\/\\*+[^/][^*]+)+(?:[^*][^/]+\\*+\\/[^*][^/]+)+" + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/*" + } + } + }, + { + "type": "REPEAT", + "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^*/]|[^*][/]|[/][^/*]|[*][/][ \t]*(\r\n|\n)?[ \t]*[/][*]" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "\\*" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "\\/" + } + } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "\\/" + } + } + } + ] } - ] - }, - { - "type": "STRING", - "value": "/" + } } - ] - } + }, + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "*/" + } + } + } + ] }, "comment": { "type": "CHOICE", diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index 8151c8d4..f586e068 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -747,6 +747,11 @@ ] } }, + { + "type": "block_comment", + "named": true, + "fields": {} + }, { "type": "break_statement", "named": true, @@ -4420,6 +4425,10 @@ "type": "*", "named": false }, + { + "type": "*/", + "named": false + }, { "type": "*=", "named": false @@ -4468,6 +4477,10 @@ "type": "/", "named": false }, + { + "type": "/*", + "named": false + }, { "type": "//", "named": false @@ -4592,10 +4605,6 @@ "type": "atomic", "named": false }, - { - "type": "block_comment", - "named": true - }, { "type": "break", "named": false diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 063a0ffa..3ca35c7a 100644 --- a/tree_sitter_v/src/parser.c +++ b/tree_sitter_v/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4755 -#define LARGE_STATE_COUNT 1638 -#define SYMBOL_COUNT 356 +#define STATE_COUNT 4763 +#define LARGE_STATE_COUNT 1649 +#define SYMBOL_COUNT 363 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 140 +#define TOKEN_COUNT 144 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -31,357 +31,364 @@ enum ts_symbol_identifiers { anon_sym_POUND_BANG = 5, aux_sym_shebang_token1 = 6, anon_sym_SLASH_SLASH = 7, - sym_block_comment = 8, - anon_sym_module = 9, - anon_sym_import = 10, - anon_sym_SEMI = 11, - anon_sym_DOT = 12, - anon_sym_as = 13, - anon_sym_LBRACE = 14, - anon_sym_COMMA = 15, - anon_sym_RBRACE = 16, - anon_sym_const = 17, - anon_sym_LPAREN = 18, - anon_sym_RPAREN = 19, - anon_sym_EQ = 20, - anon_sym___global = 21, - anon_sym_type = 22, - anon_sym_PIPE = 23, - anon_sym_fn = 24, - anon_sym_PLUS = 25, - anon_sym_DASH = 26, - anon_sym_STAR = 27, - anon_sym_SLASH = 28, - anon_sym_PERCENT = 29, - anon_sym_LT = 30, - anon_sym_GT = 31, - anon_sym_EQ_EQ = 32, - anon_sym_BANG_EQ = 33, - anon_sym_LT_EQ = 34, - anon_sym_GT_EQ = 35, - anon_sym_DOT_DOT_DOT = 36, - anon_sym_LBRACK = 37, - anon_sym_LT2 = 38, - anon_sym_RBRACK = 39, - anon_sym_struct = 40, - anon_sym_union = 41, - anon_sym_pub = 42, - anon_sym_mut = 43, - anon_sym_COLON = 44, - anon_sym_enum = 45, - anon_sym_interface = 46, - anon_sym_PLUS_PLUS = 47, - anon_sym_DASH_DASH = 48, - anon_sym_QMARK = 49, - anon_sym_BANG = 50, - anon_sym_go = 51, - anon_sym_spawn = 52, - anon_sym_json_DOTdecode = 53, - anon_sym_LBRACK2 = 54, - anon_sym_TILDE = 55, - anon_sym_CARET = 56, - anon_sym_AMP = 57, - anon_sym_LT_DASH = 58, - anon_sym_LT_LT = 59, - anon_sym_GT_GT = 60, - anon_sym_GT_GT_GT = 61, - anon_sym_AMP_CARET = 62, - anon_sym_AMP_AMP = 63, - anon_sym_PIPE_PIPE = 64, - anon_sym_DOLLAR = 65, - anon_sym_or = 66, - sym_escape_sequence = 67, - sym_none = 68, - sym_true = 69, - sym_false = 70, - sym_nil = 71, - anon_sym_QMARK_DOT = 72, - anon_sym_POUND_LBRACK = 73, - anon_sym_if = 74, - anon_sym_else = 75, - anon_sym_DOLLARif = 76, - anon_sym_DOLLARelse = 77, - anon_sym_is = 78, - anon_sym_BANGis = 79, - anon_sym_in = 80, - anon_sym_BANGin = 81, - anon_sym_match = 82, - anon_sym_select = 83, - anon_sym_STAR_EQ = 84, - anon_sym_SLASH_EQ = 85, - anon_sym_PERCENT_EQ = 86, - anon_sym_LT_LT_EQ = 87, - anon_sym_GT_GT_EQ = 88, - anon_sym_GT_GT_GT_EQ = 89, - anon_sym_AMP_EQ = 90, - anon_sym_AMP_CARET_EQ = 91, - anon_sym_PLUS_EQ = 92, - anon_sym_DASH_EQ = 93, - anon_sym_PIPE_EQ = 94, - anon_sym_CARET_EQ = 95, - anon_sym_COLON_EQ = 96, - anon_sym_lock = 97, - anon_sym_rlock = 98, - anon_sym_unsafe = 99, - anon_sym_sql = 100, - sym_int_literal = 101, - sym_float_literal = 102, - sym_rune_literal = 103, - aux_sym_c_string_literal_token1 = 104, - aux_sym_c_string_literal_token2 = 105, - aux_sym_raw_string_literal_token1 = 106, - aux_sym_raw_string_literal_token2 = 107, - aux_sym_format_specifier_token1 = 108, - aux_sym_format_specifier_token2 = 109, - anon_sym_0 = 110, - sym_pseudo_compile_time_identifier = 111, - anon_sym_static = 112, - anon_sym_volatile = 113, - anon_sym_shared = 114, - anon_sym_map_LBRACK = 115, - anon_sym_chan = 116, - anon_sym_thread = 117, - anon_sym_atomic = 118, - anon_sym_assert = 119, - anon_sym_defer = 120, - anon_sym_goto = 121, - anon_sym_break = 122, - anon_sym_continue = 123, - anon_sym_return = 124, - anon_sym_DOLLARfor = 125, - anon_sym_for = 126, - anon_sym_DOT_DOT = 127, - anon_sym_POUND = 128, - aux_sym_hash_statement_token1 = 129, - anon_sym_asm = 130, - aux_sym__content_block_token1 = 131, - anon_sym_AT_LBRACK = 132, - sym___dolcbr = 133, - sym___double_quote = 134, - sym___single_quote = 135, - sym___c_double_quote = 136, - sym___c_single_quote = 137, - sym___r_double_quote = 138, - sym___r_single_quote = 139, - sym_source_file = 140, - sym_shebang = 141, - sym_line_comment = 142, - sym_module_clause = 143, - sym_import_list = 144, - sym_import_declaration = 145, - sym_import_spec = 146, - sym_import_path = 147, - sym_import_name = 148, - sym_import_alias = 149, - sym_selective_import_list = 150, - sym_const_declaration = 151, - sym_const_definition = 152, - sym_global_var_declaration = 153, - sym_global_var_definition = 154, - sym__global_var_value = 155, - sym_type_declaration = 156, - sym__type_union_list = 157, - sym_function_declaration = 158, - sym_static_method_declaration = 159, - sym_static_receiver = 160, - sym__function_name = 161, - sym_overridable_operator = 162, - sym_receiver = 163, - sym_signature = 164, - sym_parameter_list = 165, - sym_parameter_declaration = 166, - sym_type_parameter_list = 167, - sym_type_parameter_declaration = 168, - sym_generic_parameters = 169, - sym_generic_parameter = 170, - sym_struct_declaration = 171, - sym__struct_body = 172, - sym_struct_field_scope = 173, - sym_struct_field_declaration = 174, - sym__struct_field_definition = 175, - sym_embedded_definition = 176, - sym_enum_declaration = 177, - sym_enum_backed_type = 178, - sym__enum_body = 179, - sym_enum_field_definition = 180, - sym_interface_declaration = 181, - sym__interface_body = 182, - sym_interface_method_definition = 183, - sym__expression = 184, - sym__expression_without_blocks = 185, - sym__expression_with_blocks = 186, - sym_strictly_expression_list = 187, - sym_inc_expression = 188, - sym_dec_expression = 189, - sym_or_block_expression = 190, - sym_option_propagation_expression = 191, - sym_result_propagation_expression = 192, - sym_anon_struct_value_expression = 193, - sym_go_expression = 194, - sym_spawn_expression = 195, - sym_parenthesized_expression = 196, - sym_call_expression = 197, - sym_type_parameters = 198, - sym_argument_list = 199, - sym_short_lambda = 200, - sym_argument = 201, - sym_special_argument_list = 202, - sym_type_initializer = 203, - sym_type_initializer_body = 204, - sym_element_list = 205, - sym_short_element_list = 206, - sym_keyed_element = 207, - sym_function_literal = 208, - sym_capture_list = 209, - sym_capture = 210, - sym_reference_expression = 211, - sym_type_reference_expression = 212, - sym_unary_expression = 213, - sym_receive_expression = 214, - sym_binary_expression = 215, - sym_as_type_cast_expression = 216, - sym_compile_time_selector_expression = 217, - sym_or_block = 218, - sym__max_group = 219, - sym_literal = 220, - sym_spread_expression = 221, - sym_map_init_expression = 222, - sym_map_keyed_element = 223, - sym_array_creation = 224, - sym_fixed_array_creation = 225, - sym_selector_expression = 226, - sym_index_expression = 227, - sym_slice_expression = 228, - sym_if_expression = 229, - sym_else_branch = 230, - sym_compile_time_if_expression = 231, - sym_is_expression = 232, - sym_not_is_expression = 233, - sym_in_expression = 234, - sym_not_in_expression = 235, - sym_enum_fetch = 236, - sym_match_expression = 237, - sym_match_arms = 238, - sym_match_arm = 239, - sym_match_expression_list = 240, - sym_match_arm_type = 241, - sym_match_else_arm_clause = 242, - sym_select_expression = 243, - sym_select_arm = 244, - sym_select_arm_statement = 245, - sym__select_arm_assignment_statement = 246, - sym_select_var_declaration = 247, - sym_select_else_arn_clause = 248, - sym_lock_expression = 249, - sym_unsafe_expression = 250, - sym_sql_expression = 251, - sym_c_string_literal = 252, - sym_raw_string_literal = 253, - sym_interpreted_string_literal = 254, - sym_string_interpolation = 255, - sym_format_specifier = 256, - sym_visibility_modifiers = 257, - sym_mutability_modifiers = 258, - sym_mutable_identifier = 259, - sym_mutable_expression = 260, - sym_identifier_list = 261, - sym_expression_list = 262, - sym_expression_without_blocks_list = 263, - sym_plain_type = 264, - sym__plain_type_without_special = 265, - sym_anon_struct_type = 266, - sym_multi_return_type = 267, - sym_result_type = 268, - sym_option_type = 269, - sym_qualified_type = 270, - sym_fixed_array_type = 271, - sym_array_type = 272, - sym_pointer_type = 273, - sym_wrong_pointer_type = 274, - sym_map_type = 275, - sym_channel_type = 276, - sym_shared_type = 277, - sym_thread_type = 278, - sym_atomic_type = 279, - sym_generic_type = 280, - sym_function_type = 281, - sym__statement_list = 282, - sym__statement = 283, - sym_simple_statement = 284, - sym_assert_statement = 285, - sym_append_statement = 286, - sym_send_statement = 287, - sym_var_declaration = 288, - sym_var_definition_list = 289, - sym_var_definition = 290, - sym_assignment_statement = 291, - sym_block = 292, - sym_defer_statement = 293, - sym_label_reference = 294, - sym_goto_statement = 295, - sym_break_statement = 296, - sym_continue_statement = 297, - sym_return_statement = 298, - sym_label_definition = 299, - sym_labeled_statement = 300, - sym_empty_labeled_statement = 301, - sym_compile_time_for_statement = 302, - sym_for_statement = 303, - sym_range_clause = 304, - sym_for_clause = 305, - sym__definite_range = 306, - sym_range = 307, - sym_hash_statement = 308, - sym_asm_statement = 309, - sym__content_block = 310, - sym_attributes = 311, - sym_attribute = 312, - sym_attribute_expression = 313, - sym_if_attribute = 314, - sym__plain_attribute = 315, - sym_literal_attribute = 316, - sym_value_attribute = 317, - sym_key_value_attribute = 318, - sym___rcbr = 319, - aux_sym_source_file_repeat1 = 320, - aux_sym_import_list_repeat1 = 321, - aux_sym_import_path_repeat1 = 322, - aux_sym_selective_import_list_repeat1 = 323, - aux_sym_const_declaration_repeat1 = 324, - aux_sym_global_var_declaration_repeat1 = 325, - aux_sym__type_union_list_repeat1 = 326, - aux_sym_parameter_list_repeat1 = 327, - aux_sym_type_parameter_list_repeat1 = 328, - aux_sym_generic_parameters_repeat1 = 329, - aux_sym__struct_body_repeat1 = 330, - aux_sym__enum_body_repeat1 = 331, - aux_sym__interface_body_repeat1 = 332, - aux_sym_strictly_expression_list_repeat1 = 333, - aux_sym_type_parameters_repeat1 = 334, - aux_sym_argument_list_repeat1 = 335, - aux_sym_short_lambda_repeat1 = 336, - aux_sym_element_list_repeat1 = 337, - aux_sym_short_element_list_repeat1 = 338, - aux_sym_capture_list_repeat1 = 339, - aux_sym_map_init_expression_repeat1 = 340, - aux_sym__array_repeat1 = 341, - aux_sym_match_arms_repeat1 = 342, - aux_sym_match_expression_list_repeat1 = 343, - aux_sym_select_expression_repeat1 = 344, - aux_sym_c_string_literal_repeat1 = 345, - aux_sym_c_string_literal_repeat2 = 346, - aux_sym_raw_string_literal_repeat1 = 347, - aux_sym_raw_string_literal_repeat2 = 348, - aux_sym_string_interpolation_repeat1 = 349, - aux_sym_identifier_list_repeat1 = 350, - aux_sym_expression_without_blocks_list_repeat1 = 351, - aux_sym__statement_list_repeat1 = 352, - aux_sym_var_definition_list_repeat1 = 353, - aux_sym_attributes_repeat1 = 354, - aux_sym_attribute_repeat1 = 355, - alias_sym_element = 356, - alias_sym_field_name = 357, - alias_sym_interpolation_expression = 358, + anon_sym_SLASH_STAR = 8, + aux_sym_block_comment_token1 = 9, + aux_sym_block_comment_token2 = 10, + aux_sym_block_comment_token3 = 11, + anon_sym_STAR_SLASH = 12, + anon_sym_module = 13, + anon_sym_import = 14, + anon_sym_SEMI = 15, + anon_sym_DOT = 16, + anon_sym_as = 17, + anon_sym_LBRACE = 18, + anon_sym_COMMA = 19, + anon_sym_RBRACE = 20, + anon_sym_const = 21, + anon_sym_LPAREN = 22, + anon_sym_RPAREN = 23, + anon_sym_EQ = 24, + anon_sym___global = 25, + anon_sym_type = 26, + anon_sym_PIPE = 27, + anon_sym_fn = 28, + anon_sym_PLUS = 29, + anon_sym_DASH = 30, + anon_sym_STAR = 31, + anon_sym_SLASH = 32, + anon_sym_PERCENT = 33, + anon_sym_LT = 34, + anon_sym_GT = 35, + anon_sym_EQ_EQ = 36, + anon_sym_BANG_EQ = 37, + anon_sym_LT_EQ = 38, + anon_sym_GT_EQ = 39, + anon_sym_DOT_DOT_DOT = 40, + anon_sym_LBRACK = 41, + anon_sym_LT2 = 42, + anon_sym_RBRACK = 43, + anon_sym_struct = 44, + anon_sym_union = 45, + anon_sym_pub = 46, + anon_sym_mut = 47, + anon_sym_COLON = 48, + anon_sym_enum = 49, + anon_sym_interface = 50, + anon_sym_PLUS_PLUS = 51, + anon_sym_DASH_DASH = 52, + anon_sym_QMARK = 53, + anon_sym_BANG = 54, + anon_sym_go = 55, + anon_sym_spawn = 56, + anon_sym_json_DOTdecode = 57, + anon_sym_LBRACK2 = 58, + anon_sym_TILDE = 59, + anon_sym_CARET = 60, + anon_sym_AMP = 61, + anon_sym_LT_DASH = 62, + anon_sym_LT_LT = 63, + anon_sym_GT_GT = 64, + anon_sym_GT_GT_GT = 65, + anon_sym_AMP_CARET = 66, + anon_sym_AMP_AMP = 67, + anon_sym_PIPE_PIPE = 68, + anon_sym_DOLLAR = 69, + anon_sym_or = 70, + sym_escape_sequence = 71, + sym_none = 72, + sym_true = 73, + sym_false = 74, + sym_nil = 75, + anon_sym_QMARK_DOT = 76, + anon_sym_POUND_LBRACK = 77, + anon_sym_if = 78, + anon_sym_else = 79, + anon_sym_DOLLARif = 80, + anon_sym_DOLLARelse = 81, + anon_sym_is = 82, + anon_sym_BANGis = 83, + anon_sym_in = 84, + anon_sym_BANGin = 85, + anon_sym_match = 86, + anon_sym_select = 87, + anon_sym_STAR_EQ = 88, + anon_sym_SLASH_EQ = 89, + anon_sym_PERCENT_EQ = 90, + anon_sym_LT_LT_EQ = 91, + anon_sym_GT_GT_EQ = 92, + anon_sym_GT_GT_GT_EQ = 93, + anon_sym_AMP_EQ = 94, + anon_sym_AMP_CARET_EQ = 95, + anon_sym_PLUS_EQ = 96, + anon_sym_DASH_EQ = 97, + anon_sym_PIPE_EQ = 98, + anon_sym_CARET_EQ = 99, + anon_sym_COLON_EQ = 100, + anon_sym_lock = 101, + anon_sym_rlock = 102, + anon_sym_unsafe = 103, + anon_sym_sql = 104, + sym_int_literal = 105, + sym_float_literal = 106, + sym_rune_literal = 107, + aux_sym_c_string_literal_token1 = 108, + aux_sym_c_string_literal_token2 = 109, + aux_sym_raw_string_literal_token1 = 110, + aux_sym_raw_string_literal_token2 = 111, + aux_sym_format_specifier_token1 = 112, + aux_sym_format_specifier_token2 = 113, + anon_sym_0 = 114, + sym_pseudo_compile_time_identifier = 115, + anon_sym_static = 116, + anon_sym_volatile = 117, + anon_sym_shared = 118, + anon_sym_map_LBRACK = 119, + anon_sym_chan = 120, + anon_sym_thread = 121, + anon_sym_atomic = 122, + anon_sym_assert = 123, + anon_sym_defer = 124, + anon_sym_goto = 125, + anon_sym_break = 126, + anon_sym_continue = 127, + anon_sym_return = 128, + anon_sym_DOLLARfor = 129, + anon_sym_for = 130, + anon_sym_DOT_DOT = 131, + anon_sym_POUND = 132, + aux_sym_hash_statement_token1 = 133, + anon_sym_asm = 134, + aux_sym__content_block_token1 = 135, + anon_sym_AT_LBRACK = 136, + sym___dolcbr = 137, + sym___double_quote = 138, + sym___single_quote = 139, + sym___c_double_quote = 140, + sym___c_single_quote = 141, + sym___r_double_quote = 142, + sym___r_single_quote = 143, + sym_source_file = 144, + sym_shebang = 145, + sym_line_comment = 146, + sym_block_comment = 147, + sym_module_clause = 148, + sym_import_list = 149, + sym_import_declaration = 150, + sym_import_spec = 151, + sym_import_path = 152, + sym_import_name = 153, + sym_import_alias = 154, + sym_selective_import_list = 155, + sym_const_declaration = 156, + sym_const_definition = 157, + sym_global_var_declaration = 158, + sym_global_var_definition = 159, + sym__global_var_value = 160, + sym_type_declaration = 161, + sym__type_union_list = 162, + sym_function_declaration = 163, + sym_static_method_declaration = 164, + sym_static_receiver = 165, + sym__function_name = 166, + sym_overridable_operator = 167, + sym_receiver = 168, + sym_signature = 169, + sym_parameter_list = 170, + sym_parameter_declaration = 171, + sym_type_parameter_list = 172, + sym_type_parameter_declaration = 173, + sym_generic_parameters = 174, + sym_generic_parameter = 175, + sym_struct_declaration = 176, + sym__struct_body = 177, + sym_struct_field_scope = 178, + sym_struct_field_declaration = 179, + sym__struct_field_definition = 180, + sym_embedded_definition = 181, + sym_enum_declaration = 182, + sym_enum_backed_type = 183, + sym__enum_body = 184, + sym_enum_field_definition = 185, + sym_interface_declaration = 186, + sym__interface_body = 187, + sym_interface_method_definition = 188, + sym__expression = 189, + sym__expression_without_blocks = 190, + sym__expression_with_blocks = 191, + sym_strictly_expression_list = 192, + sym_inc_expression = 193, + sym_dec_expression = 194, + sym_or_block_expression = 195, + sym_option_propagation_expression = 196, + sym_result_propagation_expression = 197, + sym_anon_struct_value_expression = 198, + sym_go_expression = 199, + sym_spawn_expression = 200, + sym_parenthesized_expression = 201, + sym_call_expression = 202, + sym_type_parameters = 203, + sym_argument_list = 204, + sym_short_lambda = 205, + sym_argument = 206, + sym_special_argument_list = 207, + sym_type_initializer = 208, + sym_type_initializer_body = 209, + sym_element_list = 210, + sym_short_element_list = 211, + sym_keyed_element = 212, + sym_function_literal = 213, + sym_capture_list = 214, + sym_capture = 215, + sym_reference_expression = 216, + sym_type_reference_expression = 217, + sym_unary_expression = 218, + sym_receive_expression = 219, + sym_binary_expression = 220, + sym_as_type_cast_expression = 221, + sym_compile_time_selector_expression = 222, + sym_or_block = 223, + sym__max_group = 224, + sym_literal = 225, + sym_spread_expression = 226, + sym_map_init_expression = 227, + sym_map_keyed_element = 228, + sym_array_creation = 229, + sym_fixed_array_creation = 230, + sym_selector_expression = 231, + sym_index_expression = 232, + sym_slice_expression = 233, + sym_if_expression = 234, + sym_else_branch = 235, + sym_compile_time_if_expression = 236, + sym_is_expression = 237, + sym_not_is_expression = 238, + sym_in_expression = 239, + sym_not_in_expression = 240, + sym_enum_fetch = 241, + sym_match_expression = 242, + sym_match_arms = 243, + sym_match_arm = 244, + sym_match_expression_list = 245, + sym_match_arm_type = 246, + sym_match_else_arm_clause = 247, + sym_select_expression = 248, + sym_select_arm = 249, + sym_select_arm_statement = 250, + sym__select_arm_assignment_statement = 251, + sym_select_var_declaration = 252, + sym_select_else_arn_clause = 253, + sym_lock_expression = 254, + sym_unsafe_expression = 255, + sym_sql_expression = 256, + sym_c_string_literal = 257, + sym_raw_string_literal = 258, + sym_interpreted_string_literal = 259, + sym_string_interpolation = 260, + sym_format_specifier = 261, + sym_visibility_modifiers = 262, + sym_mutability_modifiers = 263, + sym_mutable_identifier = 264, + sym_mutable_expression = 265, + sym_identifier_list = 266, + sym_expression_list = 267, + sym_expression_without_blocks_list = 268, + sym_plain_type = 269, + sym__plain_type_without_special = 270, + sym_anon_struct_type = 271, + sym_multi_return_type = 272, + sym_result_type = 273, + sym_option_type = 274, + sym_qualified_type = 275, + sym_fixed_array_type = 276, + sym_array_type = 277, + sym_pointer_type = 278, + sym_wrong_pointer_type = 279, + sym_map_type = 280, + sym_channel_type = 281, + sym_shared_type = 282, + sym_thread_type = 283, + sym_atomic_type = 284, + sym_generic_type = 285, + sym_function_type = 286, + sym__statement_list = 287, + sym__statement = 288, + sym_simple_statement = 289, + sym_assert_statement = 290, + sym_append_statement = 291, + sym_send_statement = 292, + sym_var_declaration = 293, + sym_var_definition_list = 294, + sym_var_definition = 295, + sym_assignment_statement = 296, + sym_block = 297, + sym_defer_statement = 298, + sym_label_reference = 299, + sym_goto_statement = 300, + sym_break_statement = 301, + sym_continue_statement = 302, + sym_return_statement = 303, + sym_label_definition = 304, + sym_labeled_statement = 305, + sym_empty_labeled_statement = 306, + sym_compile_time_for_statement = 307, + sym_for_statement = 308, + sym_range_clause = 309, + sym_for_clause = 310, + sym__definite_range = 311, + sym_range = 312, + sym_hash_statement = 313, + sym_asm_statement = 314, + sym__content_block = 315, + sym_attributes = 316, + sym_attribute = 317, + sym_attribute_expression = 318, + sym_if_attribute = 319, + sym__plain_attribute = 320, + sym_literal_attribute = 321, + sym_value_attribute = 322, + sym_key_value_attribute = 323, + sym___rcbr = 324, + aux_sym_source_file_repeat1 = 325, + aux_sym_block_comment_repeat1 = 326, + aux_sym_block_comment_repeat2 = 327, + aux_sym_import_list_repeat1 = 328, + aux_sym_import_path_repeat1 = 329, + aux_sym_selective_import_list_repeat1 = 330, + aux_sym_const_declaration_repeat1 = 331, + aux_sym_global_var_declaration_repeat1 = 332, + aux_sym__type_union_list_repeat1 = 333, + aux_sym_parameter_list_repeat1 = 334, + aux_sym_type_parameter_list_repeat1 = 335, + aux_sym_generic_parameters_repeat1 = 336, + aux_sym__struct_body_repeat1 = 337, + aux_sym__enum_body_repeat1 = 338, + aux_sym__interface_body_repeat1 = 339, + aux_sym_strictly_expression_list_repeat1 = 340, + aux_sym_type_parameters_repeat1 = 341, + aux_sym_argument_list_repeat1 = 342, + aux_sym_short_lambda_repeat1 = 343, + aux_sym_element_list_repeat1 = 344, + aux_sym_short_element_list_repeat1 = 345, + aux_sym_capture_list_repeat1 = 346, + aux_sym_map_init_expression_repeat1 = 347, + aux_sym__array_repeat1 = 348, + aux_sym_match_arms_repeat1 = 349, + aux_sym_match_expression_list_repeat1 = 350, + aux_sym_select_expression_repeat1 = 351, + aux_sym_c_string_literal_repeat1 = 352, + aux_sym_c_string_literal_repeat2 = 353, + aux_sym_raw_string_literal_repeat1 = 354, + aux_sym_raw_string_literal_repeat2 = 355, + aux_sym_string_interpolation_repeat1 = 356, + aux_sym_identifier_list_repeat1 = 357, + aux_sym_expression_without_blocks_list_repeat1 = 358, + aux_sym__statement_list_repeat1 = 359, + aux_sym_var_definition_list_repeat1 = 360, + aux_sym_attributes_repeat1 = 361, + aux_sym_attribute_repeat1 = 362, + alias_sym_element = 363, + alias_sym_field_name = 364, + alias_sym_interpolation_expression = 365, }; static const char * const ts_symbol_names[] = { @@ -393,7 +400,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_POUND_BANG] = "#!", [aux_sym_shebang_token1] = "shebang_token1", [anon_sym_SLASH_SLASH] = "//", - [sym_block_comment] = "block_comment", + [anon_sym_SLASH_STAR] = "/*", + [aux_sym_block_comment_token1] = "block_comment_token1", + [aux_sym_block_comment_token2] = "block_comment_token2", + [aux_sym_block_comment_token3] = "block_comment_token3", + [anon_sym_STAR_SLASH] = "*/", [anon_sym_module] = "module", [anon_sym_import] = "import", [anon_sym_SEMI] = ";", @@ -528,6 +539,7 @@ static const char * const ts_symbol_names[] = { [sym_source_file] = "source_file", [sym_shebang] = "shebang", [sym_line_comment] = "line_comment", + [sym_block_comment] = "block_comment", [sym_module_clause] = "module_clause", [sym_import_list] = "import_list", [sym_import_declaration] = "import_declaration", @@ -706,6 +718,8 @@ static const char * const ts_symbol_names[] = { [sym_key_value_attribute] = "key_value_attribute", [sym___rcbr] = "interpolation_closing", [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_block_comment_repeat1] = "block_comment_repeat1", + [aux_sym_block_comment_repeat2] = "block_comment_repeat2", [aux_sym_import_list_repeat1] = "import_list_repeat1", [aux_sym_import_path_repeat1] = "import_path_repeat1", [aux_sym_selective_import_list_repeat1] = "selective_import_list_repeat1", @@ -755,7 +769,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_POUND_BANG] = anon_sym_POUND_BANG, [aux_sym_shebang_token1] = aux_sym_shebang_token1, [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, - [sym_block_comment] = sym_block_comment, + [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, + [aux_sym_block_comment_token1] = aux_sym_block_comment_token1, + [aux_sym_block_comment_token2] = aux_sym_block_comment_token2, + [aux_sym_block_comment_token3] = aux_sym_block_comment_token3, + [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, [anon_sym_module] = anon_sym_module, [anon_sym_import] = anon_sym_import, [anon_sym_SEMI] = anon_sym_SEMI, @@ -890,6 +908,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_source_file] = sym_source_file, [sym_shebang] = sym_shebang, [sym_line_comment] = sym_line_comment, + [sym_block_comment] = sym_block_comment, [sym_module_clause] = sym_module_clause, [sym_import_list] = sym_import_list, [sym_import_declaration] = sym_import_declaration, @@ -1068,6 +1087,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_key_value_attribute] = sym_key_value_attribute, [sym___rcbr] = sym___rcbr, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_block_comment_repeat1] = aux_sym_block_comment_repeat1, + [aux_sym_block_comment_repeat2] = aux_sym_block_comment_repeat2, [aux_sym_import_list_repeat1] = aux_sym_import_list_repeat1, [aux_sym_import_path_repeat1] = aux_sym_import_path_repeat1, [aux_sym_selective_import_list_repeat1] = aux_sym_selective_import_list_repeat1, @@ -1141,9 +1162,25 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_block_comment] = { + [anon_sym_SLASH_STAR] = { .visible = true, - .named = true, + .named = false, + }, + [aux_sym_block_comment_token1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_comment_token2] = { + .visible = false, + .named = false, + }, + [aux_sym_block_comment_token3] = { + .visible = false, + .named = false, + }, + [anon_sym_STAR_SLASH] = { + .visible = true, + .named = false, }, [anon_sym_module] = { .visible = true, @@ -1681,6 +1718,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_block_comment] = { + .visible = true, + .named = true, + }, [sym_module_clause] = { .visible = true, .named = true, @@ -2396,6 +2437,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_block_comment_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_comment_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_import_list_repeat1] = { .visible = false, .named = false, @@ -3455,8 +3504,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 61, [62] = 62, [63] = 63, - [64] = 63, - [65] = 65, + [64] = 64, + [65] = 64, [66] = 66, [67] = 67, [68] = 68, @@ -3503,71 +3552,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 108, [110] = 110, [111] = 111, - [112] = 112, - [113] = 111, + [112] = 110, + [113] = 113, [114] = 111, - [115] = 110, - [116] = 111, - [117] = 112, - [118] = 112, + [115] = 113, + [116] = 113, + [117] = 111, + [118] = 113, [119] = 110, [120] = 111, - [121] = 112, + [121] = 110, [122] = 111, - [123] = 112, - [124] = 111, - [125] = 112, - [126] = 112, - [127] = 112, - [128] = 111, - [129] = 112, + [123] = 111, + [124] = 110, + [125] = 113, + [126] = 113, + [127] = 110, + [128] = 113, + [129] = 111, [130] = 110, - [131] = 110, - [132] = 110, - [133] = 110, - [134] = 110, + [131] = 111, + [132] = 111, + [133] = 113, + [134] = 113, [135] = 110, [136] = 110, - [137] = 111, - [138] = 110, - [139] = 111, - [140] = 112, - [141] = 112, - [142] = 111, - [143] = 110, - [144] = 110, - [145] = 112, + [137] = 110, + [138] = 113, + [139] = 110, + [140] = 113, + [141] = 111, + [142] = 110, + [143] = 113, + [144] = 111, + [145] = 113, [146] = 111, - [147] = 112, + [147] = 110, [148] = 111, [149] = 149, [150] = 150, [151] = 151, - [152] = 151, - [153] = 150, + [152] = 150, + [153] = 151, [154] = 150, [155] = 151, - [156] = 151, - [157] = 150, + [156] = 150, + [157] = 151, [158] = 151, [159] = 150, - [160] = 150, + [160] = 151, [161] = 151, - [162] = 150, - [163] = 150, - [164] = 151, - [165] = 150, + [162] = 151, + [163] = 151, + [164] = 150, + [165] = 151, [166] = 151, - [167] = 151, + [167] = 150, [168] = 150, [169] = 150, - [170] = 151, + [170] = 150, [171] = 150, - [172] = 151, - [173] = 150, + [172] = 150, + [173] = 151, [174] = 151, [175] = 175, - [176] = 175, + [176] = 176, [177] = 175, [178] = 175, [179] = 179, @@ -3576,7 +3625,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [182] = 175, [183] = 175, [184] = 175, - [185] = 185, + [185] = 175, [186] = 175, [187] = 175, [188] = 175, @@ -3584,258 +3633,258 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 175, [191] = 191, [192] = 192, - [193] = 193, + [193] = 192, [194] = 192, [195] = 192, [196] = 192, [197] = 192, - [198] = 192, + [198] = 198, [199] = 192, [200] = 192, [201] = 192, [202] = 192, [203] = 192, [204] = 192, - [205] = 205, - [206] = 67, - [207] = 69, + [205] = 66, + [206] = 71, + [207] = 207, [208] = 208, [209] = 209, - [210] = 210, - [211] = 71, - [212] = 66, - [213] = 68, - [214] = 70, + [210] = 68, + [211] = 211, + [212] = 70, + [213] = 69, + [214] = 67, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 218, - [220] = 218, - [221] = 218, - [222] = 222, - [223] = 218, - [224] = 224, - [225] = 225, - [226] = 226, + [219] = 219, + [220] = 217, + [221] = 219, + [222] = 217, + [223] = 223, + [224] = 218, + [225] = 217, + [226] = 223, [227] = 227, - [228] = 225, - [229] = 229, + [228] = 223, + [229] = 219, [230] = 218, - [231] = 218, - [232] = 218, - [233] = 218, + [231] = 223, + [232] = 223, + [233] = 219, [234] = 234, - [235] = 234, - [236] = 224, + [235] = 217, + [236] = 219, [237] = 237, - [238] = 225, - [239] = 237, - [240] = 226, - [241] = 225, - [242] = 218, - [243] = 237, + [238] = 217, + [239] = 223, + [240] = 219, + [241] = 241, + [242] = 217, + [243] = 219, [244] = 244, - [245] = 218, - [246] = 234, - [247] = 218, - [248] = 218, - [249] = 218, - [250] = 225, - [251] = 234, - [252] = 237, - [253] = 253, - [254] = 218, - [255] = 218, - [256] = 218, - [257] = 225, - [258] = 258, - [259] = 259, - [260] = 234, - [261] = 234, - [262] = 237, - [263] = 237, - [264] = 264, - [265] = 265, - [266] = 237, - [267] = 225, - [268] = 234, + [245] = 223, + [246] = 246, + [247] = 219, + [248] = 219, + [249] = 219, + [250] = 250, + [251] = 251, + [252] = 218, + [253] = 223, + [254] = 254, + [255] = 255, + [256] = 217, + [257] = 217, + [258] = 223, + [259] = 218, + [260] = 223, + [261] = 218, + [262] = 218, + [263] = 223, + [264] = 217, + [265] = 223, + [266] = 217, + [267] = 219, + [268] = 223, [269] = 218, - [270] = 225, - [271] = 237, - [272] = 234, - [273] = 273, - [274] = 218, - [275] = 225, - [276] = 276, - [277] = 277, - [278] = 225, - [279] = 279, - [280] = 218, - [281] = 259, - [282] = 225, - [283] = 218, - [284] = 234, - [285] = 237, - [286] = 237, + [270] = 218, + [271] = 217, + [272] = 223, + [273] = 223, + [274] = 223, + [275] = 275, + [276] = 223, + [277] = 223, + [278] = 223, + [279] = 223, + [280] = 280, + [281] = 234, + [282] = 218, + [283] = 219, + [284] = 218, + [285] = 241, + [286] = 218, [287] = 287, - [288] = 237, - [289] = 234, - [290] = 234, - [291] = 218, - [292] = 218, - [293] = 234, - [294] = 225, - [295] = 237, - [296] = 234, - [297] = 225, - [298] = 237, + [288] = 227, + [289] = 289, + [290] = 217, + [291] = 291, + [292] = 292, + [293] = 223, + [294] = 223, + [295] = 223, + [296] = 219, + [297] = 218, + [298] = 298, [299] = 299, [300] = 300, [301] = 301, - [302] = 300, + [302] = 302, [303] = 303, - [304] = 299, - [305] = 305, - [306] = 301, - [307] = 300, - [308] = 308, - [309] = 305, - [310] = 303, - [311] = 299, - [312] = 303, - [313] = 313, - [314] = 299, - [315] = 303, - [316] = 305, - [317] = 303, - [318] = 305, - [319] = 301, - [320] = 300, - [321] = 303, - [322] = 299, + [304] = 304, + [305] = 304, + [306] = 304, + [307] = 304, + [308] = 304, + [309] = 309, + [310] = 300, + [311] = 304, + [312] = 304, + [313] = 304, + [314] = 304, + [315] = 300, + [316] = 304, + [317] = 317, + [318] = 302, + [319] = 304, + [320] = 304, + [321] = 304, + [322] = 303, [323] = 301, - [324] = 299, - [325] = 305, + [324] = 303, + [325] = 325, [326] = 303, - [327] = 303, - [328] = 299, - [329] = 303, - [330] = 301, - [331] = 300, - [332] = 308, + [327] = 299, + [328] = 303, + [329] = 299, + [330] = 304, + [331] = 325, + [332] = 304, [333] = 303, - [334] = 303, - [335] = 313, - [336] = 299, - [337] = 299, - [338] = 338, - [339] = 303, - [340] = 301, - [341] = 300, - [342] = 308, - [343] = 303, - [344] = 300, + [334] = 334, + [335] = 304, + [336] = 325, + [337] = 301, + [338] = 325, + [339] = 299, + [340] = 299, + [341] = 301, + [342] = 301, + [343] = 299, + [344] = 325, [345] = 303, [346] = 301, - [347] = 313, - [348] = 305, - [349] = 305, - [350] = 303, - [351] = 351, - [352] = 300, + [347] = 304, + [348] = 348, + [349] = 303, + [350] = 300, + [351] = 303, + [352] = 302, [353] = 301, - [354] = 303, - [355] = 300, - [356] = 299, - [357] = 303, - [358] = 300, - [359] = 303, - [360] = 299, - [361] = 361, - [362] = 301, - [363] = 363, - [364] = 303, + [354] = 354, + [355] = 301, + [356] = 301, + [357] = 299, + [358] = 325, + [359] = 359, + [360] = 360, + [361] = 303, + [362] = 325, + [363] = 304, + [364] = 309, [365] = 303, - [366] = 305, - [367] = 301, - [368] = 363, - [369] = 299, - [370] = 370, - [371] = 301, - [372] = 300, - [373] = 299, + [366] = 304, + [367] = 299, + [368] = 304, + [369] = 301, + [370] = 325, + [371] = 299, + [372] = 299, + [373] = 303, [374] = 299, - [375] = 303, - [376] = 303, - [377] = 305, - [378] = 305, - [379] = 301, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 305, - [384] = 305, - [385] = 313, - [386] = 308, - [387] = 300, - [388] = 303, - [389] = 299, + [375] = 325, + [376] = 325, + [377] = 303, + [378] = 378, + [379] = 304, + [380] = 325, + [381] = 301, + [382] = 304, + [383] = 303, + [384] = 304, + [385] = 301, + [386] = 299, + [387] = 302, + [388] = 325, + [389] = 303, [390] = 390, [391] = 391, [392] = 392, - [393] = 393, + [393] = 390, [394] = 394, - [395] = 392, - [396] = 396, - [397] = 392, - [398] = 391, - [399] = 390, - [400] = 392, - [401] = 391, - [402] = 392, - [403] = 390, - [404] = 392, - [405] = 405, - [406] = 390, + [395] = 395, + [396] = 390, + [397] = 394, + [398] = 398, + [399] = 391, + [400] = 390, + [401] = 394, + [402] = 390, + [403] = 394, + [404] = 309, + [405] = 394, + [406] = 391, [407] = 390, - [408] = 392, - [409] = 392, + [408] = 390, + [409] = 391, [410] = 394, - [411] = 392, - [412] = 392, - [413] = 390, - [414] = 392, - [415] = 390, - [416] = 390, + [411] = 394, + [412] = 391, + [413] = 413, + [414] = 390, + [415] = 415, + [416] = 394, [417] = 417, - [418] = 418, - [419] = 392, - [420] = 391, + [418] = 394, + [419] = 390, + [420] = 390, [421] = 421, - [422] = 390, - [423] = 421, - [424] = 424, - [425] = 390, + [422] = 415, + [423] = 390, + [424] = 394, + [425] = 425, [426] = 390, - [427] = 390, - [428] = 391, + [427] = 415, + [428] = 398, [429] = 429, - [430] = 394, - [431] = 390, - [432] = 394, - [433] = 390, - [434] = 434, - [435] = 393, - [436] = 436, - [437] = 437, - [438] = 363, - [439] = 439, - [440] = 390, + [430] = 430, + [431] = 431, + [432] = 415, + [433] = 433, + [434] = 390, + [435] = 435, + [436] = 391, + [437] = 394, + [438] = 390, + [439] = 390, + [440] = 440, [441] = 441, - [442] = 392, - [443] = 443, - [444] = 391, + [442] = 394, + [443] = 392, + [444] = 394, [445] = 390, [446] = 446, [447] = 447, @@ -3849,1069 +3898,1069 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [455] = 455, [456] = 456, [457] = 457, - [458] = 456, - [459] = 452, - [460] = 460, + [458] = 458, + [459] = 459, + [460] = 449, [461] = 461, - [462] = 451, - [463] = 450, + [462] = 462, + [463] = 463, [464] = 464, [465] = 465, - [466] = 446, + [466] = 466, [467] = 467, - [468] = 468, + [468] = 457, [469] = 469, - [470] = 456, - [471] = 446, - [472] = 472, - [473] = 464, - [474] = 472, - [475] = 450, - [476] = 476, + [470] = 470, + [471] = 471, + [472] = 464, + [473] = 473, + [474] = 473, + [475] = 473, + [476] = 450, [477] = 477, - [478] = 478, - [479] = 451, - [480] = 461, - [481] = 481, + [478] = 458, + [479] = 473, + [480] = 463, + [481] = 458, [482] = 482, [483] = 483, [484] = 484, [485] = 485, - [486] = 447, - [487] = 487, - [488] = 488, - [489] = 363, - [490] = 490, - [491] = 491, - [492] = 455, - [493] = 493, - [494] = 494, - [495] = 452, - [496] = 456, - [497] = 464, - [498] = 452, - [499] = 499, - [500] = 446, - [501] = 501, - [502] = 451, - [503] = 484, - [504] = 504, + [486] = 486, + [487] = 457, + [488] = 449, + [489] = 489, + [490] = 463, + [491] = 466, + [492] = 467, + [493] = 466, + [494] = 463, + [495] = 467, + [496] = 464, + [497] = 497, + [498] = 471, + [499] = 449, + [500] = 467, + [501] = 457, + [502] = 502, + [503] = 458, + [504] = 473, [505] = 505, [506] = 506, - [507] = 487, - [508] = 363, - [509] = 490, - [510] = 493, - [511] = 363, - [512] = 487, - [513] = 455, - [514] = 456, - [515] = 493, - [516] = 493, - [517] = 494, - [518] = 487, - [519] = 484, - [520] = 490, - [521] = 488, - [522] = 493, - [523] = 363, - [524] = 487, - [525] = 525, - [526] = 494, - [527] = 487, - [528] = 363, - [529] = 493, - [530] = 452, - [531] = 451, - [532] = 494, - [533] = 533, - [534] = 493, - [535] = 455, - [536] = 490, - [537] = 363, - [538] = 487, - [539] = 539, - [540] = 484, - [541] = 541, + [507] = 507, + [508] = 508, + [509] = 464, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 506, + [515] = 515, + [516] = 512, + [517] = 458, + [518] = 449, + [519] = 457, + [520] = 457, + [521] = 521, + [522] = 449, + [523] = 523, + [524] = 458, + [525] = 473, + [526] = 526, + [527] = 471, + [528] = 506, + [529] = 473, + [530] = 521, + [531] = 447, + [532] = 458, + [533] = 309, + [534] = 534, + [535] = 449, + [536] = 457, + [537] = 449, + [538] = 457, + [539] = 469, + [540] = 466, + [541] = 523, [542] = 542, - [543] = 543, - [544] = 488, - [545] = 545, - [546] = 447, - [547] = 547, - [548] = 548, - [549] = 494, - [550] = 493, - [551] = 455, - [552] = 490, - [553] = 450, - [554] = 487, - [555] = 484, - [556] = 469, - [557] = 460, - [558] = 558, - [559] = 488, + [543] = 309, + [544] = 534, + [545] = 467, + [546] = 463, + [547] = 471, + [548] = 464, + [549] = 549, + [550] = 309, + [551] = 512, + [552] = 446, + [553] = 471, + [554] = 554, + [555] = 467, + [556] = 466, + [557] = 463, + [558] = 464, + [559] = 309, [560] = 560, - [561] = 494, - [562] = 493, - [563] = 455, - [564] = 490, - [565] = 363, - [566] = 472, - [567] = 464, - [568] = 446, - [569] = 487, - [570] = 570, - [571] = 571, - [572] = 484, - [573] = 447, - [574] = 467, - [575] = 450, - [576] = 446, - [577] = 577, - [578] = 464, + [561] = 534, + [562] = 446, + [563] = 563, + [564] = 564, + [565] = 466, + [566] = 467, + [567] = 466, + [568] = 463, + [569] = 464, + [570] = 309, + [571] = 534, + [572] = 446, + [573] = 573, + [574] = 506, + [575] = 564, + [576] = 560, + [577] = 469, + [578] = 578, [579] = 579, [580] = 580, - [581] = 472, - [582] = 582, - [583] = 469, - [584] = 460, - [585] = 488, - [586] = 586, - [587] = 447, - [588] = 450, - [589] = 451, - [590] = 452, - [591] = 469, - [592] = 456, - [593] = 460, - [594] = 494, - [595] = 493, - [596] = 468, - [597] = 597, - [598] = 484, - [599] = 455, - [600] = 490, - [601] = 484, - [602] = 469, - [603] = 603, - [604] = 363, - [605] = 487, - [606] = 484, - [607] = 488, - [608] = 447, - [609] = 469, - [610] = 610, - [611] = 460, - [612] = 488, - [613] = 487, - [614] = 614, - [615] = 615, - [616] = 363, - [617] = 617, + [581] = 471, + [582] = 469, + [583] = 506, + [584] = 512, + [585] = 309, + [586] = 473, + [587] = 587, + [588] = 588, + [589] = 564, + [590] = 510, + [591] = 309, + [592] = 560, + [593] = 593, + [594] = 542, + [595] = 458, + [596] = 596, + [597] = 457, + [598] = 447, + [599] = 447, + [600] = 534, + [601] = 542, + [602] = 560, + [603] = 564, + [604] = 542, + [605] = 447, + [606] = 449, + [607] = 469, + [608] = 506, + [609] = 446, + [610] = 473, + [611] = 611, + [612] = 512, + [613] = 457, + [614] = 534, + [615] = 466, + [616] = 467, + [617] = 458, [618] = 618, - [619] = 447, - [620] = 490, - [621] = 469, + [619] = 446, + [620] = 620, + [621] = 473, [622] = 622, - [623] = 455, - [624] = 460, - [625] = 625, - [626] = 488, - [627] = 493, - [628] = 447, - [629] = 629, - [630] = 494, - [631] = 493, - [632] = 632, - [633] = 455, - [634] = 494, - [635] = 635, - [636] = 490, - [637] = 487, - [638] = 638, - [639] = 363, - [640] = 487, - [641] = 484, - [642] = 642, + [623] = 623, + [624] = 467, + [625] = 447, + [626] = 626, + [627] = 473, + [628] = 628, + [629] = 463, + [630] = 458, + [631] = 534, + [632] = 457, + [633] = 447, + [634] = 542, + [635] = 466, + [636] = 449, + [637] = 534, + [638] = 309, + [639] = 449, + [640] = 515, + [641] = 554, + [642] = 560, [643] = 643, - [644] = 644, - [645] = 469, - [646] = 646, - [647] = 460, - [648] = 461, - [649] = 464, - [650] = 644, - [651] = 447, - [652] = 644, - [653] = 363, - [654] = 469, - [655] = 460, - [656] = 488, - [657] = 447, - [658] = 490, - [659] = 659, - [660] = 455, - [661] = 493, - [662] = 469, - [663] = 460, - [664] = 460, + [644] = 564, + [645] = 645, + [646] = 464, + [647] = 457, + [648] = 469, + [649] = 649, + [650] = 464, + [651] = 651, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 506, + [656] = 446, + [657] = 512, + [658] = 596, + [659] = 473, + [660] = 458, + [661] = 467, + [662] = 463, + [663] = 463, + [664] = 664, [665] = 665, - [666] = 666, - [667] = 488, - [668] = 668, - [669] = 488, - [670] = 447, - [671] = 671, - [672] = 672, - [673] = 673, - [674] = 446, - [675] = 675, - [676] = 469, - [677] = 677, - [678] = 494, - [679] = 493, - [680] = 455, - [681] = 490, - [682] = 363, - [683] = 487, - [684] = 684, - [685] = 484, - [686] = 472, - [687] = 450, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 494, - [693] = 467, - [694] = 468, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 701, - [702] = 702, + [666] = 466, + [667] = 446, + [668] = 446, + [669] = 449, + [670] = 534, + [671] = 309, + [672] = 458, + [673] = 534, + [674] = 674, + [675] = 463, + [676] = 676, + [677] = 446, + [678] = 678, + [679] = 534, + [680] = 680, + [681] = 681, + [682] = 682, + [683] = 309, + [684] = 464, + [685] = 685, + [686] = 686, + [687] = 463, + [688] = 464, + [689] = 466, + [690] = 309, + [691] = 534, + [692] = 542, + [693] = 512, + [694] = 506, + [695] = 469, + [696] = 560, + [697] = 466, + [698] = 464, + [699] = 466, + [700] = 309, + [701] = 521, + [702] = 523, [703] = 703, - [704] = 451, - [705] = 452, - [706] = 691, - [707] = 456, - [708] = 708, - [709] = 460, - [710] = 710, - [711] = 488, - [712] = 447, - [713] = 494, - [714] = 714, - [715] = 494, - [716] = 493, - [717] = 455, - [718] = 490, - [719] = 363, - [720] = 487, - [721] = 484, - [722] = 469, - [723] = 723, - [724] = 460, - [725] = 447, - [726] = 726, - [727] = 644, - [728] = 728, - [729] = 625, - [730] = 617, - [731] = 577, - [732] = 644, - [733] = 446, - [734] = 464, - [735] = 472, - [736] = 450, - [737] = 644, - [738] = 638, - [739] = 644, - [740] = 482, - [741] = 494, - [742] = 493, - [743] = 455, - [744] = 490, - [745] = 363, - [746] = 487, - [747] = 484, - [748] = 461, - [749] = 644, - [750] = 750, - [751] = 456, - [752] = 451, - [753] = 452, - [754] = 456, - [755] = 582, - [756] = 632, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 452, - [761] = 761, - [762] = 762, - [763] = 451, - [764] = 764, + [704] = 704, + [705] = 512, + [706] = 534, + [707] = 446, + [708] = 564, + [709] = 560, + [710] = 681, + [711] = 542, + [712] = 466, + [713] = 309, + [714] = 563, + [715] = 534, + [716] = 716, + [717] = 717, + [718] = 447, + [719] = 466, + [720] = 542, + [721] = 681, + [722] = 467, + [723] = 466, + [724] = 463, + [725] = 464, + [726] = 309, + [727] = 534, + [728] = 446, + [729] = 506, + [730] = 512, + [731] = 506, + [732] = 464, + [733] = 560, + [734] = 564, + [735] = 469, + [736] = 309, + [737] = 477, + [738] = 738, + [739] = 467, + [740] = 466, + [741] = 463, + [742] = 464, + [743] = 743, + [744] = 534, + [745] = 446, + [746] = 746, + [747] = 469, + [748] = 748, + [749] = 469, + [750] = 506, + [751] = 512, + [752] = 467, + [753] = 466, + [754] = 463, + [755] = 464, + [756] = 309, + [757] = 534, + [758] = 446, + [759] = 464, + [760] = 564, + [761] = 463, + [762] = 560, + [763] = 564, + [764] = 542, [765] = 765, - [766] = 766, - [767] = 450, - [768] = 472, - [769] = 464, - [770] = 446, - [771] = 771, - [772] = 772, - [773] = 461, - [774] = 774, - [775] = 775, - [776] = 644, - [777] = 777, - [778] = 461, - [779] = 750, - [780] = 464, - [781] = 494, + [766] = 681, + [767] = 767, + [768] = 512, + [769] = 463, + [770] = 770, + [771] = 506, + [772] = 466, + [773] = 447, + [774] = 467, + [775] = 469, + [776] = 776, + [777] = 564, + [778] = 560, + [779] = 471, + [780] = 512, + [781] = 560, [782] = 782, - [783] = 456, - [784] = 493, - [785] = 456, - [786] = 455, - [787] = 490, - [788] = 363, - [789] = 452, - [790] = 487, - [791] = 484, - [792] = 452, - [793] = 793, + [783] = 783, + [784] = 506, + [785] = 785, + [786] = 469, + [787] = 686, + [788] = 542, + [789] = 789, + [790] = 790, + [791] = 447, + [792] = 542, + [793] = 447, [794] = 794, - [795] = 451, - [796] = 456, - [797] = 452, - [798] = 451, - [799] = 450, - [800] = 472, - [801] = 450, - [802] = 472, - [803] = 803, - [804] = 464, - [805] = 451, - [806] = 464, - [807] = 807, - [808] = 808, - [809] = 446, - [810] = 644, - [811] = 461, - [812] = 456, - [813] = 452, + [795] = 534, + [796] = 425, + [797] = 471, + [798] = 467, + [799] = 466, + [800] = 463, + [801] = 801, + [802] = 802, + [803] = 464, + [804] = 309, + [805] = 534, + [806] = 512, + [807] = 446, + [808] = 446, + [809] = 512, + [810] = 506, + [811] = 811, + [812] = 466, + [813] = 469, [814] = 814, - [815] = 494, - [816] = 493, - [817] = 455, - [818] = 644, - [819] = 451, - [820] = 439, - [821] = 490, - [822] = 450, - [823] = 823, - [824] = 824, - [825] = 493, - [826] = 472, - [827] = 363, - [828] = 464, - [829] = 446, - [830] = 450, - [831] = 487, - [832] = 472, - [833] = 464, - [834] = 446, - [835] = 484, - [836] = 363, - [837] = 644, - [838] = 446, - [839] = 464, - [840] = 472, - [841] = 487, - [842] = 456, - [843] = 484, - [844] = 452, - [845] = 487, - [846] = 451, - [847] = 450, - [848] = 472, - [849] = 464, - [850] = 494, - [851] = 450, - [852] = 451, - [853] = 452, - [854] = 446, - [855] = 456, - [856] = 452, - [857] = 461, - [858] = 451, - [859] = 446, - [860] = 464, - [861] = 472, - [862] = 450, - [863] = 490, - [864] = 494, - [865] = 493, - [866] = 455, - [867] = 867, - [868] = 868, - [869] = 490, - [870] = 363, - [871] = 487, - [872] = 484, - [873] = 450, - [874] = 472, + [815] = 564, + [816] = 816, + [817] = 467, + [818] = 818, + [819] = 819, + [820] = 820, + [821] = 467, + [822] = 466, + [823] = 467, + [824] = 560, + [825] = 542, + [826] = 681, + [827] = 467, + [828] = 447, + [829] = 534, + [830] = 512, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 466, + [836] = 564, + [837] = 463, + [838] = 838, + [839] = 839, + [840] = 447, + [841] = 542, + [842] = 560, + [843] = 560, + [844] = 844, + [845] = 564, + [846] = 846, + [847] = 542, + [848] = 467, + [849] = 447, + [850] = 850, + [851] = 449, + [852] = 446, + [853] = 681, + [854] = 467, + [855] = 466, + [856] = 463, + [857] = 464, + [858] = 469, + [859] = 506, + [860] = 309, + [861] = 534, + [862] = 446, + [863] = 863, + [864] = 512, + [865] = 865, + [866] = 464, + [867] = 512, + [868] = 512, + [869] = 506, + [870] = 309, + [871] = 534, + [872] = 872, + [873] = 512, + [874] = 471, [875] = 875, - [876] = 472, + [876] = 876, [877] = 446, - [878] = 455, - [879] = 493, - [880] = 494, - [881] = 881, - [882] = 451, - [883] = 452, - [884] = 884, - [885] = 456, - [886] = 456, - [887] = 456, - [888] = 455, - [889] = 452, - [890] = 461, - [891] = 891, + [878] = 471, + [879] = 506, + [880] = 880, + [881] = 463, + [882] = 469, + [883] = 883, + [884] = 564, + [885] = 560, + [886] = 542, + [887] = 447, + [888] = 681, + [889] = 889, + [890] = 447, + [891] = 542, [892] = 892, - [893] = 893, - [894] = 451, - [895] = 895, - [896] = 896, - [897] = 490, - [898] = 484, - [899] = 450, - [900] = 691, - [901] = 455, - [902] = 456, - [903] = 452, - [904] = 461, - [905] = 494, - [906] = 493, - [907] = 455, - [908] = 451, - [909] = 490, - [910] = 464, - [911] = 461, - [912] = 446, - [913] = 494, - [914] = 493, - [915] = 455, - [916] = 490, - [917] = 450, - [918] = 472, - [919] = 464, - [920] = 461, - [921] = 363, - [922] = 446, - [923] = 923, - [924] = 363, - [925] = 487, - [926] = 484, - [927] = 446, - [928] = 487, - [929] = 484, - [930] = 644, - [931] = 464, - [932] = 472, - [933] = 450, - [934] = 472, - [935] = 689, - [936] = 456, - [937] = 451, - [938] = 452, - [939] = 452, - [940] = 456, - [941] = 494, - [942] = 493, - [943] = 484, - [944] = 451, - [945] = 450, - [946] = 472, - [947] = 464, - [948] = 446, - [949] = 487, - [950] = 363, - [951] = 456, - [952] = 452, - [953] = 451, - [954] = 450, - [955] = 472, - [956] = 464, - [957] = 461, - [958] = 446, - [959] = 490, - [960] = 461, - [961] = 484, - [962] = 962, - [963] = 455, - [964] = 446, - [965] = 896, - [966] = 493, - [967] = 464, - [968] = 472, - [969] = 969, - [970] = 487, - [971] = 363, - [972] = 490, + [893] = 447, + [894] = 542, + [895] = 560, + [896] = 560, + [897] = 564, + [898] = 309, + [899] = 681, + [900] = 469, + [901] = 469, + [902] = 464, + [903] = 506, + [904] = 512, + [905] = 309, + [906] = 564, + [907] = 907, + [908] = 534, + [909] = 446, + [910] = 469, + [911] = 467, + [912] = 850, + [913] = 681, + [914] = 564, + [915] = 915, + [916] = 560, + [917] = 469, + [918] = 466, + [919] = 463, + [920] = 464, + [921] = 309, + [922] = 534, + [923] = 446, + [924] = 506, + [925] = 512, + [926] = 926, + [927] = 927, + [928] = 928, + [929] = 929, + [930] = 506, + [931] = 469, + [932] = 681, + [933] = 681, + [934] = 681, + [935] = 477, + [936] = 560, + [937] = 564, + [938] = 938, + [939] = 939, + [940] = 542, + [941] = 471, + [942] = 447, + [943] = 534, + [944] = 560, + [945] = 446, + [946] = 542, + [947] = 447, + [948] = 542, + [949] = 560, + [950] = 564, + [951] = 447, + [952] = 471, + [953] = 678, + [954] = 954, + [955] = 506, + [956] = 447, + [957] = 542, + [958] = 681, + [959] = 471, + [960] = 560, + [961] = 471, + [962] = 512, + [963] = 564, + [964] = 506, + [965] = 593, + [966] = 966, + [967] = 469, + [968] = 564, + [969] = 564, + [970] = 542, + [971] = 447, + [972] = 469, [973] = 973, - [974] = 67, - [975] = 71, - [976] = 69, - [977] = 70, - [978] = 68, + [974] = 68, + [975] = 70, + [976] = 67, + [977] = 69, + [978] = 71, [979] = 979, - [980] = 980, - [981] = 244, - [982] = 258, - [983] = 222, - [984] = 253, - [985] = 264, - [986] = 276, - [987] = 277, - [988] = 279, - [989] = 227, - [990] = 229, - [991] = 991, - [992] = 273, - [993] = 217, - [994] = 994, - [995] = 380, - [996] = 244, - [997] = 997, - [998] = 222, - [999] = 217, + [980] = 275, + [981] = 981, + [982] = 250, + [983] = 244, + [984] = 984, + [985] = 298, + [986] = 287, + [987] = 254, + [988] = 280, + [989] = 237, + [990] = 292, + [991] = 255, + [992] = 291, + [993] = 251, + [994] = 251, + [995] = 244, + [996] = 996, + [997] = 359, + [998] = 354, + [999] = 999, [1000] = 1000, - [1001] = 279, - [1002] = 276, - [1003] = 264, - [1004] = 253, - [1005] = 258, - [1006] = 381, - [1007] = 1007, - [1008] = 405, - [1009] = 71, - [1010] = 70, - [1011] = 421, - [1012] = 393, - [1013] = 68, - [1014] = 421, - [1015] = 393, - [1016] = 417, - [1017] = 67, - [1018] = 437, - [1019] = 69, - [1020] = 700, - [1021] = 962, - [1022] = 467, - [1023] = 468, - [1024] = 703, - [1025] = 684, - [1026] = 688, - [1027] = 690, - [1028] = 699, - [1029] = 969, - [1030] = 702, - [1031] = 895, - [1032] = 710, - [1033] = 597, - [1034] = 723, - [1035] = 714, - [1036] = 504, - [1037] = 701, - [1038] = 758, - [1039] = 541, - [1040] = 543, - [1041] = 726, - [1042] = 501, - [1043] = 548, - [1044] = 698, - [1045] = 533, - [1046] = 547, - [1047] = 764, - [1048] = 761, - [1049] = 708, - [1050] = 765, - [1051] = 545, - [1052] = 771, - [1053] = 673, - [1054] = 772, - [1055] = 671, - [1056] = 439, - [1057] = 803, - [1058] = 814, - [1059] = 766, - [1060] = 468, - [1061] = 896, - [1062] = 525, - [1063] = 659, - [1064] = 923, - [1065] = 807, - [1066] = 629, - [1067] = 823, - [1068] = 824, - [1069] = 622, - [1070] = 881, - [1071] = 875, - [1072] = 868, - [1073] = 867, - [1074] = 794, - [1075] = 467, - [1076] = 793, - [1077] = 782, - [1078] = 777, - [1079] = 775, - [1080] = 439, - [1081] = 774, - [1082] = 757, - [1083] = 696, - [1084] = 695, - [1085] = 677, - [1086] = 672, - [1087] = 668, - [1088] = 586, - [1089] = 646, - [1090] = 643, - [1091] = 635, - [1092] = 618, - [1093] = 560, - [1094] = 542, - [1095] = 505, - [1096] = 615, - [1097] = 506, - [1098] = 614, - [1099] = 610, - [1100] = 485, - [1101] = 603, - [1102] = 558, - [1103] = 483, - [1104] = 580, - [1105] = 579, - [1106] = 571, - [1107] = 570, - [1108] = 539, - [1109] = 465, - [1110] = 499, - [1111] = 481, - [1112] = 478, - [1113] = 477, - [1114] = 476, - [1115] = 501, - [1116] = 697, - [1117] = 896, - [1118] = 728, - [1119] = 891, - [1120] = 892, - [1121] = 675, - [1122] = 665, - [1123] = 893, - [1124] = 457, - [1125] = 454, - [1126] = 453, - [1127] = 449, - [1128] = 448, - [1129] = 69, - [1130] = 71, - [1131] = 68, - [1132] = 70, - [1133] = 67, + [1001] = 255, + [1002] = 298, + [1003] = 287, + [1004] = 250, + [1005] = 1005, + [1006] = 254, + [1007] = 291, + [1008] = 70, + [1009] = 398, + [1010] = 421, + [1011] = 392, + [1012] = 67, + [1013] = 392, + [1014] = 395, + [1015] = 413, + [1016] = 69, + [1017] = 398, + [1018] = 68, + [1019] = 71, + [1020] = 838, + [1021] = 814, + [1022] = 643, + [1023] = 704, + [1024] = 588, + [1025] = 587, + [1026] = 484, + [1027] = 811, + [1028] = 579, + [1029] = 521, + [1030] = 765, + [1031] = 782, + [1032] = 783, + [1033] = 785, + [1034] = 508, + [1035] = 790, + [1036] = 465, + [1037] = 462, + [1038] = 801, + [1039] = 461, + [1040] = 802, + [1041] = 875, + [1042] = 455, + [1043] = 454, + [1044] = 876, + [1045] = 451, + [1046] = 883, + [1047] = 889, + [1048] = 482, + [1049] = 470, + [1050] = 452, + [1051] = 453, + [1052] = 448, + [1053] = 593, + [1054] = 645, + [1055] = 938, + [1056] = 483, + [1057] = 623, + [1058] = 649, + [1059] = 523, + [1060] = 954, + [1061] = 939, + [1062] = 929, + [1063] = 928, + [1064] = 927, + [1065] = 926, + [1066] = 505, + [1067] = 818, + [1068] = 846, + [1069] = 839, + [1070] = 578, + [1071] = 626, + [1072] = 833, + [1073] = 832, + [1074] = 580, + [1075] = 831, + [1076] = 652, + [1077] = 664, + [1078] = 485, + [1079] = 682, + [1080] = 819, + [1081] = 716, + [1082] = 717, + [1083] = 486, + [1084] = 507, + [1085] = 654, + [1086] = 651, + [1087] = 738, + [1088] = 743, + [1089] = 746, + [1090] = 748, + [1091] = 611, + [1092] = 680, + [1093] = 425, + [1094] = 776, + [1095] = 523, + [1096] = 521, + [1097] = 789, + [1098] = 794, + [1099] = 526, + [1100] = 844, + [1101] = 482, + [1102] = 549, + [1103] = 863, + [1104] = 865, + [1105] = 872, + [1106] = 573, + [1107] = 489, + [1108] = 511, + [1109] = 618, + [1110] = 593, + [1111] = 907, + [1112] = 676, + [1113] = 703, + [1114] = 502, + [1115] = 513, + [1116] = 622, + [1117] = 685, + [1118] = 425, + [1119] = 497, + [1120] = 820, + [1121] = 653, + [1122] = 628, + [1123] = 620, + [1124] = 459, + [1125] = 915, + [1126] = 966, + [1127] = 834, + [1128] = 880, + [1129] = 67, + [1130] = 70, + [1131] = 69, + [1132] = 68, + [1133] = 70, [1134] = 1134, - [1135] = 71, - [1136] = 69, - [1137] = 68, - [1138] = 253, - [1139] = 227, - [1140] = 258, - [1141] = 279, - [1142] = 277, - [1143] = 273, - [1144] = 217, - [1145] = 70, - [1146] = 222, - [1147] = 244, - [1148] = 264, - [1149] = 276, - [1150] = 68, + [1135] = 69, + [1136] = 67, + [1137] = 71, + [1138] = 251, + [1139] = 280, + [1140] = 254, + [1141] = 255, + [1142] = 298, + [1143] = 291, + [1144] = 237, + [1145] = 275, + [1146] = 68, + [1147] = 250, + [1148] = 244, + [1149] = 287, + [1150] = 1150, [1151] = 67, - [1152] = 69, - [1153] = 71, - [1154] = 1154, - [1155] = 1155, - [1156] = 229, - [1157] = 381, - [1158] = 380, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 417, - [1163] = 896, - [1164] = 437, - [1165] = 421, - [1166] = 393, - [1167] = 421, - [1168] = 393, - [1169] = 405, - [1170] = 468, - [1171] = 794, - [1172] = 690, - [1173] = 688, - [1174] = 684, - [1175] = 675, - [1176] = 70, - [1177] = 665, - [1178] = 505, - [1179] = 485, - [1180] = 548, - [1181] = 483, - [1182] = 697, - [1183] = 728, - [1184] = 448, - [1185] = 449, - [1186] = 453, - [1187] = 891, - [1188] = 892, - [1189] = 454, - [1190] = 893, - [1191] = 457, - [1192] = 824, - [1193] = 823, - [1194] = 477, - [1195] = 478, - [1196] = 1196, - [1197] = 962, - [1198] = 481, - [1199] = 543, - [1200] = 545, - [1201] = 499, - [1202] = 558, - [1203] = 586, - [1204] = 70, - [1205] = 570, - [1206] = 571, - [1207] = 579, - [1208] = 580, - [1209] = 1209, - [1210] = 542, - [1211] = 603, - [1212] = 814, - [1213] = 541, - [1214] = 702, - [1215] = 610, - [1216] = 614, - [1217] = 547, - [1218] = 615, - [1219] = 708, - [1220] = 618, - [1221] = 635, - [1222] = 643, - [1223] = 501, - [1224] = 539, - [1225] = 668, - [1226] = 672, - [1227] = 560, - [1228] = 677, - [1229] = 70, - [1230] = 695, - [1231] = 803, - [1232] = 696, - [1233] = 533, - [1234] = 710, - [1235] = 71, - [1236] = 807, - [1237] = 765, - [1238] = 69, - [1239] = 757, - [1240] = 68, - [1241] = 774, - [1242] = 775, - [1243] = 476, - [1244] = 777, - [1245] = 465, - [1246] = 782, - [1247] = 793, - [1248] = 467, - [1249] = 699, - [1250] = 597, - [1251] = 867, - [1252] = 525, - [1253] = 868, - [1254] = 875, - [1255] = 881, - [1256] = 68, - [1257] = 69, - [1258] = 622, - [1259] = 67, - [1260] = 923, - [1261] = 896, - [1262] = 629, - [1263] = 659, - [1264] = 504, - [1265] = 71, - [1266] = 67, - [1267] = 506, - [1268] = 766, - [1269] = 895, - [1270] = 1209, - [1271] = 671, - [1272] = 646, - [1273] = 673, - [1274] = 698, - [1275] = 764, - [1276] = 700, - [1277] = 758, - [1278] = 701, - [1279] = 772, - [1280] = 771, - [1281] = 969, - [1282] = 761, - [1283] = 726, - [1284] = 439, - [1285] = 723, - [1286] = 714, - [1287] = 703, - [1288] = 468, - [1289] = 67, - [1290] = 227, - [1291] = 273, - [1292] = 277, - [1293] = 467, - [1294] = 381, - [1295] = 1295, - [1296] = 1295, - [1297] = 380, - [1298] = 264, - [1299] = 279, - [1300] = 264, - [1301] = 253, - [1302] = 258, - [1303] = 222, - [1304] = 437, - [1305] = 896, - [1306] = 393, - [1307] = 244, - [1308] = 393, - [1309] = 405, - [1310] = 417, - [1311] = 1311, - [1312] = 421, - [1313] = 276, - [1314] = 276, - [1315] = 697, - [1316] = 253, - [1317] = 279, - [1318] = 258, - [1319] = 726, - [1320] = 222, - [1321] = 449, - [1322] = 448, - [1323] = 217, - [1324] = 723, - [1325] = 217, - [1326] = 244, - [1327] = 421, - [1328] = 714, - [1329] = 465, - [1330] = 533, - [1331] = 525, - [1332] = 969, - [1333] = 803, - [1334] = 814, - [1335] = 891, - [1336] = 892, - [1337] = 893, - [1338] = 771, - [1339] = 772, - [1340] = 765, - [1341] = 962, - [1342] = 761, - [1343] = 823, - [1344] = 504, - [1345] = 468, - [1346] = 467, - [1347] = 807, - [1348] = 677, - [1349] = 794, - [1350] = 766, - [1351] = 764, - [1352] = 758, - [1353] = 895, - [1354] = 672, - [1355] = 710, - [1356] = 702, - [1357] = 699, - [1358] = 690, - [1359] = 703, - [1360] = 701, - [1361] = 700, - [1362] = 698, - [1363] = 688, - [1364] = 684, - [1365] = 675, - [1366] = 665, - [1367] = 673, - [1368] = 671, - [1369] = 668, - [1370] = 793, - [1371] = 659, - [1372] = 646, - [1373] = 824, - [1374] = 629, - [1375] = 708, - [1376] = 622, - [1377] = 643, - [1378] = 1378, - [1379] = 586, - [1380] = 728, - [1381] = 635, - [1382] = 618, - [1383] = 597, - [1384] = 923, - [1385] = 548, - [1386] = 782, - [1387] = 547, - [1388] = 615, - [1389] = 614, - [1390] = 560, - [1391] = 505, - [1392] = 539, - [1393] = 777, - [1394] = 610, - [1395] = 775, - [1396] = 485, - [1397] = 1397, - [1398] = 483, - [1399] = 603, - [1400] = 774, - [1401] = 881, - [1402] = 875, - [1403] = 453, - [1404] = 454, - [1405] = 457, - [1406] = 868, - [1407] = 506, - [1408] = 695, - [1409] = 696, - [1410] = 543, - [1411] = 476, - [1412] = 477, - [1413] = 478, - [1414] = 545, - [1415] = 542, - [1416] = 481, - [1417] = 558, - [1418] = 896, - [1419] = 499, - [1420] = 541, - [1421] = 867, - [1422] = 757, - [1423] = 570, - [1424] = 571, - [1425] = 579, - [1426] = 580, - [1427] = 1427, + [1152] = 70, + [1153] = 1153, + [1154] = 69, + [1155] = 71, + [1156] = 359, + [1157] = 354, + [1158] = 1158, + [1159] = 292, + [1160] = 421, + [1161] = 392, + [1162] = 1162, + [1163] = 1163, + [1164] = 398, + [1165] = 392, + [1166] = 593, + [1167] = 413, + [1168] = 398, + [1169] = 395, + [1170] = 485, + [1171] = 454, + [1172] = 1172, + [1173] = 889, + [1174] = 69, + [1175] = 801, + [1176] = 844, + [1177] = 526, + [1178] = 680, + [1179] = 863, + [1180] = 676, + [1181] = 573, + [1182] = 651, + [1183] = 68, + [1184] = 811, + [1185] = 643, + [1186] = 626, + [1187] = 425, + [1188] = 794, + [1189] = 1189, + [1190] = 623, + [1191] = 523, + [1192] = 802, + [1193] = 622, + [1194] = 70, + [1195] = 790, + [1196] = 865, + [1197] = 618, + [1198] = 620, + [1199] = 611, + [1200] = 628, + [1201] = 588, + [1202] = 587, + [1203] = 549, + [1204] = 452, + [1205] = 579, + [1206] = 578, + [1207] = 653, + [1208] = 507, + [1209] = 513, + [1210] = 71, + [1211] = 875, + [1212] = 67, + [1213] = 834, + [1214] = 880, + [1215] = 511, + [1216] = 876, + [1217] = 489, + [1218] = 486, + [1219] = 482, + [1220] = 521, + [1221] = 872, + [1222] = 484, + [1223] = 465, + [1224] = 462, + [1225] = 883, + [1226] = 461, + [1227] = 966, + [1228] = 455, + [1229] = 915, + [1230] = 459, + [1231] = 505, + [1232] = 451, + [1233] = 703, + [1234] = 470, + [1235] = 453, + [1236] = 838, + [1237] = 926, + [1238] = 789, + [1239] = 649, + [1240] = 645, + [1241] = 448, + [1242] = 820, + [1243] = 502, + [1244] = 497, + [1245] = 69, + [1246] = 785, + [1247] = 783, + [1248] = 483, + [1249] = 814, + [1250] = 68, + [1251] = 70, + [1252] = 819, + [1253] = 508, + [1254] = 67, + [1255] = 776, + [1256] = 831, + [1257] = 654, + [1258] = 832, + [1259] = 833, + [1260] = 1189, + [1261] = 839, + [1262] = 580, + [1263] = 846, + [1264] = 652, + [1265] = 939, + [1266] = 938, + [1267] = 593, + [1268] = 954, + [1269] = 782, + [1270] = 928, + [1271] = 664, + [1272] = 68, + [1273] = 685, + [1274] = 682, + [1275] = 927, + [1276] = 818, + [1277] = 716, + [1278] = 717, + [1279] = 929, + [1280] = 765, + [1281] = 738, + [1282] = 71, + [1283] = 907, + [1284] = 743, + [1285] = 746, + [1286] = 748, + [1287] = 704, + [1288] = 521, + [1289] = 280, + [1290] = 523, + [1291] = 275, + [1292] = 237, + [1293] = 71, + [1294] = 354, + [1295] = 359, + [1296] = 1296, + [1297] = 1296, + [1298] = 255, + [1299] = 413, + [1300] = 254, + [1301] = 291, + [1302] = 794, + [1303] = 255, + [1304] = 392, + [1305] = 250, + [1306] = 251, + [1307] = 776, + [1308] = 395, + [1309] = 244, + [1310] = 789, + [1311] = 298, + [1312] = 287, + [1313] = 398, + [1314] = 287, + [1315] = 1315, + [1316] = 298, + [1317] = 451, + [1318] = 454, + [1319] = 398, + [1320] = 455, + [1321] = 392, + [1322] = 834, + [1323] = 421, + [1324] = 291, + [1325] = 244, + [1326] = 250, + [1327] = 251, + [1328] = 593, + [1329] = 254, + [1330] = 746, + [1331] = 838, + [1332] = 645, + [1333] = 649, + [1334] = 844, + [1335] = 704, + [1336] = 820, + [1337] = 502, + [1338] = 966, + [1339] = 915, + [1340] = 459, + [1341] = 497, + [1342] = 703, + [1343] = 782, + [1344] = 783, + [1345] = 685, + [1346] = 785, + [1347] = 680, + [1348] = 676, + [1349] = 907, + [1350] = 1350, + [1351] = 790, + [1352] = 654, + [1353] = 593, + [1354] = 872, + [1355] = 865, + [1356] = 863, + [1357] = 508, + [1358] = 651, + [1359] = 643, + [1360] = 626, + [1361] = 801, + [1362] = 1362, + [1363] = 811, + [1364] = 623, + [1365] = 622, + [1366] = 549, + [1367] = 748, + [1368] = 505, + [1369] = 743, + [1370] = 738, + [1371] = 526, + [1372] = 620, + [1373] = 628, + [1374] = 653, + [1375] = 717, + [1376] = 716, + [1377] = 513, + [1378] = 802, + [1379] = 682, + [1380] = 939, + [1381] = 511, + [1382] = 664, + [1383] = 618, + [1384] = 652, + [1385] = 814, + [1386] = 819, + [1387] = 580, + [1388] = 573, + [1389] = 832, + [1390] = 833, + [1391] = 523, + [1392] = 521, + [1393] = 875, + [1394] = 765, + [1395] = 839, + [1396] = 846, + [1397] = 611, + [1398] = 880, + [1399] = 483, + [1400] = 818, + [1401] = 831, + [1402] = 876, + [1403] = 588, + [1404] = 452, + [1405] = 926, + [1406] = 470, + [1407] = 927, + [1408] = 928, + [1409] = 587, + [1410] = 579, + [1411] = 461, + [1412] = 462, + [1413] = 465, + [1414] = 578, + [1415] = 453, + [1416] = 448, + [1417] = 883, + [1418] = 929, + [1419] = 484, + [1420] = 485, + [1421] = 486, + [1422] = 938, + [1423] = 889, + [1424] = 489, + [1425] = 507, + [1426] = 954, + [1427] = 482, [1428] = 1428, - [1429] = 439, - [1430] = 70, - [1431] = 501, - [1432] = 501, - [1433] = 1433, - [1434] = 67, - [1435] = 68, - [1436] = 69, - [1437] = 1437, - [1438] = 71, - [1439] = 439, - [1440] = 68, - [1441] = 69, - [1442] = 71, - [1443] = 417, - [1444] = 70, - [1445] = 1445, + [1429] = 1429, + [1430] = 425, + [1431] = 68, + [1432] = 1432, + [1433] = 71, + [1434] = 482, + [1435] = 69, + [1436] = 70, + [1437] = 67, + [1438] = 425, + [1439] = 1439, + [1440] = 69, + [1441] = 67, + [1442] = 395, + [1443] = 70, + [1444] = 1444, + [1445] = 593, [1446] = 1446, [1447] = 1447, - [1448] = 896, - [1449] = 1449, - [1450] = 545, - [1451] = 543, + [1448] = 68, + [1449] = 68, + [1450] = 1450, + [1451] = 1451, [1452] = 1452, - [1453] = 70, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 558, - [1458] = 665, + [1453] = 1453, + [1454] = 511, + [1455] = 513, + [1456] = 927, + [1457] = 929, + [1458] = 1458, [1459] = 1459, - [1460] = 1460, - [1461] = 68, - [1462] = 1462, - [1463] = 69, - [1464] = 710, - [1465] = 71, - [1466] = 708, - [1467] = 803, + [1460] = 71, + [1461] = 1461, + [1462] = 69, + [1463] = 1463, + [1464] = 1464, + [1465] = 70, + [1466] = 1466, + [1467] = 1467, [1468] = 1468, [1469] = 1469, - [1470] = 761, + [1470] = 67, [1471] = 1471, - [1472] = 765, - [1473] = 771, + [1472] = 1472, + [1473] = 1473, [1474] = 1474, - [1475] = 772, - [1476] = 1476, - [1477] = 1477, + [1475] = 497, + [1476] = 502, + [1477] = 505, [1478] = 1478, [1479] = 1479, - [1480] = 525, + [1480] = 1480, [1481] = 1481, - [1482] = 702, - [1483] = 1483, + [1482] = 1482, + [1483] = 526, [1484] = 1484, - [1485] = 684, + [1485] = 1485, [1486] = 1486, - [1487] = 675, - [1488] = 548, - [1489] = 547, - [1490] = 688, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 573, [1491] = 1491, - [1492] = 542, - [1493] = 541, - [1494] = 504, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 67, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 453, + [1496] = 448, + [1497] = 938, + [1498] = 954, [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 539, - [1505] = 560, - [1506] = 824, - [1507] = 823, - [1508] = 1508, - [1509] = 533, - [1510] = 1510, - [1511] = 690, - [1512] = 699, - [1513] = 814, - [1514] = 1514, - [1515] = 1515, - [1516] = 597, - [1517] = 506, + [1500] = 928, + [1501] = 620, + [1502] = 814, + [1503] = 628, + [1504] = 819, + [1505] = 831, + [1506] = 832, + [1507] = 833, + [1508] = 645, + [1509] = 649, + [1510] = 653, + [1511] = 838, + [1512] = 839, + [1513] = 818, + [1514] = 844, + [1515] = 846, + [1516] = 549, + [1517] = 926, [1518] = 1518, [1519] = 1519, - [1520] = 67, + [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, @@ -4927,17 +4976,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1536, + [1536] = 392, [1537] = 1537, [1538] = 1538, - [1539] = 1539, + [1539] = 71, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 70, + [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 393, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, @@ -4945,12 +4994,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1551] = 1551, [1552] = 1552, [1553] = 1553, - [1554] = 1554, + [1554] = 398, [1555] = 1555, [1556] = 1556, [1557] = 1557, [1558] = 1558, - [1559] = 1559, + [1559] = 68, [1560] = 1560, [1561] = 1561, [1562] = 1562, @@ -4961,7 +5010,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1567] = 1567, [1568] = 1568, [1569] = 1569, - [1570] = 421, + [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, @@ -4970,7 +5019,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1576] = 1576, [1577] = 1577, [1578] = 1578, - [1579] = 1579, + [1579] = 654, [1580] = 1580, [1581] = 1581, [1582] = 1582, @@ -4999,1893 +5048,1893 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 646, + [1608] = 1608, [1609] = 1609, [1610] = 1610, [1611] = 1611, [1612] = 1612, [1613] = 1613, - [1614] = 1614, - [1615] = 67, + [1614] = 68, + [1615] = 71, [1616] = 69, - [1617] = 68, - [1618] = 71, - [1619] = 70, + [1617] = 70, + [1618] = 67, + [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, [1623] = 1623, - [1624] = 1624, - [1625] = 67, - [1626] = 67, + [1624] = 71, + [1625] = 1625, + [1626] = 71, [1627] = 1627, - [1628] = 547, - [1629] = 548, - [1630] = 525, - [1631] = 506, - [1632] = 708, - [1633] = 547, - [1634] = 708, - [1635] = 506, - [1636] = 548, - [1637] = 525, - [1638] = 525, - [1639] = 525, - [1640] = 708, - [1641] = 548, - [1642] = 506, - [1643] = 547, - [1644] = 1644, - [1645] = 506, - [1646] = 547, - [1647] = 548, - [1648] = 708, - [1649] = 217, - [1650] = 273, - [1651] = 279, - [1652] = 277, - [1653] = 276, - [1654] = 265, - [1655] = 264, - [1656] = 253, - [1657] = 258, - [1658] = 222, - [1659] = 227, - [1660] = 244, - [1661] = 216, - [1662] = 421, - [1663] = 380, - [1664] = 215, - [1665] = 393, - [1666] = 381, - [1667] = 771, - [1668] = 405, - [1669] = 824, - [1670] = 437, - [1671] = 279, - [1672] = 823, - [1673] = 439, - [1674] = 396, - [1675] = 814, - [1676] = 227, - [1677] = 803, - [1678] = 244, - [1679] = 217, - [1680] = 396, - [1681] = 772, - [1682] = 1682, - [1683] = 273, - [1684] = 277, - [1685] = 1685, - [1686] = 229, - [1687] = 533, - [1688] = 542, - [1689] = 1682, - [1690] = 539, - [1691] = 417, - [1692] = 541, - [1693] = 765, - [1694] = 761, - [1695] = 675, - [1696] = 258, - [1697] = 699, - [1698] = 690, - [1699] = 264, - [1700] = 558, - [1701] = 276, - [1702] = 710, - [1703] = 253, - [1704] = 665, - [1705] = 896, - [1706] = 222, - [1707] = 688, - [1708] = 684, - [1709] = 702, - [1710] = 501, - [1711] = 610, - [1712] = 481, - [1713] = 421, - [1714] = 895, - [1715] = 393, - [1716] = 701, - [1717] = 381, - [1718] = 794, - [1719] = 962, - [1720] = 793, - [1721] = 782, - [1722] = 777, - [1723] = 560, - [1724] = 439, - [1725] = 775, - [1726] = 774, - [1727] = 714, - [1728] = 485, - [1729] = 757, - [1730] = 483, - [1731] = 723, - [1732] = 726, - [1733] = 465, - [1734] = 696, - [1735] = 468, - [1736] = 448, - [1737] = 467, - [1738] = 892, - [1739] = 695, - [1740] = 449, - [1741] = 453, - [1742] = 468, - [1743] = 454, - [1744] = 700, - [1745] = 597, - [1746] = 457, - [1747] = 698, - [1748] = 467, - [1749] = 673, - [1750] = 671, - [1751] = 677, - [1752] = 439, - [1753] = 380, - [1754] = 758, - [1755] = 891, - [1756] = 659, - [1757] = 697, - [1758] = 476, - [1759] = 764, - [1760] = 672, - [1761] = 807, - [1762] = 668, - [1763] = 477, - [1764] = 579, - [1765] = 478, - [1766] = 646, - [1767] = 923, - [1768] = 896, - [1769] = 766, - [1770] = 867, - [1771] = 629, - [1772] = 728, - [1773] = 969, - [1774] = 499, - [1775] = 622, - [1776] = 570, - [1777] = 703, - [1778] = 571, - [1779] = 868, - [1780] = 580, - [1781] = 603, - [1782] = 893, - [1783] = 586, - [1784] = 504, - [1785] = 643, - [1786] = 635, - [1787] = 614, - [1788] = 881, - [1789] = 545, - [1790] = 543, - [1791] = 615, - [1792] = 505, - [1793] = 875, - [1794] = 618, - [1795] = 437, - [1796] = 277, - [1797] = 244, - [1798] = 227, - [1799] = 279, - [1800] = 215, - [1801] = 405, - [1802] = 276, - [1803] = 264, - [1804] = 1804, - [1805] = 253, - [1806] = 258, - [1807] = 222, - [1808] = 215, - [1809] = 217, - [1810] = 273, - [1811] = 439, - [1812] = 217, - [1813] = 244, - [1814] = 273, - [1815] = 227, - [1816] = 417, - [1817] = 222, - [1818] = 258, - [1819] = 253, - [1820] = 264, - [1821] = 276, - [1822] = 277, - [1823] = 279, - [1824] = 501, - [1825] = 896, - [1826] = 671, - [1827] = 675, - [1828] = 393, - [1829] = 217, - [1830] = 505, - [1831] = 814, - [1832] = 824, - [1833] = 615, - [1834] = 485, - [1835] = 881, - [1836] = 875, - [1837] = 723, - [1838] = 823, - [1839] = 381, - [1840] = 483, - [1841] = 380, - [1842] = 726, - [1843] = 714, - [1844] = 803, - [1845] = 222, - [1846] = 586, - [1847] = 708, - [1848] = 258, - [1849] = 253, - [1850] = 264, - [1851] = 758, - [1852] = 276, - [1853] = 279, - [1854] = 772, - [1855] = 771, - [1856] = 465, - [1857] = 448, - [1858] = 449, - [1859] = 765, - [1860] = 453, - [1861] = 454, - [1862] = 457, - [1863] = 761, - [1864] = 393, - [1865] = 229, - [1866] = 1866, - [1867] = 229, - [1868] = 504, - [1869] = 476, - [1870] = 710, - [1871] = 477, - [1872] = 478, - [1873] = 702, - [1874] = 699, - [1875] = 690, - [1876] = 481, - [1877] = 499, - [1878] = 688, - [1879] = 684, - [1880] = 646, - [1881] = 548, - [1882] = 547, - [1883] = 570, - [1884] = 571, - [1885] = 579, - [1886] = 896, + [1628] = 649, + [1629] = 497, + [1630] = 645, + [1631] = 502, + [1632] = 844, + [1633] = 649, + [1634] = 844, + [1635] = 645, + [1636] = 502, + [1637] = 497, + [1638] = 844, + [1639] = 1639, + [1640] = 497, + [1641] = 497, + [1642] = 502, + [1643] = 844, + [1644] = 645, + [1645] = 645, + [1646] = 502, + [1647] = 649, + [1648] = 649, + [1649] = 275, + [1650] = 246, + [1651] = 255, + [1652] = 254, + [1653] = 215, + [1654] = 251, + [1655] = 298, + [1656] = 287, + [1657] = 244, + [1658] = 237, + [1659] = 291, + [1660] = 250, + [1661] = 280, + [1662] = 392, + [1663] = 359, + [1664] = 354, + [1665] = 398, + [1666] = 216, + [1667] = 453, + [1668] = 425, + [1669] = 254, + [1670] = 846, + [1671] = 819, + [1672] = 255, + [1673] = 929, + [1674] = 928, + [1675] = 927, + [1676] = 237, + [1677] = 926, + [1678] = 814, + [1679] = 1679, + [1680] = 505, + [1681] = 1681, + [1682] = 421, + [1683] = 250, + [1684] = 653, + [1685] = 954, + [1686] = 938, + [1687] = 275, + [1688] = 251, + [1689] = 1681, + [1690] = 244, + [1691] = 298, + [1692] = 482, + [1693] = 287, + [1694] = 839, + [1695] = 441, + [1696] = 838, + [1697] = 413, + [1698] = 628, + [1699] = 291, + [1700] = 831, + [1701] = 620, + [1702] = 280, + [1703] = 395, + [1704] = 573, + [1705] = 593, + [1706] = 292, + [1707] = 441, + [1708] = 833, + [1709] = 832, + [1710] = 448, + [1711] = 785, + [1712] = 811, + [1713] = 915, + [1714] = 966, + [1715] = 880, + [1716] = 738, + [1717] = 717, + [1718] = 716, + [1719] = 588, + [1720] = 587, + [1721] = 579, + [1722] = 508, + [1723] = 578, + [1724] = 459, + [1725] = 834, + [1726] = 743, + [1727] = 889, + [1728] = 748, + [1729] = 875, + [1730] = 682, + [1731] = 776, + [1732] = 664, + [1733] = 652, + [1734] = 580, + [1735] = 549, + [1736] = 626, + [1737] = 452, + [1738] = 789, + [1739] = 483, + [1740] = 802, + [1741] = 794, + [1742] = 511, + [1743] = 513, + [1744] = 507, + [1745] = 611, + [1746] = 746, + [1747] = 618, + [1748] = 865, + [1749] = 872, + [1750] = 470, + [1751] = 643, + [1752] = 651, + [1753] = 783, + [1754] = 451, + [1755] = 454, + [1756] = 455, + [1757] = 461, + [1758] = 462, + [1759] = 782, + [1760] = 907, + [1761] = 939, + [1762] = 593, + [1763] = 521, + [1764] = 398, + [1765] = 465, + [1766] = 359, + [1767] = 883, + [1768] = 392, + [1769] = 654, + [1770] = 765, + [1771] = 801, + [1772] = 704, + [1773] = 354, + [1774] = 818, + [1775] = 876, + [1776] = 622, + [1777] = 425, + [1778] = 703, + [1779] = 820, + [1780] = 623, + [1781] = 523, + [1782] = 521, + [1783] = 526, + [1784] = 425, + [1785] = 685, + [1786] = 790, + [1787] = 484, + [1788] = 485, + [1789] = 863, + [1790] = 486, + [1791] = 680, + [1792] = 676, + [1793] = 489, + [1794] = 523, + [1795] = 244, + [1796] = 250, + [1797] = 237, + [1798] = 298, + [1799] = 287, + [1800] = 291, + [1801] = 275, + [1802] = 298, + [1803] = 287, + [1804] = 255, + [1805] = 280, + [1806] = 425, + [1807] = 482, + [1808] = 593, + [1809] = 237, + [1810] = 275, + [1811] = 216, + [1812] = 395, + [1813] = 421, + [1814] = 254, + [1815] = 291, + [1816] = 1816, + [1817] = 216, + [1818] = 280, + [1819] = 255, + [1820] = 254, + [1821] = 251, + [1822] = 251, + [1823] = 413, + [1824] = 250, + [1825] = 244, + [1826] = 820, + [1827] = 292, + [1828] = 875, + [1829] = 802, + [1830] = 801, + [1831] = 790, + [1832] = 392, + [1833] = 785, + [1834] = 783, + [1835] = 782, + [1836] = 765, + [1837] = 497, + [1838] = 502, + [1839] = 704, + [1840] = 291, + [1841] = 244, + [1842] = 250, + [1843] = 251, + [1844] = 254, + [1845] = 255, + [1846] = 703, + [1847] = 685, + [1848] = 354, + [1849] = 680, + [1850] = 676, + [1851] = 593, + [1852] = 651, + [1853] = 643, + [1854] = 626, + [1855] = 623, + [1856] = 622, + [1857] = 618, + [1858] = 523, + [1859] = 521, + [1860] = 611, + [1861] = 588, + [1862] = 587, + [1863] = 579, + [1864] = 578, + [1865] = 645, + [1866] = 649, + [1867] = 507, + [1868] = 489, + [1869] = 889, + [1870] = 398, + [1871] = 486, + [1872] = 523, + [1873] = 521, + [1874] = 485, + [1875] = 484, + [1876] = 465, + [1877] = 462, + [1878] = 461, + [1879] = 455, + [1880] = 454, + [1881] = 451, + [1882] = 470, + [1883] = 452, + [1884] = 483, + [1885] = 1885, + [1886] = 359, [1887] = 580, - [1888] = 603, - [1889] = 610, - [1890] = 614, - [1891] = 764, - [1892] = 421, - [1893] = 895, - [1894] = 622, - [1895] = 665, - [1896] = 468, - [1897] = 467, - [1898] = 923, - [1899] = 618, - [1900] = 629, - [1901] = 766, - [1902] = 659, - [1903] = 635, - [1904] = 643, - [1905] = 668, - [1906] = 807, - [1907] = 672, - [1908] = 677, - [1909] = 673, - [1910] = 244, - [1911] = 698, - [1912] = 543, - [1913] = 545, - [1914] = 695, - [1915] = 696, - [1916] = 525, - [1917] = 506, - [1918] = 421, - [1919] = 757, - [1920] = 969, - [1921] = 468, - [1922] = 467, - [1923] = 868, - [1924] = 558, - [1925] = 774, - [1926] = 700, - [1927] = 542, - [1928] = 541, - [1929] = 701, - [1930] = 539, - [1931] = 560, - [1932] = 703, - [1933] = 867, - [1934] = 533, - [1935] = 775, - [1936] = 597, - [1937] = 777, - [1938] = 782, - [1939] = 697, - [1940] = 728, - [1941] = 891, - [1942] = 962, - [1943] = 380, - [1944] = 793, - [1945] = 794, - [1946] = 381, - [1947] = 892, - [1948] = 893, - [1949] = 405, - [1950] = 1950, - [1951] = 1951, - [1952] = 437, - [1953] = 980, - [1954] = 229, - [1955] = 1955, - [1956] = 437, - [1957] = 417, - [1958] = 405, - [1959] = 229, - [1960] = 417, - [1961] = 229, - [1962] = 764, - [1963] = 803, - [1964] = 468, - [1965] = 467, - [1966] = 439, - [1967] = 501, - [1968] = 467, - [1969] = 468, - [1970] = 597, - [1971] = 896, - [1972] = 896, - [1973] = 895, - [1974] = 533, - [1975] = 560, - [1976] = 539, - [1977] = 646, - [1978] = 895, - [1979] = 541, - [1980] = 542, - [1981] = 558, - [1982] = 545, - [1983] = 543, - [1984] = 665, - [1985] = 923, - [1986] = 501, - [1987] = 675, - [1988] = 684, - [1989] = 688, - [1990] = 690, - [1991] = 699, - [1992] = 702, - [1993] = 710, - [1994] = 504, - [1995] = 896, - [1996] = 765, - [1997] = 697, - [1998] = 969, - [1999] = 728, - [2000] = 771, - [2001] = 772, - [2002] = 814, - [2003] = 891, - [2004] = 892, - [2005] = 893, - [2006] = 814, - [2007] = 962, - [2008] = 969, - [2009] = 823, - [2010] = 824, - [2011] = 807, - [2012] = 875, - [2013] = 766, - [2014] = 764, - [2015] = 758, - [2016] = 726, - [2017] = 723, - [2018] = 714, - [2019] = 2019, - [2020] = 439, - [2021] = 703, - [2022] = 701, - [2023] = 700, - [2024] = 698, - [2025] = 891, - [2026] = 893, - [2027] = 673, - [2028] = 824, - [2029] = 823, - [2030] = 439, - [2031] = 896, - [2032] = 541, - [2033] = 803, - [2034] = 467, - [2035] = 468, - [2036] = 2036, - [2037] = 766, - [2038] = 671, - [2039] = 761, - [2040] = 758, - [2041] = 772, - [2042] = 771, - [2043] = 765, - [2044] = 761, - [2045] = 504, - [2046] = 659, - [2047] = 868, - [2048] = 629, - [2049] = 629, - [2050] = 923, - [2051] = 622, - [2052] = 710, - [2053] = 702, - [2054] = 697, - [2055] = 728, - [2056] = 597, - [2057] = 586, - [2058] = 794, - [2059] = 793, - [2060] = 892, - [2061] = 699, - [2062] = 690, - [2063] = 688, - [2064] = 684, - [2065] = 675, - [2066] = 782, - [2067] = 962, - [2068] = 665, - [2069] = 485, - [2070] = 483, - [2071] = 505, - [2072] = 777, - [2073] = 485, - [2074] = 483, - [2075] = 775, - [2076] = 465, - [2077] = 448, - [2078] = 543, - [2079] = 545, - [2080] = 807, - [2081] = 881, - [2082] = 499, - [2083] = 558, - [2084] = 579, - [2085] = 449, - [2086] = 580, - [2087] = 542, - [2088] = 867, - [2089] = 896, - [2090] = 499, - [2091] = 614, - [2092] = 726, - [2093] = 723, - [2094] = 714, - [2095] = 615, - [2096] = 618, - [2097] = 635, - [2098] = 703, - [2099] = 701, - [2100] = 700, - [2101] = 698, - [2102] = 643, - [2103] = 453, - [2104] = 539, - [2105] = 454, - [2106] = 673, - [2107] = 671, - [2108] = 560, - [2109] = 457, - [2110] = 757, - [2111] = 476, - [2112] = 477, - [2113] = 478, - [2114] = 622, - [2115] = 695, - [2116] = 696, - [2117] = 586, - [2118] = 881, - [2119] = 875, - [2120] = 868, - [2121] = 867, - [2122] = 794, - [2123] = 481, - [2124] = 793, - [2125] = 782, - [2126] = 777, - [2127] = 775, - [2128] = 505, - [2129] = 659, - [2130] = 468, - [2131] = 467, - [2132] = 501, - [2133] = 774, - [2134] = 757, - [2135] = 533, - [2136] = 677, - [2137] = 465, - [2138] = 448, - [2139] = 449, - [2140] = 453, - [2141] = 454, - [2142] = 457, - [2143] = 696, - [2144] = 695, - [2145] = 677, - [2146] = 774, - [2147] = 672, - [2148] = 476, - [2149] = 477, - [2150] = 478, - [2151] = 668, - [2152] = 646, - [2153] = 481, - [2154] = 643, - [2155] = 635, - [2156] = 672, - [2157] = 618, - [2158] = 615, - [2159] = 614, - [2160] = 570, - [2161] = 571, - [2162] = 668, - [2163] = 570, - [2164] = 610, - [2165] = 603, - [2166] = 603, - [2167] = 610, - [2168] = 580, + [1888] = 844, + [1889] = 398, + [1890] = 652, + [1891] = 354, + [1892] = 939, + [1893] = 876, + [1894] = 664, + [1895] = 682, + [1896] = 716, + [1897] = 717, + [1898] = 738, + [1899] = 743, + [1900] = 292, + [1901] = 746, + [1902] = 748, + [1903] = 776, + [1904] = 789, + [1905] = 794, + [1906] = 359, + [1907] = 863, + [1908] = 865, + [1909] = 872, + [1910] = 907, + [1911] = 459, + [1912] = 915, + [1913] = 966, + [1914] = 392, + [1915] = 880, + [1916] = 834, + [1917] = 298, + [1918] = 287, + [1919] = 549, + [1920] = 505, + [1921] = 526, + [1922] = 573, + [1923] = 620, + [1924] = 628, + [1925] = 653, + [1926] = 513, + [1927] = 511, + [1928] = 811, + [1929] = 654, + [1930] = 814, + [1931] = 819, + [1932] = 831, + [1933] = 832, + [1934] = 833, + [1935] = 838, + [1936] = 839, + [1937] = 508, + [1938] = 846, + [1939] = 818, + [1940] = 453, + [1941] = 926, + [1942] = 927, + [1943] = 928, + [1944] = 929, + [1945] = 883, + [1946] = 954, + [1947] = 938, + [1948] = 448, + [1949] = 395, + [1950] = 395, + [1951] = 984, + [1952] = 292, + [1953] = 292, + [1954] = 1954, + [1955] = 413, + [1956] = 421, + [1957] = 1957, + [1958] = 1958, + [1959] = 292, + [1960] = 413, + [1961] = 421, + [1962] = 929, + [1963] = 682, + [1964] = 703, + [1965] = 623, + [1966] = 622, + [1967] = 618, + [1968] = 611, + [1969] = 588, + [1970] = 587, + [1971] = 579, + [1972] = 782, + [1973] = 643, + [1974] = 578, + [1975] = 507, + [1976] = 489, + [1977] = 486, + [1978] = 485, + [1979] = 484, + [1980] = 465, + [1981] = 462, + [1982] = 461, + [1983] = 455, + [1984] = 454, + [1985] = 451, + [1986] = 470, + [1987] = 452, + [1988] = 505, + [1989] = 651, + [1990] = 654, + [1991] = 676, + [1992] = 483, + [1993] = 580, + [1994] = 482, + [1995] = 652, + [1996] = 680, + [1997] = 664, + [1998] = 704, + [1999] = 682, + [2000] = 716, + [2001] = 717, + [2002] = 738, + [2003] = 703, + [2004] = 746, + [2005] = 526, + [2006] = 748, + [2007] = 573, + [2008] = 818, + [2009] = 651, + [2010] = 776, + [2011] = 789, + [2012] = 794, + [2013] = 643, + [2014] = 626, + [2015] = 863, + [2016] = 865, + [2017] = 872, + [2018] = 907, + [2019] = 685, + [2020] = 623, + [2021] = 622, + [2022] = 620, + [2023] = 628, + [2024] = 820, + [2025] = 588, + [2026] = 459, + [2027] = 915, + [2028] = 966, + [2029] = 587, + [2030] = 880, + [2031] = 834, + [2032] = 653, + [2033] = 926, + [2034] = 889, + [2035] = 507, + [2036] = 513, + [2037] = 765, + [2038] = 839, + [2039] = 511, + [2040] = 2040, + [2041] = 846, + [2042] = 521, + [2043] = 523, + [2044] = 875, + [2045] = 939, + [2046] = 2046, + [2047] = 593, + [2048] = 593, + [2049] = 593, + [2050] = 470, + [2051] = 452, + [2052] = 425, + [2053] = 508, + [2054] = 883, + [2055] = 704, + [2056] = 523, + [2057] = 765, + [2058] = 521, + [2059] = 814, + [2060] = 782, + [2061] = 819, + [2062] = 834, + [2063] = 880, + [2064] = 831, + [2065] = 832, + [2066] = 833, + [2067] = 838, + [2068] = 915, + [2069] = 839, + [2070] = 783, + [2071] = 785, + [2072] = 790, + [2073] = 801, + [2074] = 523, + [2075] = 820, + [2076] = 846, + [2077] = 939, + [2078] = 664, + [2079] = 521, + [2080] = 802, + [2081] = 927, + [2082] = 818, + [2083] = 926, + [2084] = 927, + [2085] = 875, + [2086] = 928, + [2087] = 876, + [2088] = 907, + [2089] = 863, + [2090] = 865, + [2091] = 872, + [2092] = 685, + [2093] = 954, + [2094] = 938, + [2095] = 482, + [2096] = 838, + [2097] = 889, + [2098] = 783, + [2099] = 785, + [2100] = 794, + [2101] = 789, + [2102] = 776, + [2103] = 593, + [2104] = 425, + [2105] = 928, + [2106] = 748, + [2107] = 746, + [2108] = 743, + [2109] = 738, + [2110] = 448, + [2111] = 453, + [2112] = 790, + [2113] = 680, + [2114] = 717, + [2115] = 716, + [2116] = 801, + [2117] = 459, + [2118] = 966, + [2119] = 676, + [2120] = 929, + [2121] = 833, + [2122] = 652, + [2123] = 802, + [2124] = 549, + [2125] = 580, + [2126] = 876, + [2127] = 743, + [2128] = 883, + [2129] = 832, + [2130] = 593, + [2131] = 523, + [2132] = 521, + [2133] = 811, + [2134] = 453, + [2135] = 425, + [2136] = 483, + [2137] = 831, + [2138] = 819, + [2139] = 814, + [2140] = 482, + [2141] = 618, + [2142] = 549, + [2143] = 508, + [2144] = 611, + [2145] = 451, + [2146] = 454, + [2147] = 455, + [2148] = 461, + [2149] = 462, + [2150] = 465, + [2151] = 511, + [2152] = 505, + [2153] = 526, + [2154] = 626, + [2155] = 573, + [2156] = 484, + [2157] = 485, + [2158] = 486, + [2159] = 654, + [2160] = 448, + [2161] = 489, + [2162] = 811, + [2163] = 938, + [2164] = 620, + [2165] = 954, + [2166] = 628, + [2167] = 653, + [2168] = 578, [2169] = 579, - [2170] = 571, - [2171] = 708, - [2172] = 548, - [2173] = 547, - [2174] = 525, - [2175] = 506, - [2176] = 273, - [2177] = 277, - [2178] = 2178, - [2179] = 227, - [2180] = 381, + [2170] = 513, + [2171] = 844, + [2172] = 497, + [2173] = 502, + [2174] = 645, + [2175] = 649, + [2176] = 275, + [2177] = 237, + [2178] = 280, + [2179] = 2179, + [2180] = 359, [2181] = 2181, - [2182] = 380, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 421, - [2187] = 393, - [2188] = 417, - [2189] = 393, - [2190] = 896, - [2191] = 393, - [2192] = 421, + [2182] = 354, + [2183] = 398, + [2184] = 593, + [2185] = 392, + [2186] = 2186, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 421, + [2191] = 392, + [2192] = 392, [2193] = 2193, - [2194] = 421, - [2195] = 437, + [2194] = 398, + [2195] = 395, [2196] = 2196, - [2197] = 2197, + [2197] = 413, [2198] = 2198, [2199] = 2199, - [2200] = 2200, - [2201] = 405, - [2202] = 217, - [2203] = 643, - [2204] = 646, - [2205] = 728, - [2206] = 586, - [2207] = 807, - [2208] = 2208, - [2209] = 690, - [2210] = 697, - [2211] = 2211, - [2212] = 673, - [2213] = 547, - [2214] = 548, - [2215] = 597, - [2216] = 506, - [2217] = 708, - [2218] = 969, - [2219] = 505, - [2220] = 824, - [2221] = 823, - [2222] = 714, - [2223] = 2223, - [2224] = 814, - [2225] = 671, - [2226] = 659, - [2227] = 803, - [2228] = 881, - [2229] = 875, - [2230] = 868, - [2231] = 867, - [2232] = 794, - [2233] = 962, - [2234] = 793, - [2235] = 782, - [2236] = 777, - [2237] = 772, - [2238] = 771, - [2239] = 765, - [2240] = 761, - [2241] = 775, - [2242] = 774, - [2243] = 757, - [2244] = 696, - [2245] = 695, - [2246] = 677, - [2247] = 672, - [2248] = 668, - [2249] = 485, - [2250] = 629, - [2251] = 453, - [2252] = 635, - [2253] = 483, - [2254] = 465, - [2255] = 504, - [2256] = 448, - [2257] = 449, - [2258] = 723, - [2259] = 467, - [2260] = 700, - [2261] = 710, - [2262] = 618, - [2263] = 701, - [2264] = 702, - [2265] = 533, - [2266] = 614, - [2267] = 279, - [2268] = 684, - [2269] = 703, - [2270] = 675, - [2271] = 699, - [2272] = 665, - [2273] = 615, - [2274] = 468, - [2275] = 610, - [2276] = 766, - [2277] = 603, - [2278] = 895, - [2279] = 580, - [2280] = 2280, - [2281] = 579, - [2282] = 893, - [2283] = 571, - [2284] = 923, - [2285] = 891, - [2286] = 622, - [2287] = 688, - [2288] = 570, - [2289] = 764, - [2290] = 499, - [2291] = 481, - [2292] = 454, - [2293] = 560, - [2294] = 2294, - [2295] = 276, - [2296] = 244, - [2297] = 478, - [2298] = 457, - [2299] = 477, - [2300] = 543, - [2301] = 545, - [2302] = 758, - [2303] = 558, - [2304] = 476, - [2305] = 539, - [2306] = 896, - [2307] = 698, - [2308] = 892, - [2309] = 726, - [2310] = 542, - [2311] = 222, - [2312] = 541, - [2313] = 258, - [2314] = 253, - [2315] = 264, - [2316] = 525, - [2317] = 421, - [2318] = 276, - [2319] = 439, - [2320] = 258, - [2321] = 277, - [2322] = 244, - [2323] = 217, - [2324] = 1155, - [2325] = 253, - [2326] = 227, - [2327] = 273, - [2328] = 264, - [2329] = 222, - [2330] = 1159, - [2331] = 501, - [2332] = 2332, - [2333] = 279, - [2334] = 393, - [2335] = 2335, - [2336] = 381, - [2337] = 2337, - [2338] = 380, - [2339] = 501, - [2340] = 277, - [2341] = 439, - [2342] = 437, - [2343] = 979, - [2344] = 405, - [2345] = 417, - [2346] = 227, - [2347] = 273, - [2348] = 764, - [2349] = 622, - [2350] = 541, - [2351] = 244, - [2352] = 2352, - [2353] = 761, - [2354] = 2352, - [2355] = 2352, - [2356] = 2352, - [2357] = 765, - [2358] = 771, - [2359] = 614, - [2360] = 217, - [2361] = 558, - [2362] = 393, - [2363] = 597, - [2364] = 772, - [2365] = 229, - [2366] = 881, - [2367] = 875, - [2368] = 2352, - [2369] = 868, - [2370] = 504, - [2371] = 867, - [2372] = 545, - [2373] = 2352, - [2374] = 697, - [2375] = 728, - [2376] = 2352, - [2377] = 891, - [2378] = 892, - [2379] = 803, - [2380] = 893, - [2381] = 895, - [2382] = 962, - [2383] = 794, - [2384] = 793, - [2385] = 923, - [2386] = 782, - [2387] = 777, - [2388] = 775, - [2389] = 774, - [2390] = 757, - [2391] = 696, - [2392] = 896, - [2393] = 542, - [2394] = 710, - [2395] = 807, - [2396] = 421, - [2397] = 991, - [2398] = 766, - [2399] = 695, - [2400] = 468, - [2401] = 758, - [2402] = 279, - [2403] = 726, - [2404] = 276, - [2405] = 264, - [2406] = 253, - [2407] = 723, - [2408] = 258, - [2409] = 222, - [2410] = 814, - [2411] = 714, - [2412] = 2352, - [2413] = 467, - [2414] = 533, - [2415] = 677, - [2416] = 539, - [2417] = 672, - [2418] = 703, - [2419] = 701, - [2420] = 668, - [2421] = 700, - [2422] = 698, - [2423] = 2352, - [2424] = 543, - [2425] = 646, - [2426] = 643, - [2427] = 635, - [2428] = 618, - [2429] = 615, - [2430] = 603, - [2431] = 610, - [2432] = 580, - [2433] = 579, - [2434] = 571, - [2435] = 2352, - [2436] = 673, - [2437] = 671, - [2438] = 570, - [2439] = 499, - [2440] = 217, - [2441] = 969, - [2442] = 244, - [2443] = 481, - [2444] = 659, - [2445] = 478, - [2446] = 477, - [2447] = 476, - [2448] = 457, - [2449] = 454, - [2450] = 2352, - [2451] = 453, - [2452] = 2352, - [2453] = 449, - [2454] = 448, - [2455] = 465, - [2456] = 665, - [2457] = 675, - [2458] = 483, - [2459] = 684, - [2460] = 485, - [2461] = 381, - [2462] = 380, - [2463] = 980, - [2464] = 2352, - [2465] = 688, - [2466] = 560, - [2467] = 824, - [2468] = 505, - [2469] = 823, - [2470] = 690, - [2471] = 279, - [2472] = 276, - [2473] = 264, - [2474] = 253, - [2475] = 699, - [2476] = 702, - [2477] = 586, - [2478] = 222, - [2479] = 258, - [2480] = 629, - [2481] = 227, - [2482] = 405, - [2483] = 222, - [2484] = 258, - [2485] = 253, - [2486] = 264, - [2487] = 276, - [2488] = 279, - [2489] = 896, - [2490] = 1007, - [2491] = 994, - [2492] = 997, - [2493] = 417, - [2494] = 973, - [2495] = 439, - [2496] = 71, - [2497] = 69, - [2498] = 68, - [2499] = 244, - [2500] = 217, - [2501] = 501, - [2502] = 896, - [2503] = 222, - [2504] = 258, - [2505] = 253, - [2506] = 264, - [2507] = 276, - [2508] = 279, - [2509] = 273, - [2510] = 439, - [2511] = 437, - [2512] = 896, - [2513] = 277, - [2514] = 501, - [2515] = 1000, - [2516] = 217, - [2517] = 244, - [2518] = 757, - [2519] = 393, - [2520] = 635, - [2521] = 380, - [2522] = 643, - [2523] = 539, - [2524] = 668, - [2525] = 483, - [2526] = 485, - [2527] = 672, - [2528] = 560, - [2529] = 505, - [2530] = 677, - [2531] = 695, - [2532] = 696, - [2533] = 533, - [2534] = 665, - [2535] = 675, - [2536] = 558, - [2537] = 381, - [2538] = 969, - [2539] = 774, - [2540] = 775, - [2541] = 684, - [2542] = 688, - [2543] = 690, - [2544] = 244, - [2545] = 545, - [2546] = 777, - [2547] = 699, - [2548] = 702, - [2549] = 222, - [2550] = 586, - [2551] = 710, - [2552] = 622, - [2553] = 258, - [2554] = 923, - [2555] = 629, - [2556] = 253, - [2557] = 264, - [2558] = 659, - [2559] = 504, - [2560] = 671, - [2561] = 673, - [2562] = 276, - [2563] = 698, - [2564] = 700, - [2565] = 701, - [2566] = 793, - [2567] = 703, - [2568] = 714, - [2569] = 723, - [2570] = 794, - [2571] = 726, - [2572] = 279, - [2573] = 761, - [2574] = 543, - [2575] = 597, - [2576] = 481, - [2577] = 244, - [2578] = 217, - [2579] = 765, - [2580] = 868, - [2581] = 772, - [2582] = 771, - [2583] = 875, - [2584] = 758, - [2585] = 881, - [2586] = 501, - [2587] = 896, - [2588] = 764, - [2589] = 766, - [2590] = 580, - [2591] = 579, - [2592] = 468, - [2593] = 807, - [2594] = 499, - [2595] = 867, - [2596] = 803, - [2597] = 467, - [2598] = 222, - [2599] = 478, - [2600] = 477, - [2601] = 258, - [2602] = 421, - [2603] = 814, - [2604] = 980, - [2605] = 962, - [2606] = 618, - [2607] = 823, - [2608] = 824, - [2609] = 893, - [2610] = 892, - [2611] = 891, - [2612] = 253, - [2613] = 465, - [2614] = 448, - [2615] = 449, - [2616] = 453, - [2617] = 217, - [2618] = 476, - [2619] = 244, - [2620] = 728, - [2621] = 697, - [2622] = 454, - [2623] = 571, - [2624] = 615, - [2625] = 2625, - [2626] = 614, - [2627] = 646, - [2628] = 570, - [2629] = 264, - [2630] = 457, - [2631] = 217, - [2632] = 979, - [2633] = 276, - [2634] = 979, - [2635] = 279, - [2636] = 467, - [2637] = 468, - [2638] = 782, - [2639] = 279, - [2640] = 276, - [2641] = 264, - [2642] = 253, - [2643] = 258, - [2644] = 222, - [2645] = 610, - [2646] = 439, - [2647] = 895, - [2648] = 541, - [2649] = 603, - [2650] = 542, - [2651] = 468, - [2652] = 467, - [2653] = 2653, + [2200] = 398, + [2201] = 2201, + [2202] = 685, + [2203] = 832, + [2204] = 485, + [2205] = 484, + [2206] = 465, + [2207] = 287, + [2208] = 549, + [2209] = 2209, + [2210] = 462, + [2211] = 461, + [2212] = 455, + [2213] = 255, + [2214] = 454, + [2215] = 451, + [2216] = 470, + [2217] = 452, + [2218] = 453, + [2219] = 448, + [2220] = 254, + [2221] = 790, + [2222] = 489, + [2223] = 483, + [2224] = 580, + [2225] = 652, + [2226] = 938, + [2227] = 939, + [2228] = 664, + [2229] = 507, + [2230] = 682, + [2231] = 954, + [2232] = 716, + [2233] = 717, + [2234] = 298, + [2235] = 738, + [2236] = 743, + [2237] = 746, + [2238] = 748, + [2239] = 578, + [2240] = 579, + [2241] = 587, + [2242] = 929, + [2243] = 928, + [2244] = 927, + [2245] = 926, + [2246] = 588, + [2247] = 611, + [2248] = 618, + [2249] = 251, + [2250] = 250, + [2251] = 244, + [2252] = 622, + [2253] = 2253, + [2254] = 623, + [2255] = 626, + [2256] = 776, + [2257] = 789, + [2258] = 794, + [2259] = 863, + [2260] = 643, + [2261] = 651, + [2262] = 818, + [2263] = 676, + [2264] = 865, + [2265] = 872, + [2266] = 680, + [2267] = 703, + [2268] = 704, + [2269] = 846, + [2270] = 765, + [2271] = 782, + [2272] = 839, + [2273] = 838, + [2274] = 833, + [2275] = 486, + [2276] = 831, + [2277] = 783, + [2278] = 819, + [2279] = 907, + [2280] = 814, + [2281] = 291, + [2282] = 844, + [2283] = 505, + [2284] = 785, + [2285] = 654, + [2286] = 820, + [2287] = 2287, + [2288] = 801, + [2289] = 649, + [2290] = 2290, + [2291] = 645, + [2292] = 802, + [2293] = 526, + [2294] = 502, + [2295] = 497, + [2296] = 593, + [2297] = 508, + [2298] = 459, + [2299] = 915, + [2300] = 966, + [2301] = 880, + [2302] = 875, + [2303] = 2303, + [2304] = 876, + [2305] = 834, + [2306] = 573, + [2307] = 521, + [2308] = 511, + [2309] = 513, + [2310] = 523, + [2311] = 653, + [2312] = 883, + [2313] = 889, + [2314] = 620, + [2315] = 628, + [2316] = 811, + [2317] = 298, + [2318] = 1153, + [2319] = 482, + [2320] = 255, + [2321] = 254, + [2322] = 2322, + [2323] = 398, + [2324] = 1150, + [2325] = 425, + [2326] = 291, + [2327] = 237, + [2328] = 244, + [2329] = 2329, + [2330] = 392, + [2331] = 280, + [2332] = 275, + [2333] = 250, + [2334] = 251, + [2335] = 287, + [2336] = 354, + [2337] = 359, + [2338] = 2338, + [2339] = 421, + [2340] = 413, + [2341] = 280, + [2342] = 482, + [2343] = 395, + [2344] = 979, + [2345] = 425, + [2346] = 275, + [2347] = 237, + [2348] = 651, + [2349] = 819, + [2350] = 653, + [2351] = 834, + [2352] = 680, + [2353] = 907, + [2354] = 872, + [2355] = 865, + [2356] = 676, + [2357] = 298, + [2358] = 298, + [2359] = 863, + [2360] = 794, + [2361] = 789, + [2362] = 776, + [2363] = 748, + [2364] = 820, + [2365] = 508, + [2366] = 746, + [2367] = 743, + [2368] = 287, + [2369] = 459, + [2370] = 915, + [2371] = 738, + [2372] = 966, + [2373] = 654, + [2374] = 880, + [2375] = 2375, + [2376] = 291, + [2377] = 287, + [2378] = 717, + [2379] = 716, + [2380] = 682, + [2381] = 505, + [2382] = 643, + [2383] = 626, + [2384] = 628, + [2385] = 664, + [2386] = 453, + [2387] = 448, + [2388] = 250, + [2389] = 526, + [2390] = 623, + [2391] = 2375, + [2392] = 652, + [2393] = 580, + [2394] = 620, + [2395] = 2375, + [2396] = 622, + [2397] = 846, + [2398] = 483, + [2399] = 251, + [2400] = 685, + [2401] = 452, + [2402] = 521, + [2403] = 523, + [2404] = 618, + [2405] = 513, + [2406] = 470, + [2407] = 451, + [2408] = 611, + [2409] = 454, + [2410] = 981, + [2411] = 2375, + [2412] = 455, + [2413] = 461, + [2414] = 462, + [2415] = 939, + [2416] = 703, + [2417] = 2375, + [2418] = 2375, + [2419] = 511, + [2420] = 811, + [2421] = 938, + [2422] = 704, + [2423] = 2375, + [2424] = 392, + [2425] = 984, + [2426] = 765, + [2427] = 2375, + [2428] = 465, + [2429] = 2375, + [2430] = 254, + [2431] = 398, + [2432] = 814, + [2433] = 573, + [2434] = 244, + [2435] = 883, + [2436] = 588, + [2437] = 831, + [2438] = 832, + [2439] = 833, + [2440] = 485, + [2441] = 2375, + [2442] = 579, + [2443] = 292, + [2444] = 954, + [2445] = 889, + [2446] = 587, + [2447] = 782, + [2448] = 876, + [2449] = 875, + [2450] = 838, + [2451] = 839, + [2452] = 2375, + [2453] = 484, + [2454] = 578, + [2455] = 2375, + [2456] = 593, + [2457] = 802, + [2458] = 801, + [2459] = 549, + [2460] = 790, + [2461] = 486, + [2462] = 785, + [2463] = 255, + [2464] = 783, + [2465] = 359, + [2466] = 354, + [2467] = 254, + [2468] = 251, + [2469] = 929, + [2470] = 250, + [2471] = 928, + [2472] = 927, + [2473] = 926, + [2474] = 244, + [2475] = 507, + [2476] = 489, + [2477] = 2375, + [2478] = 291, + [2479] = 255, + [2480] = 818, + [2481] = 413, + [2482] = 482, + [2483] = 593, + [2484] = 67, + [2485] = 70, + [2486] = 69, + [2487] = 395, + [2488] = 237, + [2489] = 593, + [2490] = 421, + [2491] = 425, + [2492] = 255, + [2493] = 254, + [2494] = 251, + [2495] = 250, + [2496] = 244, + [2497] = 973, + [2498] = 291, + [2499] = 298, + [2500] = 275, + [2501] = 482, + [2502] = 425, + [2503] = 287, + [2504] = 298, + [2505] = 593, + [2506] = 287, + [2507] = 996, + [2508] = 999, + [2509] = 1000, + [2510] = 255, + [2511] = 1005, + [2512] = 254, + [2513] = 251, + [2514] = 250, + [2515] = 244, + [2516] = 291, + [2517] = 280, + [2518] = 255, + [2519] = 794, + [2520] = 521, + [2521] = 664, + [2522] = 465, + [2523] = 392, + [2524] = 462, + [2525] = 461, + [2526] = 521, + [2527] = 523, + [2528] = 802, + [2529] = 455, + [2530] = 454, + [2531] = 593, + [2532] = 451, + [2533] = 470, + [2534] = 738, + [2535] = 452, + [2536] = 549, + [2537] = 484, + [2538] = 485, + [2539] = 486, + [2540] = 287, + [2541] = 2541, + [2542] = 298, + [2543] = 818, + [2544] = 523, + [2545] = 489, + [2546] = 511, + [2547] = 513, + [2548] = 939, + [2549] = 653, + [2550] = 682, + [2551] = 875, + [2552] = 776, + [2553] = 876, + [2554] = 483, + [2555] = 979, + [2556] = 716, + [2557] = 814, + [2558] = 979, + [2559] = 883, + [2560] = 717, + [2561] = 354, + [2562] = 889, + [2563] = 819, + [2564] = 578, + [2565] = 579, + [2566] = 831, + [2567] = 832, + [2568] = 359, + [2569] = 833, + [2570] = 743, + [2571] = 783, + [2572] = 587, + [2573] = 291, + [2574] = 927, + [2575] = 785, + [2576] = 244, + [2577] = 838, + [2578] = 801, + [2579] = 790, + [2580] = 588, + [2581] = 928, + [2582] = 628, + [2583] = 611, + [2584] = 620, + [2585] = 618, + [2586] = 622, + [2587] = 287, + [2588] = 811, + [2589] = 652, + [2590] = 254, + [2591] = 846, + [2592] = 251, + [2593] = 623, + [2594] = 929, + [2595] = 863, + [2596] = 626, + [2597] = 839, + [2598] = 643, + [2599] = 865, + [2600] = 255, + [2601] = 654, + [2602] = 872, + [2603] = 453, + [2604] = 984, + [2605] = 651, + [2606] = 250, + [2607] = 482, + [2608] = 748, + [2609] = 508, + [2610] = 573, + [2611] = 746, + [2612] = 676, + [2613] = 954, + [2614] = 244, + [2615] = 507, + [2616] = 254, + [2617] = 580, + [2618] = 291, + [2619] = 250, + [2620] = 251, + [2621] = 680, + [2622] = 254, + [2623] = 255, + [2624] = 526, + [2625] = 251, + [2626] = 765, + [2627] = 250, + [2628] = 685, + [2629] = 907, + [2630] = 789, + [2631] = 287, + [2632] = 703, + [2633] = 244, + [2634] = 782, + [2635] = 834, + [2636] = 880, + [2637] = 966, + [2638] = 915, + [2639] = 459, + [2640] = 704, + [2641] = 298, + [2642] = 425, + [2643] = 505, + [2644] = 298, + [2645] = 938, + [2646] = 820, + [2647] = 448, + [2648] = 398, + [2649] = 926, + [2650] = 291, + [2651] = 2651, + [2652] = 2651, + [2653] = 482, [2654] = 2654, - [2655] = 2654, - [2656] = 2654, - [2657] = 229, - [2658] = 2653, - [2659] = 417, - [2660] = 2653, - [2661] = 2661, - [2662] = 2654, - [2663] = 2663, - [2664] = 896, - [2665] = 2665, - [2666] = 2654, - [2667] = 439, - [2668] = 2653, + [2655] = 421, + [2656] = 2651, + [2657] = 523, + [2658] = 521, + [2659] = 2654, + [2660] = 2654, + [2661] = 2654, + [2662] = 2651, + [2663] = 2651, + [2664] = 292, + [2665] = 2651, + [2666] = 2651, + [2667] = 292, + [2668] = 2654, [2669] = 2654, - [2670] = 501, - [2671] = 2654, - [2672] = 229, - [2673] = 2653, - [2674] = 2653, - [2675] = 2653, + [2670] = 984, + [2671] = 2651, + [2672] = 2654, + [2673] = 425, + [2674] = 2674, + [2675] = 593, [2676] = 2654, [2677] = 2654, - [2678] = 2653, - [2679] = 2653, - [2680] = 980, + [2678] = 2678, + [2679] = 292, + [2680] = 395, [2681] = 2654, - [2682] = 2654, - [2683] = 2653, - [2684] = 2653, - [2685] = 2685, - [2686] = 2653, + [2682] = 2651, + [2683] = 2683, + [2684] = 2684, + [2685] = 2654, + [2686] = 2686, [2687] = 2654, - [2688] = 2688, - [2689] = 229, - [2690] = 2653, - [2691] = 405, - [2692] = 437, - [2693] = 2693, - [2694] = 2693, - [2695] = 923, - [2696] = 2696, - [2697] = 2693, - [2698] = 393, + [2688] = 2651, + [2689] = 2651, + [2690] = 2651, + [2691] = 2654, + [2692] = 413, + [2693] = 834, + [2694] = 513, + [2695] = 2695, + [2696] = 664, + [2697] = 939, + [2698] = 298, [2699] = 2699, - [2700] = 2699, - [2701] = 2699, - [2702] = 2702, - [2703] = 2696, - [2704] = 2696, - [2705] = 501, - [2706] = 485, - [2707] = 483, - [2708] = 2702, - [2709] = 499, - [2710] = 2696, - [2711] = 2696, - [2712] = 579, - [2713] = 580, - [2714] = 2696, - [2715] = 2699, - [2716] = 614, - [2717] = 615, - [2718] = 618, - [2719] = 635, - [2720] = 643, - [2721] = 2702, - [2722] = 2696, - [2723] = 2723, - [2724] = 695, - [2725] = 696, - [2726] = 2702, - [2727] = 2702, - [2728] = 2699, - [2729] = 774, - [2730] = 775, - [2731] = 777, - [2732] = 782, - [2733] = 793, - [2734] = 794, - [2735] = 217, - [2736] = 868, - [2737] = 875, - [2738] = 2702, - [2739] = 244, - [2740] = 380, - [2741] = 381, - [2742] = 659, - [2743] = 824, - [2744] = 823, - [2745] = 969, - [2746] = 2696, - [2747] = 2693, - [2748] = 2699, - [2749] = 814, - [2750] = 2693, - [2751] = 2696, - [2752] = 2752, - [2753] = 439, - [2754] = 803, - [2755] = 2702, - [2756] = 2693, - [2757] = 772, - [2758] = 771, - [2759] = 765, - [2760] = 761, - [2761] = 504, - [2762] = 2762, - [2763] = 2702, - [2764] = 710, - [2765] = 2693, - [2766] = 702, - [2767] = 699, - [2768] = 690, - [2769] = 688, - [2770] = 684, - [2771] = 2693, - [2772] = 675, - [2773] = 2696, - [2774] = 665, - [2775] = 2775, - [2776] = 2699, - [2777] = 2702, - [2778] = 2778, - [2779] = 543, - [2780] = 545, - [2781] = 558, - [2782] = 2693, - [2783] = 279, - [2784] = 542, - [2785] = 541, - [2786] = 646, - [2787] = 539, - [2788] = 560, - [2789] = 2699, - [2790] = 2702, - [2791] = 533, - [2792] = 276, - [2793] = 2702, - [2794] = 597, - [2795] = 2693, - [2796] = 439, - [2797] = 758, - [2798] = 728, - [2799] = 2699, - [2800] = 264, - [2801] = 764, - [2802] = 766, - [2803] = 253, - [2804] = 892, - [2805] = 258, - [2806] = 439, - [2807] = 222, - [2808] = 2696, - [2809] = 895, - [2810] = 2693, - [2811] = 2696, + [2700] = 287, + [2701] = 482, + [2702] = 452, + [2703] = 470, + [2704] = 2699, + [2705] = 2695, + [2706] = 2706, + [2707] = 2707, + [2708] = 863, + [2709] = 865, + [2710] = 872, + [2711] = 2683, + [2712] = 2707, + [2713] = 507, + [2714] = 2706, + [2715] = 298, + [2716] = 459, + [2717] = 587, + [2718] = 588, + [2719] = 966, + [2720] = 889, + [2721] = 622, + [2722] = 623, + [2723] = 875, + [2724] = 626, + [2725] = 643, + [2726] = 651, + [2727] = 482, + [2728] = 765, + [2729] = 292, + [2730] = 287, + [2731] = 2699, + [2732] = 703, + [2733] = 704, + [2734] = 2707, + [2735] = 2706, + [2736] = 685, + [2737] = 782, + [2738] = 783, + [2739] = 785, + [2740] = 790, + [2741] = 801, + [2742] = 802, + [2743] = 680, + [2744] = 876, + [2745] = 883, + [2746] = 676, + [2747] = 392, + [2748] = 2695, + [2749] = 2695, + [2750] = 618, + [2751] = 453, + [2752] = 448, + [2753] = 811, + [2754] = 611, + [2755] = 2699, + [2756] = 2706, + [2757] = 938, + [2758] = 2758, + [2759] = 2699, + [2760] = 682, + [2761] = 2695, + [2762] = 954, + [2763] = 2695, + [2764] = 579, + [2765] = 929, + [2766] = 928, + [2767] = 927, + [2768] = 926, + [2769] = 818, + [2770] = 2707, + [2771] = 578, + [2772] = 846, + [2773] = 2707, + [2774] = 839, + [2775] = 838, + [2776] = 833, + [2777] = 832, + [2778] = 831, + [2779] = 489, + [2780] = 819, + [2781] = 2707, + [2782] = 814, + [2783] = 486, + [2784] = 255, + [2785] = 485, + [2786] = 484, + [2787] = 511, + [2788] = 2695, + [2789] = 653, + [2790] = 465, + [2791] = 462, + [2792] = 628, + [2793] = 620, + [2794] = 654, + [2795] = 573, + [2796] = 526, + [2797] = 461, + [2798] = 455, + [2799] = 505, + [2800] = 454, + [2801] = 451, + [2802] = 549, + [2803] = 2695, + [2804] = 425, + [2805] = 398, + [2806] = 2699, + [2807] = 254, + [2808] = 251, + [2809] = 482, + [2810] = 2707, + [2811] = 2706, [2812] = 2699, - [2813] = 893, - [2814] = 891, - [2815] = 962, + [2813] = 483, + [2814] = 425, + [2815] = 2699, [2816] = 2816, - [2817] = 807, - [2818] = 881, - [2819] = 2702, - [2820] = 2696, - [2821] = 2699, - [2822] = 867, - [2823] = 2823, - [2824] = 501, - [2825] = 726, - [2826] = 2699, - [2827] = 757, - [2828] = 723, - [2829] = 714, - [2830] = 677, - [2831] = 2693, - [2832] = 703, - [2833] = 2663, - [2834] = 672, - [2835] = 668, - [2836] = 701, - [2837] = 697, - [2838] = 610, - [2839] = 603, - [2840] = 2840, - [2841] = 217, - [2842] = 896, - [2843] = 501, - [2844] = 2702, - [2845] = 700, - [2846] = 2702, - [2847] = 698, - [2848] = 571, - [2849] = 570, - [2850] = 244, - [2851] = 673, - [2852] = 439, - [2853] = 671, - [2854] = 481, - [2855] = 478, - [2856] = 222, - [2857] = 258, - [2858] = 477, - [2859] = 896, - [2860] = 896, - [2861] = 629, - [2862] = 476, - [2863] = 2863, - [2864] = 253, - [2865] = 264, - [2866] = 1000, - [2867] = 276, - [2868] = 229, - [2869] = 279, - [2870] = 457, - [2871] = 454, - [2872] = 453, - [2873] = 449, - [2874] = 448, - [2875] = 465, - [2876] = 421, - [2877] = 501, - [2878] = 505, - [2879] = 2879, - [2880] = 622, - [2881] = 586, + [2817] = 2706, + [2818] = 250, + [2819] = 244, + [2820] = 2699, + [2821] = 425, + [2822] = 580, + [2823] = 652, + [2824] = 716, + [2825] = 291, + [2826] = 717, + [2827] = 2699, + [2828] = 2699, + [2829] = 2706, + [2830] = 2706, + [2831] = 2707, + [2832] = 2832, + [2833] = 738, + [2834] = 743, + [2835] = 746, + [2836] = 748, + [2837] = 2837, + [2838] = 776, + [2839] = 789, + [2840] = 794, + [2841] = 2841, + [2842] = 907, + [2843] = 2695, + [2844] = 820, + [2845] = 593, + [2846] = 482, + [2847] = 508, + [2848] = 915, + [2849] = 2695, + [2850] = 2850, + [2851] = 425, + [2852] = 880, + [2853] = 2706, + [2854] = 2695, + [2855] = 593, + [2856] = 593, + [2857] = 2857, + [2858] = 2706, + [2859] = 2695, + [2860] = 2699, + [2861] = 359, + [2862] = 354, + [2863] = 996, + [2864] = 2707, + [2865] = 2706, + [2866] = 255, + [2867] = 254, + [2868] = 2868, + [2869] = 2695, + [2870] = 2699, + [2871] = 2707, + [2872] = 2707, + [2873] = 2706, + [2874] = 2874, + [2875] = 251, + [2876] = 250, + [2877] = 244, + [2878] = 2695, + [2879] = 291, + [2880] = 2707, + [2881] = 2881, [2882] = 2882, - [2883] = 2882, - [2884] = 1951, - [2885] = 2882, - [2886] = 2882, - [2887] = 2887, - [2888] = 2882, - [2889] = 2882, - [2890] = 2882, - [2891] = 468, - [2892] = 467, - [2893] = 2882, - [2894] = 2882, - [2895] = 2882, - [2896] = 437, - [2897] = 405, - [2898] = 2887, + [2883] = 413, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, + [2887] = 2885, + [2888] = 2884, + [2889] = 2884, + [2890] = 421, + [2891] = 2884, + [2892] = 2884, + [2893] = 2884, + [2894] = 1958, + [2895] = 2885, + [2896] = 2885, + [2897] = 2884, + [2898] = 2884, [2899] = 2899, - [2900] = 1428, - [2901] = 2901, - [2902] = 2882, - [2903] = 2887, - [2904] = 2904, - [2905] = 2882, - [2906] = 2882, - [2907] = 2887, - [2908] = 2908, - [2909] = 2909, - [2910] = 777, - [2911] = 891, - [2912] = 68, - [2913] = 646, - [2914] = 695, - [2915] = 2178, - [2916] = 2916, - [2917] = 2916, - [2918] = 875, - [2919] = 2916, - [2920] = 868, - [2921] = 794, - [2922] = 793, - [2923] = 782, - [2924] = 2916, - [2925] = 775, - [2926] = 774, - [2927] = 71, - [2928] = 696, - [2929] = 2916, - [2930] = 2916, - [2931] = 69, - [2932] = 643, - [2933] = 635, - [2934] = 618, - [2935] = 2916, - [2936] = 71, - [2937] = 615, - [2938] = 614, - [2939] = 580, - [2940] = 2916, - [2941] = 579, - [2942] = 499, - [2943] = 68, - [2944] = 483, - [2945] = 485, - [2946] = 2916, - [2947] = 2916, - [2948] = 2916, - [2949] = 893, - [2950] = 659, - [2951] = 2951, - [2952] = 629, - [2953] = 923, - [2954] = 69, - [2955] = 2916, - [2956] = 766, - [2957] = 764, - [2958] = 2916, - [2959] = 758, - [2960] = 1427, - [2961] = 2961, - [2962] = 1433, + [2900] = 2900, + [2901] = 2884, + [2902] = 2902, + [2903] = 2884, + [2904] = 1429, + [2905] = 2884, + [2906] = 523, + [2907] = 2884, + [2908] = 2884, + [2909] = 521, + [2910] = 2910, + [2911] = 872, + [2912] = 67, + [2913] = 802, + [2914] = 876, + [2915] = 883, + [2916] = 654, + [2917] = 790, + [2918] = 2910, + [2919] = 70, + [2920] = 507, + [2921] = 452, + [2922] = 664, + [2923] = 785, + [2924] = 2910, + [2925] = 682, + [2926] = 783, + [2927] = 782, + [2928] = 2910, + [2929] = 2910, + [2930] = 2910, + [2931] = 865, + [2932] = 704, + [2933] = 459, + [2934] = 966, + [2935] = 801, + [2936] = 2910, + [2937] = 939, + [2938] = 703, + [2939] = 2910, + [2940] = 2910, + [2941] = 651, + [2942] = 2910, + [2943] = 643, + [2944] = 69, + [2945] = 863, + [2946] = 70, + [2947] = 67, + [2948] = 626, + [2949] = 2910, + [2950] = 2910, + [2951] = 69, + [2952] = 623, + [2953] = 2910, + [2954] = 622, + [2955] = 2179, + [2956] = 588, + [2957] = 587, + [2958] = 2958, + [2959] = 470, + [2960] = 1428, + [2961] = 1432, + [2962] = 2962, [2963] = 2963, - [2964] = 1433, - [2965] = 1437, - [2966] = 1427, - [2967] = 1433, - [2968] = 1437, - [2969] = 1437, - [2970] = 1433, - [2971] = 1427, - [2972] = 2963, - [2973] = 2963, - [2974] = 2961, - [2975] = 1437, - [2976] = 1433, - [2977] = 2963, - [2978] = 1427, - [2979] = 2961, - [2980] = 1427, - [2981] = 2961, - [2982] = 1427, - [2983] = 1433, - [2984] = 1437, - [2985] = 2961, - [2986] = 2963, - [2987] = 1437, - [2988] = 1433, - [2989] = 2961, - [2990] = 2963, - [2991] = 1437, - [2992] = 2961, - [2993] = 2993, - [2994] = 1437, - [2995] = 2963, - [2996] = 1433, - [2997] = 1427, - [2998] = 1437, - [2999] = 1427, - [3000] = 1437, - [3001] = 2961, - [3002] = 1437, - [3003] = 1433, - [3004] = 1427, - [3005] = 1437, - [3006] = 1427, - [3007] = 1433, - [3008] = 1433, - [3009] = 1437, - [3010] = 1437, - [3011] = 1433, - [3012] = 1433, - [3013] = 1433, - [3014] = 2961, - [3015] = 1427, - [3016] = 1427, - [3017] = 1427, - [3018] = 2963, - [3019] = 3019, - [3020] = 2963, - [3021] = 2961, - [3022] = 1427, + [2964] = 1428, + [2965] = 1439, + [2966] = 1432, + [2967] = 1428, + [2968] = 1439, + [2969] = 1428, + [2970] = 1428, + [2971] = 1432, + [2972] = 1432, + [2973] = 2962, + [2974] = 2963, + [2975] = 1439, + [2976] = 1439, + [2977] = 1432, + [2978] = 1432, + [2979] = 1428, + [2980] = 2963, + [2981] = 2962, + [2982] = 1439, + [2983] = 1432, + [2984] = 1439, + [2985] = 1439, + [2986] = 1428, + [2987] = 1439, + [2988] = 1432, + [2989] = 1439, + [2990] = 2962, + [2991] = 2963, + [2992] = 1432, + [2993] = 1428, + [2994] = 1432, + [2995] = 1428, + [2996] = 2962, + [2997] = 2963, + [2998] = 1428, + [2999] = 2962, + [3000] = 1432, + [3001] = 2963, + [3002] = 2962, + [3003] = 1439, + [3004] = 1439, + [3005] = 2963, + [3006] = 1439, + [3007] = 1432, + [3008] = 1428, + [3009] = 1432, + [3010] = 1428, + [3011] = 1428, + [3012] = 1432, + [3013] = 1439, + [3014] = 2963, + [3015] = 2962, + [3016] = 1439, + [3017] = 1428, + [3018] = 2962, + [3019] = 2963, + [3020] = 3020, + [3021] = 3021, + [3022] = 1439, [3023] = 2963, - [3024] = 1433, - [3025] = 1437, - [3026] = 1437, - [3027] = 2963, - [3028] = 1433, - [3029] = 1427, - [3030] = 2961, - [3031] = 2963, - [3032] = 1427, - [3033] = 2961, + [3024] = 1428, + [3025] = 1432, + [3026] = 1439, + [3027] = 2962, + [3028] = 2962, + [3029] = 2963, + [3030] = 1432, + [3031] = 1428, + [3032] = 2962, + [3033] = 2963, [3034] = 3034, [3035] = 3035, [3036] = 3035, [3037] = 3037, - [3038] = 3037, - [3039] = 3037, - [3040] = 1623, + [3038] = 3038, + [3039] = 3039, + [3040] = 3037, [3041] = 3037, [3042] = 3042, [3043] = 3037, - [3044] = 3044, + [3044] = 3042, [3045] = 3037, [3046] = 3046, - [3047] = 3046, - [3048] = 3046, - [3049] = 3046, - [3050] = 3037, - [3051] = 3037, - [3052] = 3046, - [3053] = 3037, - [3054] = 3046, - [3055] = 3046, + [3047] = 1622, + [3048] = 3037, + [3049] = 3042, + [3050] = 3050, + [3051] = 3042, + [3052] = 3052, + [3053] = 3042, + [3054] = 3042, + [3055] = 3042, [3056] = 3056, - [3057] = 3046, + [3057] = 3037, [3058] = 3037, - [3059] = 3046, - [3060] = 3060, - [3061] = 3061, + [3059] = 3037, + [3060] = 3042, + [3061] = 3042, [3062] = 3037, [3063] = 3037, - [3064] = 3046, - [3065] = 3037, - [3066] = 3046, - [3067] = 3067, - [3068] = 3068, + [3064] = 3042, + [3065] = 3065, + [3066] = 3042, + [3067] = 3037, + [3068] = 3042, [3069] = 3069, - [3070] = 3046, - [3071] = 3046, - [3072] = 3046, - [3073] = 3037, - [3074] = 3074, + [3070] = 3070, + [3071] = 3037, + [3072] = 3042, + [3073] = 3042, + [3074] = 3037, [3075] = 3075, [3076] = 3076, [3077] = 3077, [3078] = 3078, - [3079] = 3079, - [3080] = 3078, - [3081] = 3081, + [3079] = 3078, + [3080] = 3080, + [3081] = 3076, [3082] = 3082, - [3083] = 3079, - [3084] = 3078, + [3083] = 3078, + [3084] = 3084, [3085] = 3085, - [3086] = 3085, - [3087] = 3082, - [3088] = 3085, - [3089] = 3079, - [3090] = 3085, - [3091] = 3077, - [3092] = 3075, - [3093] = 3082, - [3094] = 3094, - [3095] = 3095, + [3086] = 3086, + [3087] = 3087, + [3088] = 3077, + [3089] = 3082, + [3090] = 3076, + [3091] = 3091, + [3092] = 3092, + [3093] = 3076, + [3094] = 3092, + [3095] = 3078, [3096] = 3096, [3097] = 3097, - [3098] = 3098, - [3099] = 3099, - [3100] = 3079, + [3098] = 3096, + [3099] = 3082, + [3100] = 3097, [3101] = 3101, - [3102] = 3096, - [3103] = 3095, - [3104] = 3094, - [3105] = 3095, - [3106] = 3094, + [3102] = 3075, + [3103] = 3101, + [3104] = 3104, + [3105] = 3080, + [3106] = 3075, [3107] = 3107, - [3108] = 3085, - [3109] = 3097, - [3110] = 3078, - [3111] = 3111, - [3112] = 3098, - [3113] = 3099, + [3108] = 3078, + [3109] = 3109, + [3110] = 3110, + [3111] = 3084, + [3112] = 3086, + [3113] = 3110, [3114] = 3097, - [3115] = 3077, - [3116] = 3099, - [3117] = 3096, - [3118] = 3111, - [3119] = 3101, - [3120] = 3075, - [3121] = 3075, - [3122] = 3101, - [3123] = 3085, - [3124] = 3124, - [3125] = 3082, - [3126] = 3099, - [3127] = 3095, - [3128] = 3096, - [3129] = 3098, - [3130] = 3107, - [3131] = 3111, - [3132] = 3111, - [3133] = 3081, - [3134] = 3081, - [3135] = 3075, - [3136] = 3097, - [3137] = 3137, - [3138] = 3111, - [3139] = 3085, - [3140] = 3098, - [3141] = 3101, - [3142] = 3075, - [3143] = 3081, - [3144] = 3107, - [3145] = 3081, - [3146] = 3101, + [3115] = 3096, + [3116] = 3084, + [3117] = 3109, + [3118] = 3107, + [3119] = 3086, + [3120] = 3084, + [3121] = 3076, + [3122] = 3087, + [3123] = 3077, + [3124] = 3082, + [3125] = 3084, + [3126] = 3086, + [3127] = 3127, + [3128] = 3084, + [3129] = 3086, + [3130] = 3086, + [3131] = 3084, + [3132] = 3086, + [3133] = 3110, + [3134] = 3104, + [3135] = 3109, + [3136] = 3107, + [3137] = 3078, + [3138] = 3104, + [3139] = 3101, + [3140] = 3075, + [3141] = 3075, + [3142] = 3104, + [3143] = 3084, + [3144] = 3086, + [3145] = 3097, + [3146] = 3096, [3147] = 3101, - [3148] = 3079, - [3149] = 3077, - [3150] = 3075, - [3151] = 3079, - [3152] = 3078, - [3153] = 3085, - [3154] = 3101, - [3155] = 3077, - [3156] = 3078, - [3157] = 3077, - [3158] = 3094, - [3159] = 3159, - [3160] = 3094, - [3161] = 3095, - [3162] = 3096, - [3163] = 3095, - [3164] = 3075, - [3165] = 3081, - [3166] = 3095, - [3167] = 3077, - [3168] = 3085, - [3169] = 3094, - [3170] = 3095, - [3171] = 3096, - [3172] = 3107, - [3173] = 3096, - [3174] = 3081, - [3175] = 3094, - [3176] = 3096, - [3177] = 3081, - [3178] = 3078, - [3179] = 3107, - [3180] = 3099, - [3181] = 3098, + [3148] = 3084, + [3149] = 3086, + [3150] = 3084, + [3151] = 3086, + [3152] = 3084, + [3153] = 3087, + [3154] = 3086, + [3155] = 3097, + [3156] = 3084, + [3157] = 3086, + [3158] = 3158, + [3159] = 3096, + [3160] = 3077, + [3161] = 3087, + [3162] = 3076, + [3163] = 3082, + [3164] = 3087, + [3165] = 3077, + [3166] = 3101, + [3167] = 3075, + [3168] = 3086, + [3169] = 3084, + [3170] = 3077, + [3171] = 3087, + [3172] = 3086, + [3173] = 3092, + [3174] = 3104, + [3175] = 3078, + [3176] = 3097, + [3177] = 3101, + [3178] = 3075, + [3179] = 3104, + [3180] = 3096, + [3181] = 3181, [3182] = 3097, - [3183] = 3111, - [3184] = 3111, - [3185] = 3107, - [3186] = 3085, - [3187] = 3082, - [3188] = 3082, - [3189] = 3079, - [3190] = 3094, - [3191] = 3079, - [3192] = 3079, - [3193] = 3193, - [3194] = 3082, - [3195] = 3195, - [3196] = 3078, - [3197] = 3095, - [3198] = 3077, - [3199] = 3096, - [3200] = 3078, - [3201] = 3075, - [3202] = 3101, - [3203] = 3107, - [3204] = 3082, - [3205] = 3094, - [3206] = 3206, - [3207] = 3097, - [3208] = 3085, - [3209] = 3082, - [3210] = 3098, - [3211] = 3099, - [3212] = 3095, + [3183] = 3096, + [3184] = 3092, + [3185] = 3076, + [3186] = 3084, + [3187] = 3086, + [3188] = 3084, + [3189] = 3082, + [3190] = 3082, + [3191] = 3086, + [3192] = 3076, + [3193] = 3077, + [3194] = 3084, + [3195] = 3076, + [3196] = 3092, + [3197] = 3077, + [3198] = 3082, + [3199] = 3087, + [3200] = 3087, + [3201] = 3078, + [3202] = 3092, + [3203] = 3092, + [3204] = 3104, + [3205] = 3101, + [3206] = 3084, + [3207] = 3075, + [3208] = 3086, + [3209] = 3101, + [3210] = 3087, + [3211] = 3075, + [3212] = 3104, [3213] = 3077, - [3214] = 3101, - [3215] = 3097, - [3216] = 3096, - [3217] = 3075, - [3218] = 3098, - [3219] = 3099, - [3220] = 3096, + [3214] = 3097, + [3215] = 3082, + [3216] = 3104, + [3217] = 3097, + [3218] = 3096, + [3219] = 3076, + [3220] = 3076, [3221] = 3107, - [3222] = 3111, - [3223] = 3095, - [3224] = 3094, - [3225] = 3081, - [3226] = 3101, - [3227] = 3085, - [3228] = 3078, - [3229] = 3107, - [3230] = 3099, - [3231] = 3098, - [3232] = 3101, - [3233] = 3075, - [3234] = 3079, - [3235] = 3099, - [3236] = 3097, - [3237] = 3098, - [3238] = 3111, - [3239] = 3107, - [3240] = 3107, - [3241] = 3096, - [3242] = 3111, - [3243] = 3081, - [3244] = 3075, - [3245] = 3077, + [3222] = 3109, + [3223] = 3110, + [3224] = 3096, + [3225] = 3110, + [3226] = 3109, + [3227] = 3107, + [3228] = 3096, + [3229] = 3092, + [3230] = 3076, + [3231] = 3087, + [3232] = 3077, + [3233] = 3082, + [3234] = 3097, + [3235] = 3235, + [3236] = 3092, + [3237] = 3104, + [3238] = 3092, + [3239] = 3077, + [3240] = 3082, + [3241] = 3084, + [3242] = 3075, + [3243] = 3101, + [3244] = 3244, + [3245] = 3086, [3246] = 3078, - [3247] = 3097, - [3248] = 3085, - [3249] = 3095, - [3250] = 3101, - [3251] = 3075, - [3252] = 3094, - [3253] = 3079, - [3254] = 3078, - [3255] = 3077, - [3256] = 3256, - [3257] = 3094, - [3258] = 3077, - [3259] = 3082, - [3260] = 3082, - [3261] = 3124, - [3262] = 3077, - [3263] = 3079, - [3264] = 3077, - [3265] = 3078, - [3266] = 3094, - [3267] = 3079, - [3268] = 3081, - [3269] = 3078, - [3270] = 3094, - [3271] = 3101, - [3272] = 3085, - [3273] = 3075, - [3274] = 3111, - [3275] = 3081, - [3276] = 3107, - [3277] = 3101, - [3278] = 3097, - [3279] = 3075, - [3280] = 3101, - [3281] = 3098, - [3282] = 3099, - [3283] = 3082, - [3284] = 3078, - [3285] = 3096, - [3286] = 3095, - [3287] = 3107, - [3288] = 3111, - [3289] = 3075, - [3290] = 3095, - [3291] = 3096, - [3292] = 3094, - [3293] = 3095, - [3294] = 3079, - [3295] = 3081, - [3296] = 3107, - [3297] = 3101, + [3247] = 3101, + [3248] = 3101, + [3249] = 3075, + [3250] = 3075, + [3251] = 3104, + [3252] = 3087, + [3253] = 3101, + [3254] = 3097, + [3255] = 3096, + [3256] = 3075, + [3257] = 3107, + [3258] = 3086, + [3259] = 3084, + [3260] = 3109, + [3261] = 3110, + [3262] = 3110, + [3263] = 3104, + [3264] = 3092, + [3265] = 3077, + [3266] = 3097, + [3267] = 3096, + [3268] = 3076, + [3269] = 3084, + [3270] = 3086, + [3271] = 3076, + [3272] = 3109, + [3273] = 3087, + [3274] = 3107, + [3275] = 3082, + [3276] = 3110, + [3277] = 3078, + [3278] = 3096, + [3279] = 3097, + [3280] = 3109, + [3281] = 3077, + [3282] = 3082, + [3283] = 3084, + [3284] = 3086, + [3285] = 3078, + [3286] = 3101, + [3287] = 3086, + [3288] = 3075, + [3289] = 3104, + [3290] = 3097, + [3291] = 3084, + [3292] = 3107, + [3293] = 3109, + [3294] = 3110, + [3295] = 3107, + [3296] = 3080, + [3297] = 3104, [3298] = 3075, - [3299] = 3079, - [3300] = 3082, - [3301] = 3085, - [3302] = 3082, - [3303] = 3101, - [3304] = 3101, - [3305] = 3075, - [3306] = 3075, + [3299] = 3096, + [3300] = 3101, + [3301] = 3104, + [3302] = 3092, + [3303] = 3087, + [3304] = 3077, + [3305] = 3082, + [3306] = 3306, [3307] = 3101, - [3308] = 3075, - [3309] = 3107, - [3310] = 3077, - [3311] = 3075, - [3312] = 3079, - [3313] = 3111, - [3314] = 3081, + [3308] = 3092, + [3309] = 3078, + [3310] = 3082, + [3311] = 3110, + [3312] = 3109, + [3313] = 3107, + [3314] = 3078, [3315] = 3078, - [3316] = 3077, - [3317] = 3111, - [3318] = 3081, - [3319] = 3101, - [3320] = 3111, - [3321] = 3097, - [3322] = 3111, - [3323] = 3107, - [3324] = 3098, - [3325] = 3099, - [3326] = 3075, - [3327] = 3124, - [3328] = 3328, - [3329] = 3094, - [3330] = 3101, - [3331] = 3101, - [3332] = 3099, - [3333] = 3098, - [3334] = 3081, - [3335] = 3101, - [3336] = 3075, - [3337] = 3096, - [3338] = 3096, - [3339] = 3085, - [3340] = 3097, - [3341] = 3095, + [3316] = 3084, + [3317] = 3101, + [3318] = 3075, + [3319] = 3086, + [3320] = 3078, + [3321] = 3077, + [3322] = 3087, + [3323] = 3082, + [3324] = 3077, + [3325] = 3087, + [3326] = 3087, + [3327] = 3104, + [3328] = 3078, + [3329] = 3110, + [3330] = 3097, + [3331] = 3107, + [3332] = 3109, + [3333] = 3107, + [3334] = 3109, + [3335] = 3110, + [3336] = 3096, + [3337] = 3076, + [3338] = 3097, + [3339] = 3096, + [3340] = 3092, + [3341] = 3076, [3342] = 3342, - [3343] = 3343, - [3344] = 3344, - [3345] = 3344, - [3346] = 3346, - [3347] = 3344, - [3348] = 3344, - [3349] = 3344, - [3350] = 3344, - [3351] = 3344, - [3352] = 3344, - [3353] = 3344, + [3343] = 3342, + [3344] = 3342, + [3345] = 3345, + [3346] = 3342, + [3347] = 3342, + [3348] = 3342, + [3349] = 3342, + [3350] = 3342, + [3351] = 3342, + [3352] = 3352, + [3353] = 3342, [3354] = 3354, - [3355] = 3344, - [3356] = 3344, - [3357] = 3344, + [3355] = 3342, + [3356] = 3356, + [3357] = 3342, [3358] = 3358, - [3359] = 506, - [3360] = 547, - [3361] = 525, - [3362] = 708, - [3363] = 548, + [3359] = 844, + [3360] = 649, + [3361] = 497, + [3362] = 502, + [3363] = 645, [3364] = 1134, - [3365] = 525, - [3366] = 506, - [3367] = 548, - [3368] = 547, - [3369] = 3369, + [3365] = 3365, + [3366] = 502, + [3367] = 649, + [3368] = 3368, + [3369] = 645, [3370] = 3370, - [3371] = 3371, - [3372] = 708, - [3373] = 3373, - [3374] = 1134, - [3375] = 3375, - [3376] = 3376, - [3377] = 1134, - [3378] = 1497, - [3379] = 2193, - [3380] = 3380, + [3371] = 844, + [3372] = 3372, + [3373] = 497, + [3374] = 3374, + [3375] = 1134, + [3376] = 1499, + [3377] = 2201, + [3378] = 1134, + [3379] = 3379, + [3380] = 2209, [3381] = 1452, - [3382] = 1455, + [3382] = 1453, [3383] = 3383, [3384] = 3384, [3385] = 3383, - [3386] = 3383, + [3386] = 3386, [3387] = 3383, - [3388] = 2211, - [3389] = 2332, + [3388] = 3383, + [3389] = 2322, [3390] = 3390, [3391] = 3391, [3392] = 3392, - [3393] = 2335, + [3393] = 2329, [3394] = 3394, [3395] = 3395, [3396] = 3396, - [3397] = 3397, - [3398] = 3398, + [3397] = 513, + [3398] = 3395, [3399] = 3399, - [3400] = 3400, - [3401] = 3400, - [3402] = 3400, - [3403] = 3399, - [3404] = 3404, - [3405] = 3399, - [3406] = 3406, - [3407] = 3400, - [3408] = 3398, - [3409] = 3400, - [3410] = 3399, - [3411] = 3411, - [3412] = 3412, - [3413] = 3399, + [3400] = 3396, + [3401] = 3401, + [3402] = 3396, + [3403] = 3396, + [3404] = 3395, + [3405] = 3405, + [3406] = 3395, + [3407] = 3396, + [3408] = 3408, + [3409] = 593, + [3410] = 3395, + [3411] = 3396, + [3412] = 3395, + [3413] = 511, [3414] = 3399, - [3415] = 3400, + [3415] = 3396, [3416] = 3416, - [3417] = 3399, - [3418] = 3400, - [3419] = 896, + [3417] = 3396, + [3418] = 3399, + [3419] = 3419, [3420] = 3420, - [3421] = 3398, - [3422] = 3399, - [3423] = 3398, - [3424] = 417, - [3425] = 3399, - [3426] = 3400, - [3427] = 3400, - [3428] = 3400, - [3429] = 3399, - [3430] = 545, - [3431] = 3431, - [3432] = 3400, - [3433] = 3399, - [3434] = 3399, - [3435] = 3400, - [3436] = 543, - [3437] = 3400, - [3438] = 3400, - [3439] = 3399, - [3440] = 3399, - [3441] = 597, + [3421] = 3421, + [3422] = 3395, + [3423] = 3396, + [3424] = 3395, + [3425] = 3396, + [3426] = 3395, + [3427] = 3395, + [3428] = 3395, + [3429] = 3396, + [3430] = 3430, + [3431] = 3395, + [3432] = 3396, + [3433] = 395, + [3434] = 3434, + [3435] = 3396, + [3436] = 3399, + [3437] = 3395, + [3438] = 3395, + [3439] = 3396, + [3440] = 3440, + [3441] = 818, [3442] = 3442, - [3443] = 560, - [3444] = 3444, - [3445] = 504, + [3443] = 3443, + [3444] = 549, + [3445] = 526, [3446] = 3446, [3447] = 3447, [3448] = 3448, - [3449] = 3449, - [3450] = 539, - [3451] = 675, - [3452] = 771, + [3449] = 628, + [3450] = 838, + [3451] = 929, + [3452] = 926, [3453] = 3453, - [3454] = 765, - [3455] = 665, - [3456] = 814, - [3457] = 684, - [3458] = 3458, - [3459] = 761, - [3460] = 688, - [3461] = 533, - [3462] = 558, - [3463] = 541, - [3464] = 542, - [3465] = 824, - [3466] = 3466, - [3467] = 823, - [3468] = 772, - [3469] = 710, - [3470] = 702, - [3471] = 803, - [3472] = 699, - [3473] = 690, + [3454] = 505, + [3455] = 573, + [3456] = 620, + [3457] = 846, + [3458] = 839, + [3459] = 928, + [3460] = 653, + [3461] = 954, + [3462] = 448, + [3463] = 938, + [3464] = 453, + [3465] = 832, + [3466] = 831, + [3467] = 927, + [3468] = 3468, + [3469] = 819, + [3470] = 833, + [3471] = 814, + [3472] = 3472, + [3473] = 3473, [3474] = 3474, [3475] = 3475, [3476] = 3476, [3477] = 3477, [3478] = 3478, - [3479] = 3477, - [3480] = 3477, - [3481] = 969, - [3482] = 3482, - [3483] = 3477, - [3484] = 3477, - [3485] = 3477, - [3486] = 3486, - [3487] = 3477, - [3488] = 3477, - [3489] = 3489, - [3490] = 3477, - [3491] = 3477, - [3492] = 3477, - [3493] = 3477, - [3494] = 3494, + [3479] = 3479, + [3480] = 3480, + [3481] = 811, + [3482] = 3480, + [3483] = 3480, + [3484] = 3480, + [3485] = 3480, + [3486] = 3480, + [3487] = 3480, + [3488] = 3480, + [3489] = 3480, + [3490] = 3490, + [3491] = 3491, + [3492] = 3480, + [3493] = 3480, + [3494] = 3480, [3495] = 3495, [3496] = 3496, [3497] = 3497, @@ -6906,14 +6955,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3512] = 3512, [3513] = 3513, [3514] = 3514, - [3515] = 3515, + [3515] = 3513, [3516] = 3516, - [3517] = 3517, - [3518] = 3513, + [3517] = 3513, + [3518] = 3518, [3519] = 3519, [3520] = 3520, [3521] = 3521, - [3522] = 3522, + [3522] = 3513, [3523] = 3523, [3524] = 3513, [3525] = 3513, @@ -6925,133 +6974,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3531] = 3531, [3532] = 3532, [3533] = 3513, - [3534] = 3513, + [3534] = 3534, [3535] = 3535, - [3536] = 3536, + [3536] = 3513, [3537] = 3537, [3538] = 3538, - [3539] = 3539, - [3540] = 3513, + [3539] = 3513, + [3540] = 3540, [3541] = 3513, [3542] = 3542, - [3543] = 3513, - [3544] = 3513, + [3543] = 3543, + [3544] = 3544, [3545] = 3545, [3546] = 3546, - [3547] = 3547, + [3547] = 3545, [3548] = 3548, [3549] = 3549, [3550] = 3550, - [3551] = 3548, - [3552] = 3550, - [3553] = 3549, + [3551] = 3551, + [3552] = 593, + [3553] = 3553, [3554] = 3548, - [3555] = 3547, - [3556] = 3550, - [3557] = 3549, - [3558] = 417, + [3555] = 3555, + [3556] = 3545, + [3557] = 3548, + [3558] = 3545, [3559] = 3559, - [3560] = 3560, - [3561] = 3547, + [3560] = 3546, + [3561] = 3559, [3562] = 3562, - [3563] = 3563, + [3563] = 3559, [3564] = 3564, - [3565] = 3559, - [3566] = 3548, - [3567] = 3549, - [3568] = 3568, - [3569] = 3569, + [3565] = 3546, + [3566] = 3562, + [3567] = 3546, + [3568] = 3548, + [3569] = 3545, [3570] = 3559, - [3571] = 3559, - [3572] = 3564, - [3573] = 3564, + [3571] = 3571, + [3572] = 3562, + [3573] = 3571, [3574] = 3549, - [3575] = 3563, - [3576] = 3563, - [3577] = 3548, - [3578] = 3547, - [3579] = 3550, - [3580] = 3562, - [3581] = 1452, - [3582] = 3562, - [3583] = 3550, - [3584] = 3547, - [3585] = 3548, - [3586] = 3549, - [3587] = 3559, - [3588] = 3550, - [3589] = 1502, - [3590] = 3547, - [3591] = 3562, - [3592] = 3550, - [3593] = 3547, - [3594] = 3548, - [3595] = 3549, - [3596] = 3564, - [3597] = 3563, - [3598] = 3563, - [3599] = 1503, - [3600] = 3564, - [3601] = 3559, - [3602] = 3559, - [3603] = 3548, - [3604] = 1455, + [3575] = 3564, + [3576] = 3562, + [3577] = 3559, + [3578] = 3545, + [3579] = 3564, + [3580] = 3549, + [3581] = 3571, + [3582] = 3546, + [3583] = 3548, + [3584] = 3584, + [3585] = 3562, + [3586] = 3548, + [3587] = 3548, + [3588] = 3559, + [3589] = 3545, + [3590] = 3562, + [3591] = 3564, + [3592] = 3549, + [3593] = 3571, + [3594] = 1444, + [3595] = 3546, + [3596] = 3545, + [3597] = 3564, + [3598] = 3559, + [3599] = 3571, + [3600] = 3546, + [3601] = 3571, + [3602] = 3549, + [3603] = 3564, + [3604] = 3571, [3605] = 3562, - [3606] = 3563, + [3606] = 3546, [3607] = 3564, [3608] = 3549, - [3609] = 1446, - [3610] = 3562, - [3611] = 3563, - [3612] = 3564, - [3613] = 3564, - [3614] = 3563, - [3615] = 3559, + [3609] = 3549, + [3610] = 3549, + [3611] = 3571, + [3612] = 3546, + [3613] = 3613, + [3614] = 3614, + [3615] = 3571, [3616] = 3562, - [3617] = 3562, - [3618] = 3559, - [3619] = 3559, - [3620] = 3564, - [3621] = 3563, + [3617] = 3548, + [3618] = 3562, + [3619] = 1459, + [3620] = 3559, + [3621] = 3559, [3622] = 3559, [3623] = 3564, - [3624] = 3563, - [3625] = 3562, - [3626] = 3564, - [3627] = 3547, - [3628] = 3563, - [3629] = 3549, - [3630] = 3548, - [3631] = 3562, - [3632] = 3549, - [3633] = 3547, - [3634] = 3550, - [3635] = 3562, - [3636] = 3548, - [3637] = 3547, - [3638] = 3638, - [3639] = 3562, - [3640] = 3550, + [3624] = 1453, + [3625] = 3545, + [3626] = 3548, + [3627] = 395, + [3628] = 3628, + [3629] = 1458, + [3630] = 3562, + [3631] = 3559, + [3632] = 3545, + [3633] = 3548, + [3634] = 3545, + [3635] = 3559, + [3636] = 3562, + [3637] = 3549, + [3638] = 3564, + [3639] = 3549, + [3640] = 3564, [3641] = 3641, - [3642] = 3550, - [3643] = 1449, - [3644] = 3547, - [3645] = 3548, - [3646] = 3563, - [3647] = 896, + [3642] = 3548, + [3643] = 3545, + [3644] = 3571, + [3645] = 3645, + [3646] = 3564, + [3647] = 3548, [3648] = 3549, - [3649] = 3549, - [3650] = 3650, - [3651] = 3548, - [3652] = 3547, - [3653] = 3550, - [3654] = 3564, - [3655] = 3550, - [3656] = 3559, - [3657] = 3657, - [3658] = 3658, - [3659] = 3659, - [3660] = 3660, + [3649] = 1451, + [3650] = 3571, + [3651] = 3546, + [3652] = 3549, + [3653] = 3653, + [3654] = 3654, + [3655] = 3562, + [3656] = 3546, + [3657] = 3546, + [3658] = 3564, + [3659] = 3571, + [3660] = 1452, [3661] = 3661, [3662] = 3662, [3663] = 3663, @@ -7067,451 +7116,451 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3673] = 3673, [3674] = 3674, [3675] = 3675, - [3676] = 3676, + [3676] = 811, [3677] = 3677, [3678] = 3678, [3679] = 3679, [3680] = 3680, [3681] = 3681, - [3682] = 969, - [3683] = 3683, - [3684] = 1497, + [3682] = 3682, + [3683] = 3680, + [3684] = 1499, [3685] = 3685, - [3686] = 3679, + [3686] = 3686, [3687] = 3687, - [3688] = 3672, + [3688] = 3688, [3689] = 3689, - [3690] = 3690, + [3690] = 3687, [3691] = 3691, - [3692] = 1575, + [3692] = 3692, [3693] = 3693, - [3694] = 1581, + [3694] = 3694, [3695] = 3695, - [3696] = 3696, + [3696] = 3695, [3697] = 3697, - [3698] = 3690, - [3699] = 3693, - [3700] = 3696, + [3698] = 3698, + [3699] = 3699, + [3700] = 3700, [3701] = 3701, - [3702] = 3693, - [3703] = 1572, - [3704] = 3696, + [3702] = 3702, + [3703] = 3697, + [3704] = 3704, [3705] = 3705, [3706] = 3706, - [3707] = 3693, + [3707] = 3695, [3708] = 3708, - [3709] = 3690, - [3710] = 3693, - [3711] = 3696, - [3712] = 1573, + [3709] = 3709, + [3710] = 3710, + [3711] = 3711, + [3712] = 3712, [3713] = 3713, - [3714] = 3714, - [3715] = 1569, - [3716] = 1518, - [3717] = 3717, - [3718] = 3718, - [3719] = 3693, - [3720] = 1567, - [3721] = 3696, - [3722] = 1565, - [3723] = 3723, - [3724] = 1554, - [3725] = 3691, - [3726] = 3691, - [3727] = 3723, - [3728] = 3723, + [3714] = 3702, + [3715] = 3715, + [3716] = 3695, + [3717] = 3708, + [3718] = 3699, + [3719] = 3697, + [3720] = 1548, + [3721] = 3721, + [3722] = 3722, + [3723] = 3709, + [3724] = 3724, + [3725] = 1552, + [3726] = 3726, + [3727] = 1551, + [3728] = 3728, [3729] = 3729, [3730] = 3730, - [3731] = 3723, - [3732] = 3696, - [3733] = 3693, - [3734] = 3734, + [3731] = 3731, + [3732] = 3732, + [3733] = 3697, + [3734] = 3708, [3735] = 3735, - [3736] = 3691, - [3737] = 3718, - [3738] = 3717, - [3739] = 3739, - [3740] = 1536, - [3741] = 3696, - [3742] = 3690, + [3736] = 3736, + [3737] = 3702, + [3738] = 1549, + [3739] = 3709, + [3740] = 3740, + [3741] = 3741, + [3742] = 3699, [3743] = 3743, - [3744] = 3718, - [3745] = 3723, + [3744] = 1535, + [3745] = 1560, [3746] = 3746, - [3747] = 3717, - [3748] = 3748, - [3749] = 3693, - [3750] = 3693, - [3751] = 3696, - [3752] = 1589, - [3753] = 1551, - [3754] = 3693, - [3755] = 1562, - [3756] = 3696, - [3757] = 3696, + [3747] = 3697, + [3748] = 3695, + [3749] = 3708, + [3750] = 3709, + [3751] = 3713, + [3752] = 3702, + [3753] = 3753, + [3754] = 3709, + [3755] = 3755, + [3756] = 3756, + [3757] = 3713, [3758] = 3758, [3759] = 3759, - [3760] = 3760, + [3760] = 3699, [3761] = 3761, - [3762] = 3762, - [3763] = 3763, - [3764] = 3717, - [3765] = 3718, - [3766] = 3693, - [3767] = 3767, - [3768] = 3717, - [3769] = 3718, - [3770] = 3770, - [3771] = 3771, - [3772] = 3723, - [3773] = 3691, + [3762] = 3713, + [3763] = 3702, + [3764] = 3697, + [3765] = 3708, + [3766] = 3695, + [3767] = 3709, + [3768] = 3729, + [3769] = 3699, + [3770] = 3731, + [3771] = 3722, + [3772] = 3772, + [3773] = 3699, [3774] = 3774, - [3775] = 3775, - [3776] = 3691, - [3777] = 3723, - [3778] = 3696, - [3779] = 3779, - [3780] = 3723, - [3781] = 3781, - [3782] = 3693, - [3783] = 3783, - [3784] = 3690, - [3785] = 1599, - [3786] = 3786, - [3787] = 3787, - [3788] = 3788, - [3789] = 1605, - [3790] = 3790, - [3791] = 3690, - [3792] = 3792, - [3793] = 3690, - [3794] = 3690, - [3795] = 3795, + [3775] = 3697, + [3776] = 3695, + [3777] = 3708, + [3778] = 3713, + [3779] = 3709, + [3780] = 3709, + [3781] = 1541, + [3782] = 3713, + [3783] = 1540, + [3784] = 3713, + [3785] = 3785, + [3786] = 3721, + [3787] = 3708, + [3788] = 3702, + [3789] = 3695, + [3790] = 3709, + [3791] = 3699, + [3792] = 3702, + [3793] = 1534, + [3794] = 1533, + [3795] = 1532, [3796] = 3796, - [3797] = 3797, - [3798] = 3743, - [3799] = 3799, - [3800] = 3800, - [3801] = 3748, - [3802] = 3691, - [3803] = 3718, - [3804] = 3717, - [3805] = 1558, - [3806] = 1602, - [3807] = 3690, - [3808] = 3717, - [3809] = 3690, - [3810] = 3718, - [3811] = 3811, - [3812] = 3812, - [3813] = 3813, - [3814] = 3691, + [3797] = 1531, + [3798] = 1530, + [3799] = 1528, + [3800] = 3697, + [3801] = 3702, + [3802] = 3713, + [3803] = 3708, + [3804] = 3699, + [3805] = 3708, + [3806] = 3806, + [3807] = 3697, + [3808] = 3699, + [3809] = 1527, + [3810] = 3810, + [3811] = 1526, + [3812] = 3709, + [3813] = 3699, + [3814] = 3814, [3815] = 3815, - [3816] = 3691, - [3817] = 3817, - [3818] = 3723, - [3819] = 3718, - [3820] = 3717, - [3821] = 3821, + [3816] = 3816, + [3817] = 3709, + [3818] = 3709, + [3819] = 3709, + [3820] = 3820, + [3821] = 3697, [3822] = 3822, - [3823] = 3823, - [3824] = 1600, - [3825] = 3717, - [3826] = 3718, - [3827] = 3690, - [3828] = 3690, + [3823] = 3699, + [3824] = 3697, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 1522, [3829] = 3829, - [3830] = 3723, - [3831] = 3690, - [3832] = 3690, - [3833] = 3691, - [3834] = 3815, - [3835] = 3835, - [3836] = 3836, - [3837] = 3718, - [3838] = 3717, - [3839] = 3691, - [3840] = 3696, - [3841] = 3718, - [3842] = 3717, - [3843] = 3843, - [3844] = 3844, + [3830] = 3713, + [3831] = 3699, + [3832] = 3832, + [3833] = 3833, + [3834] = 3834, + [3835] = 3702, + [3836] = 3708, + [3837] = 3713, + [3838] = 1521, + [3839] = 3695, + [3840] = 3702, + [3841] = 3841, + [3842] = 3842, + [3843] = 3695, + [3844] = 3709, [3845] = 3845, - [3846] = 3813, - [3847] = 3847, - [3848] = 3723, - [3849] = 3691, - [3850] = 3723, - [3851] = 3717, + [3846] = 3709, + [3847] = 3697, + [3848] = 3848, + [3849] = 3709, + [3850] = 3850, + [3851] = 3851, [3852] = 3852, [3853] = 3853, - [3854] = 3718, - [3855] = 3691, - [3856] = 3856, - [3857] = 3690, - [3858] = 3690, - [3859] = 3859, - [3860] = 3718, - [3861] = 3861, - [3862] = 3717, - [3863] = 3863, - [3864] = 1452, - [3865] = 3865, - [3866] = 3866, - [3867] = 3867, - [3868] = 3868, - [3869] = 3865, + [3854] = 3854, + [3855] = 3855, + [3856] = 3695, + [3857] = 3857, + [3858] = 3702, + [3859] = 3708, + [3860] = 3713, + [3861] = 3695, + [3862] = 3862, + [3863] = 3702, + [3864] = 3713, + [3865] = 3708, + [3866] = 3713, + [3867] = 3695, + [3868] = 3708, + [3869] = 3869, [3870] = 3870, - [3871] = 3867, + [3871] = 3871, [3872] = 3872, - [3873] = 3870, + [3873] = 3873, [3874] = 3874, - [3875] = 1455, - [3876] = 3872, - [3877] = 3877, + [3875] = 3875, + [3876] = 3876, + [3877] = 3871, [3878] = 3878, [3879] = 3879, - [3880] = 3867, - [3881] = 3872, - [3882] = 3867, + [3880] = 3880, + [3881] = 1451, + [3882] = 3871, [3883] = 3883, [3884] = 3884, [3885] = 3885, - [3886] = 3886, - [3887] = 3887, - [3888] = 3866, + [3886] = 3884, + [3887] = 1444, + [3888] = 3888, [3889] = 3889, - [3890] = 3890, + [3890] = 3872, [3891] = 3891, - [3892] = 3892, + [3892] = 2201, [3893] = 3893, [3894] = 3894, - [3895] = 3868, - [3896] = 3883, - [3897] = 3884, + [3895] = 3875, + [3896] = 3896, + [3897] = 3876, [3898] = 3898, - [3899] = 3899, - [3900] = 3865, + [3899] = 3875, + [3900] = 3900, [3901] = 3872, - [3902] = 3870, - [3903] = 3866, - [3904] = 3872, - [3905] = 3867, - [3906] = 3878, - [3907] = 3885, - [3908] = 3886, - [3909] = 3885, - [3910] = 3879, - [3911] = 3911, - [3912] = 3891, - [3913] = 3866, - [3914] = 3866, - [3915] = 3866, - [3916] = 3916, - [3917] = 3866, - [3918] = 1455, - [3919] = 3885, - [3920] = 1446, - [3921] = 3885, - [3922] = 3866, - [3923] = 3886, - [3924] = 3891, - [3925] = 3865, - [3926] = 3866, - [3927] = 3879, - [3928] = 3886, - [3929] = 3891, - [3930] = 3878, - [3931] = 3866, - [3932] = 3868, - [3933] = 3868, - [3934] = 3870, - [3935] = 3865, - [3936] = 3872, - [3937] = 3883, - [3938] = 3884, - [3939] = 3867, - [3940] = 3868, - [3941] = 3883, - [3942] = 3884, - [3943] = 3943, - [3944] = 3883, - [3945] = 3885, - [3946] = 1452, - [3947] = 3947, - [3948] = 3884, - [3949] = 3949, - [3950] = 1452, - [3951] = 3886, - [3952] = 3952, - [3953] = 3953, - [3954] = 3870, - [3955] = 3867, - [3956] = 3956, + [3902] = 3871, + [3903] = 3872, + [3904] = 3875, + [3905] = 3869, + [3906] = 3885, + [3907] = 3884, + [3908] = 3870, + [3909] = 3909, + [3910] = 3875, + [3911] = 3885, + [3912] = 3912, + [3913] = 3872, + [3914] = 3874, + [3915] = 3875, + [3916] = 3873, + [3917] = 1452, + [3918] = 3885, + [3919] = 3919, + [3920] = 3884, + [3921] = 3874, + [3922] = 3876, + [3923] = 3876, + [3924] = 3875, + [3925] = 3925, + [3926] = 3885, + [3927] = 3927, + [3928] = 3884, + [3929] = 3873, + [3930] = 3874, + [3931] = 3909, + [3932] = 3870, + [3933] = 3869, + [3934] = 3872, + [3935] = 3898, + [3936] = 3900, + [3937] = 3873, + [3938] = 3875, + [3939] = 3872, + [3940] = 3874, + [3941] = 3873, + [3942] = 3875, + [3943] = 3874, + [3944] = 3873, + [3945] = 3871, + [3946] = 3876, + [3947] = 3869, + [3948] = 3870, + [3949] = 3909, + [3950] = 3950, + [3951] = 1444, + [3952] = 3885, + [3953] = 3884, + [3954] = 3954, + [3955] = 1453, + [3956] = 3871, [3957] = 3957, [3958] = 3958, - [3959] = 3870, - [3960] = 3872, - [3961] = 3961, - [3962] = 3878, - [3963] = 3963, - [3964] = 3879, - [3965] = 3878, - [3966] = 3879, - [3967] = 3879, - [3968] = 3968, - [3969] = 3969, - [3970] = 3879, - [3971] = 3884, - [3972] = 3972, - [3973] = 3878, - [3974] = 3885, - [3975] = 3886, - [3976] = 3883, - [3977] = 3868, - [3978] = 3891, - [3979] = 3884, + [3959] = 1452, + [3960] = 3875, + [3961] = 3874, + [3962] = 3962, + [3963] = 3876, + [3964] = 3875, + [3965] = 3965, + [3966] = 3875, + [3967] = 3876, + [3968] = 3876, + [3969] = 3869, + [3970] = 3873, + [3971] = 3872, + [3972] = 3885, + [3973] = 3873, + [3974] = 3874, + [3975] = 3975, + [3976] = 1453, + [3977] = 1452, + [3978] = 3884, + [3979] = 3979, [3980] = 3980, - [3981] = 3883, - [3982] = 1449, - [3983] = 3380, - [3984] = 3868, - [3985] = 3868, - [3986] = 1455, - [3987] = 3883, - [3988] = 3884, - [3989] = 3989, - [3990] = 1449, - [3991] = 3991, - [3992] = 3865, - [3993] = 3870, - [3994] = 3891, - [3995] = 3886, - [3996] = 3996, - [3997] = 3872, - [3998] = 3867, - [3999] = 3870, - [4000] = 4000, - [4001] = 3384, - [4002] = 4002, - [4003] = 4003, - [4004] = 3870, - [4005] = 3681, - [4006] = 3680, + [3981] = 3900, + [3982] = 3871, + [3983] = 3983, + [3984] = 3898, + [3985] = 3985, + [3986] = 3986, + [3987] = 3987, + [3988] = 1451, + [3989] = 3872, + [3990] = 3990, + [3991] = 3876, + [3992] = 3885, + [3993] = 3909, + [3994] = 3870, + [3995] = 3884, + [3996] = 3874, + [3997] = 3997, + [3998] = 3885, + [3999] = 3909, + [4000] = 3872, + [4001] = 4001, + [4002] = 3884, + [4003] = 3898, + [4004] = 4004, + [4005] = 3885, + [4006] = 3884, [4007] = 4007, - [4008] = 3884, - [4009] = 3883, - [4010] = 4010, - [4011] = 3658, + [4008] = 3900, + [4009] = 3909, + [4010] = 3870, + [4011] = 3869, [4012] = 3870, - [4013] = 3670, - [4014] = 3868, - [4015] = 3866, - [4016] = 3878, - [4017] = 3879, - [4018] = 3878, - [4019] = 3879, - [4020] = 3865, - [4021] = 3891, - [4022] = 3885, - [4023] = 3885, - [4024] = 3891, - [4025] = 3891, - [4026] = 3886, - [4027] = 3891, - [4028] = 3865, + [4013] = 3675, + [4014] = 3674, + [4015] = 3869, + [4016] = 4016, + [4017] = 3909, + [4018] = 3871, + [4019] = 3688, + [4020] = 3898, + [4021] = 3691, + [4022] = 3900, + [4023] = 3869, + [4024] = 3870, + [4025] = 3909, + [4026] = 3876, + [4027] = 3870, + [4028] = 3869, [4029] = 4029, - [4030] = 4030, - [4031] = 1446, - [4032] = 3866, - [4033] = 3886, - [4034] = 3886, - [4035] = 4035, - [4036] = 3867, + [4030] = 3873, + [4031] = 3900, + [4032] = 3884, + [4033] = 3885, + [4034] = 3898, + [4035] = 3900, + [4036] = 3873, [4037] = 3872, - [4038] = 3868, - [4039] = 3883, - [4040] = 3884, - [4041] = 4041, - [4042] = 3865, - [4043] = 3872, - [4044] = 3867, - [4045] = 3865, - [4046] = 4046, - [4047] = 4047, - [4048] = 3866, - [4049] = 3884, - [4050] = 4050, - [4051] = 3883, - [4052] = 3865, - [4053] = 3878, - [4054] = 3878, - [4055] = 3879, - [4056] = 3885, - [4057] = 2193, - [4058] = 3870, - [4059] = 3879, - [4060] = 3878, - [4061] = 4061, - [4062] = 3870, - [4063] = 3866, - [4064] = 3878, - [4065] = 3879, - [4066] = 3886, - [4067] = 3884, - [4068] = 3868, - [4069] = 3883, - [4070] = 4070, - [4071] = 3868, - [4072] = 3891, - [4073] = 3885, + [4038] = 3874, + [4039] = 3869, + [4040] = 3900, + [4041] = 3870, + [4042] = 3909, + [4043] = 3898, + [4044] = 3898, + [4045] = 3900, + [4046] = 3869, + [4047] = 3870, + [4048] = 3909, + [4049] = 3386, + [4050] = 3869, + [4051] = 3871, + [4052] = 1453, + [4053] = 4053, + [4054] = 4054, + [4055] = 3871, + [4056] = 3874, + [4057] = 4057, + [4058] = 3873, + [4059] = 4059, + [4060] = 3875, + [4061] = 3876, + [4062] = 3871, + [4063] = 3909, + [4064] = 3870, + [4065] = 3874, + [4066] = 3876, + [4067] = 3869, + [4068] = 3900, + [4069] = 4069, + [4070] = 3898, + [4071] = 3872, + [4072] = 3873, + [4073] = 3874, [4074] = 4074, - [4075] = 3872, - [4076] = 3867, - [4077] = 1449, - [4078] = 4078, - [4079] = 4079, - [4080] = 3885, - [4081] = 4081, - [4082] = 3868, - [4083] = 3883, - [4084] = 3885, - [4085] = 3891, - [4086] = 3885, - [4087] = 3884, + [4075] = 4075, + [4076] = 4076, + [4077] = 3875, + [4078] = 3870, + [4079] = 3909, + [4080] = 4080, + [4081] = 3871, + [4082] = 3384, + [4083] = 3909, + [4084] = 3871, + [4085] = 3900, + [4086] = 3871, + [4087] = 4087, [4088] = 4088, - [4089] = 3865, - [4090] = 4090, - [4091] = 3886, - [4092] = 3879, - [4093] = 3878, - [4094] = 3867, - [4095] = 3879, - [4096] = 3870, - [4097] = 4097, - [4098] = 3878, + [4089] = 3898, + [4090] = 3900, + [4091] = 4091, + [4092] = 3898, + [4093] = 1451, + [4094] = 3876, + [4095] = 3874, + [4096] = 3873, + [4097] = 3872, + [4098] = 3876, [4099] = 4099, - [4100] = 3872, - [4101] = 3884, - [4102] = 3870, - [4103] = 3883, - [4104] = 3868, - [4105] = 3865, + [4100] = 3869, + [4101] = 3870, + [4102] = 3909, + [4103] = 4103, + [4104] = 4104, + [4105] = 3873, [4106] = 4106, [4107] = 4107, - [4108] = 4108, - [4109] = 4109, - [4110] = 4110, - [4111] = 3680, + [4108] = 3885, + [4109] = 3898, + [4110] = 3884, + [4111] = 4111, [4112] = 4112, [4113] = 4113, - [4114] = 4114, + [4114] = 3675, [4115] = 4115, [4116] = 4116, [4117] = 4117, [4118] = 4118, - [4119] = 4106, - [4120] = 4110, + [4119] = 4119, + [4120] = 4120, [4121] = 4121, [4122] = 4122, [4123] = 4123, @@ -7519,310 +7568,310 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4125] = 4125, [4126] = 4126, [4127] = 4127, - [4128] = 4126, - [4129] = 4129, - [4130] = 4112, - [4131] = 4131, - [4132] = 4121, - [4133] = 4133, - [4134] = 4134, - [4135] = 4134, - [4136] = 4109, - [4137] = 3658, + [4128] = 3688, + [4129] = 4116, + [4130] = 4121, + [4131] = 4119, + [4132] = 4119, + [4133] = 4123, + [4134] = 4119, + [4135] = 4121, + [4136] = 4136, + [4137] = 4121, [4138] = 4138, - [4139] = 3670, - [4140] = 4140, - [4141] = 4115, + [4139] = 4113, + [4140] = 3674, + [4141] = 4116, [4142] = 4142, - [4143] = 4126, + [4143] = 3691, [4144] = 4144, - [4145] = 4114, - [4146] = 4146, + [4145] = 4145, + [4146] = 4115, [4147] = 4147, - [4148] = 4134, - [4149] = 4110, - [4150] = 4114, - [4151] = 4151, + [4148] = 4125, + [4149] = 3688, + [4150] = 3691, + [4151] = 3688, [4152] = 4152, - [4153] = 4121, + [4153] = 4115, [4154] = 4154, - [4155] = 4112, - [4156] = 4107, - [4157] = 4152, - [4158] = 4151, - [4159] = 4107, - [4160] = 4160, - [4161] = 3670, + [4155] = 4155, + [4156] = 4156, + [4157] = 4115, + [4158] = 4123, + [4159] = 4124, + [4160] = 3688, + [4161] = 4115, [4162] = 4162, - [4163] = 4110, - [4164] = 4126, - [4165] = 4151, - [4166] = 4166, - [4167] = 4121, - [4168] = 4110, - [4169] = 4112, - [4170] = 4170, - [4171] = 4115, - [4172] = 4112, - [4173] = 4173, - [4174] = 4114, - [4175] = 3670, - [4176] = 4114, - [4177] = 4177, - [4178] = 3658, - [4179] = 3670, - [4180] = 4121, - [4181] = 3658, - [4182] = 4113, - [4183] = 4109, + [4163] = 4163, + [4164] = 4113, + [4165] = 4124, + [4166] = 4123, + [4167] = 4167, + [4168] = 3691, + [4169] = 3691, + [4170] = 4116, + [4171] = 4119, + [4172] = 4172, + [4173] = 4121, + [4174] = 4174, + [4175] = 4156, + [4176] = 4116, + [4177] = 4125, + [4178] = 4178, + [4179] = 3674, + [4180] = 4180, + [4181] = 4155, + [4182] = 4154, + [4183] = 4183, [4184] = 4184, - [4185] = 4185, - [4186] = 3680, - [4187] = 3658, - [4188] = 3681, - [4189] = 1572, - [4190] = 4190, - [4191] = 4191, - [4192] = 4192, + [4185] = 4138, + [4186] = 4172, + [4187] = 4115, + [4188] = 4188, + [4189] = 4189, + [4190] = 4189, + [4191] = 4125, + [4192] = 4125, [4193] = 4193, - [4194] = 4113, - [4195] = 4114, - [4196] = 4106, - [4197] = 4109, - [4198] = 4129, - [4199] = 4116, - [4200] = 4124, - [4201] = 4201, - [4202] = 4134, - [4203] = 4133, - [4204] = 2211, - [4205] = 4121, - [4206] = 4112, - [4207] = 4115, - [4208] = 4116, - [4209] = 4109, + [4194] = 4174, + [4195] = 4113, + [4196] = 4174, + [4197] = 3675, + [4198] = 4154, + [4199] = 4199, + [4200] = 4123, + [4201] = 4154, + [4202] = 4189, + [4203] = 4123, + [4204] = 4154, + [4205] = 4154, + [4206] = 4123, + [4207] = 4123, + [4208] = 4124, + [4209] = 4189, [4210] = 4210, - [4211] = 4129, - [4212] = 4113, - [4213] = 4213, - [4214] = 4214, - [4215] = 4170, + [4211] = 4123, + [4212] = 4189, + [4213] = 4189, + [4214] = 4154, + [4215] = 4215, [4216] = 4216, [4217] = 4217, - [4218] = 4151, - [4219] = 4110, + [4218] = 4138, + [4219] = 4219, [4220] = 4220, - [4221] = 4152, - [4222] = 4170, - [4223] = 4134, - [4224] = 4106, - [4225] = 4107, - [4226] = 3681, - [4227] = 4109, - [4228] = 3680, - [4229] = 4107, - [4230] = 4121, - [4231] = 4231, - [4232] = 4121, - [4233] = 4152, - [4234] = 4115, - [4235] = 4151, - [4236] = 4110, - [4237] = 4107, - [4238] = 4109, - [4239] = 4115, - [4240] = 4126, - [4241] = 3658, - [4242] = 4112, - [4243] = 4113, - [4244] = 4107, - [4245] = 3670, - [4246] = 4114, - [4247] = 4114, - [4248] = 4248, - [4249] = 4152, - [4250] = 4250, - [4251] = 4113, - [4252] = 4121, - [4253] = 3680, - [4254] = 4129, - [4255] = 4116, - [4256] = 4115, - [4257] = 4115, - [4258] = 4112, - [4259] = 4110, - [4260] = 4170, - [4261] = 4151, - [4262] = 4152, - [4263] = 4263, - [4264] = 4112, - [4265] = 4151, - [4266] = 4112, - [4267] = 4134, - [4268] = 4107, - [4269] = 4151, - [4270] = 4109, - [4271] = 4107, - [4272] = 4116, - [4273] = 1558, - [4274] = 4129, - [4275] = 4275, - [4276] = 4115, - [4277] = 4277, - [4278] = 4113, - [4279] = 4151, - [4280] = 3681, - [4281] = 4170, - [4282] = 4151, - [4283] = 4115, - [4284] = 4115, - [4285] = 4152, - [4286] = 4107, - [4287] = 4170, - [4288] = 4129, - [4289] = 4116, - [4290] = 3680, - [4291] = 1602, - [4292] = 4126, - [4293] = 3681, - [4294] = 4129, - [4295] = 4116, - [4296] = 4110, - [4297] = 4126, - [4298] = 4109, - [4299] = 4112, - [4300] = 4106, - [4301] = 4114, - [4302] = 3670, - [4303] = 4126, - [4304] = 3658, - [4305] = 4126, - [4306] = 4106, - [4307] = 4307, - [4308] = 4121, - [4309] = 4309, - [4310] = 4310, - [4311] = 4311, - [4312] = 4116, - [4313] = 4129, - [4314] = 3680, - [4315] = 4106, - [4316] = 4106, - [4317] = 4116, - [4318] = 4318, - [4319] = 4319, - [4320] = 3681, + [4221] = 4154, + [4222] = 4121, + [4223] = 3674, + [4224] = 4121, + [4225] = 4119, + [4226] = 4226, + [4227] = 4119, + [4228] = 4228, + [4229] = 4229, + [4230] = 4174, + [4231] = 4125, + [4232] = 3675, + [4233] = 4116, + [4234] = 4189, + [4235] = 3674, + [4236] = 4116, + [4237] = 3675, + [4238] = 4155, + [4239] = 4155, + [4240] = 4121, + [4241] = 4119, + [4242] = 4116, + [4243] = 3691, + [4244] = 4123, + [4245] = 3688, + [4246] = 4174, + [4247] = 4115, + [4248] = 4115, + [4249] = 3674, + [4250] = 3688, + [4251] = 4251, + [4252] = 4219, + [4253] = 4123, + [4254] = 4154, + [4255] = 4174, + [4256] = 4113, + [4257] = 4189, + [4258] = 3675, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, + [4262] = 3691, + [4263] = 4138, + [4264] = 4138, + [4265] = 4115, + [4266] = 3691, + [4267] = 4124, + [4268] = 3674, + [4269] = 3688, + [4270] = 3675, + [4271] = 4271, + [4272] = 4120, + [4273] = 4138, + [4274] = 4119, + [4275] = 4172, + [4276] = 4276, + [4277] = 4174, + [4278] = 4115, + [4279] = 4279, + [4280] = 4156, + [4281] = 4118, + [4282] = 4282, + [4283] = 4155, + [4284] = 4284, + [4285] = 4138, + [4286] = 4286, + [4287] = 4183, + [4288] = 4288, + [4289] = 4117, + [4290] = 4290, + [4291] = 4113, + [4292] = 4189, + [4293] = 4174, + [4294] = 4125, + [4295] = 4121, + [4296] = 4296, + [4297] = 4154, + [4298] = 4119, + [4299] = 4299, + [4300] = 4300, + [4301] = 4116, + [4302] = 3674, + [4303] = 4172, + [4304] = 1521, + [4305] = 2209, + [4306] = 4174, + [4307] = 4125, + [4308] = 4172, + [4309] = 4113, + [4310] = 4156, + [4311] = 4155, + [4312] = 4174, + [4313] = 4123, + [4314] = 4189, + [4315] = 4115, + [4316] = 4172, + [4317] = 4138, + [4318] = 4124, + [4319] = 4124, + [4320] = 4116, [4321] = 4321, - [4322] = 4116, + [4322] = 4322, [4323] = 4323, - [4324] = 4129, - [4325] = 4134, - [4326] = 4129, - [4327] = 4151, - [4328] = 4152, - [4329] = 4109, - [4330] = 4106, - [4331] = 4115, - [4332] = 4332, - [4333] = 4333, - [4334] = 4113, - [4335] = 4151, + [4324] = 4155, + [4325] = 4183, + [4326] = 4125, + [4327] = 3675, + [4328] = 4328, + [4329] = 4174, + [4330] = 4330, + [4331] = 4123, + [4332] = 4154, + [4333] = 4183, + [4334] = 4124, + [4335] = 4335, [4336] = 4336, - [4337] = 4151, + [4337] = 4189, [4338] = 4338, - [4339] = 4339, + [4339] = 4138, [4340] = 4340, - [4341] = 4152, - [4342] = 4170, - [4343] = 4126, - [4344] = 4170, - [4345] = 4152, - [4346] = 4107, - [4347] = 4347, - [4348] = 4152, - [4349] = 4110, - [4350] = 4131, - [4351] = 4170, - [4352] = 3681, - [4353] = 4114, - [4354] = 4354, - [4355] = 4115, - [4356] = 3670, - [4357] = 3658, - [4358] = 4110, - [4359] = 4121, - [4360] = 4106, - [4361] = 3680, - [4362] = 4126, - [4363] = 3681, - [4364] = 4134, - [4365] = 4170, - [4366] = 4114, - [4367] = 4367, - [4368] = 3670, - [4369] = 4170, - [4370] = 4370, - [4371] = 4125, - [4372] = 3658, - [4373] = 4109, - [4374] = 4106, - [4375] = 4375, - [4376] = 4123, - [4377] = 4116, - [4378] = 4121, - [4379] = 4116, - [4380] = 4129, - [4381] = 4129, - [4382] = 4122, - [4383] = 3680, - [4384] = 4113, - [4385] = 4110, - [4386] = 3681, - [4387] = 4134, - [4388] = 4151, - [4389] = 4152, - [4390] = 4107, - [4391] = 4391, + [4341] = 4341, + [4342] = 4124, + [4343] = 4121, + [4344] = 4183, + [4345] = 4119, + [4346] = 4346, + [4347] = 4116, + [4348] = 3691, + [4349] = 4119, + [4350] = 4156, + [4351] = 4116, + [4352] = 4156, + [4353] = 4353, + [4354] = 4138, + [4355] = 3691, + [4356] = 4356, + [4357] = 3688, + [4358] = 3688, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4172, + [4363] = 4115, + [4364] = 4174, + [4365] = 4124, + [4366] = 4155, + [4367] = 3674, + [4368] = 4124, + [4369] = 4115, + [4370] = 4155, + [4371] = 3675, + [4372] = 4121, + [4373] = 4183, + [4374] = 3674, + [4375] = 3675, + [4376] = 4125, + [4377] = 4113, + [4378] = 4156, + [4379] = 4125, + [4380] = 4183, + [4381] = 4381, + [4382] = 4113, + [4383] = 4172, + [4384] = 4138, + [4385] = 4172, + [4386] = 4113, + [4387] = 4123, + [4388] = 4154, + [4389] = 4113, + [4390] = 4172, + [4391] = 4189, [4392] = 4392, - [4393] = 4112, - [4394] = 4394, - [4395] = 4170, + [4393] = 4381, + [4394] = 4155, + [4395] = 4156, [4396] = 4113, - [4397] = 4397, - [4398] = 4114, - [4399] = 4399, - [4400] = 4113, - [4401] = 4401, - [4402] = 4110, - [4403] = 4112, - [4404] = 4114, - [4405] = 3670, - [4406] = 3670, - [4407] = 3658, - [4408] = 3658, - [4409] = 4134, - [4410] = 4121, - [4411] = 4126, - [4412] = 3680, - [4413] = 3681, - [4414] = 4121, - [4415] = 4134, - [4416] = 4109, - [4417] = 4417, - [4418] = 4113, - [4419] = 3680, - [4420] = 3681, - [4421] = 4134, - [4422] = 4109, - [4423] = 4423, - [4424] = 4106, - [4425] = 4134, + [4397] = 4121, + [4398] = 4119, + [4399] = 4183, + [4400] = 4156, + [4401] = 4116, + [4402] = 4121, + [4403] = 3691, + [4404] = 4172, + [4405] = 3688, + [4406] = 1551, + [4407] = 4392, + [4408] = 4115, + [4409] = 4183, + [4410] = 4156, + [4411] = 3674, + [4412] = 3675, + [4413] = 1552, + [4414] = 4414, + [4415] = 4155, + [4416] = 4183, + [4417] = 4156, + [4418] = 4418, + [4419] = 4183, + [4420] = 4138, + [4421] = 4155, + [4422] = 4113, + [4423] = 4172, + [4424] = 4183, + [4425] = 4125, [4426] = 4426, [4427] = 4427, - [4428] = 4428, - [4429] = 4429, - [4430] = 4430, - [4431] = 4431, + [4428] = 4138, + [4429] = 4183, + [4430] = 4156, + [4431] = 4124, [4432] = 4432, [4433] = 4433, [4434] = 4434, @@ -7830,322 +7879,330 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4436] = 4436, [4437] = 4437, [4438] = 4438, - [4439] = 4430, - [4440] = 4432, - [4441] = 4434, - [4442] = 4435, - [4443] = 4434, - [4444] = 4430, - [4445] = 4432, - [4446] = 4435, - [4447] = 4434, + [4439] = 4434, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4435, + [4444] = 4444, + [4445] = 4445, + [4446] = 4446, + [4447] = 4433, [4448] = 4448, - [4449] = 4430, - [4450] = 4432, - [4451] = 4435, + [4449] = 4449, + [4450] = 4450, + [4451] = 4449, [4452] = 4452, - [4453] = 4453, - [4454] = 4454, + [4453] = 4434, + [4454] = 4435, [4455] = 4455, [4456] = 4452, - [4457] = 4437, - [4458] = 4458, + [4457] = 4457, + [4458] = 4437, [4459] = 4459, - [4460] = 4460, + [4460] = 4449, [4461] = 4461, - [4462] = 4434, - [4463] = 4435, - [4464] = 4432, - [4465] = 4430, - [4466] = 4432, - [4467] = 4435, - [4468] = 4430, + [4462] = 4449, + [4463] = 4463, + [4464] = 4444, + [4465] = 4452, + [4466] = 4452, + [4467] = 4434, + [4468] = 4446, [4469] = 4469, - [4470] = 4469, - [4471] = 4434, + [4470] = 4449, + [4471] = 4471, [4472] = 4472, - [4473] = 4438, - [4474] = 4474, - [4475] = 4475, - [4476] = 4436, + [4473] = 4452, + [4474] = 4434, + [4475] = 4435, + [4476] = 4476, [4477] = 4477, - [4478] = 4426, - [4479] = 4461, - [4480] = 4480, - [4481] = 4460, - [4482] = 4459, + [4478] = 4478, + [4479] = 2329, + [4480] = 4457, + [4481] = 4441, + [4482] = 4435, [4483] = 4434, - [4484] = 4428, - [4485] = 4485, - [4486] = 4430, - [4487] = 4432, - [4488] = 4435, - [4489] = 4427, - [4490] = 4490, - [4491] = 4491, + [4484] = 4452, + [4485] = 4448, + [4486] = 4445, + [4487] = 4449, + [4488] = 4442, + [4489] = 4450, + [4490] = 4450, + [4491] = 4449, [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4427, - [4496] = 4458, - [4497] = 4455, - [4498] = 4498, - [4499] = 4499, - [4500] = 4454, - [4501] = 4454, - [4502] = 4435, - [4503] = 4503, - [4504] = 4434, - [4505] = 4427, - [4506] = 4428, - [4507] = 4430, - [4508] = 4432, - [4509] = 4435, - [4510] = 4510, + [4493] = 4444, + [4494] = 4452, + [4495] = 4434, + [4496] = 4435, + [4497] = 4441, + [4498] = 4442, + [4499] = 4440, + [4500] = 4444, + [4501] = 4437, + [4502] = 4472, + [4503] = 4471, + [4504] = 4438, + [4505] = 4446, + [4506] = 4438, + [4507] = 4507, + [4508] = 4445, + [4509] = 4448, + [4510] = 4440, [4511] = 4511, - [4512] = 4432, - [4513] = 4430, - [4514] = 4452, - [4515] = 4515, - [4516] = 4437, - [4517] = 4426, - [4518] = 4434, - [4519] = 4519, - [4520] = 4437, - [4521] = 4452, - [4522] = 4522, - [4523] = 4426, - [4524] = 4524, - [4525] = 4434, - [4526] = 4526, - [4527] = 4428, - [4528] = 4430, - [4529] = 4432, - [4530] = 4435, - [4531] = 4427, - [4532] = 4454, - [4533] = 4455, - [4534] = 4458, - [4535] = 4458, - [4536] = 4459, - [4537] = 4460, - [4538] = 4538, - [4539] = 4436, - [4540] = 4461, + [4512] = 4449, + [4513] = 4436, + [4514] = 4514, + [4515] = 4452, + [4516] = 4434, + [4517] = 4435, + [4518] = 4457, + [4519] = 4472, + [4520] = 2322, + [4521] = 4521, + [4522] = 4441, + [4523] = 4450, + [4524] = 4471, + [4525] = 4437, + [4526] = 4436, + [4527] = 4435, + [4528] = 4434, + [4529] = 4452, + [4530] = 4530, + [4531] = 4442, + [4532] = 4532, + [4533] = 4449, + [4534] = 4449, + [4535] = 4535, + [4536] = 4452, + [4537] = 4434, + [4538] = 4435, + [4539] = 4539, + [4540] = 4444, [4541] = 4541, - [4542] = 4469, - [4543] = 4436, - [4544] = 4455, + [4542] = 4438, + [4543] = 4446, + [4544] = 4445, [4545] = 4545, - [4546] = 4434, - [4547] = 4438, + [4546] = 4457, + [4547] = 4448, [4548] = 4548, - [4549] = 4430, - [4550] = 4432, - [4551] = 4435, - [4552] = 4436, + [4549] = 4457, + [4550] = 4444, + [4551] = 4471, + [4552] = 4472, [4553] = 4553, - [4554] = 4436, - [4555] = 4461, - [4556] = 4438, - [4557] = 4436, - [4558] = 4436, - [4559] = 4438, + [4554] = 4449, + [4555] = 4555, + [4556] = 4457, + [4557] = 4452, + [4558] = 4434, + [4559] = 4435, [4560] = 4436, - [4561] = 4438, - [4562] = 4428, - [4563] = 4434, - [4564] = 4438, - [4565] = 4430, - [4566] = 4432, - [4567] = 4435, - [4568] = 4436, - [4569] = 4569, - [4570] = 4436, - [4571] = 4434, - [4572] = 4435, - [4573] = 4469, - [4574] = 4461, - [4575] = 4460, - [4576] = 4459, - [4577] = 4458, - [4578] = 4455, - [4579] = 4452, - [4580] = 4580, - [4581] = 4428, - [4582] = 4437, + [4561] = 4472, + [4562] = 4444, + [4563] = 4471, + [4564] = 4564, + [4565] = 4448, + [4566] = 4445, + [4567] = 4442, + [4568] = 4444, + [4569] = 4450, + [4570] = 4441, + [4571] = 4449, + [4572] = 4436, + [4573] = 4452, + [4574] = 4434, + [4575] = 4435, + [4576] = 4444, + [4577] = 4436, + [4578] = 4578, + [4579] = 4449, + [4580] = 4435, + [4581] = 4444, + [4582] = 4582, [4583] = 4583, - [4584] = 4426, - [4585] = 4585, - [4586] = 4426, - [4587] = 4437, - [4588] = 4452, - [4589] = 4492, - [4590] = 4428, - [4591] = 4426, - [4592] = 4438, - [4593] = 4438, - [4594] = 4454, - [4595] = 4455, - [4596] = 4435, - [4597] = 4458, - [4598] = 4432, + [4584] = 4440, + [4585] = 4436, + [4586] = 4437, + [4587] = 4438, + [4588] = 4444, + [4589] = 4589, + [4590] = 4438, + [4591] = 4591, + [4592] = 4592, + [4593] = 4446, + [4594] = 4594, + [4595] = 4471, + [4596] = 4440, + [4597] = 4435, + [4598] = 4598, [4599] = 4599, - [4600] = 4430, - [4601] = 4436, - [4602] = 4459, - [4603] = 4460, - [4604] = 4604, - [4605] = 4605, - [4606] = 4469, - [4607] = 4469, - [4608] = 4461, - [4609] = 4460, - [4610] = 4459, - [4611] = 4458, - [4612] = 4455, - [4613] = 4454, - [4614] = 4427, - [4615] = 4428, - [4616] = 4434, - [4617] = 4426, - [4618] = 4618, - [4619] = 2335, - [4620] = 4437, - [4621] = 4452, - [4622] = 4436, - [4623] = 4438, - [4624] = 4469, - [4625] = 4459, - [4626] = 4436, - [4627] = 4627, - [4628] = 4461, - [4629] = 4460, - [4630] = 4438, - [4631] = 4459, - [4632] = 4460, - [4633] = 4633, - [4634] = 4469, + [4600] = 4600, + [4601] = 4601, + [4602] = 4472, + [4603] = 4603, + [4604] = 4448, + [4605] = 4446, + [4606] = 4436, + [4607] = 4438, + [4608] = 4444, + [4609] = 4457, + [4610] = 4448, + [4611] = 4440, + [4612] = 4437, + [4613] = 4445, + [4614] = 4436, + [4615] = 4446, + [4616] = 4438, + [4617] = 4437, + [4618] = 4442, + [4619] = 4436, + [4620] = 4441, + [4621] = 4450, + [4622] = 4450, + [4623] = 4448, + [4624] = 4441, + [4625] = 4446, + [4626] = 4472, + [4627] = 4471, + [4628] = 4446, + [4629] = 4436, + [4630] = 4437, + [4631] = 4631, + [4632] = 4444, + [4633] = 4438, + [4634] = 4634, [4635] = 4635, - [4636] = 4452, - [4637] = 4461, - [4638] = 4638, - [4639] = 4460, - [4640] = 4459, - [4641] = 4437, - [4642] = 4458, - [4643] = 4643, - [4644] = 4455, - [4645] = 4458, - [4646] = 4646, - [4647] = 4454, - [4648] = 4455, + [4636] = 4636, + [4637] = 4436, + [4638] = 4444, + [4639] = 4435, + [4640] = 4640, + [4641] = 4434, + [4642] = 4452, + [4643] = 4444, + [4644] = 4644, + [4645] = 4645, + [4646] = 4450, + [4647] = 4440, + [4648] = 4648, [4649] = 4649, - [4650] = 4427, - [4651] = 4428, - [4652] = 4426, - [4653] = 4454, - [4654] = 4427, - [4655] = 4428, - [4656] = 4426, + [4650] = 4650, + [4651] = 4438, + [4652] = 4652, + [4653] = 4440, + [4654] = 4449, + [4655] = 4440, + [4656] = 4446, [4657] = 4438, - [4658] = 4658, - [4659] = 4437, - [4660] = 4452, - [4661] = 4428, - [4662] = 4519, - [4663] = 4437, - [4664] = 4664, - [4665] = 4452, - [4666] = 4427, - [4667] = 4667, - [4668] = 4454, - [4669] = 4455, - [4670] = 4458, - [4671] = 4438, + [4658] = 4437, + [4659] = 4441, + [4660] = 4450, + [4661] = 4442, + [4662] = 4445, + [4663] = 4448, + [4664] = 4436, + [4665] = 4665, + [4666] = 4457, + [4667] = 4472, + [4668] = 4471, + [4669] = 4471, + [4670] = 4670, + [4671] = 4444, [4672] = 4436, - [4673] = 4459, - [4674] = 2332, - [4675] = 4460, - [4676] = 4461, - [4677] = 4677, - [4678] = 4469, - [4679] = 4436, - [4680] = 4469, - [4681] = 4681, - [4682] = 4438, - [4683] = 4683, - [4684] = 4436, - [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4469, - [4689] = 4461, - [4690] = 4690, - [4691] = 4461, - [4692] = 4460, - [4693] = 4459, - [4694] = 4458, - [4695] = 4455, - [4696] = 4454, - [4697] = 4427, - [4698] = 4436, - [4699] = 4428, - [4700] = 4426, - [4701] = 4436, - [4702] = 4492, - [4703] = 4437, - [4704] = 4522, - [4705] = 4452, - [4706] = 4706, - [4707] = 4492, - [4708] = 4706, - [4709] = 4709, - [4710] = 4460, - [4711] = 4492, - [4712] = 4438, + [4673] = 4673, + [4674] = 4444, + [4675] = 4472, + [4676] = 4441, + [4677] = 4436, + [4678] = 4471, + [4679] = 4441, + [4680] = 4457, + [4681] = 4444, + [4682] = 4535, + [4683] = 4448, + [4684] = 4684, + [4685] = 4440, + [4686] = 4444, + [4687] = 4446, + [4688] = 4445, + [4689] = 4438, + [4690] = 4437, + [4691] = 4472, + [4692] = 4441, + [4693] = 4442, + [4694] = 4450, + [4695] = 4695, + [4696] = 4457, + [4697] = 4697, + [4698] = 4450, + [4699] = 4442, + [4700] = 4445, + [4701] = 4448, + [4702] = 4448, + [4703] = 4457, + [4704] = 4442, + [4705] = 4450, + [4706] = 4441, + [4707] = 4707, + [4708] = 4445, + [4709] = 4442, + [4710] = 4433, + [4711] = 4472, + [4712] = 4471, [4713] = 4713, - [4714] = 4436, - [4715] = 4492, - [4716] = 4452, - [4717] = 4717, - [4718] = 4437, - [4719] = 4492, - [4720] = 4426, - [4721] = 4469, - [4722] = 4722, - [4723] = 4492, + [4714] = 4450, + [4715] = 4433, + [4716] = 4441, + [4717] = 4436, + [4718] = 4718, + [4719] = 4433, + [4720] = 4445, + [4721] = 4721, + [4722] = 4541, + [4723] = 4433, [4724] = 4461, - [4725] = 4460, - [4726] = 4459, - [4727] = 4492, - [4728] = 4428, - [4729] = 4458, - [4730] = 4730, - [4731] = 4492, - [4732] = 4732, - [4733] = 4455, - [4734] = 4427, - [4735] = 4492, + [4725] = 4725, + [4726] = 4471, + [4727] = 4433, + [4728] = 4444, + [4729] = 4472, + [4730] = 4457, + [4731] = 4433, + [4732] = 4448, + [4733] = 4440, + [4734] = 4457, + [4735] = 4433, [4736] = 4736, - [4737] = 4454, - [4738] = 4454, - [4739] = 4492, - [4740] = 4427, - [4741] = 4428, + [4737] = 4737, + [4738] = 4472, + [4739] = 4433, + [4740] = 4448, + [4741] = 4445, [4742] = 4742, - [4743] = 4455, - [4744] = 4426, - [4745] = 4458, - [4746] = 4437, - [4747] = 4452, - [4748] = 4459, - [4749] = 4461, - [4750] = 4469, + [4743] = 4433, + [4744] = 4442, + [4745] = 4437, + [4746] = 4746, + [4747] = 4433, + [4748] = 4748, + [4749] = 4440, + [4750] = 4437, [4751] = 4751, [4752] = 4752, - [4753] = 4438, - [4754] = 4754, + [4753] = 4446, + [4754] = 4471, + [4755] = 4755, + [4756] = 4440, + [4757] = 4446, + [4758] = 4438, + [4759] = 4437, + [4760] = 4760, + [4761] = 4761, + [4762] = 4762, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -8180,20 +8237,18 @@ static inline bool sym_identifier_character_set_1(int32_t c) { static inline bool sym_identifier_character_set_2(int32_t c) { return (c < 'n' - ? (c < 'b' + ? (c < 'a' ? (c < '_' ? (c >= 'A' && c <= 'Z') : c <= '_') : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'h') + ? (c >= 'd' && c <= 'i') : c <= 'l'))) - : (c <= 'n' || (c < 181 - ? (c < 's' - ? (c >= 'p' && c <= 'q') - : c <= 'z') - : (c <= 181 || (c < 945 - ? (c >= 913 && c <= 937) - : c <= 969))))); + : (c <= 'q' || (c < 913 + ? (c < 181 + ? (c >= 's' && c <= 'z') + : c <= 181) + : (c <= 937 || (c >= 945 && c <= 969))))); } static inline bool sym_identifier_character_set_3(int32_t c) { @@ -8212,18 +8267,20 @@ static inline bool sym_identifier_character_set_3(int32_t c) { static inline bool sym_identifier_character_set_4(int32_t c) { return (c < 'n' - ? (c < 'a' + ? (c < 'b' ? (c < '_' ? (c >= 'A' && c <= 'Z') : c <= '_') : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'i') + ? (c >= 'd' && c <= 'h') : c <= 'l'))) - : (c <= 'q' || (c < 913 - ? (c < 181 - ? (c >= 's' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); + : (c <= 'n' || (c < 181 + ? (c < 's' + ? (c >= 'p' && c <= 'q') + : c <= 'z') + : (c <= 181 || (c < 945 + ? (c >= 913 && c <= 937) + : c <= 969))))); } static inline bool sym_identifier_character_set_5(int32_t c) { @@ -8245,333 +8302,319 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(312); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1075); - if (lookahead == '$') ADVANCE(490); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(1041); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(459); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + if (eof) ADVANCE(204); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(410); + if (lookahead == '$') ADVANCE(317); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(230); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(376); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(286); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '\\') ADVANCE(187); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(309) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(201) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(494); + if (lookahead == '\n') ADVANCE(321); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(47); - if (lookahead == '*') ADVANCE(3); - if (lookahead == '/') ADVANCE(42); - if (lookahead != 0) ADVANCE(47); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(2) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(387); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '<') ADVANCE(285); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'l') || + ('n' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(4) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'l') || + ('n' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(4) END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(6); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(4); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '/') ADVANCE(99); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'l') || + ('n' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(5) END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '/') ADVANCE(400); - if (lookahead != 0) ADVANCE(49); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '$') ADVANCE(128); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(99); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(6) END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(99); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(99); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(228); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + if (lookahead == '\n') ADVANCE(110); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(228); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + if (lookahead == '\n') ADVANCE(110); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(10); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8579,76 +8622,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(14) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(13) END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8656,76 +8699,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(14) END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8733,76 +8776,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(18) END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(17) END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8810,76 +8853,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(18) END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) - END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8887,77 +8894,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(22) - END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) + lookahead == ' ') SKIP(20) END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); + case 20: + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -8965,41 +8935,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(22) + lookahead == ' ') SKIP(20) END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + case 21: + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9007,40 +8976,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(24) + lookahead == ' ') SKIP(22) END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + case 22: + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -9048,1176 +9017,941 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(22) + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(24) + END_STATE(); + case 24: + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(24) END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(26) END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(26) END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(28) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(28) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(30) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 31: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(32) + lookahead == ' ') SKIP(33) END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(32) - END_STATE(); - case 33: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(34) - END_STATE(); - case 34: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(34) - END_STATE(); - case 35: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(35) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); - END_STATE(); - case 36: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '<') ADVANCE(458); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(37) + lookahead == ' ') SKIP(34) END_STATE(); - case 37: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '}') ADVANCE(421); + case 33: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(37) + lookahead == ' ') SKIP(33) END_STATE(); - case 38: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); + case 34: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(38) + lookahead == ' ') SKIP(34) END_STATE(); - case 39: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '$') ADVANCE(232); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '.') ADVANCE(208); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); + case 35: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(39) + lookahead == ' ') SKIP(36) END_STATE(); - case 40: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); + case 36: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(41) + lookahead == ' ') SKIP(36) END_STATE(); - case 41: - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(154); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '}') ADVANCE(421); + case 37: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(41) - END_STATE(); - case 42: - if (lookahead == '\n') ADVANCE(42); - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0) ADVANCE(42); - END_STATE(); - case 43: - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(400); - if (lookahead != 0) ADVANCE(44); - END_STATE(); - case 44: - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(157); - if (lookahead != 0) ADVANCE(44); - END_STATE(); - case 45: - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(388); - if (lookahead != 0) ADVANCE(44); - END_STATE(); - case 46: - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(48); - if (lookahead != 0) ADVANCE(46); - END_STATE(); - case 47: - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0) ADVANCE(46); - END_STATE(); - case 48: - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(6); - if (lookahead == '/') ADVANCE(48); - if (lookahead != 0) ADVANCE(46); - END_STATE(); - case 49: - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 50: - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '/') ADVANCE(399); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 51: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(387); - if (lookahead != 0) ADVANCE(53); - END_STATE(); - case 52: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(398); - if (lookahead != 0) ADVANCE(53); - END_STATE(); - case 53: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(53); - END_STATE(); - case 54: - if (lookahead == '\n') ADVANCE(180); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(157); - if (lookahead != 0) ADVANCE(84); - END_STATE(); - case 55: - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(64); - END_STATE(); - case 56: - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(64); - END_STATE(); - case 57: - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '/') ADVANCE(389); - if (lookahead != 0) ADVANCE(72); - END_STATE(); - case 58: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(392); - if (lookahead != 0) ADVANCE(58); - END_STATE(); - case 59: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(58); - END_STATE(); - case 60: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(391); - if (lookahead != 0) ADVANCE(58); - END_STATE(); - case 61: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(393); - if (lookahead != 0) ADVANCE(58); - END_STATE(); - case 62: - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '/') ADVANCE(392); - if (lookahead != 0) ADVANCE(58); - END_STATE(); - case 63: - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '*') ADVANCE(50); - if (lookahead == '/') ADVANCE(387); - if (lookahead != 0) ADVANCE(91); - END_STATE(); - case 64: - if (lookahead == '\n') ADVANCE(200); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(392); - if (lookahead != 0) ADVANCE(62); - END_STATE(); - case 65: - if (lookahead == '\n') ADVANCE(196); - if (lookahead == '*') ADVANCE(65); - if (lookahead == '/') ADVANCE(394); - if (lookahead != 0) ADVANCE(88); - END_STATE(); - case 66: - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(77); - END_STATE(); - case 67: - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(52); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(77); - END_STATE(); - case 68: - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(157); - if (lookahead != 0) ADVANCE(69); - END_STATE(); - case 69: - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(389); - if (lookahead != 0) ADVANCE(69); - END_STATE(); - case 70: - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '/') ADVANCE(390); - if (lookahead != 0) ADVANCE(69); - END_STATE(); - case 71: - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '/') ADVANCE(389); - if (lookahead != 0) ADVANCE(69); - END_STATE(); - case 72: - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '*') ADVANCE(69); - if (lookahead == '/') ADVANCE(394); - if (lookahead != 0) ADVANCE(90); - END_STATE(); - case 73: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 74: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(73); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 75: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(93); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 76: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(52); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 77: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(52); - if (lookahead == '/') ADVANCE(73); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 78: - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(82); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(76); - END_STATE(); - case 79: - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(60); - if (lookahead == '/') ADVANCE(73); - if (lookahead != 0) ADVANCE(80); - END_STATE(); - case 80: - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(396); - if (lookahead != 0) ADVANCE(80); - END_STATE(); - case 81: - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(395); - if (lookahead != 0) ADVANCE(80); - END_STATE(); - case 82: - if (lookahead == '\n') ADVANCE(173); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '/') ADVANCE(387); - if (lookahead != 0) ADVANCE(75); - END_STATE(); - case 83: - if (lookahead == '\n') ADVANCE(171); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '/') ADVANCE(400); - if (lookahead != 0) ADVANCE(86); - END_STATE(); - case 84: - if (lookahead == '\n') ADVANCE(199); - if (lookahead == '*') ADVANCE(84); - if (lookahead == '/') ADVANCE(389); - if (lookahead != 0) ADVANCE(71); - END_STATE(); - case 85: - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '*') ADVANCE(3); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(74); - END_STATE(); - case 86: - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(45); - if (lookahead == '/') ADVANCE(85); - if (lookahead != 0) ADVANCE(67); - END_STATE(); - case 87: - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '/') ADVANCE(397); - if (lookahead != 0) ADVANCE(67); - END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(60); - if (lookahead == '/') ADVANCE(394); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 89: - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(60); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 90: - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '/') ADVANCE(394); - if (lookahead != 0) ADVANCE(81); - END_STATE(); - case 91: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(93); - if (lookahead != 0) ADVANCE(92); - END_STATE(); - case 92: - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(3); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(73); + lookahead == ' ') SKIP(38) END_STATE(); - case 93: - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(63); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(73); + case 38: + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(38) END_STATE(); - case 94: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + case 39: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 95: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + case 40: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 96: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(228); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + case 41: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(42) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 97: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(228); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + case 42: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(124); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(97) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(42) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 98: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(532); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 43: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(359); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(44) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); - case 99: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(532); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 44: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(359); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(99) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(44) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); - case 100: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 45: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(102) + lookahead == ' ') SKIP(47) END_STATE(); - case 101: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + case 46: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10225,71 +9959,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(103) + lookahead == ' ') SKIP(48) END_STATE(); - case 102: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 47: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(102) + lookahead == ' ') SKIP(47) END_STATE(); - case 103: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + case 48: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10297,39 +10031,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(103) + lookahead == ' ') SKIP(48) END_STATE(); - case 104: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + case 49: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10337,39 +10071,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(105) + lookahead == ' ') SKIP(50) END_STATE(); - case 105: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + case 50: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10377,77 +10111,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(105) + lookahead == ' ') SKIP(50) END_STATE(); - case 106: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 51: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(108) + lookahead == ' ') SKIP(53) END_STATE(); - case 107: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); + case 52: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10455,77 +10189,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(109) + lookahead == ' ') SKIP(54) END_STATE(); - case 108: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 53: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(108) + lookahead == ' ') SKIP(53) END_STATE(); - case 109: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); + case 54: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10533,103 +10267,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(109) + lookahead == ' ') SKIP(54) END_STATE(); - case 110: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 55: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(111) + lookahead == ' ') SKIP(56) END_STATE(); - case 111: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 56: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(111) + lookahead == ' ') SKIP(56) END_STATE(); - case 112: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); + case 57: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10637,37 +10371,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(113) + lookahead == ' ') SKIP(58) END_STATE(); - case 113: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); + case 58: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10675,37 +10409,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(113) + lookahead == ' ') SKIP(58) END_STATE(); - case 114: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); + case 59: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10713,36 +10447,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(115) + lookahead == ' ') SKIP(60) END_STATE(); - case 115: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); + case 60: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10750,37 +10484,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(115) + lookahead == ' ') SKIP(60) END_STATE(); - case 116: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + case 61: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10788,38 +10522,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(117) + lookahead == ' ') SKIP(62) END_STATE(); - case 117: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + case 62: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10827,39 +10561,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(117) + lookahead == ' ') SKIP(62) END_STATE(); - case 118: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); + case 63: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10867,39 +10601,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119) + lookahead == ' ') SKIP(64) END_STATE(); - case 119: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); + case 64: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10907,41 +10641,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(119) + lookahead == ' ') SKIP(64) END_STATE(); - case 120: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); + case 65: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10949,42 +10683,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(121) + lookahead == ' ') SKIP(66) END_STATE(); - case 121: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); + case 66: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -10992,38 +10726,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(121) + lookahead == ' ') SKIP(66) END_STATE(); - case 122: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); + case 67: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -11031,37 +10765,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(123) + lookahead == ' ') SKIP(68) END_STATE(); - case 123: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); + case 68: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -11069,37 +10803,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(123) + lookahead == ' ') SKIP(68) END_STATE(); - case 124: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); + case 69: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -11107,36 +10841,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(125) + lookahead == ' ') SKIP(70) END_STATE(); - case 125: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(230); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); + case 70: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(126); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'h') || @@ -11144,568 +10878,568 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('p' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == '|') ADVANCE(428); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(125) + lookahead == ' ') SKIP(70) END_STATE(); - case 126: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(246); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 71: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(142); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(127) + lookahead == ' ') SKIP(72) END_STATE(); - case 127: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(246); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(445); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 72: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(142); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(272); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(127) + lookahead == ' ') SKIP(72) END_STATE(); - case 128: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 73: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(129) + lookahead == ' ') SKIP(74) END_STATE(); - case 129: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(440); - if (lookahead == ':') ADVANCE(463); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); + case 74: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(267); + if (lookahead == ':') ADVANCE(290); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(129) + lookahead == ' ') SKIP(74) END_STATE(); - case 130: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 75: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(131) + lookahead == ' ') SKIP(76) END_STATE(); - case 131: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 76: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(131) + lookahead == ' ') SKIP(76) END_STATE(); - case 132: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 77: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(133) + lookahead == ' ') SKIP(78) END_STATE(); - case 133: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(446); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 78: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(115); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(273); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(133) + lookahead == ' ') SKIP(78) END_STATE(); - case 134: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 79: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) + lookahead == ' ') SKIP(80) END_STATE(); - case 135: - if (lookahead == '!') ADVANCE(469); - if (lookahead == '#') ADVANCE(234); - if (lookahead == '$') ADVANCE(245); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(439); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (lookahead == 'a') ADVANCE(254); - if (lookahead == 'i') ADVANCE(251); - if (lookahead == 'o') ADVANCE(253); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); + case 80: + if (lookahead == '!') ADVANCE(296); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '$') ADVANCE(141); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(266); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (lookahead == 'a') ADVANCE(150); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'o') ADVANCE(149); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(135) + lookahead == ' ') SKIP(80) END_STATE(); - case 136: - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(413); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(462); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); + case 81: + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(289); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(136) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(81) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 137: - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(415); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(151); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '~') ADVANCE(472); + case 82: + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '$') ADVANCE(127); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(96); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '~') ADVANCE(299); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(82) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 138: - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '<') ADVANCE(458); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); + case 83: + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '<') ADVANCE(285); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '{') ADVANCE(419); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '{') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(84) END_STATE(); - case 139: - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); + case 84: + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '{') ADVANCE(419); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '{') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(84) END_STATE(); - case 140: - if (lookahead == '!') ADVANCE(468); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '.') ADVANCE(208); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); + case 85: + if (lookahead == '!') ADVANCE(295); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '.') ADVANCE(106); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'l') || ('n' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == '{') ADVANCE(419); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == '{') ADVANCE(246); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(140) + lookahead == ' ') SKIP(85) END_STATE(); - case 141: - if (lookahead == '!') ADVANCE(217); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '<') ADVANCE(447); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(449); - if (lookahead == '@') ADVANCE(148); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); + case 86: + if (lookahead == '!') ADVANCE(113); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '<') ADVANCE(274); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(276); + if (lookahead == '@') ADVANCE(93); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(141) + lookahead == ' ') SKIP(86) END_STATE(); - case 142: - if (lookahead == '!') ADVANCE(217); - if (lookahead == '$') ADVANCE(491); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(532); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(460); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(449); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == ']') ADVANCE(461); + case 87: + if (lookahead == '!') ADVANCE(113); + if (lookahead == '$') ADVANCE(318); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(359); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(287); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(276); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == ']') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(88) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); - case 143: - if (lookahead == '!') ADVANCE(217); - if (lookahead == '$') ADVANCE(491); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(412); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(532); - if (lookahead == ':') ADVANCE(462); - if (lookahead == '<') ADVANCE(447); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(449); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); + case 88: + if (lookahead == '!') ADVANCE(113); + if (lookahead == '$') ADVANCE(318); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(239); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(359); + if (lookahead == ':') ADVANCE(289); + if (lookahead == '<') ADVANCE(274); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(276); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(143) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(88) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); - case 144: - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '$') ADVANCE(232); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '.') ADVANCE(268); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); + case 89: + if (lookahead == '"') ADVANCE(420); + if (lookahead == '$') ADVANCE(128); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '.') ADVANCE(164); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || lookahead == 'a' || @@ -11714,9389 +11448,2884 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('s' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'r') ADVANCE(1045); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'r') ADVANCE(380); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(144) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + lookahead == ' ') SKIP(89) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); - case 145: - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '$') ADVANCE(256); - if (lookahead == '/') ADVANCE(733); - if (lookahead == '\\') ADVANCE(291); + case 90: + if (lookahead == '"') ADVANCE(420); + if (lookahead == '$') ADVANCE(152); + if (lookahead == '/') ADVANCE(366); + if (lookahead == '\\') ADVANCE(187); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(784); - if (lookahead != 0) ADVANCE(787); + lookahead == ' ') ADVANCE(367); + if (lookahead != 0) ADVANCE(368); END_STATE(); - case 146: - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '/') ADVANCE(985); + case 91: + if (lookahead == '"') ADVANCE(420); + if (lookahead == '/') ADVANCE(372); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1036); - if (lookahead != 0) ADVANCE(1039); + lookahead == ' ') ADVANCE(373); + if (lookahead != 0) ADVANCE(374); END_STATE(); - case 147: - if (lookahead == '$') ADVANCE(232); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(1041); - if (lookahead == '>') ADVANCE(448); - if (lookahead == '@') ADVANCE(149); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == ']') ADVANCE(461); + case 92: + if (lookahead == '$') ADVANCE(128); + if (lookahead == '.') ADVANCE(237); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(376); + if (lookahead == '>') ADVANCE(275); + if (lookahead == '@') ADVANCE(94); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == ']') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == '}') ADVANCE(421); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == '}') ADVANCE(248); if (lookahead == '+' || - lookahead == '-') ADVANCE(1040); + lookahead == '-') ADVANCE(375); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(147) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + lookahead == ' ') SKIP(92) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); - case 148: - if (lookahead == '$') ADVANCE(232); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(1271); + case 93: + if (lookahead == '$') ADVANCE(128); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(418); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); - case 149: - if (lookahead == '$') ADVANCE(232); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); + case 94: + if (lookahead == '$') ADVANCE(128); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); - case 150: - if (lookahead == '$') ADVANCE(232); - if (lookahead == 'C') ADVANCE(1046); - if (lookahead == 'J') ADVANCE(1050); - if (lookahead == '[') ADVANCE(1271); + case 95: + if (lookahead == '$') ADVANCE(128); + if (lookahead == 'C') ADVANCE(381); + if (lookahead == 'J') ADVANCE(385); + if (lookahead == '[') ADVANCE(418); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(1053); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(388); END_STATE(); - case 151: - if (lookahead == '$') ADVANCE(232); - if (lookahead == 'C') ADVANCE(1046); - if (lookahead == 'J') ADVANCE(1050); + case 96: + if (lookahead == '$') ADVANCE(128); + if (lookahead == 'C') ADVANCE(381); + if (lookahead == 'J') ADVANCE(385); if (lookahead == '_' || ('a' <= lookahead && lookahead <= 'z') || lookahead == 181 || (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(1053); + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(388); END_STATE(); - case 152: - if (lookahead == '$') ADVANCE(256); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '/') ADVANCE(607); - if (lookahead == '\\') ADVANCE(291); + case 97: + if (lookahead == '$') ADVANCE(152); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '/') ADVANCE(363); + if (lookahead == '\\') ADVANCE(187); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(658); - if (lookahead != 0) ADVANCE(661); + lookahead == ' ') ADVANCE(364); + if (lookahead != 0) ADVANCE(365); END_STATE(); - case 153: - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '/') ADVANCE(859); + case 98: + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '/') ADVANCE(369); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(370); + if (lookahead != 0) ADVANCE(371); + END_STATE(); + case 99: + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(217); + END_STATE(); + case 100: + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '=') ADVANCE(339); + END_STATE(); + case 101: + if (lookahead == '*') ADVANCE(226); + END_STATE(); + case 102: + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(233); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(228); + if (lookahead != 0) ADVANCE(229); + END_STATE(); + case 103: + if (lookahead == '-') ADVANCE(306); + END_STATE(); + case 104: + if (lookahead == '-') ADVANCE(306); + if (lookahead == '<') ADVANCE(119); + END_STATE(); + case 105: + if (lookahead == '.') ADVANCE(283); + END_STATE(); + case 106: + if (lookahead == '.') ADVANCE(105); + END_STATE(); + case 107: + if (lookahead == '.') ADVANCE(164); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(153); + if (lookahead == '_') ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + END_STATE(); + case 108: + if (lookahead == '.') ADVANCE(172); + if (lookahead == '_') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(351); + END_STATE(); + case 109: + if (lookahead == '/') ADVANCE(99); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(109) + END_STATE(); + case 110: + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(110); + END_STATE(); + case 111: + if (lookahead == '/') ADVANCE(415); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(910); - if (lookahead != 0) ADVANCE(913); + lookahead == ' ') ADVANCE(416); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(417); + END_STATE(); + case 112: + if (lookahead == '/') ADVANCE(412); + if (lookahead == '\n' || + lookahead == '\r') SKIP(109) + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(413); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(414); + END_STATE(); + case 113: + if (lookahead == '=') ADVANCE(280); + END_STATE(); + case 114: + if (lookahead == '=') ADVANCE(340); + END_STATE(); + case 115: + if (lookahead == '=') ADVANCE(350); + END_STATE(); + case 116: + if (lookahead == '=') ADVANCE(279); + END_STATE(); + case 117: + if (lookahead == '=') ADVANCE(348); + END_STATE(); + case 118: + if (lookahead == '=') ADVANCE(345); + END_STATE(); + case 119: + if (lookahead == '=') ADVANCE(341); + END_STATE(); + case 120: + if (lookahead == '=') ADVANCE(342); + if (lookahead == '>') ADVANCE(121); + END_STATE(); + case 121: + if (lookahead == '=') ADVANCE(343); + END_STATE(); + case 122: + if (lookahead == '>') ADVANCE(120); + END_STATE(); + case 123: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'd') || + lookahead == 'g' || + lookahead == 'h' || + ('j' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'f') ADVANCE(395); + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 124: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'd') || + ('f' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 125: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e') || + lookahead == 'g' || + lookahead == 'h' || + ('j' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'f') ADVANCE(395); + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 126: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'd') || + ('f' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'e') ADVANCE(392); + END_STATE(); + case 127: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'i') ADVANCE(391); + END_STATE(); + case 128: + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + END_STATE(); + case 129: + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + END_STATE(); + case 130: + if (lookahead == '[') ADVANCE(327); + END_STATE(); + case 131: + if (lookahead == '_') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(355); + END_STATE(); + case 132: + if (lookahead == '_') ADVANCE(156); + if (lookahead == '0' || + lookahead == '1') ADVANCE(357); + END_STATE(); + case 133: + if (lookahead == '_') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); + END_STATE(); + case 134: + if (lookahead == '`') ADVANCE(362); + END_STATE(); + case 135: + if (lookahead == '`') ADVANCE(362); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(159); + END_STATE(); + case 136: + if (lookahead == 'c') ADVANCE(148); + END_STATE(); + case 137: + if (lookahead == 'd') ADVANCE(139); + END_STATE(); + case 138: + if (lookahead == 'd') ADVANCE(140); + END_STATE(); + case 139: + if (lookahead == 'e') ADVANCE(136); + END_STATE(); + case 140: + if (lookahead == 'e') ADVANCE(297); + END_STATE(); + case 141: + if (lookahead == 'e') ADVANCE(145); + END_STATE(); + case 142: + if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'i') ADVANCE(144); + END_STATE(); + case 143: + if (lookahead == 'e') ADVANCE(330); + END_STATE(); + case 144: + if (lookahead == 'f') ADVANCE(328); + END_STATE(); + case 145: + if (lookahead == 'l') ADVANCE(151); + END_STATE(); + case 146: + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 's') ADVANCE(334); + END_STATE(); + case 147: + if (lookahead == 'n') ADVANCE(335); + if (lookahead == 's') ADVANCE(332); + END_STATE(); + case 148: + if (lookahead == 'o') ADVANCE(138); + END_STATE(); + case 149: + if (lookahead == 'r') ADVANCE(319); + END_STATE(); + case 150: + if (lookahead == 's') ADVANCE(244); + END_STATE(); + case 151: + if (lookahead == 's') ADVANCE(143); + END_STATE(); + case 152: + if (lookahead == '{') ADVANCE(419); + END_STATE(); + case 153: + if (lookahead == '+' || + lookahead == '-') ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 154: - if (lookahead == '*') ADVANCE(2); - if (lookahead == '/') ADVANCE(384); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(153); + if (lookahead == '_') ADVANCE(172); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 155: - if (lookahead == '*') ADVANCE(2); - if (lookahead == '/') ADVANCE(384); - if (lookahead == '=') ADVANCE(512); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 156: - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(400); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + if (lookahead == '0' || + lookahead == '1') ADVANCE(357); END_STATE(); case 157: - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + if (lookahead == '8' || + lookahead == '9') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(353); END_STATE(); case 158: - if (lookahead == '*') ADVANCE(161); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(211); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(355); END_STATE(); case 159: - if (lookahead == '*') ADVANCE(160); - if (lookahead == '/') ADVANCE(211); - if (lookahead != 0) ADVANCE(216); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(134); END_STATE(); case 160: - if (lookahead == '*') ADVANCE(160); - if (lookahead == '/') ADVANCE(162); - if (lookahead != 0) ADVANCE(162); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(159); END_STATE(); case 161: - if (lookahead == '*') ADVANCE(160); - if (lookahead != 0 && - lookahead != '/') ADVANCE(294); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); case 162: - if (lookahead == '*') ADVANCE(292); - if (lookahead == '/') ADVANCE(165); - if (lookahead != 0) ADVANCE(167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(321); END_STATE(); case 163: - if (lookahead == '*') ADVANCE(292); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 164: - if (lookahead == '*') ADVANCE(292); - if (lookahead == '/') ADVANCE(197); - if (lookahead != 0) ADVANCE(198); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); END_STATE(); case 165: - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(165); - if (lookahead != 0) ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); END_STATE(); case 166: - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 167: - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(166); - if (lookahead != 0) ADVANCE(176); + if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(134); + if (lookahead == '0') ADVANCE(135); + if (lookahead == 'U') ADVANCE(185); + if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'x') ADVANCE(174); + if (('1' <= lookahead && lookahead <= '7')) ADVANCE(160); END_STATE(); case 168: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(211); - if (lookahead != 0) ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(321); END_STATE(); case 169: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); case 170: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(215); - if (lookahead != 0) ADVANCE(169); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); END_STATE(); case 171: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(162); - if (lookahead != 0) ADVANCE(175); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(351); END_STATE(); case 172: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(293); - if (lookahead != 0) ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(154); END_STATE(); case 173: - if (lookahead == '*') ADVANCE(172); - if (lookahead == '/') ADVANCE(184); - if (lookahead != 0) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); END_STATE(); case 174: - if (lookahead == '*') ADVANCE(172); - if (lookahead != 0 && - lookahead != '/') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(169); END_STATE(); case 175: - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(165); - if (lookahead != 0) ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(174); END_STATE(); case 176: - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(173); END_STATE(); case 177: - if (lookahead == '*') ADVANCE(170); - if (lookahead == '/') ADVANCE(166); - if (lookahead != 0) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); END_STATE(); case 178: - if (lookahead == '*') ADVANCE(202); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); END_STATE(); case 179: - if (lookahead == '*') ADVANCE(180); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); END_STATE(); case 180: - if (lookahead == '*') ADVANCE(180); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0) ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(177); END_STATE(); case 181: - if (lookahead == '*') ADVANCE(180); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0) ADVANCE(200); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); END_STATE(); case 182: - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0) ADVANCE(201); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); END_STATE(); case 183: - if (lookahead == '*') ADVANCE(183); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0) ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(181); END_STATE(); case 184: - if (lookahead == '*') ADVANCE(159); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(182); END_STATE(); case 185: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(187); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); END_STATE(); case 186: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0) ADVANCE(186); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 187: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0) ADVANCE(187); + if (lookahead != 0 && + lookahead != '\t' && + (lookahead < 11 || '\r' < lookahead) && + lookahead != ' ' && + (lookahead < '0' || '9' < lookahead) && + lookahead != 'U' && + lookahead != 'u' && + lookahead != 'x') ADVANCE(321); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == 'U') ADVANCE(323); + if (lookahead == 'u') ADVANCE(325); + if (lookahead == 'x') ADVANCE(324); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(322); END_STATE(); case 188: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(402); - if (lookahead != 0) ADVANCE(186); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(134); + if (lookahead == '\\') ADVANCE(167); END_STATE(); case 189: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(403); - if (lookahead != 0) ADVANCE(187); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(189) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 190: - if (lookahead == '*') ADVANCE(188); - if (lookahead == '/') ADVANCE(401); - if (lookahead != 0) ADVANCE(187); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(191) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 191: - if (lookahead == '*') ADVANCE(188); - if (lookahead != 0 && - lookahead != '/') ADVANCE(186); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(191) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 192: - if (lookahead == '*') ADVANCE(189); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0) ADVANCE(194); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(193) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 193: - if (lookahead == '*') ADVANCE(189); - if (lookahead == '/') ADVANCE(407); - if (lookahead != 0) ADVANCE(193); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(193) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 194: - if (lookahead == '*') ADVANCE(189); - if (lookahead == '/') ADVANCE(406); - if (lookahead != 0) ADVANCE(193); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(123); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(195) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 195: - if (lookahead == '*') ADVANCE(182); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(181); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(123); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(267); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(195) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 196: - if (lookahead == '*') ADVANCE(190); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0) ADVANCE(194); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(197) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 197: - if (lookahead == '*') ADVANCE(190); - if (lookahead == '/') ADVANCE(165); - if (lookahead != 0) ADVANCE(194); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(197) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 198: - if (lookahead == '*') ADVANCE(190); - if (lookahead == '/') ADVANCE(166); - if (lookahead != 0) ADVANCE(193); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(123); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(284); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(199) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 199: - if (lookahead == '*') ADVANCE(186); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0) ADVANCE(186); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(123); + if (lookahead == '%') ADVANCE(268); + if (lookahead == '&') ADVANCE(304); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(257); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(261); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(271); + if (lookahead == '=') ADVANCE(116); + if (lookahead == '>') ADVANCE(278); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(255); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(199) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 200: - if (lookahead == '*') ADVANCE(186); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0) ADVANCE(187); + if (eof) ADVANCE(204); + if (lookahead == '\n') ADVANCE(208); + if (lookahead == '\r') ADVANCE(212); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '%') ADVANCE(114); + if (lookahead == '&') ADVANCE(305); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(265); + if (lookahead == '+') ADVANCE(259); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(263); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(100); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(115); + if (lookahead == '<') ADVANCE(104); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '>') ADVANCE(122); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(117); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(200) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 201: - if (lookahead == '*') ADVANCE(186); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0) ADVANCE(192); + if (eof) ADVANCE(204); + if (lookahead == '!') ADVANCE(296); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(410); + if (lookahead == '$') ADVANCE(317); + if (lookahead == '%') ADVANCE(269); + if (lookahead == '&') ADVANCE(303); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(230); + if (lookahead == '+') ADVANCE(258); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(262); + if (lookahead == '.') ADVANCE(238); + if (lookahead == '/') ADVANCE(232); + if (lookahead == '0') ADVANCE(376); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(270); + if (lookahead == '=') ADVANCE(252); + if (lookahead == '>') ADVANCE(277); + if (lookahead == '?') ADVANCE(294); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '\\') ADVANCE(187); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(301); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'a') ADVANCE(399); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'o') ADVANCE(397); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(254); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(201) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); case 202: - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(211); - if (lookahead != 0) ADVANCE(173); + if (eof) ADVANCE(204); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(409); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == ')') ADVANCE(250); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == ',') ADVANCE(247); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == ':') ADVANCE(290); + if (lookahead == ';') ADVANCE(236); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '=') ADVANCE(251); + if (lookahead == '>') ADVANCE(275); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == ']') ADVANCE(288); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '|') ADVANCE(253); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(202) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 203: - if (lookahead == '*') ADVANCE(203); - if (lookahead == '/') ADVANCE(164); - if (lookahead != 0) ADVANCE(175); + if (eof) ADVANCE(204); + if (lookahead == '!') ADVANCE(295); + if (lookahead == '"') ADVANCE(420); + if (lookahead == '#') ADVANCE(408); + if (lookahead == '$') ADVANCE(125); + if (lookahead == '&') ADVANCE(302); + if (lookahead == '\'') ADVANCE(421); + if (lookahead == '(') ADVANCE(249); + if (lookahead == '*') ADVANCE(264); + if (lookahead == '+') ADVANCE(256); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '.') ADVANCE(243); + if (lookahead == '/') ADVANCE(99); + if (lookahead == '0') ADVANCE(352); + if (lookahead == '<') ADVANCE(103); + if (lookahead == '?') ADVANCE(293); + if (lookahead == '@') ADVANCE(95); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (lookahead == '[') ADVANCE(298); + if (lookahead == '^') ADVANCE(300); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(403); + if (lookahead == '`') ADVANCE(188); + if (lookahead == 'c') ADVANCE(379); + if (lookahead == 'j') ADVANCE(401); + if (lookahead == 'm') ADVANCE(402); + if (lookahead == 'r') ADVANCE(380); + if (lookahead == '{') ADVANCE(246); + if (lookahead == '}') ADVANCE(248); + if (lookahead == '~') ADVANCE(299); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(203) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 204: - if (lookahead == '*') ADVANCE(203); - if (lookahead != 0 && - lookahead != '/') ADVANCE(171); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 205: - if (lookahead == '-') ADVANCE(479); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '/') ADVANCE(99); END_STATE(); case 206: - if (lookahead == '-') ADVANCE(479); - if (lookahead == '<') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '/') ADVANCE(267); END_STATE(); case 207: - if (lookahead == '.') ADVANCE(456); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '/') ADVANCE(266); END_STATE(); case 208: - if (lookahead == '.') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(208); + if (lookahead == '\r') ADVANCE(212); + if (lookahead == '/') ADVANCE(100); END_STATE(); case 209: - if (lookahead == '.') ADVANCE(268); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); - if (lookahead == '_') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(205); + if (lookahead == '\r') ADVANCE(209); + if (lookahead == '/') ADVANCE(99); END_STATE(); case 210: - if (lookahead == '.') ADVANCE(276); - if (lookahead == '_') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(524); + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(206); + if (lookahead == '\r') ADVANCE(210); + if (lookahead == '/') ADVANCE(267); END_STATE(); case 211: - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0 && - lookahead != '*') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(207); + if (lookahead == '\r') ADVANCE(211); + if (lookahead == '/') ADVANCE(266); END_STATE(); case 212: - if (lookahead == '/') ADVANCE(154); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(212) + ACCEPT_TOKEN(anon_sym_CR); + if (lookahead == '\n') ADVANCE(208); + if (lookahead == '\r') ADVANCE(212); + if (lookahead == '/') ADVANCE(100); END_STATE(); case 213: - if (lookahead == '/') ADVANCE(1216); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1267); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1270); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 214: - if (lookahead == '/') ADVANCE(1140); - if (lookahead == '\n' || - lookahead == '\r') SKIP(212) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(1143); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(219); if (lookahead != 0 && - lookahead != '\\') ADVANCE(1144); + lookahead != '\n') ADVANCE(216); END_STATE(); case 215: - if (lookahead == '/') ADVANCE(195); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '/') ADVANCE(214); + if (lookahead == '\t' || + (11 <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(215); if (lookahead != 0 && - lookahead != '*') ADVANCE(179); + lookahead != '\n') ADVANCE(216); END_STATE(); case 216: - if (lookahead == '/') ADVANCE(184); + ACCEPT_TOKEN(aux_sym_shebang_token1); if (lookahead != 0 && - lookahead != '*') ADVANCE(163); + lookahead != '\n') ADVANCE(216); END_STATE(); case 217: - if (lookahead == '=') ADVANCE(453); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 218: - if (lookahead == '=') ADVANCE(513); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(414); END_STATE(); case 219: - if (lookahead == '=') ADVANCE(523); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(216); END_STATE(); case 220: - if (lookahead == '=') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); case 221: - if (lookahead == '=') ADVANCE(521); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(368); END_STATE(); case 222: - if (lookahead == '=') ADVANCE(518); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(365); END_STATE(); case 223: - if (lookahead == '=') ADVANCE(514); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(417); END_STATE(); case 224: - if (lookahead == '=') ADVANCE(515); - if (lookahead == '>') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '"') ADVANCE(374); END_STATE(); case 225: - if (lookahead == '=') ADVANCE(516); + ACCEPT_TOKEN(anon_sym_SLASH_STAR); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(371); END_STATE(); case 226: - if (lookahead == '>') ADVANCE(224); + ACCEPT_TOKEN(aux_sym_block_comment_token1); END_STATE(); case 227: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'e') ADVANCE(1057); - if (lookahead == 'f') ADVANCE(1060); - if (lookahead == 'i') ADVANCE(1056); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(226); + if (lookahead != 0) ADVANCE(226); END_STATE(); case 228: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'e') ADVANCE(1057); - if (lookahead == 'i') ADVANCE(1056); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '*') ADVANCE(231); + if (lookahead == '/') ADVANCE(227); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(228); + if (lookahead != 0) ADVANCE(229); END_STATE(); case 229: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'f') ADVANCE(1060); - if (lookahead == 'i') ADVANCE(1056); + ACCEPT_TOKEN(aux_sym_block_comment_token1); + if (lookahead == '/') ADVANCE(226); END_STATE(); case 230: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'e') ADVANCE(1057); + ACCEPT_TOKEN(aux_sym_block_comment_token2); + if (lookahead == '/') ADVANCE(234); END_STATE(); case 231: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'i') ADVANCE(1056); + ACCEPT_TOKEN(aux_sym_block_comment_token2); + if (lookahead == '/') ADVANCE(235); END_STATE(); case 232: - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + ACCEPT_TOKEN(aux_sym_block_comment_token3); + if (lookahead == '*') ADVANCE(220); END_STATE(); case 233: - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + ACCEPT_TOKEN(aux_sym_block_comment_token3); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(226); + if (lookahead != 0) ADVANCE(226); END_STATE(); case 234: - if (lookahead == '[') ADVANCE(500); + ACCEPT_TOKEN(anon_sym_STAR_SLASH); END_STATE(); case 235: - if (lookahead == '_') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(528); + ACCEPT_TOKEN(anon_sym_STAR_SLASH); + if (lookahead == '\n') ADVANCE(110); + if (lookahead == '\r') ADVANCE(9); + if (lookahead == '/') ADVANCE(101); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(10); END_STATE(); case 236: - if (lookahead == '_') ADVANCE(260); - if (lookahead == '0' || - lookahead == '1') ADVANCE(530); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 237: - if (lookahead == '_') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 238: - if (lookahead == '`') ADVANCE(535); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(407); END_STATE(); case 239: - if (lookahead == '`') ADVANCE(535); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(263); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(105); END_STATE(); case 240: - if (lookahead == 'c') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); END_STATE(); case 241: - if (lookahead == 'd') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(406); END_STATE(); case 242: - if (lookahead == 'd') ADVANCE(244); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(406); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); END_STATE(); case 243: - if (lookahead == 'e') ADVANCE(240); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); END_STATE(); case 244: - if (lookahead == 'e') ADVANCE(470); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 245: - if (lookahead == 'e') ADVANCE(249); + ACCEPT_TOKEN(anon_sym_as); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 246: - if (lookahead == 'e') ADVANCE(249); - if (lookahead == 'i') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 247: - if (lookahead == 'e') ADVANCE(503); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 248: - if (lookahead == 'f') ADVANCE(501); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 249: - if (lookahead == 'l') ADVANCE(255); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 250: - if (lookahead == 'n') ADVANCE(510); - if (lookahead == 's') ADVANCE(507); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 251: - if (lookahead == 'n') ADVANCE(508); - if (lookahead == 's') ADVANCE(505); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 252: - if (lookahead == 'o') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(279); END_STATE(); case 253: - if (lookahead == 'r') ADVANCE(492); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 254: - if (lookahead == 's') ADVANCE(417); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(348); + if (lookahead == '|') ADVANCE(316); END_STATE(); case 255: - if (lookahead == 's') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(316); END_STATE(); case 256: - if (lookahead == '{') ADVANCE(1272); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 257: - if (lookahead == '+' || - lookahead == '-') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(291); END_STATE(); case 258: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(257); - if (lookahead == '_') ADVANCE(276); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(291); + if (lookahead == '=') ADVANCE(346); END_STATE(); case 259: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(257); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(346); END_STATE(); case 260: - if (lookahead == '0' || - lookahead == '1') ADVANCE(530); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 261: - if (lookahead == '8' || - lookahead == '9') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(526); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(292); END_STATE(); case 262: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(528); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(292); + if (lookahead == '=') ADVANCE(347); END_STATE(); case 263: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(238); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(347); END_STATE(); case 264: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(263); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 265: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(529); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(338); END_STATE(); case 266: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(494); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(217); END_STATE(); case 267: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(217); + if (lookahead == '=') ADVANCE(339); END_STATE(); case 268: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 269: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(340); END_STATE(); case 270: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(306); + if (lookahead == '<') ADVANCE(308); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 271: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(238); - if (lookahead == '0') ADVANCE(239); - if (lookahead == 'U') ADVANCE(289); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == 'x') ADVANCE(278); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(264); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(306); + if (lookahead == '<') ADVANCE(307); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 272: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(494); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(308); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 273: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(238); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(307); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 274: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 275: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(524); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 276: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(258); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(282); END_STATE(); case 277: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(282); + if (lookahead == '>') ADVANCE(309); END_STATE(); case 278: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(273); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(282); + if (lookahead == '>') ADVANCE(310); END_STATE(); case 279: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(278); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 280: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(277); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 281: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(280); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 282: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(279); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 283: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 284: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(281); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 285: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); + ACCEPT_TOKEN(anon_sym_LT2); END_STATE(); case 286: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '-') ADVANCE(306); + if (lookahead == '<') ADVANCE(308); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 287: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(285); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(281); END_STATE(); case 288: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(286); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 289: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(288); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 290: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(350); END_STATE(); case 291: - if (lookahead != 0 && - lookahead != '\t' && - (lookahead < 11 || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '0' || '9' < lookahead) && - lookahead != 'U' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(494); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(496); - if (lookahead == 'u') ADVANCE(498); - if (lookahead == 'x') ADVANCE(497); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(495); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 292: - if (lookahead != 0 && - lookahead != '*') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 293: - if (lookahead != 0 && - lookahead != '*') ADVANCE(295); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 294: - if (lookahead != 0 && - lookahead != '*') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(326); END_STATE(); case 295: - if (lookahead != 0 && - lookahead != '/') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 296: - if (lookahead != 0 && - lookahead != '\\') ADVANCE(238); - if (lookahead == '\\') ADVANCE(271); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(280); + if (lookahead == 'i') ADVANCE(146); END_STATE(); case 297: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(298) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_json_DOTdecode); END_STATE(); case 298: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(298) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); case 299: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(300) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 300: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(300) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 301: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(227); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(302) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(349); END_STATE(); case 302: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(227); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(302) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 303: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(227); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(304) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(315); + if (lookahead == '=') ADVANCE(344); + if (lookahead == '^') ADVANCE(314); END_STATE(); case 304: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1076); - if (lookahead == '$') ADVANCE(227); - if (lookahead == '%') ADVANCE(441); - if (lookahead == '&') ADVANCE(477); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(430); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(434); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(439); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(444); - if (lookahead == '=') ADVANCE(220); - if (lookahead == '>') ADVANCE(451); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(428); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(304) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(315); + if (lookahead == '^') ADVANCE(313); END_STATE(); case 305: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1073); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '%') ADVANCE(218); - if (lookahead == '&') ADVANCE(478); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(432); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(436); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(155); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ':') ADVANCE(219); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '=') ADVANCE(424); - if (lookahead == '>') ADVANCE(226); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(221); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(305) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(344); + if (lookahead == '^') ADVANCE(118); END_STATE(); case 306: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1073); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(306) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_LT_DASH); END_STATE(); case 307: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1073); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(457); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(308) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 308: - if (eof) ADVANCE(312); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1073); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(308) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(341); END_STATE(); case 309: - if (eof) ADVANCE(312); - if (lookahead == '!') ADVANCE(469); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1075); - if (lookahead == '$') ADVANCE(490); - if (lookahead == '%') ADVANCE(442); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == ')') ADVANCE(423); - if (lookahead == '*') ADVANCE(438); - if (lookahead == '+') ADVANCE(431); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(435); - if (lookahead == '.') ADVANCE(411); - if (lookahead == '/') ADVANCE(440); - if (lookahead == '0') ADVANCE(1041); - if (lookahead == ':') ADVANCE(463); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(443); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(450); - if (lookahead == '?') ADVANCE(467); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(474); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'a') ADVANCE(1064); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'i') ADVANCE(1054); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'o') ADVANCE(1062); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(427); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(309) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(529); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(342); + if (lookahead == '>') ADVANCE(312); END_STATE(); case 310: - if (eof) ADVANCE(312); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1074); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == ',') ADVANCE(420); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == ';') ADVANCE(409); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '>') ADVANCE(448); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == ']') ADVANCE(461); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '|') ADVANCE(426); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(310) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(311); END_STATE(); case 311: - if (eof) ADVANCE(312); - if (lookahead == '!') ADVANCE(468); - if (lookahead == '"') ADVANCE(1273); - if (lookahead == '#') ADVANCE(1073); - if (lookahead == '$') ADVANCE(229); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(1274); - if (lookahead == '(') ADVANCE(422); - if (lookahead == '*') ADVANCE(437); - if (lookahead == '+') ADVANCE(429); - if (lookahead == '-') ADVANCE(433); - if (lookahead == '.') ADVANCE(416); - if (lookahead == '/') ADVANCE(154); - if (lookahead == '0') ADVANCE(525); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '?') ADVANCE(466); - if (lookahead == '@') ADVANCE(150); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (lookahead == '[') ADVANCE(471); - if (lookahead == '^') ADVANCE(473); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(1068); - if (lookahead == '`') ADVANCE(296); - if (lookahead == 'c') ADVANCE(1044); - if (lookahead == 'j') ADVANCE(1066); - if (lookahead == 'm') ADVANCE(1067); - if (lookahead == 'r') ADVANCE(1045); - if (lookahead == '{') ADVANCE(419); - if (lookahead == '}') ADVANCE(421); - if (lookahead == '~') ADVANCE(472); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(311) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(527); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 312: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(343); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); + ACCEPT_TOKEN(anon_sym_AMP_CARET); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_CR); - if (lookahead == '\n') ADVANCE(313); - if (lookahead == '\r') ADVANCE(314); + ACCEPT_TOKEN(anon_sym_AMP_CARET); + if (lookahead == '=') ADVANCE(345); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 316: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(47); - if (lookahead == '*') ADVANCE(318); - if (lookahead == '/') ADVANCE(322); - if (lookahead != 0) ADVANCE(327); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 317: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(317); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'd') || + lookahead == 'g' || + lookahead == 'h' || + ('j' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'f') ADVANCE(395); + if (lookahead == 'i') ADVANCE(391); + if (lookahead == '{') ADVANCE(419); END_STATE(); case 318: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(317); - if (lookahead != 0) ADVANCE(317); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'J') ADVANCE(386); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 319: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(320); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(317); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 320: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '*') ADVANCE(330); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(329); + ACCEPT_TOKEN(anon_sym_or); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 321: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(295); - if (lookahead == '*') ADVANCE(380); - if (lookahead != 0) ADVANCE(337); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 322: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(42); - if (lookahead == '*') ADVANCE(380); - if (lookahead != 0) ADVANCE(322); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(162); END_STATE(); case 323: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(323); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); END_STATE(); case 324: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(321); - if (lookahead != 0) ADVANCE(323); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(168); END_STATE(); case 325: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(323); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(323); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); END_STATE(); case 326: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(328); - if (lookahead != 0) ADVANCE(326); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 327: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(380); - if (lookahead != 0) ADVANCE(326); + ACCEPT_TOKEN(anon_sym_POUND_LBRACK); END_STATE(); case 328: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(320); - if (lookahead == '/') ADVANCE(328); - if (lookahead != 0) ADVANCE(326); + ACCEPT_TOKEN(anon_sym_DOLLARif); END_STATE(); case 329: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(380); - if (lookahead != 0) ADVANCE(371); + ACCEPT_TOKEN(anon_sym_DOLLARif); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 330: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(330); - if (lookahead == '/') ADVANCE(371); - if (lookahead != 0) ADVANCE(371); + ACCEPT_TOKEN(anon_sym_DOLLARelse); END_STATE(); case 331: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '*') ADVANCE(323); - if (lookahead == '/') ADVANCE(337); - if (lookahead != 0) ADVANCE(352); + ACCEPT_TOKEN(anon_sym_DOLLARelse); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 332: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(332); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 333: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(369); - if (lookahead != 0) ADVANCE(332); + ACCEPT_TOKEN(anon_sym_is); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 334: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(317); - if (lookahead != 0) ADVANCE(332); + ACCEPT_TOKEN(anon_sym_BANGis); END_STATE(); case 335: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(323); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(332); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 336: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(368); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(332); + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 337: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(180); - if (lookahead == '*') ADVANCE(370); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(370); + ACCEPT_TOKEN(anon_sym_BANGin); END_STATE(); case 338: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(370); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(348); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 339: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(348); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 340: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '*') ADVANCE(349); - if (lookahead == '/') ADVANCE(325); - if (lookahead != 0) ADVANCE(356); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 341: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(319); - if (lookahead != 0) ADVANCE(342); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 342: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(336); - if (lookahead != 0) ADVANCE(342); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 343: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(335); - if (lookahead != 0) ADVANCE(342); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 344: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(347); - if (lookahead != 0) ADVANCE(342); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 345: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(336); - if (lookahead != 0) ADVANCE(342); + ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); END_STATE(); case 346: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '*') ADVANCE(330); - if (lookahead == '/') ADVANCE(317); - if (lookahead != 0) ADVANCE(376); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 347: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '*') ADVANCE(323); - if (lookahead == '/') ADVANCE(339); - if (lookahead != 0) ADVANCE(341); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 348: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(200); - if (lookahead == '*') ADVANCE(370); - if (lookahead == '/') ADVANCE(336); - if (lookahead != 0) ADVANCE(345); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 349: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(196); - if (lookahead == '*') ADVANCE(349); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(374); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 350: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(334); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(361); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 351: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(333); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(361); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '.') ADVANCE(155); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(153); + if (lookahead == '_') ADVANCE(171); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(351); END_STATE(); case 352: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '.') ADVANCE(164); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(132); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(153); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(131); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(108); + if (lookahead == '_') ADVANCE(157); + if (lookahead == '8' || + lookahead == '9') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(353); END_STATE(); case 353: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(325); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '.') ADVANCE(164); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(153); + if (lookahead == '_') ADVANCE(157); + if (lookahead == '8' || + lookahead == '9') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(353); END_STATE(); case 354: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(331); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '.') ADVANCE(164); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(153); + if (lookahead == '_') ADVANCE(163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); END_STATE(); case 355: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(325); - if (lookahead != 0) ADVANCE(353); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '_') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(355); END_STATE(); case 356: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(375); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '_') ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(356); END_STATE(); case 357: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(334); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '_') ADVANCE(156); + if (lookahead == '0' || + lookahead == '1') ADVANCE(357); END_STATE(); case 358: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(334); - if (lookahead == '/') ADVANCE(357); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == '_') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); END_STATE(); case 359: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(378); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_int_literal); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(132); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(131); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(133); + if (lookahead == '_') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(355); END_STATE(); case 360: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(333); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == '_') ADVANCE(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); END_STATE(); case 361: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(333); - if (lookahead == '/') ADVANCE(357); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_float_literal); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(153); + if (lookahead == '_') ADVANCE(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); END_STATE(); case 362: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(366); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(360); + ACCEPT_TOKEN(sym_rune_literal); END_STATE(); case 363: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '/') ADVANCE(357); - if (lookahead != 0) ADVANCE(364); + ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + if (lookahead == '*') ADVANCE(222); + if (lookahead == '/') ADVANCE(365); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(365); END_STATE(); case 364: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(344); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(364); + ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + if (lookahead == '/') ADVANCE(363); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(364); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(365); END_STATE(); case 365: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(344); - if (lookahead == '/') ADVANCE(357); - if (lookahead != 0) ADVANCE(364); + ACCEPT_TOKEN(aux_sym_c_string_literal_token1); + if (lookahead != 0 && + lookahead != '$' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(365); END_STATE(); case 366: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(173); - if (lookahead == '*') ADVANCE(373); - if (lookahead == '/') ADVANCE(317); - if (lookahead != 0) ADVANCE(359); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead == '*') ADVANCE(221); + if (lookahead == '/') ADVANCE(368); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(368); END_STATE(); case 367: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(198); - if (lookahead == '*') ADVANCE(318); - if (lookahead == '/') ADVANCE(374); - if (lookahead != 0) ADVANCE(363); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead == '/') ADVANCE(366); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(367); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(368); END_STATE(); case 368: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(171); - if (lookahead == '*') ADVANCE(373); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0) ADVANCE(372); + ACCEPT_TOKEN(aux_sym_c_string_literal_token2); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(368); END_STATE(); case 369: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(179); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(339); - if (lookahead != 0) ADVANCE(338); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '*') ADVANCE(225); + if (lookahead == '/') ADVANCE(371); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(371); END_STATE(); case 370: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(199); - if (lookahead == '*') ADVANCE(370); - if (lookahead == '/') ADVANCE(325); - if (lookahead != 0) ADVANCE(355); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '/') ADVANCE(369); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(370); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(371); END_STATE(); case 371: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '*') ADVANCE(318); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(358); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(371); END_STATE(); case 372: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(324); - if (lookahead == '/') ADVANCE(371); - if (lookahead != 0) ADVANCE(351); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '*') ADVANCE(224); + if (lookahead == '/') ADVANCE(374); + if (lookahead != 0 && + lookahead != '"') ADVANCE(374); END_STATE(); case 373: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(373); - if (lookahead == '/') ADVANCE(367); - if (lookahead != 0) ADVANCE(351); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead == '/') ADVANCE(372); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(373); + if (lookahead != 0 && + lookahead != '"') ADVANCE(374); END_STATE(); case 374: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(343); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(365); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); + if (lookahead != 0 && + lookahead != '"') ADVANCE(374); END_STATE(); case 375: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(344); - if (lookahead == '/') ADVANCE(350); - if (lookahead != 0) ADVANCE(365); + ACCEPT_TOKEN(aux_sym_format_specifier_token2); END_STATE(); case 376: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(378); - if (lookahead != 0) ADVANCE(377); + ACCEPT_TOKEN(anon_sym_0); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(132); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(131); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(133); + if (lookahead == '_') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(355); END_STATE(); case 377: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(318); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(357); + ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); + if (lookahead == '.') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(378); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 378: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(346); - if (lookahead == '/') ADVANCE(362); - if (lookahead != 0) ADVANCE(357); + ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(378); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 379: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '*') ADVANCE(316); - if (lookahead == '/') ADVANCE(386); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(383); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(422); + if (lookahead == '\'') ADVANCE(423); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 380: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '*') ADVANCE(380); - if (lookahead == '/') ADVANCE(381); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(381); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(424); + if (lookahead == '\'') ADVANCE(425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 381: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '*') ADVANCE(380); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(381); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(378); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 382: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '/') ADVANCE(379); - if (lookahead == '\t' || - (11 <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(382); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(383); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(129); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 383: - ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(383); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '.') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(1144); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(377); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(378); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(383); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S') ADVANCE(383); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 387: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(4); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '[') ADVANCE(404); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 388: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(295); - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0) ADVANCE(54); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(378); + if (('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 389: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '/') ADVANCE(157); - if (lookahead != 0) ADVANCE(44); + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(403); + if (lookahead == 'n') ADVANCE(336); + if (lookahead == 's') ADVANCE(333); END_STATE(); case 390: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '/') ADVANCE(54); - if (lookahead != 0) ADVANCE(68); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'd') || + ('f' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'e') ADVANCE(331); END_STATE(); case 391: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(53); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'e') || + ('g' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'f') ADVANCE(329); END_STATE(); case 392: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(83); - if (lookahead == '/') ADVANCE(5); - if (lookahead != 0) ADVANCE(53); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'k') || + ('m' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'l') ADVANCE(400); END_STATE(); case 393: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '*') ADVANCE(43); - if (lookahead == '/') ADVANCE(56); - if (lookahead != 0) ADVANCE(59); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'm') || + ('o' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'n') ADVANCE(384); END_STATE(); case 394: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(77); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'o') ADVANCE(393); END_STATE(); case 395: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(76); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'o') ADVANCE(398); END_STATE(); case 396: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(82); - if (lookahead == '/') ADVANCE(78); - if (lookahead != 0) ADVANCE(76); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'o') || + ('q' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'p') ADVANCE(387); END_STATE(); case 397: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(198); - if (lookahead == '*') ADVANCE(3); - if (lookahead == '/') ADVANCE(89); - if (lookahead != 0) ADVANCE(79); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'q') || + ('s' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'r') ADVANCE(320); END_STATE(); case 398: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(179); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(56); - if (lookahead != 0) ADVANCE(55); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'q') || + ('s' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'r') ADVANCE(405); END_STATE(); case 399: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '*') ADVANCE(3); - if (lookahead == '/') ADVANCE(66); - if (lookahead != 0) ADVANCE(74); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'r') || + ('t' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 's') ADVANCE(245); END_STATE(); case 400: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(156); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(157); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'r') || + ('t' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 's') ADVANCE(390); END_STATE(); case 401: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(169); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'r') || + ('t' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 's') ADVANCE(394); END_STATE(); case 402: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(295); - if (lookahead != 0) ADVANCE(191); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); + if (lookahead == 'a') ADVANCE(396); END_STATE(); case 403: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(174); - if (lookahead == '/') ADVANCE(195); - if (lookahead != 0) ADVANCE(185); + ACCEPT_TOKEN(sym_identifier); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 404: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(204); - if (lookahead == '/') ADVANCE(158); - if (lookahead != 0) ADVANCE(169); + ACCEPT_TOKEN(anon_sym_map_LBRACK); END_STATE(); case 405: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(165); - if (lookahead != 0) ADVANCE(177); + ACCEPT_TOKEN(anon_sym_DOLLARfor); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(403); END_STATE(); case 406: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(168); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(176); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 407: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead == '*') ADVANCE(202); - if (lookahead == '/') ADVANCE(178); - if (lookahead != 0) ADVANCE(176); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(283); END_STATE(); case 408: - ACCEPT_TOKEN(sym_block_comment); - if (lookahead != 0 && - lookahead != '/') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(213); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '!') ADVANCE(213); + if (lookahead == '[') ADVANCE(327); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1072); + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '[') ADVANCE(327); END_STATE(); case 412: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(207); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '*') ADVANCE(220); + if (lookahead == '/') ADVANCE(218); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(414); END_STATE(); case 413: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(207); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead == '/') ADVANCE(412); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ') ADVANCE(413); + if (lookahead != 0 && + (lookahead < '\n' || '\r' < lookahead) && + lookahead != '\\') ADVANCE(414); END_STATE(); case 414: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1071); + ACCEPT_TOKEN(aux_sym_hash_statement_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\\') ADVANCE(414); END_STATE(); case 415: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1071); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '*') ADVANCE(223); + if (lookahead == '/') ADVANCE(417); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(417); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead == '/') ADVANCE(415); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(416); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(417); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(aux_sym__content_block_token1); + if (lookahead != 0 && + lookahead != '{' && + lookahead != '}') ADVANCE(417); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_as); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + ACCEPT_TOKEN(anon_sym_AT_LBRACK); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(sym___dolcbr); END_STATE(); case 420: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(sym___double_quote); END_STATE(); case 421: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(sym___single_quote); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(sym___c_double_quote); END_STATE(); case 423: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(sym___c_single_quote); END_STATE(); case 424: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(sym___r_double_quote); END_STATE(); case 425: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(452); + ACCEPT_TOKEN(sym___r_single_quote); END_STATE(); - case 426: - ACCEPT_TOKEN(anon_sym_PIPE); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == '_') ADVANCE(1); + if (lookahead == 'a') ADVANCE(2); + if (lookahead == 'b') ADVANCE(3); + if (lookahead == 'c') ADVANCE(4); + if (lookahead == 'd') ADVANCE(5); + if (lookahead == 'e') ADVANCE(6); + if (lookahead == 'f') ADVANCE(7); + if (lookahead == 'g') ADVANCE(8); + if (lookahead == 'i') ADVANCE(9); + if (lookahead == 'l') ADVANCE(10); + if (lookahead == 'm') ADVANCE(11); + if (lookahead == 'n') ADVANCE(12); + if (lookahead == 'p') ADVANCE(13); + if (lookahead == 'r') ADVANCE(14); + if (lookahead == 's') ADVANCE(15); + if (lookahead == 't') ADVANCE(16); + if (lookahead == 'u') ADVANCE(17); + if (lookahead == 'v') ADVANCE(18); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(0) + if (('E' <= lookahead && lookahead <= 'G') || + lookahead == 'S' || + lookahead == 'X' || + lookahead == 'o' || + lookahead == 'x') ADVANCE(19); END_STATE(); - case 427: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(521); - if (lookahead == '|') ADVANCE(489); + case 1: + if (lookahead == '_') ADVANCE(20); END_STATE(); - case 428: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(489); + case 2: + if (lookahead == 's') ADVANCE(21); + if (lookahead == 't') ADVANCE(22); END_STATE(); - case 429: - ACCEPT_TOKEN(anon_sym_PLUS); + case 3: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'r') ADVANCE(23); END_STATE(); - case 430: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(464); + case 4: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'h') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); - case 431: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(464); - if (lookahead == '=') ADVANCE(519); + case 5: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'e') ADVANCE(26); END_STATE(); - case 432: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(519); + case 6: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'n') ADVANCE(28); END_STATE(); - case 433: - ACCEPT_TOKEN(anon_sym_DASH); + case 7: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'a') ADVANCE(29); + if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'o') ADVANCE(31); END_STATE(); - case 434: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); + case 8: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'o') ADVANCE(32); END_STATE(); - case 435: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(465); - if (lookahead == '=') ADVANCE(520); + case 9: + if (lookahead == 'f') ADVANCE(33); + if (lookahead == 'm') ADVANCE(34); + if (lookahead == 'n') ADVANCE(35); END_STATE(); - case 436: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(520); + case 10: + if (lookahead == 'o') ADVANCE(36); END_STATE(); - case 437: - ACCEPT_TOKEN(anon_sym_STAR); + case 11: + if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); + if (lookahead == 'u') ADVANCE(39); END_STATE(); - case 438: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(511); + case 12: + if (lookahead == 'i') ADVANCE(40); + if (lookahead == 'o') ADVANCE(41); END_STATE(); - case 439: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(2); - if (lookahead == '/') ADVANCE(384); + case 13: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'u') ADVANCE(42); END_STATE(); - case 440: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(2); - if (lookahead == '/') ADVANCE(384); - if (lookahead == '=') ADVANCE(512); + case 14: + if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'l') ADVANCE(44); END_STATE(); - case 441: - ACCEPT_TOKEN(anon_sym_PERCENT); + case 15: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == 'e') ADVANCE(45); + if (lookahead == 'h') ADVANCE(46); + if (lookahead == 'p') ADVANCE(47); + if (lookahead == 'q') ADVANCE(48); + if (lookahead == 't') ADVANCE(49); END_STATE(); - case 442: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(513); + case 16: + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); END_STATE(); - case 443: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(479); - if (lookahead == '<') ADVANCE(481); - if (lookahead == '=') ADVANCE(454); + case 17: + if (lookahead == 'n') ADVANCE(53); END_STATE(); - case 444: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(479); - if (lookahead == '<') ADVANCE(480); - if (lookahead == '=') ADVANCE(454); + case 18: + if (lookahead == 'o') ADVANCE(54); END_STATE(); - case 445: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(481); - if (lookahead == '=') ADVANCE(454); + case 19: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); END_STATE(); - case 446: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(480); - if (lookahead == '=') ADVANCE(454); + case 20: + if (lookahead == 'g') ADVANCE(55); END_STATE(); - case 447: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(454); + case 21: + if (lookahead == 'm') ADVANCE(56); + if (lookahead == 's') ADVANCE(57); END_STATE(); - case 448: - ACCEPT_TOKEN(anon_sym_GT); + case 22: + if (lookahead == 'o') ADVANCE(58); END_STATE(); - case 449: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(455); + case 23: + if (lookahead == 'e') ADVANCE(59); END_STATE(); - case 450: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(482); + case 24: + if (lookahead == 'a') ADVANCE(60); END_STATE(); - case 451: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(455); - if (lookahead == '>') ADVANCE(483); + case 25: + if (lookahead == 'n') ADVANCE(61); END_STATE(); - case 452: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + case 26: + if (lookahead == 'f') ADVANCE(62); END_STATE(); - case 453: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + case 27: + if (lookahead == 's') ADVANCE(63); END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym_LT_EQ); + case 28: + if (lookahead == 'u') ADVANCE(64); END_STATE(); - case 455: - ACCEPT_TOKEN(anon_sym_GT_EQ); + case 29: + if (lookahead == 'l') ADVANCE(65); END_STATE(); - case 456: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + case 30: + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); - case 457: - ACCEPT_TOKEN(anon_sym_LBRACK); + case 31: + if (lookahead == 'r') ADVANCE(66); END_STATE(); - case 458: - ACCEPT_TOKEN(anon_sym_LT2); + case 32: + ACCEPT_TOKEN(anon_sym_go); + if (lookahead == 't') ADVANCE(67); END_STATE(); - case 459: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(479); - if (lookahead == '<') ADVANCE(481); - if (lookahead == '=') ADVANCE(454); + case 33: + ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 460: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(454); + case 34: + if (lookahead == 'p') ADVANCE(68); END_STATE(); - case 461: - ACCEPT_TOKEN(anon_sym_RBRACK); + case 35: + if (lookahead == 't') ADVANCE(69); END_STATE(); - case 462: - ACCEPT_TOKEN(anon_sym_COLON); + case 36: + if (lookahead == 'c') ADVANCE(70); END_STATE(); - case 463: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(523); + case 37: + if (lookahead == 't') ADVANCE(71); END_STATE(); - case 464: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + case 38: + if (lookahead == 'd') ADVANCE(72); END_STATE(); - case 465: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + case 39: + if (lookahead == 't') ADVANCE(73); END_STATE(); - case 466: - ACCEPT_TOKEN(anon_sym_QMARK); + case 40: + if (lookahead == 'l') ADVANCE(74); END_STATE(); - case 467: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(499); + case 41: + if (lookahead == 'n') ADVANCE(75); END_STATE(); - case 468: - ACCEPT_TOKEN(anon_sym_BANG); + case 42: + if (lookahead == 'b') ADVANCE(76); END_STATE(); - case 469: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(453); - if (lookahead == 'i') ADVANCE(250); + case 43: + if (lookahead == 't') ADVANCE(77); END_STATE(); - case 470: - ACCEPT_TOKEN(anon_sym_json_DOTdecode); + case 44: + if (lookahead == 'o') ADVANCE(78); END_STATE(); - case 471: - ACCEPT_TOKEN(anon_sym_LBRACK2); + case 45: + if (lookahead == 'l') ADVANCE(79); END_STATE(); - case 472: - ACCEPT_TOKEN(anon_sym_TILDE); + case 46: + if (lookahead == 'a') ADVANCE(80); END_STATE(); - case 473: - ACCEPT_TOKEN(anon_sym_CARET); + case 47: + if (lookahead == 'a') ADVANCE(81); END_STATE(); - case 474: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(522); + case 48: + if (lookahead == 'l') ADVANCE(82); END_STATE(); - case 475: - ACCEPT_TOKEN(anon_sym_AMP); + case 49: + if (lookahead == 'a') ADVANCE(83); + if (lookahead == 'r') ADVANCE(84); END_STATE(); - case 476: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(488); - if (lookahead == '=') ADVANCE(517); - if (lookahead == '^') ADVANCE(487); + case 50: + if (lookahead == 'r') ADVANCE(85); END_STATE(); - case 477: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(488); - if (lookahead == '^') ADVANCE(486); + case 51: + if (lookahead == 'u') ADVANCE(86); END_STATE(); - case 478: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(517); - if (lookahead == '^') ADVANCE(222); + case 52: + if (lookahead == 'p') ADVANCE(87); END_STATE(); - case 479: - ACCEPT_TOKEN(anon_sym_LT_DASH); + case 53: + if (lookahead == 'i') ADVANCE(88); + if (lookahead == 's') ADVANCE(89); END_STATE(); - case 480: - ACCEPT_TOKEN(anon_sym_LT_LT); + case 54: + if (lookahead == 'l') ADVANCE(90); END_STATE(); - case 481: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(514); + case 55: + if (lookahead == 'l') ADVANCE(91); END_STATE(); - case 482: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(515); - if (lookahead == '>') ADVANCE(485); + case 56: + ACCEPT_TOKEN(anon_sym_asm); END_STATE(); - case 483: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(484); + case 57: + if (lookahead == 'e') ADVANCE(92); END_STATE(); - case 484: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + case 58: + if (lookahead == 'm') ADVANCE(93); END_STATE(); - case 485: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(516); + case 59: + if (lookahead == 'a') ADVANCE(94); END_STATE(); - case 486: - ACCEPT_TOKEN(anon_sym_AMP_CARET); + case 60: + if (lookahead == 'n') ADVANCE(95); END_STATE(); - case 487: - ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(518); + case 61: + if (lookahead == 's') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); END_STATE(); - case 488: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + case 62: + if (lookahead == 'e') ADVANCE(98); END_STATE(); - case 489: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + case 63: + if (lookahead == 'e') ADVANCE(99); END_STATE(); - case 490: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'e') ADVANCE(1057); - if (lookahead == 'f') ADVANCE(1060); - if (lookahead == 'i') ADVANCE(1056); - if (lookahead == '{') ADVANCE(1272); + case 64: + if (lookahead == 'm') ADVANCE(100); END_STATE(); - case 491: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(1047); - if (lookahead == 'J') ADVANCE(1051); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 65: + if (lookahead == 's') ADVANCE(101); END_STATE(); - case 492: - ACCEPT_TOKEN(anon_sym_or); + case 66: + ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 493: - ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 67: + if (lookahead == 'o') ADVANCE(102); END_STATE(); - case 494: - ACCEPT_TOKEN(sym_escape_sequence); + case 68: + if (lookahead == 'o') ADVANCE(103); END_STATE(); - case 495: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(266); + case 69: + if (lookahead == 'e') ADVANCE(104); END_STATE(); - case 496: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(287); + case 70: + if (lookahead == 'k') ADVANCE(105); END_STATE(); - case 497: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(272); + case 71: + if (lookahead == 'c') ADVANCE(106); END_STATE(); - case 498: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(280); + case 72: + if (lookahead == 'u') ADVANCE(107); END_STATE(); - case 499: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + case 73: + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); - case 500: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); + case 74: + ACCEPT_TOKEN(sym_nil); END_STATE(); - case 501: - ACCEPT_TOKEN(anon_sym_DOLLARif); + case 75: + if (lookahead == 'e') ADVANCE(108); END_STATE(); - case 502: - ACCEPT_TOKEN(anon_sym_DOLLARif); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 76: + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); - case 503: - ACCEPT_TOKEN(anon_sym_DOLLARelse); + case 77: + if (lookahead == 'u') ADVANCE(109); END_STATE(); - case 504: - ACCEPT_TOKEN(anon_sym_DOLLARelse); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 78: + if (lookahead == 'c') ADVANCE(110); END_STATE(); - case 505: - ACCEPT_TOKEN(anon_sym_is); + case 79: + if (lookahead == 'e') ADVANCE(111); END_STATE(); - case 506: - ACCEPT_TOKEN(anon_sym_is); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 80: + if (lookahead == 'r') ADVANCE(112); END_STATE(); - case 507: - ACCEPT_TOKEN(anon_sym_BANGis); + case 81: + if (lookahead == 'w') ADVANCE(113); END_STATE(); - case 508: - ACCEPT_TOKEN(anon_sym_in); + case 82: + ACCEPT_TOKEN(anon_sym_sql); END_STATE(); - case 509: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); + case 83: + if (lookahead == 't') ADVANCE(114); END_STATE(); - case 510: - ACCEPT_TOKEN(anon_sym_BANGin); + case 84: + if (lookahead == 'u') ADVANCE(115); END_STATE(); - case 511: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + case 85: + if (lookahead == 'e') ADVANCE(116); END_STATE(); - case 512: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + case 86: + if (lookahead == 'e') ADVANCE(117); END_STATE(); - case 513: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + case 87: + if (lookahead == 'e') ADVANCE(118); END_STATE(); - case 514: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + case 88: + if (lookahead == 'o') ADVANCE(119); END_STATE(); - case 515: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + case 89: + if (lookahead == 'a') ADVANCE(120); END_STATE(); - case 516: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + case 90: + if (lookahead == 'a') ADVANCE(121); END_STATE(); - case 517: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + case 91: + if (lookahead == 'o') ADVANCE(122); END_STATE(); - case 518: - ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); + case 92: + if (lookahead == 'r') ADVANCE(123); END_STATE(); - case 519: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + case 93: + if (lookahead == 'i') ADVANCE(124); END_STATE(); - case 520: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + case 94: + if (lookahead == 'k') ADVANCE(125); END_STATE(); - case 521: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + case 95: + ACCEPT_TOKEN(anon_sym_chan); END_STATE(); - case 522: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + case 96: + if (lookahead == 't') ADVANCE(126); END_STATE(); - case 523: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + case 97: + if (lookahead == 'i') ADVANCE(127); END_STATE(); - case 524: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(259); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(257); - if (lookahead == '_') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(524); + case 98: + if (lookahead == 'r') ADVANCE(128); END_STATE(); - case 525: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(268); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(235); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(210); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '8' || - lookahead == '9') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(526); + case 99: + ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 526: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(268); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); - if (lookahead == '_') ADVANCE(261); - if (lookahead == '8' || - lookahead == '9') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(526); + case 100: + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); - case 527: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(268); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); - if (lookahead == '_') ADVANCE(267); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(527); + case 101: + if (lookahead == 'e') ADVANCE(129); END_STATE(); - case 528: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(528); + case 102: + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); - case 529: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(529); + case 103: + if (lookahead == 'r') ADVANCE(130); END_STATE(); - case 530: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(260); - if (lookahead == '0' || - lookahead == '1') ADVANCE(530); + case 104: + if (lookahead == 'r') ADVANCE(131); END_STATE(); - case 531: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(274); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(531); + case 105: + ACCEPT_TOKEN(anon_sym_lock); END_STATE(); - case 532: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(235); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(237); - if (lookahead == '_') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(528); + case 106: + if (lookahead == 'h') ADVANCE(132); END_STATE(); - case 533: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(270); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(533); + case 107: + if (lookahead == 'l') ADVANCE(133); END_STATE(); - case 534: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(257); - if (lookahead == '_') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + case 108: + ACCEPT_TOKEN(sym_none); END_STATE(); - case 535: - ACCEPT_TOKEN(sym_rune_literal); + case 109: + if (lookahead == 'r') ADVANCE(134); END_STATE(); - case 536: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(537); + case 110: + if (lookahead == 'k') ADVANCE(135); END_STATE(); - case 537: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(661); - if (lookahead == '*') ADVANCE(536); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(537); + case 111: + if (lookahead == 'c') ADVANCE(136); END_STATE(); - case 538: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(546); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(544); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(546); + case 112: + if (lookahead == 'e') ADVANCE(137); END_STATE(); - case 539: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(606); - if (lookahead == '*') ADVANCE(549); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(548); - END_STATE(); - case 540: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(660); - if (lookahead == '*') ADVANCE(536); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(558); - END_STATE(); - case 541: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(541); - END_STATE(); - case 542: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(541); - END_STATE(); - case 543: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(601); - if (lookahead == '*') ADVANCE(539); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(541); - END_STATE(); - case 544: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(544); - if (lookahead == '*') ADVANCE(536); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(544); - END_STATE(); - case 545: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(545); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(547); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(545); - END_STATE(); - case 546: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(545); - if (lookahead == '*') ADVANCE(536); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(545); - END_STATE(); - case 547: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(545); - if (lookahead == '*') ADVANCE(539); - if (lookahead == '/') ADVANCE(547); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(545); - END_STATE(); - case 548: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(635); - if (lookahead == '*') ADVANCE(536); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(590); - END_STATE(); - case 549: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(635); - if (lookahead == '*') ADVANCE(549); - if (lookahead == '/') ADVANCE(590); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(590); - END_STATE(); - case 550: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(565); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 551: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 552: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 553: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '*') ADVANCE(555); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 554: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(618); - if (lookahead == '*') ADVANCE(589); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 555: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(555); - END_STATE(); - case 556: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(540); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(555); - END_STATE(); - case 557: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(615); - if (lookahead == '*') ADVANCE(555); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(555); - END_STATE(); - case 558: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(628); - if (lookahead == '*') ADVANCE(566); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(566); - END_STATE(); - case 559: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(560); - END_STATE(); - case 560: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(560); - END_STATE(); - case 561: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(563); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(560); - END_STATE(); - case 562: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(653); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(560); - END_STATE(); - case 563: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(648); - if (lookahead == '*') ADVANCE(555); - if (lookahead == '/') ADVANCE(558); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(559); - END_STATE(); - case 564: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(649); - if (lookahead == '*') ADVANCE(555); - if (lookahead == '/') ADVANCE(578); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(582); - END_STATE(); - case 565: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(626); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(578); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(577); - END_STATE(); - case 566: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(632); - if (lookahead == '*') ADVANCE(566); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(562); - END_STATE(); - case 567: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(603); - if (lookahead == '*') ADVANCE(549); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(594); - END_STATE(); - case 568: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(640); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(574); - END_STATE(); - case 569: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(640); - if (lookahead == '*') ADVANCE(550); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(574); - END_STATE(); - case 570: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 571: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(570); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 572: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(596); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 573: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(550); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 574: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(550); - if (lookahead == '/') ADVANCE(570); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 575: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '*') ADVANCE(576); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(573); - END_STATE(); - case 576: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(621); - if (lookahead == '*') ADVANCE(592); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(572); - END_STATE(); - case 577: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(627); - if (lookahead == '*') ADVANCE(566); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(580); - END_STATE(); - case 578: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(627); - if (lookahead == '*') ADVANCE(579); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(580); - END_STATE(); - case 579: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(633); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(557); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 580: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(631); - if (lookahead == '*') ADVANCE(566); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(585); - END_STATE(); - case 581: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(650); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(564); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(583); - END_STATE(); - case 582: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(650); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(543); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(583); - END_STATE(); - case 583: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(650); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(583); - END_STATE(); - case 584: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(650); - if (lookahead == '*') ADVANCE(561); - if (lookahead == '/') ADVANCE(553); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(583); - END_STATE(); - case 585: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(650); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(583); - END_STATE(); - case 586: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(656); - if (lookahead == '*') ADVANCE(584); - if (lookahead == '/') ADVANCE(570); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(587); - END_STATE(); - case 587: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(656); - if (lookahead == '*') ADVANCE(581); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(587); - END_STATE(); - case 588: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(656); - if (lookahead == '*') ADVANCE(581); - if (lookahead == '/') ADVANCE(570); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(587); - END_STATE(); - case 589: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(619); - if (lookahead == '*') ADVANCE(592); - if (lookahead == '/') ADVANCE(537); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(591); - END_STATE(); - case 590: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(614); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(571); - END_STATE(); - case 591: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(638); - if (lookahead == '*') ADVANCE(556); - if (lookahead == '/') ADVANCE(590); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); - END_STATE(); - case 592: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(638); - if (lookahead == '*') ADVANCE(592); - if (lookahead == '/') ADVANCE(597); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); - END_STATE(); - case 593: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(646); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(599); - END_STATE(); - case 594: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(636); - if (lookahead == '*') ADVANCE(536); - if (lookahead == '/') ADVANCE(596); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(595); - END_STATE(); - case 595: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 596: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(613); - if (lookahead == '*') ADVANCE(567); - if (lookahead == '/') ADVANCE(575); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 597: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(647); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(599); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(586); - END_STATE(); - case 598: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(655); - if (lookahead == '*') ADVANCE(560); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(600); - END_STATE(); - case 599: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(657); - if (lookahead == '*') ADVANCE(584); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(588); - END_STATE(); - case 600: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(657); - if (lookahead == '*') ADVANCE(581); - if (lookahead == '/') ADVANCE(568); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(588); - END_STATE(); - case 601: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 602: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead == '/') ADVANCE(629); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(626); - END_STATE(); - case 603: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead == '/') ADVANCE(630); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(636); - END_STATE(); - case 604: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(660); - END_STATE(); - case 605: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 606: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(635); - END_STATE(); - case 607: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(538); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(661); - END_STATE(); - case 608: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(609); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 609: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(611); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(606); - END_STATE(); - case 610: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(611); - if (lookahead == '/') ADVANCE(601); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(603); - END_STATE(); - case 611: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(611); - if (lookahead == '/') ADVANCE(635); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(635); - END_STATE(); - case 612: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(616); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 613: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(616); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 614: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(616); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 615: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(615); - END_STATE(); - case 616: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(601); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(618); - END_STATE(); - case 617: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(604); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(615); - END_STATE(); - case 618: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(618); - END_STATE(); - case 619: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(635); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(638); - END_STATE(); - case 620: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(602); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(618); - END_STATE(); - case 621: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(617); - if (lookahead == '/') ADVANCE(630); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 622: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(615); - if (lookahead == '/') ADVANCE(660); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(648); - END_STATE(); - case 623: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(615); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(618); - END_STATE(); - case 624: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(615); - if (lookahead == '/') ADVANCE(629); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(649); - END_STATE(); - case 625: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 626: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(627); - END_STATE(); - case 627: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(634); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(631); - END_STATE(); - case 628: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(632); - END_STATE(); - case 629: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(627); - END_STATE(); - case 630: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(610); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 631: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(634); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(650); - END_STATE(); - case 632: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 633: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(655); - END_STATE(); - case 634: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(641); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(618); - END_STATE(); - case 635: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(614); - END_STATE(); - case 636: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 637: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(605); - if (lookahead == '/') ADVANCE(646); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(647); - END_STATE(); - case 638: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(620); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 639: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(620); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 640: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(620); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 641: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(643); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(619); - END_STATE(); - case 642: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(643); - if (lookahead == '/') ADVANCE(601); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(621); - END_STATE(); - case 643: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(643); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(638); - END_STATE(); - case 644: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(633); - END_STATE(); - case 645: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(646); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(651); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(657); - END_STATE(); - case 647: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(651); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(656); - END_STATE(); - case 648: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 649: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(608); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(650); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(634); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(650); - END_STATE(); - case 651: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(623); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(650); - END_STATE(); - case 652: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(622); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 653: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 654: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(652); - if (lookahead == '/') ADVANCE(624); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(650); - END_STATE(); - case 655: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(654); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(657); - END_STATE(); - case 656: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(654); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(656); - END_STATE(); - case 657: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(654); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(656); - END_STATE(); - case 658: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(607); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(658); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(661); - END_STATE(); - case 659: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(615); - END_STATE(); - case 660: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(661); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(628); - END_STATE(); - case 661: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(661); - END_STATE(); - case 662: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(787); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(663); - END_STATE(); - case 663: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(787); - if (lookahead == '*') ADVANCE(662); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(663); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(672); - if (lookahead == '*') ADVANCE(668); - if (lookahead == '/') ADVANCE(670); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(672); - END_STATE(); - case 665: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(732); - if (lookahead == '*') ADVANCE(675); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(674); - END_STATE(); - case 666: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(786); - if (lookahead == '*') ADVANCE(662); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 667: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(727); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(667); - END_STATE(); - case 668: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(727); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(667); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(667); - END_STATE(); - case 669: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(727); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(667); - END_STATE(); - case 670: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(670); - if (lookahead == '*') ADVANCE(662); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(670); - END_STATE(); - case 671: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(673); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(671); - END_STATE(); - case 672: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '*') ADVANCE(662); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(671); - END_STATE(); - case 673: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(671); - if (lookahead == '*') ADVANCE(665); - if (lookahead == '/') ADVANCE(673); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(671); - END_STATE(); - case 674: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(761); - if (lookahead == '*') ADVANCE(662); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(716); - END_STATE(); - case 675: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(761); - if (lookahead == '*') ADVANCE(675); - if (lookahead == '/') ADVANCE(716); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(716); - END_STATE(); - case 676: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(691); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 677: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 678: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(667); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '*') ADVANCE(681); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(744); - if (lookahead == '*') ADVANCE(715); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 681: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(741); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(681); - END_STATE(); - case 682: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(741); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(666); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(681); - END_STATE(); - case 683: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(741); - if (lookahead == '*') ADVANCE(681); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(681); - END_STATE(); - case 684: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(754); - if (lookahead == '*') ADVANCE(692); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(692); - END_STATE(); - case 685: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(686); - END_STATE(); - case 686: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(686); - END_STATE(); - case 687: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(689); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(686); - END_STATE(); - case 688: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(779); - if (lookahead == '*') ADVANCE(686); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(686); - END_STATE(); - case 689: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(774); - if (lookahead == '*') ADVANCE(681); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(685); - END_STATE(); - case 690: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(775); - if (lookahead == '*') ADVANCE(681); - if (lookahead == '/') ADVANCE(704); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(708); - END_STATE(); - case 691: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(752); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(704); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(703); - END_STATE(); - case 692: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(758); - if (lookahead == '*') ADVANCE(692); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(688); - END_STATE(); - case 693: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(729); - if (lookahead == '*') ADVANCE(675); - if (lookahead == '/') ADVANCE(667); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(720); - END_STATE(); - case 694: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(766); - if (lookahead == '*') ADVANCE(678); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(700); - END_STATE(); - case 695: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(766); - if (lookahead == '*') ADVANCE(676); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(700); - END_STATE(); - case 696: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(678); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 697: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(678); - if (lookahead == '/') ADVANCE(696); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 698: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(722); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 699: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(676); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 700: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(676); - if (lookahead == '/') ADVANCE(696); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 701: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(765); - if (lookahead == '*') ADVANCE(702); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(699); - END_STATE(); - case 702: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(747); - if (lookahead == '*') ADVANCE(718); - if (lookahead == '/') ADVANCE(667); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(698); - END_STATE(); - case 703: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '*') ADVANCE(692); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(706); - END_STATE(); - case 704: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(753); - if (lookahead == '*') ADVANCE(705); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(706); - END_STATE(); - case 705: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(759); - if (lookahead == '*') ADVANCE(719); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(724); - END_STATE(); - case 706: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(757); - if (lookahead == '*') ADVANCE(692); - if (lookahead == '/') ADVANCE(680); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(711); - END_STATE(); - case 707: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(690); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(709); - END_STATE(); - case 708: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(669); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(709); - END_STATE(); - case 709: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(680); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(709); - END_STATE(); - case 710: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '*') ADVANCE(687); - if (lookahead == '/') ADVANCE(679); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(709); - END_STATE(); - case 711: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(776); - if (lookahead == '*') ADVANCE(686); - if (lookahead == '/') ADVANCE(680); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(709); - END_STATE(); - case 712: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '*') ADVANCE(710); - if (lookahead == '/') ADVANCE(696); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(713); - END_STATE(); - case 713: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '*') ADVANCE(707); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(713); - END_STATE(); - case 714: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(782); - if (lookahead == '*') ADVANCE(707); - if (lookahead == '/') ADVANCE(696); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(713); - END_STATE(); - case 715: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(745); - if (lookahead == '*') ADVANCE(718); - if (lookahead == '/') ADVANCE(663); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(717); - END_STATE(); - case 716: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(740); - if (lookahead == '*') ADVANCE(668); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(697); - END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(764); - if (lookahead == '*') ADVANCE(682); - if (lookahead == '/') ADVANCE(716); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(695); - END_STATE(); - case 718: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(764); - if (lookahead == '*') ADVANCE(718); - if (lookahead == '/') ADVANCE(723); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(695); - END_STATE(); - case 719: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(772); - if (lookahead == '*') ADVANCE(719); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(725); - END_STATE(); - case 720: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(762); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(722); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(721); - END_STATE(); - case 721: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(739); - if (lookahead == '*') ADVANCE(668); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(696); - END_STATE(); - case 722: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(739); - if (lookahead == '*') ADVANCE(693); - if (lookahead == '/') ADVANCE(701); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(696); - END_STATE(); - case 723: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(773); - if (lookahead == '*') ADVANCE(668); - if (lookahead == '/') ADVANCE(725); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(712); - END_STATE(); - case 724: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(781); - if (lookahead == '*') ADVANCE(686); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(726); - END_STATE(); - case 725: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(783); - if (lookahead == '*') ADVANCE(710); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(714); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(783); - if (lookahead == '*') ADVANCE(707); - if (lookahead == '/') ADVANCE(694); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(714); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(727); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(755); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(752); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(756); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(762); - END_STATE(); - case 730: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(786); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(727); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(761); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(735); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(727); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(732); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(727); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(729); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(761); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(761); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(766); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(739); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(741); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(727); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(744); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(730); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(741); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(744); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(761); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(764); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(728); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(744); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(743); - if (lookahead == '/') ADVANCE(756); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(741); - if (lookahead == '/') ADVANCE(786); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(774); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(741); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(744); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(741); - if (lookahead == '/') ADVANCE(755); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(775); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(768); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(754); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(753); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(754); - if (lookahead == '/') ADVANCE(760); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(757); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(754); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(758); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(753); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(739); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(779); - if (lookahead == '/') ADVANCE(760); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(776); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(779); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(779); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(779); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(781); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(767); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(744); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(731); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(740); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(731); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(739); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(731); - if (lookahead == '/') ADVANCE(772); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(773); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(766); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(739); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(765); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(769); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(745); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(769); - if (lookahead == '/') ADVANCE(727); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(747); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(769); - if (lookahead == '/') ADVANCE(763); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(764); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(771); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(759); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(771); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(772); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(777); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(783); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(777); - if (lookahead == '/') ADVANCE(739); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(782); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(779); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(734); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(776); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(760); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(776); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(749); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(776); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(748); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(779); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(779); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(778); - if (lookahead == '/') ADVANCE(750); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(776); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(780); - if (lookahead == '/') ADVANCE(738); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(783); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(780); - if (lookahead == '/') ADVANCE(751); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(782); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(780); - if (lookahead == '/') ADVANCE(739); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(782); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(733); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(784); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(741); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(754); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(913); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(789); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(913); - if (lookahead == '*') ADVANCE(788); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(789); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(798); - if (lookahead == '*') ADVANCE(794); - if (lookahead == '/') ADVANCE(796); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(798); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(858); - if (lookahead == '*') ADVANCE(801); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(800); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(912); - if (lookahead == '*') ADVANCE(788); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(810); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(853); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(793); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(853); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(793); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(793); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(853); - if (lookahead == '*') ADVANCE(791); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(793); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(796); - if (lookahead == '*') ADVANCE(788); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(796); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(797); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(799); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(797); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(797); - if (lookahead == '*') ADVANCE(788); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(797); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(797); - if (lookahead == '*') ADVANCE(791); - if (lookahead == '/') ADVANCE(799); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(797); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(887); - if (lookahead == '*') ADVANCE(788); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(842); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(887); - if (lookahead == '*') ADVANCE(801); - if (lookahead == '/') ADVANCE(842); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(842); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(870); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(817); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(803); - END_STATE(); - case 803: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(870); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(803); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(870); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(793); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(803); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(870); - if (lookahead == '*') ADVANCE(807); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(803); - END_STATE(); - case 806: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(870); - if (lookahead == '*') ADVANCE(841); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(803); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(867); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(807); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(867); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(792); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(807); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(867); - if (lookahead == '*') ADVANCE(807); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(807); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(880); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(818); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(812); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(809); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(812); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(815); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(812); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(905); - if (lookahead == '*') ADVANCE(812); - if (lookahead == '/') ADVANCE(809); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(812); - END_STATE(); - case 815: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(900); - if (lookahead == '*') ADVANCE(807); - if (lookahead == '/') ADVANCE(810); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(811); - END_STATE(); - case 816: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(901); - if (lookahead == '*') ADVANCE(807); - if (lookahead == '/') ADVANCE(830); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(834); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(878); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(830); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(829); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(884); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(809); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(814); - END_STATE(); - case 819: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(855); - if (lookahead == '*') ADVANCE(801); - if (lookahead == '/') ADVANCE(793); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(846); - END_STATE(); - case 820: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(826); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '*') ADVANCE(802); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(826); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(804); - if (lookahead == '/') ADVANCE(822); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(848); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(802); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 826: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(802); - if (lookahead == '/') ADVANCE(822); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '*') ADVANCE(828); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(825); - END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(873); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(793); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(824); - END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(879); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(832); - END_STATE(); - case 830: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(879); - if (lookahead == '*') ADVANCE(831); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(832); - END_STATE(); - case 831: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(885); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(809); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(850); - END_STATE(); - case 832: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(883); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(837); - END_STATE(); - case 833: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(816); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(835); - END_STATE(); - case 834: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(835); - END_STATE(); - case 835: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(835); - END_STATE(); - case 836: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '*') ADVANCE(813); - if (lookahead == '/') ADVANCE(805); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(835); - END_STATE(); - case 837: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(902); - if (lookahead == '*') ADVANCE(812); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(835); - END_STATE(); - case 838: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(908); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(822); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(839); - END_STATE(); - case 839: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(908); - if (lookahead == '*') ADVANCE(833); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(839); - END_STATE(); - case 840: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(908); - if (lookahead == '*') ADVANCE(833); - if (lookahead == '/') ADVANCE(822); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(839); - END_STATE(); - case 841: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(871); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(789); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(843); - END_STATE(); - case 842: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(866); - if (lookahead == '*') ADVANCE(794); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(823); - END_STATE(); - case 843: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(890); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(842); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(821); - END_STATE(); - case 844: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(890); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(849); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(821); - END_STATE(); - case 845: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(898); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(851); - END_STATE(); - case 846: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(888); - if (lookahead == '*') ADVANCE(788); - if (lookahead == '/') ADVANCE(848); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(847); - END_STATE(); - case 847: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(865); - if (lookahead == '*') ADVANCE(794); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(822); - END_STATE(); - case 848: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(865); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(827); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(822); - END_STATE(); - case 849: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(899); - if (lookahead == '*') ADVANCE(794); - if (lookahead == '/') ADVANCE(851); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(838); - END_STATE(); - case 850: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(907); - if (lookahead == '*') ADVANCE(812); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(852); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(909); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(840); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(909); - if (lookahead == '*') ADVANCE(833); - if (lookahead == '/') ADVANCE(820); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(840); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(853); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead == '/') ADVANCE(881); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(878); - END_STATE(); - case 855: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead == '/') ADVANCE(882); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(888); - END_STATE(); - case 856: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(912); - END_STATE(); - case 857: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(853); - END_STATE(); - case 858: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(887); - END_STATE(); - case 859: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(790); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(913); - END_STATE(); - case 860: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(861); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(853); - END_STATE(); - case 861: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(863); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(858); - END_STATE(); - case 862: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(863); - if (lookahead == '/') ADVANCE(853); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(855); - END_STATE(); - case 863: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(863); - if (lookahead == '/') ADVANCE(887); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(887); - END_STATE(); - case 864: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(868); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(892); - END_STATE(); - case 865: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(868); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 866: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(868); - if (lookahead == '/') ADVANCE(865); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 867: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(867); - END_STATE(); - case 868: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(853); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(870); - END_STATE(); - case 869: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(856); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(867); - END_STATE(); - case 870: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(870); - END_STATE(); - case 871: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(887); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(890); - END_STATE(); - case 872: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(854); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(870); - END_STATE(); - case 873: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(869); - if (lookahead == '/') ADVANCE(882); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 874: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(867); - if (lookahead == '/') ADVANCE(912); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(900); - END_STATE(); - case 875: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(867); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(870); - END_STATE(); - case 876: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(867); - if (lookahead == '/') ADVANCE(881); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(901); - END_STATE(); - case 877: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(894); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 878: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(880); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(879); - END_STATE(); - case 879: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(880); - if (lookahead == '/') ADVANCE(886); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(883); - END_STATE(); - case 880: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(880); - if (lookahead == '/') ADVANCE(911); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(884); - END_STATE(); - case 881: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(896); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(879); - END_STATE(); - case 882: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(862); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(865); - END_STATE(); - case 883: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(905); - if (lookahead == '/') ADVANCE(886); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(902); - END_STATE(); - case 884: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(905); - if (lookahead == '/') ADVANCE(911); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(905); - END_STATE(); - case 885: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(905); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(907); - END_STATE(); - case 886: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(893); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(870); - END_STATE(); - case 887: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(857); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(866); - END_STATE(); - case 888: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(857); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(865); - END_STATE(); - case 889: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(857); - if (lookahead == '/') ADVANCE(898); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(899); - END_STATE(); - case 890: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(872); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(892); - END_STATE(); - case 891: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(872); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 892: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(872); - if (lookahead == '/') ADVANCE(865); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(891); - END_STATE(); - case 893: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(895); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(871); - END_STATE(); - case 894: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(895); - if (lookahead == '/') ADVANCE(853); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(873); - END_STATE(); - case 895: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(895); - if (lookahead == '/') ADVANCE(889); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(890); - END_STATE(); - case 896: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(897); - if (lookahead == '/') ADVANCE(911); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(885); - END_STATE(); - case 897: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(897); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(898); - END_STATE(); - case 898: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(903); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(909); - END_STATE(); - case 899: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(903); - if (lookahead == '/') ADVANCE(865); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(908); - END_STATE(); - case 900: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(905); - END_STATE(); - case 901: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(860); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(902); - END_STATE(); - case 902: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(886); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(902); - END_STATE(); - case 903: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(875); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(902); - END_STATE(); - case 904: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(874); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(905); - END_STATE(); - case 905: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(911); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(905); - END_STATE(); - case 906: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(904); - if (lookahead == '/') ADVANCE(876); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(902); - END_STATE(); - case 907: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(906); - if (lookahead == '/') ADVANCE(864); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(909); - END_STATE(); - case 908: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(906); - if (lookahead == '/') ADVANCE(877); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(908); - END_STATE(); - case 909: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(906); - if (lookahead == '/') ADVANCE(865); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(908); - END_STATE(); - case 910: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(859); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(910); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(913); - END_STATE(); - case 911: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(867); - END_STATE(); - case 912: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(913); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(880); - END_STATE(); - case 913: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(913); - END_STATE(); - case 914: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1039); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(915); - END_STATE(); - case 915: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1039); - if (lookahead == '*') ADVANCE(914); - if (lookahead != 0 && - lookahead != '"') ADVANCE(915); - END_STATE(); - case 916: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(924); - if (lookahead == '*') ADVANCE(920); - if (lookahead == '/') ADVANCE(922); - if (lookahead != 0 && - lookahead != '"') ADVANCE(924); - END_STATE(); - case 917: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(984); - if (lookahead == '*') ADVANCE(927); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(926); - END_STATE(); - case 918: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1038); - if (lookahead == '*') ADVANCE(914); - if (lookahead != 0 && - lookahead != '"') ADVANCE(936); - END_STATE(); - case 919: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(979); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(919); - END_STATE(); - case 920: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(979); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(919); - if (lookahead != 0 && - lookahead != '"') ADVANCE(919); - END_STATE(); - case 921: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(979); - if (lookahead == '*') ADVANCE(917); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(919); - END_STATE(); - case 922: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(922); - if (lookahead == '*') ADVANCE(914); - if (lookahead != 0 && - lookahead != '"') ADVANCE(922); - END_STATE(); - case 923: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(925); - if (lookahead != 0 && - lookahead != '"') ADVANCE(923); - END_STATE(); - case 924: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '*') ADVANCE(914); - if (lookahead != 0 && - lookahead != '"') ADVANCE(923); - END_STATE(); - case 925: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '*') ADVANCE(917); - if (lookahead == '/') ADVANCE(925); - if (lookahead != 0 && - lookahead != '"') ADVANCE(923); - END_STATE(); - case 926: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1013); - if (lookahead == '*') ADVANCE(914); - if (lookahead != 0 && - lookahead != '"') ADVANCE(968); - END_STATE(); - case 927: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1013); - if (lookahead == '*') ADVANCE(927); - if (lookahead == '/') ADVANCE(968); - if (lookahead != 0 && - lookahead != '"') ADVANCE(968); - END_STATE(); - case 928: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(996); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(943); - if (lookahead != 0 && - lookahead != '"') ADVANCE(929); - END_STATE(); - case 929: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(996); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(929); - END_STATE(); - case 930: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(996); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(919); - if (lookahead != 0 && - lookahead != '"') ADVANCE(929); - END_STATE(); - case 931: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(996); - if (lookahead == '*') ADVANCE(933); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(929); - END_STATE(); - case 932: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(996); - if (lookahead == '*') ADVANCE(967); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(929); - END_STATE(); - case 933: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(993); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(933); - END_STATE(); - case 934: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(993); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(918); - if (lookahead != 0 && - lookahead != '"') ADVANCE(933); - END_STATE(); - case 935: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(993); - if (lookahead == '*') ADVANCE(933); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(933); - END_STATE(); - case 936: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1006); - if (lookahead == '*') ADVANCE(944); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(944); - END_STATE(); - case 937: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1031); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(938); - END_STATE(); - case 938: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1031); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(935); - if (lookahead != 0 && - lookahead != '"') ADVANCE(938); - END_STATE(); - case 939: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1031); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(941); - if (lookahead != 0 && - lookahead != '"') ADVANCE(938); - END_STATE(); - case 940: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1031); - if (lookahead == '*') ADVANCE(938); - if (lookahead == '/') ADVANCE(935); - if (lookahead != 0 && - lookahead != '"') ADVANCE(938); - END_STATE(); - case 941: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1026); - if (lookahead == '*') ADVANCE(933); - if (lookahead == '/') ADVANCE(936); - if (lookahead != 0 && - lookahead != '"') ADVANCE(937); - END_STATE(); - case 942: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1027); - if (lookahead == '*') ADVANCE(933); - if (lookahead == '/') ADVANCE(956); - if (lookahead != 0 && - lookahead != '"') ADVANCE(960); - END_STATE(); - case 943: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1004); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(956); - if (lookahead != 0 && - lookahead != '"') ADVANCE(955); - END_STATE(); - case 944: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1010); - if (lookahead == '*') ADVANCE(944); - if (lookahead == '/') ADVANCE(935); - if (lookahead != 0 && - lookahead != '"') ADVANCE(940); - END_STATE(); - case 945: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(981); - if (lookahead == '*') ADVANCE(927); - if (lookahead == '/') ADVANCE(919); - if (lookahead != 0 && - lookahead != '"') ADVANCE(972); - END_STATE(); - case 946: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1018); - if (lookahead == '*') ADVANCE(930); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(952); - END_STATE(); - case 947: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1018); - if (lookahead == '*') ADVANCE(928); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(952); - END_STATE(); - case 948: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(930); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 949: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(930); - if (lookahead == '/') ADVANCE(948); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 950: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(974); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 951: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(928); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 952: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(928); - if (lookahead == '/') ADVANCE(948); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 953: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1017); - if (lookahead == '*') ADVANCE(954); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(951); - END_STATE(); - case 954: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(999); - if (lookahead == '*') ADVANCE(970); - if (lookahead == '/') ADVANCE(919); - if (lookahead != 0 && - lookahead != '"') ADVANCE(950); - END_STATE(); - case 955: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1005); - if (lookahead == '*') ADVANCE(944); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(958); - END_STATE(); - case 956: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1005); - if (lookahead == '*') ADVANCE(957); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(958); - END_STATE(); - case 957: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1011); - if (lookahead == '*') ADVANCE(971); - if (lookahead == '/') ADVANCE(935); - if (lookahead != 0 && - lookahead != '"') ADVANCE(976); - END_STATE(); - case 958: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1009); - if (lookahead == '*') ADVANCE(944); - if (lookahead == '/') ADVANCE(932); - if (lookahead != 0 && - lookahead != '"') ADVANCE(963); - END_STATE(); - case 959: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1028); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(942); - if (lookahead != 0 && - lookahead != '"') ADVANCE(961); - END_STATE(); - case 960: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1028); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(921); - if (lookahead != 0 && - lookahead != '"') ADVANCE(961); - END_STATE(); - case 961: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1028); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(932); - if (lookahead != 0 && - lookahead != '"') ADVANCE(961); - END_STATE(); - case 962: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1028); - if (lookahead == '*') ADVANCE(939); - if (lookahead == '/') ADVANCE(931); - if (lookahead != 0 && - lookahead != '"') ADVANCE(961); - END_STATE(); - case 963: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1028); - if (lookahead == '*') ADVANCE(938); - if (lookahead == '/') ADVANCE(932); - if (lookahead != 0 && - lookahead != '"') ADVANCE(961); - END_STATE(); - case 964: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1034); - if (lookahead == '*') ADVANCE(962); - if (lookahead == '/') ADVANCE(948); - if (lookahead != 0 && - lookahead != '"') ADVANCE(965); - END_STATE(); - case 965: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1034); - if (lookahead == '*') ADVANCE(959); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(965); - END_STATE(); - case 966: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1034); - if (lookahead == '*') ADVANCE(959); - if (lookahead == '/') ADVANCE(948); - if (lookahead != 0 && - lookahead != '"') ADVANCE(965); - END_STATE(); - case 967: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(997); - if (lookahead == '*') ADVANCE(970); - if (lookahead == '/') ADVANCE(915); - if (lookahead != 0 && - lookahead != '"') ADVANCE(969); - END_STATE(); - case 968: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(992); - if (lookahead == '*') ADVANCE(920); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(949); - END_STATE(); - case 969: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1016); - if (lookahead == '*') ADVANCE(934); - if (lookahead == '/') ADVANCE(968); - if (lookahead != 0 && - lookahead != '"') ADVANCE(947); - END_STATE(); - case 970: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1016); - if (lookahead == '*') ADVANCE(970); - if (lookahead == '/') ADVANCE(975); - if (lookahead != 0 && - lookahead != '"') ADVANCE(947); - END_STATE(); - case 971: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1024); - if (lookahead == '*') ADVANCE(971); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(977); - END_STATE(); - case 972: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1014); - if (lookahead == '*') ADVANCE(914); - if (lookahead == '/') ADVANCE(974); - if (lookahead != 0 && - lookahead != '"') ADVANCE(973); - END_STATE(); - case 973: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(991); - if (lookahead == '*') ADVANCE(920); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(948); - END_STATE(); - case 974: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(991); - if (lookahead == '*') ADVANCE(945); - if (lookahead == '/') ADVANCE(953); - if (lookahead != 0 && - lookahead != '"') ADVANCE(948); - END_STATE(); - case 975: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1025); - if (lookahead == '*') ADVANCE(920); - if (lookahead == '/') ADVANCE(977); - if (lookahead != 0 && - lookahead != '"') ADVANCE(964); - END_STATE(); - case 976: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1033); - if (lookahead == '*') ADVANCE(938); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(978); - END_STATE(); - case 977: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1035); - if (lookahead == '*') ADVANCE(962); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(966); - END_STATE(); - case 978: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(1035); - if (lookahead == '*') ADVANCE(959); - if (lookahead == '/') ADVANCE(946); - if (lookahead != 0 && - lookahead != '"') ADVANCE(966); - END_STATE(); - case 979: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(979); - END_STATE(); - case 980: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead == '/') ADVANCE(1007); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1004); - END_STATE(); - case 981: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead == '/') ADVANCE(1008); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1014); - END_STATE(); - case 982: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1038); - END_STATE(); - case 983: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(979); - END_STATE(); - case 984: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1013); - END_STATE(); - case 985: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(916); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1039); - END_STATE(); - case 986: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(987); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(979); - END_STATE(); - case 987: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(989); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(984); - END_STATE(); - case 988: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(989); - if (lookahead == '/') ADVANCE(979); - if (lookahead != 0 && - lookahead != '"') ADVANCE(981); - END_STATE(); - case 989: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(989); - if (lookahead == '/') ADVANCE(1013); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1013); - END_STATE(); - case 990: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(994); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1018); - END_STATE(); - case 991: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(994); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 992: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(994); - if (lookahead == '/') ADVANCE(991); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 993: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(993); - END_STATE(); - case 994: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(979); - if (lookahead != 0 && - lookahead != '"') ADVANCE(996); - END_STATE(); - case 995: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(982); - if (lookahead != 0 && - lookahead != '"') ADVANCE(993); - END_STATE(); - case 996: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(996); - END_STATE(); - case 997: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(1013); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1016); - END_STATE(); - case 998: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(980); - if (lookahead != 0 && - lookahead != '"') ADVANCE(996); - END_STATE(); - case 999: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(995); - if (lookahead == '/') ADVANCE(1008); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 1000: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(993); - if (lookahead == '/') ADVANCE(1038); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1026); - END_STATE(); - case 1001: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(993); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(996); - END_STATE(); - case 1002: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(993); - if (lookahead == '/') ADVANCE(1007); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1027); - END_STATE(); - case 1003: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1020); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 1004: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1006); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1005); - END_STATE(); - case 1005: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1006); - if (lookahead == '/') ADVANCE(1012); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1009); - END_STATE(); - case 1006: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1006); - if (lookahead == '/') ADVANCE(1037); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1010); - END_STATE(); - case 1007: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1022); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1005); - END_STATE(); - case 1008: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(988); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(991); - END_STATE(); - case 1009: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1031); - if (lookahead == '/') ADVANCE(1012); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1028); - END_STATE(); - case 1010: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1031); - if (lookahead == '/') ADVANCE(1037); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1031); - END_STATE(); - case 1011: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1031); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1033); - END_STATE(); - case 1012: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1019); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(996); - END_STATE(); - case 1013: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(983); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(992); - END_STATE(); - case 1014: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(983); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(991); - END_STATE(); - case 1015: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(983); - if (lookahead == '/') ADVANCE(1024); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1025); - END_STATE(); - case 1016: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(998); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1018); - END_STATE(); - case 1017: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(998); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 1018: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(998); - if (lookahead == '/') ADVANCE(991); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1017); - END_STATE(); - case 1019: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1021); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(997); - END_STATE(); - case 1020: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1021); - if (lookahead == '/') ADVANCE(979); - if (lookahead != 0 && - lookahead != '"') ADVANCE(999); - END_STATE(); - case 1021: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1021); - if (lookahead == '/') ADVANCE(1015); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1016); - END_STATE(); - case 1022: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1023); - if (lookahead == '/') ADVANCE(1037); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1011); - END_STATE(); - case 1023: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1023); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1024); - END_STATE(); - case 1024: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1029); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1035); - END_STATE(); - case 1025: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1029); - if (lookahead == '/') ADVANCE(991); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1034); - END_STATE(); - case 1026: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1031); - END_STATE(); - case 1027: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(986); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1028); - END_STATE(); - case 1028: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1012); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1028); - END_STATE(); - case 1029: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1001); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1028); - END_STATE(); - case 1030: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1000); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1031); - END_STATE(); - case 1031: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1037); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1031); - END_STATE(); - case 1032: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1030); - if (lookahead == '/') ADVANCE(1002); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1028); - END_STATE(); - case 1033: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1032); - if (lookahead == '/') ADVANCE(990); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1035); - END_STATE(); - case 1034: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1032); - if (lookahead == '/') ADVANCE(1003); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1034); - END_STATE(); - case 1035: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(1032); - if (lookahead == '/') ADVANCE(991); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1034); - END_STATE(); - case 1036: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(985); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1036); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1039); - END_STATE(); - case 1037: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(993); - END_STATE(); - case 1038: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(1039); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1006); - END_STATE(); - case 1039: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead != 0 && - lookahead != '"') ADVANCE(1039); - END_STATE(); - case 1040: - ACCEPT_TOKEN(aux_sym_format_specifier_token2); - END_STATE(); - case 1041: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(236); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(235); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(237); - if (lookahead == '_') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(528); - END_STATE(); - case 1042: - ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); - if (lookahead == '.') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1043); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1043: - ACCEPT_TOKEN(sym_pseudo_compile_time_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1043); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1044: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1275); - if (lookahead == '\'') ADVANCE(1276); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1045: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(1277); - if (lookahead == '\'') ADVANCE(1278); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1046: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(233); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1043); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1047: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(233); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1048: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1049: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(241); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1050: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(1042); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1043); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1051: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(1048); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1052: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(1069); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1053: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(1043); - if (('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1054: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(1068); - if (lookahead == 'n') ADVANCE(509); - if (lookahead == 's') ADVANCE(506); - END_STATE(); - case 1055: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'e') ADVANCE(504); - END_STATE(); - case 1056: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'f') ADVANCE(502); - END_STATE(); - case 1057: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'l') ADVANCE(1065); - END_STATE(); - case 1058: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'n') ADVANCE(1049); - END_STATE(); - case 1059: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'o') ADVANCE(1058); - END_STATE(); - case 1060: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'o') ADVANCE(1063); - END_STATE(); - case 1061: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'p') ADVANCE(1052); - END_STATE(); - case 1062: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'r') ADVANCE(493); - END_STATE(); - case 1063: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'r') ADVANCE(1070); - END_STATE(); - case 1064: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 's') ADVANCE(418); - END_STATE(); - case 1065: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 's') ADVANCE(1055); - END_STATE(); - case 1066: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 's') ADVANCE(1059); - END_STATE(); - case 1067: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - if (lookahead == 'a') ADVANCE(1061); - END_STATE(); - case 1068: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1069: - ACCEPT_TOKEN(anon_sym_map_LBRACK); - END_STATE(); - case 1070: - ACCEPT_TOKEN(anon_sym_DOLLARfor); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(1068); - END_STATE(); - case 1071: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 1072: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(456); - END_STATE(); - case 1073: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 1074: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(315); - END_STATE(); - case 1075: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(315); - if (lookahead == '[') ADVANCE(500); - END_STATE(); - case 1076: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '[') ADVANCE(500); - END_STATE(); - case 1077: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(47); - if (lookahead == '*') ADVANCE(1079); - if (lookahead == '/') ADVANCE(1083); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(47); - if (lookahead != 0) ADVANCE(1088); - END_STATE(); - case 1078: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(4); - if (lookahead != 0) ADVANCE(1078); - END_STATE(); - case 1079: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1078); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(4); - if (lookahead != 0) ADVANCE(1078); - END_STATE(); - case 1080: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(211); - if (lookahead == '*') ADVANCE(1081); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(4); - if (lookahead != 0) ADVANCE(1078); - END_STATE(); - case 1081: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(294); - if (lookahead == '*') ADVANCE(1091); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(49); - if (lookahead != 0) ADVANCE(1090); - END_STATE(); - case 1082: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(295); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(54); - if (lookahead != 0) ADVANCE(1098); - END_STATE(); - case 1083: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(42); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(42); - if (lookahead != 0) ADVANCE(1083); - END_STATE(); - case 1084: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(44); - if (lookahead != 0) ADVANCE(1084); - END_STATE(); - case 1085: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1082); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(44); - if (lookahead != 0) ADVANCE(1084); - END_STATE(); - case 1086: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '*') ADVANCE(1084); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(44); - if (lookahead != 0) ADVANCE(1084); - END_STATE(); - case 1087: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1089); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(46); - if (lookahead != 0) ADVANCE(1087); - END_STATE(); - case 1088: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(46); - if (lookahead != 0) ADVANCE(1087); - END_STATE(); - case 1089: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(46); - if (lookahead == '*') ADVANCE(1081); - if (lookahead == '/') ADVANCE(1089); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(46); - if (lookahead != 0) ADVANCE(1087); - END_STATE(); - case 1090: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(85); - if (lookahead != 0) ADVANCE(1132); - END_STATE(); - case 1091: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '*') ADVANCE(1091); - if (lookahead == '/') ADVANCE(1132); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(85); - if (lookahead != 0) ADVANCE(1132); - END_STATE(); - case 1092: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(191); - if (lookahead == '*') ADVANCE(1084); - if (lookahead == '/') ADVANCE(1098); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(68); - if (lookahead != 0) ADVANCE(1113); - END_STATE(); - case 1093: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(53); - if (lookahead != 0) ADVANCE(1093); - END_STATE(); - case 1094: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1130); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(53); - if (lookahead != 0) ADVANCE(1093); - END_STATE(); - case 1095: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1078); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(53); - if (lookahead != 0) ADVANCE(1093); - END_STATE(); - case 1096: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(1084); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(53); - if (lookahead != 0) ADVANCE(1093); - END_STATE(); - case 1097: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '*') ADVANCE(1129); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(53); - if (lookahead != 0) ADVANCE(1093); - END_STATE(); - case 1098: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(180); - if (lookahead == '*') ADVANCE(1131); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(84); - if (lookahead != 0) ADVANCE(1131); - END_STATE(); - case 1099: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(1131); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(64); - if (lookahead != 0) ADVANCE(1109); - END_STATE(); - case 1100: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '*') ADVANCE(1101); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(64); - if (lookahead != 0) ADVANCE(1109); - END_STATE(); - case 1101: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(201); - if (lookahead == '*') ADVANCE(1110); - if (lookahead == '/') ADVANCE(1086); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(72); - if (lookahead != 0) ADVANCE(1117); - END_STATE(); - case 1102: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1080); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(58); - if (lookahead != 0) ADVANCE(1103); - END_STATE(); - case 1103: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(58); - if (lookahead != 0) ADVANCE(1103); - END_STATE(); - case 1104: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1096); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(58); - if (lookahead != 0) ADVANCE(1103); - END_STATE(); - case 1105: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1108); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(58); - if (lookahead != 0) ADVANCE(1103); - END_STATE(); - case 1106: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '*') ADVANCE(1114); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(58); - if (lookahead != 0) ADVANCE(1103); - END_STATE(); - case 1107: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(216); - if (lookahead == '*') ADVANCE(1091); - if (lookahead == '/') ADVANCE(1078); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(91); - if (lookahead != 0) ADVANCE(1137); - END_STATE(); - case 1108: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '*') ADVANCE(1084); - if (lookahead == '/') ADVANCE(1100); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(59); - if (lookahead != 0) ADVANCE(1102); - END_STATE(); - case 1109: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(200); - if (lookahead == '*') ADVANCE(1131); - if (lookahead == '/') ADVANCE(1097); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(62); - if (lookahead != 0) ADVANCE(1106); - END_STATE(); - case 1110: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(196); - if (lookahead == '*') ADVANCE(1110); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(88); - if (lookahead != 0) ADVANCE(1135); - END_STATE(); - case 1111: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(1095); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(77); - if (lookahead != 0) ADVANCE(1122); - END_STATE(); - case 1112: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '*') ADVANCE(1094); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(77); - if (lookahead != 0) ADVANCE(1122); - END_STATE(); - case 1113: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(69); - if (lookahead != 0) ADVANCE(1114); - END_STATE(); - case 1114: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1086); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(69); - if (lookahead != 0) ADVANCE(1114); - END_STATE(); - case 1115: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(1115); - if (lookahead == '/') ADVANCE(1092); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(69); - if (lookahead != 0) ADVANCE(1114); - END_STATE(); - case 1116: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '*') ADVANCE(1114); - if (lookahead == '/') ADVANCE(1086); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(69); - if (lookahead != 0) ADVANCE(1114); - END_STATE(); - case 1117: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(192); - if (lookahead == '*') ADVANCE(1114); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(90); - if (lookahead != 0) ADVANCE(1136); - END_STATE(); - case 1118: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1095); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1119: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1095); - if (lookahead == '/') ADVANCE(1118); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1120: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1139); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1121: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1094); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1122: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1094); - if (lookahead == '/') ADVANCE(1118); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1123: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '*') ADVANCE(1127); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(76); - if (lookahead != 0) ADVANCE(1121); - END_STATE(); - case 1124: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(1104); - if (lookahead == '/') ADVANCE(1118); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(80); - if (lookahead != 0) ADVANCE(1125); - END_STATE(); - case 1125: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(1105); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(80); - if (lookahead != 0) ADVANCE(1125); - END_STATE(); - case 1126: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(1105); - if (lookahead == '/') ADVANCE(1118); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(80); - if (lookahead != 0) ADVANCE(1125); - END_STATE(); - case 1127: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(173); - if (lookahead == '*') ADVANCE(1134); - if (lookahead == '/') ADVANCE(1078); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(75); - if (lookahead != 0) ADVANCE(1120); - END_STATE(); - case 1128: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(198); - if (lookahead == '*') ADVANCE(1079); - if (lookahead == '/') ADVANCE(1135); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(79); - if (lookahead != 0) ADVANCE(1124); - END_STATE(); - case 1129: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(171); - if (lookahead == '*') ADVANCE(1134); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(86); - if (lookahead != 0) ADVANCE(1133); - END_STATE(); - case 1130: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(179); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1100); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(55); - if (lookahead != 0) ADVANCE(1099); - END_STATE(); - case 1131: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(199); - if (lookahead == '*') ADVANCE(1131); - if (lookahead == '/') ADVANCE(1086); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(71); - if (lookahead != 0) ADVANCE(1116); - END_STATE(); - case 1132: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '*') ADVANCE(1079); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(74); - if (lookahead != 0) ADVANCE(1119); - END_STATE(); - case 1133: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(1085); - if (lookahead == '/') ADVANCE(1132); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(67); - if (lookahead != 0) ADVANCE(1112); - END_STATE(); - case 1134: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '*') ADVANCE(1134); - if (lookahead == '/') ADVANCE(1128); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(67); - if (lookahead != 0) ADVANCE(1112); - END_STATE(); - case 1135: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(1104); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(81); - if (lookahead != 0) ADVANCE(1126); - END_STATE(); - case 1136: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(194); - if (lookahead == '*') ADVANCE(1105); - if (lookahead == '/') ADVANCE(1111); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(81); - if (lookahead != 0) ADVANCE(1126); - END_STATE(); - case 1137: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1139); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(92); - if (lookahead != 0) ADVANCE(1138); - END_STATE(); - case 1138: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(1079); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(1118); - END_STATE(); - case 1139: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '*') ADVANCE(1107); - if (lookahead == '/') ADVANCE(1123); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(73); - if (lookahead != 0) ADVANCE(1118); - END_STATE(); - case 1140: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(1077); - if (lookahead == '/') ADVANCE(385); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(1144); - END_STATE(); - case 1141: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '/') ADVANCE(1142); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(157); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1142); - END_STATE(); - case 1142: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(1141); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(157); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(1142); - END_STATE(); - case 1143: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(1140); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(1143); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(1144); - END_STATE(); - case 1144: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(1144); - END_STATE(); - case 1145: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1270); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1146); - END_STATE(); - case 1146: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1270); - if (lookahead == '*') ADVANCE(1145); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1146); - END_STATE(); - case 1147: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1155); - if (lookahead == '*') ADVANCE(1151); - if (lookahead == '/') ADVANCE(1153); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1155); - END_STATE(); - case 1148: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1215); - if (lookahead == '*') ADVANCE(1158); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1157); - END_STATE(); - case 1149: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1269); - if (lookahead == '*') ADVANCE(1145); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1167); - END_STATE(); - case 1150: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1210); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1150); - END_STATE(); - case 1151: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1210); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1150); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1150); - END_STATE(); - case 1152: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1210); - if (lookahead == '*') ADVANCE(1148); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1150); - END_STATE(); - case 1153: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1153); - if (lookahead == '*') ADVANCE(1145); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1153); - END_STATE(); - case 1154: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1154); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1156); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1154); - END_STATE(); - case 1155: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1154); - if (lookahead == '*') ADVANCE(1145); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1154); - END_STATE(); - case 1156: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1154); - if (lookahead == '*') ADVANCE(1148); - if (lookahead == '/') ADVANCE(1156); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1154); - END_STATE(); - case 1157: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1244); - if (lookahead == '*') ADVANCE(1145); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1199); - END_STATE(); - case 1158: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1244); - if (lookahead == '*') ADVANCE(1158); - if (lookahead == '/') ADVANCE(1199); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1199); - END_STATE(); - case 1159: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1227); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1174); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1160); - END_STATE(); - case 1160: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1227); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1160); - END_STATE(); - case 1161: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1227); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1150); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1160); - END_STATE(); - case 1162: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1227); - if (lookahead == '*') ADVANCE(1164); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1160); - END_STATE(); - case 1163: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1227); - if (lookahead == '*') ADVANCE(1198); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1160); - END_STATE(); - case 1164: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1224); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1164); - END_STATE(); - case 1165: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1224); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1149); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1164); - END_STATE(); - case 1166: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1224); - if (lookahead == '*') ADVANCE(1164); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1164); - END_STATE(); - case 1167: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1237); - if (lookahead == '*') ADVANCE(1175); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1175); - END_STATE(); - case 1168: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1262); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1169); - END_STATE(); - case 1169: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1262); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1166); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1169); - END_STATE(); - case 1170: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1262); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1172); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1169); - END_STATE(); - case 1171: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1262); - if (lookahead == '*') ADVANCE(1169); - if (lookahead == '/') ADVANCE(1166); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1169); - END_STATE(); - case 1172: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1257); - if (lookahead == '*') ADVANCE(1164); - if (lookahead == '/') ADVANCE(1167); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1168); - END_STATE(); - case 1173: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1258); - if (lookahead == '*') ADVANCE(1164); - if (lookahead == '/') ADVANCE(1187); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1191); - END_STATE(); - case 1174: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1235); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1187); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1186); - END_STATE(); - case 1175: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1241); - if (lookahead == '*') ADVANCE(1175); - if (lookahead == '/') ADVANCE(1166); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1171); - END_STATE(); - case 1176: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1212); - if (lookahead == '*') ADVANCE(1158); - if (lookahead == '/') ADVANCE(1150); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1203); - END_STATE(); - case 1177: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1249); - if (lookahead == '*') ADVANCE(1161); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1183); - END_STATE(); - case 1178: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1249); - if (lookahead == '*') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1183); - END_STATE(); - case 1179: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1161); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1180: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1161); - if (lookahead == '/') ADVANCE(1179); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1181: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1205); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1182: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1183: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1159); - if (lookahead == '/') ADVANCE(1179); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1184: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1248); - if (lookahead == '*') ADVANCE(1185); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1182); - END_STATE(); - case 1185: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1230); - if (lookahead == '*') ADVANCE(1201); - if (lookahead == '/') ADVANCE(1150); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1181); - END_STATE(); - case 1186: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1236); - if (lookahead == '*') ADVANCE(1175); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1189); - END_STATE(); - case 1187: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1236); - if (lookahead == '*') ADVANCE(1188); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1189); - END_STATE(); - case 1188: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1242); - if (lookahead == '*') ADVANCE(1202); - if (lookahead == '/') ADVANCE(1166); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1207); - END_STATE(); - case 1189: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1240); - if (lookahead == '*') ADVANCE(1175); - if (lookahead == '/') ADVANCE(1163); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1194); - END_STATE(); - case 1190: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1259); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1173); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1192); - END_STATE(); - case 1191: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1259); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1152); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1192); - END_STATE(); - case 1192: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1259); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1163); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1192); - END_STATE(); - case 1193: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1259); - if (lookahead == '*') ADVANCE(1170); - if (lookahead == '/') ADVANCE(1162); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1192); - END_STATE(); - case 1194: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1259); - if (lookahead == '*') ADVANCE(1169); - if (lookahead == '/') ADVANCE(1163); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1192); - END_STATE(); - case 1195: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1265); - if (lookahead == '*') ADVANCE(1193); - if (lookahead == '/') ADVANCE(1179); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1196); - END_STATE(); - case 1196: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1265); - if (lookahead == '*') ADVANCE(1190); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1196); - END_STATE(); - case 1197: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1265); - if (lookahead == '*') ADVANCE(1190); - if (lookahead == '/') ADVANCE(1179); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1196); - END_STATE(); - case 1198: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1228); - if (lookahead == '*') ADVANCE(1201); - if (lookahead == '/') ADVANCE(1146); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1200); - END_STATE(); - case 1199: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1223); - if (lookahead == '*') ADVANCE(1151); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1180); - END_STATE(); - case 1200: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1247); - if (lookahead == '*') ADVANCE(1165); - if (lookahead == '/') ADVANCE(1199); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1178); - END_STATE(); - case 1201: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1247); - if (lookahead == '*') ADVANCE(1201); - if (lookahead == '/') ADVANCE(1206); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1178); - END_STATE(); - case 1202: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1255); - if (lookahead == '*') ADVANCE(1202); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1208); - END_STATE(); - case 1203: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1245); - if (lookahead == '*') ADVANCE(1145); - if (lookahead == '/') ADVANCE(1205); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1204); - END_STATE(); - case 1204: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1222); - if (lookahead == '*') ADVANCE(1151); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1179); - END_STATE(); - case 1205: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1222); - if (lookahead == '*') ADVANCE(1176); - if (lookahead == '/') ADVANCE(1184); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1179); - END_STATE(); - case 1206: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1256); - if (lookahead == '*') ADVANCE(1151); - if (lookahead == '/') ADVANCE(1208); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1195); - END_STATE(); - case 1207: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1264); - if (lookahead == '*') ADVANCE(1169); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1209); - END_STATE(); - case 1208: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1266); - if (lookahead == '*') ADVANCE(1193); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1197); - END_STATE(); - case 1209: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(1266); - if (lookahead == '*') ADVANCE(1190); - if (lookahead == '/') ADVANCE(1177); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1197); - END_STATE(); - case 1210: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1210); - END_STATE(); - case 1211: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead == '/') ADVANCE(1238); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1235); - END_STATE(); - case 1212: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead == '/') ADVANCE(1239); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1245); - END_STATE(); - case 1213: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1269); - END_STATE(); - case 1214: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1210); - END_STATE(); - case 1215: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1244); - END_STATE(); - case 1216: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1147); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1270); - END_STATE(); - case 1217: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1218); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1210); - END_STATE(); - case 1218: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1220); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1215); - END_STATE(); - case 1219: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1220); - if (lookahead == '/') ADVANCE(1210); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1212); - END_STATE(); - case 1220: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1220); - if (lookahead == '/') ADVANCE(1244); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1244); - END_STATE(); - case 1221: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1225); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1249); - END_STATE(); - case 1222: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1225); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1223: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1225); - if (lookahead == '/') ADVANCE(1222); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1224: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1224); - END_STATE(); - case 1225: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1210); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1227); - END_STATE(); - case 1226: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1213); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1224); - END_STATE(); - case 1227: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1227); - END_STATE(); - case 1228: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1244); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1247); - END_STATE(); - case 1229: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1211); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1227); - END_STATE(); - case 1230: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1226); - if (lookahead == '/') ADVANCE(1239); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1231: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1224); - if (lookahead == '/') ADVANCE(1269); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1257); - END_STATE(); - case 1232: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1224); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1227); - END_STATE(); - case 1233: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1224); - if (lookahead == '/') ADVANCE(1238); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1258); - END_STATE(); - case 1234: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1251); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1235: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1237); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1236); - END_STATE(); - case 1236: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1237); - if (lookahead == '/') ADVANCE(1243); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1240); - END_STATE(); - case 1237: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1237); - if (lookahead == '/') ADVANCE(1268); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1241); - END_STATE(); - case 1238: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1253); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1236); - END_STATE(); - case 1239: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1219); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1222); - END_STATE(); - case 1240: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1262); - if (lookahead == '/') ADVANCE(1243); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1259); - END_STATE(); - case 1241: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1262); - if (lookahead == '/') ADVANCE(1268); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1262); - END_STATE(); - case 1242: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1262); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1264); - END_STATE(); - case 1243: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1250); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1227); - END_STATE(); - case 1244: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1214); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1223); - END_STATE(); - case 1245: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1214); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1222); - END_STATE(); - case 1246: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1214); - if (lookahead == '/') ADVANCE(1255); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1256); - END_STATE(); - case 1247: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1229); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1249); - END_STATE(); - case 1248: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1229); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1249: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1229); - if (lookahead == '/') ADVANCE(1222); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1248); - END_STATE(); - case 1250: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1252); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1228); - END_STATE(); - case 1251: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1252); - if (lookahead == '/') ADVANCE(1210); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1230); - END_STATE(); - case 1252: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1252); - if (lookahead == '/') ADVANCE(1246); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1247); - END_STATE(); - case 1253: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1254); - if (lookahead == '/') ADVANCE(1268); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1242); - END_STATE(); - case 1254: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1254); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1255); - END_STATE(); - case 1255: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1260); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1266); - END_STATE(); - case 1256: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1260); - if (lookahead == '/') ADVANCE(1222); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1265); - END_STATE(); - case 1257: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1262); - END_STATE(); - case 1258: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1217); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1259); - END_STATE(); - case 1259: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1243); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1259); - END_STATE(); - case 1260: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1232); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1259); - END_STATE(); - case 1261: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1231); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1262); - END_STATE(); - case 1262: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1268); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1262); - END_STATE(); - case 1263: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1261); - if (lookahead == '/') ADVANCE(1233); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1259); - END_STATE(); - case 1264: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1263); - if (lookahead == '/') ADVANCE(1221); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1266); - END_STATE(); - case 1265: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1263); - if (lookahead == '/') ADVANCE(1234); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1265); - END_STATE(); - case 1266: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(1263); - if (lookahead == '/') ADVANCE(1222); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1265); - END_STATE(); - case 1267: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(1216); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(1267); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1270); - END_STATE(); - case 1268: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1224); - END_STATE(); - case 1269: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(1270); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1237); - END_STATE(); - case 1270: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(1270); - END_STATE(); - case 1271: - ACCEPT_TOKEN(anon_sym_AT_LBRACK); - END_STATE(); - case 1272: - ACCEPT_TOKEN(sym___dolcbr); - END_STATE(); - case 1273: - ACCEPT_TOKEN(sym___double_quote); - END_STATE(); - case 1274: - ACCEPT_TOKEN(sym___single_quote); - END_STATE(); - case 1275: - ACCEPT_TOKEN(sym___c_double_quote); - END_STATE(); - case 1276: - ACCEPT_TOKEN(sym___c_single_quote); - END_STATE(); - case 1277: - ACCEPT_TOKEN(sym___r_double_quote); - END_STATE(); - case 1278: - ACCEPT_TOKEN(sym___r_single_quote); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'g') ADVANCE(8); - if (lookahead == 'i') ADVANCE(9); - if (lookahead == 'l') ADVANCE(10); - if (lookahead == 'm') ADVANCE(11); - if (lookahead == 'n') ADVANCE(12); - if (lookahead == 'p') ADVANCE(13); - if (lookahead == 'r') ADVANCE(14); - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - if (lookahead == 'u') ADVANCE(17); - if (lookahead == 'v') ADVANCE(18); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) - if (('E' <= lookahead && lookahead <= 'G') || - lookahead == 'S' || - lookahead == 'X' || - lookahead == 'o' || - lookahead == 'x') ADVANCE(19); - END_STATE(); - case 1: - if (lookahead == '_') ADVANCE(20); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(21); - if (lookahead == 't') ADVANCE(22); - END_STATE(); - case 3: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'r') ADVANCE(23); - END_STATE(); - case 4: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'h') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); - END_STATE(); - case 5: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'e') ADVANCE(26); - END_STATE(); - case 6: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'l') ADVANCE(27); - if (lookahead == 'n') ADVANCE(28); - END_STATE(); - case 7: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); - END_STATE(); - case 8: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'o') ADVANCE(32); - END_STATE(); - case 9: - if (lookahead == 'f') ADVANCE(33); - if (lookahead == 'm') ADVANCE(34); - if (lookahead == 'n') ADVANCE(35); - END_STATE(); - case 10: - if (lookahead == 'o') ADVANCE(36); - END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'u') ADVANCE(39); - END_STATE(); - case 12: - if (lookahead == 'i') ADVANCE(40); - if (lookahead == 'o') ADVANCE(41); - END_STATE(); - case 13: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'u') ADVANCE(42); - END_STATE(); - case 14: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 'l') ADVANCE(44); - END_STATE(); - case 15: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'e') ADVANCE(45); - if (lookahead == 'h') ADVANCE(46); - if (lookahead == 'p') ADVANCE(47); - if (lookahead == 'q') ADVANCE(48); - if (lookahead == 't') ADVANCE(49); - END_STATE(); - case 16: - if (lookahead == 'h') ADVANCE(50); - if (lookahead == 'r') ADVANCE(51); - if (lookahead == 'y') ADVANCE(52); - END_STATE(); - case 17: - if (lookahead == 'n') ADVANCE(53); - END_STATE(); - case 18: - if (lookahead == 'o') ADVANCE(54); - END_STATE(); - case 19: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - END_STATE(); - case 20: - if (lookahead == 'g') ADVANCE(55); - END_STATE(); - case 21: - if (lookahead == 'm') ADVANCE(56); - if (lookahead == 's') ADVANCE(57); - END_STATE(); - case 22: - if (lookahead == 'o') ADVANCE(58); - END_STATE(); - case 23: - if (lookahead == 'e') ADVANCE(59); - END_STATE(); - case 24: - if (lookahead == 'a') ADVANCE(60); - END_STATE(); - case 25: - if (lookahead == 'n') ADVANCE(61); - END_STATE(); - case 26: - if (lookahead == 'f') ADVANCE(62); - END_STATE(); - case 27: - if (lookahead == 's') ADVANCE(63); - END_STATE(); - case 28: - if (lookahead == 'u') ADVANCE(64); - END_STATE(); - case 29: - if (lookahead == 'l') ADVANCE(65); - END_STATE(); - case 30: - ACCEPT_TOKEN(anon_sym_fn); - END_STATE(); - case 31: - if (lookahead == 'r') ADVANCE(66); - END_STATE(); - case 32: - ACCEPT_TOKEN(anon_sym_go); - if (lookahead == 't') ADVANCE(67); - END_STATE(); - case 33: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 34: - if (lookahead == 'p') ADVANCE(68); - END_STATE(); - case 35: - if (lookahead == 't') ADVANCE(69); - END_STATE(); - case 36: - if (lookahead == 'c') ADVANCE(70); - END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(71); - END_STATE(); - case 38: - if (lookahead == 'd') ADVANCE(72); - END_STATE(); - case 39: - if (lookahead == 't') ADVANCE(73); - END_STATE(); - case 40: - if (lookahead == 'l') ADVANCE(74); - END_STATE(); - case 41: - if (lookahead == 'n') ADVANCE(75); - END_STATE(); - case 42: - if (lookahead == 'b') ADVANCE(76); - END_STATE(); - case 43: - if (lookahead == 't') ADVANCE(77); - END_STATE(); - case 44: - if (lookahead == 'o') ADVANCE(78); - END_STATE(); - case 45: - if (lookahead == 'l') ADVANCE(79); - END_STATE(); - case 46: - if (lookahead == 'a') ADVANCE(80); - END_STATE(); - case 47: - if (lookahead == 'a') ADVANCE(81); - END_STATE(); - case 48: - if (lookahead == 'l') ADVANCE(82); - END_STATE(); - case 49: - if (lookahead == 'a') ADVANCE(83); - if (lookahead == 'r') ADVANCE(84); - END_STATE(); - case 50: - if (lookahead == 'r') ADVANCE(85); - END_STATE(); - case 51: - if (lookahead == 'u') ADVANCE(86); - END_STATE(); - case 52: - if (lookahead == 'p') ADVANCE(87); - END_STATE(); - case 53: - if (lookahead == 'i') ADVANCE(88); - if (lookahead == 's') ADVANCE(89); - END_STATE(); - case 54: - if (lookahead == 'l') ADVANCE(90); - END_STATE(); - case 55: - if (lookahead == 'l') ADVANCE(91); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_asm); - END_STATE(); - case 57: - if (lookahead == 'e') ADVANCE(92); - END_STATE(); - case 58: - if (lookahead == 'm') ADVANCE(93); - END_STATE(); - case 59: - if (lookahead == 'a') ADVANCE(94); - END_STATE(); - case 60: - if (lookahead == 'n') ADVANCE(95); - END_STATE(); - case 61: - if (lookahead == 's') ADVANCE(96); - if (lookahead == 't') ADVANCE(97); - END_STATE(); - case 62: - if (lookahead == 'e') ADVANCE(98); - END_STATE(); - case 63: - if (lookahead == 'e') ADVANCE(99); - END_STATE(); - case 64: - if (lookahead == 'm') ADVANCE(100); - END_STATE(); - case 65: - if (lookahead == 's') ADVANCE(101); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 67: - if (lookahead == 'o') ADVANCE(102); - END_STATE(); - case 68: - if (lookahead == 'o') ADVANCE(103); - END_STATE(); - case 69: - if (lookahead == 'e') ADVANCE(104); - END_STATE(); - case 70: - if (lookahead == 'k') ADVANCE(105); - END_STATE(); - case 71: - if (lookahead == 'c') ADVANCE(106); - END_STATE(); - case 72: - if (lookahead == 'u') ADVANCE(107); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_mut); - END_STATE(); - case 74: - ACCEPT_TOKEN(sym_nil); - END_STATE(); - case 75: - if (lookahead == 'e') ADVANCE(108); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_pub); - END_STATE(); - case 77: - if (lookahead == 'u') ADVANCE(109); - END_STATE(); - case 78: - if (lookahead == 'c') ADVANCE(110); - END_STATE(); - case 79: - if (lookahead == 'e') ADVANCE(111); - END_STATE(); - case 80: - if (lookahead == 'r') ADVANCE(112); - END_STATE(); - case 81: - if (lookahead == 'w') ADVANCE(113); - END_STATE(); - case 82: - ACCEPT_TOKEN(anon_sym_sql); - END_STATE(); - case 83: - if (lookahead == 't') ADVANCE(114); - END_STATE(); - case 84: - if (lookahead == 'u') ADVANCE(115); - END_STATE(); - case 85: - if (lookahead == 'e') ADVANCE(116); - END_STATE(); - case 86: - if (lookahead == 'e') ADVANCE(117); - END_STATE(); - case 87: - if (lookahead == 'e') ADVANCE(118); - END_STATE(); - case 88: - if (lookahead == 'o') ADVANCE(119); - END_STATE(); - case 89: - if (lookahead == 'a') ADVANCE(120); - END_STATE(); - case 90: - if (lookahead == 'a') ADVANCE(121); - END_STATE(); - case 91: - if (lookahead == 'o') ADVANCE(122); - END_STATE(); - case 92: - if (lookahead == 'r') ADVANCE(123); - END_STATE(); - case 93: - if (lookahead == 'i') ADVANCE(124); - END_STATE(); - case 94: - if (lookahead == 'k') ADVANCE(125); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_chan); - END_STATE(); - case 96: - if (lookahead == 't') ADVANCE(126); - END_STATE(); - case 97: - if (lookahead == 'i') ADVANCE(127); - END_STATE(); - case 98: - if (lookahead == 'r') ADVANCE(128); - END_STATE(); - case 99: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 101: - if (lookahead == 'e') ADVANCE(129); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_goto); - END_STATE(); - case 103: - if (lookahead == 'r') ADVANCE(130); - END_STATE(); - case 104: - if (lookahead == 'r') ADVANCE(131); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_lock); - END_STATE(); - case 106: - if (lookahead == 'h') ADVANCE(132); - END_STATE(); - case 107: - if (lookahead == 'l') ADVANCE(133); - END_STATE(); - case 108: - ACCEPT_TOKEN(sym_none); - END_STATE(); - case 109: - if (lookahead == 'r') ADVANCE(134); - END_STATE(); - case 110: - if (lookahead == 'k') ADVANCE(135); - END_STATE(); - case 111: - if (lookahead == 'c') ADVANCE(136); - END_STATE(); - case 112: - if (lookahead == 'e') ADVANCE(137); - END_STATE(); - case 113: - if (lookahead == 'n') ADVANCE(138); + case 113: + if (lookahead == 'n') ADVANCE(138); END_STATE(); case 114: if (lookahead == 'i') ADVANCE(139); @@ -21270,1633 +14499,1633 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 310}, - [2] = {.lex_state = 311}, - [3] = {.lex_state = 311}, - [4] = {.lex_state = 311}, - [5] = {.lex_state = 311}, - [6] = {.lex_state = 311}, - [7] = {.lex_state = 311}, - [8] = {.lex_state = 311}, - [9] = {.lex_state = 311}, - [10] = {.lex_state = 311}, - [11] = {.lex_state = 311}, - [12] = {.lex_state = 311}, - [13] = {.lex_state = 311}, - [14] = {.lex_state = 311}, - [15] = {.lex_state = 311}, - [16] = {.lex_state = 311}, - [17] = {.lex_state = 311}, - [18] = {.lex_state = 311}, - [19] = {.lex_state = 311}, - [20] = {.lex_state = 311}, - [21] = {.lex_state = 311}, - [22] = {.lex_state = 311}, - [23] = {.lex_state = 311}, - [24] = {.lex_state = 311}, - [25] = {.lex_state = 311}, - [26] = {.lex_state = 311}, - [27] = {.lex_state = 311}, - [28] = {.lex_state = 311}, - [29] = {.lex_state = 311}, - [30] = {.lex_state = 311}, - [31] = {.lex_state = 311}, - [32] = {.lex_state = 311}, - [33] = {.lex_state = 311}, - [34] = {.lex_state = 311}, - [35] = {.lex_state = 311}, - [36] = {.lex_state = 311}, - [37] = {.lex_state = 311}, - [38] = {.lex_state = 311}, - [39] = {.lex_state = 311}, - [40] = {.lex_state = 311}, - [41] = {.lex_state = 311}, - [42] = {.lex_state = 311}, - [43] = {.lex_state = 311}, - [44] = {.lex_state = 311}, - [45] = {.lex_state = 311}, - [46] = {.lex_state = 311}, - [47] = {.lex_state = 311}, - [48] = {.lex_state = 311}, - [49] = {.lex_state = 311}, - [50] = {.lex_state = 311}, - [51] = {.lex_state = 311}, - [52] = {.lex_state = 311}, - [53] = {.lex_state = 311}, - [54] = {.lex_state = 311}, - [55] = {.lex_state = 311}, - [56] = {.lex_state = 311}, - [57] = {.lex_state = 311}, - [58] = {.lex_state = 311}, - [59] = {.lex_state = 311}, - [60] = {.lex_state = 311}, - [61] = {.lex_state = 311}, - [62] = {.lex_state = 311}, - [63] = {.lex_state = 311}, - [64] = {.lex_state = 311}, - [65] = {.lex_state = 311}, - [66] = {.lex_state = 306}, - [67] = {.lex_state = 297}, - [68] = {.lex_state = 297}, - [69] = {.lex_state = 297}, - [70] = {.lex_state = 297}, - [71] = {.lex_state = 297}, - [72] = {.lex_state = 136}, - [73] = {.lex_state = 136}, - [74] = {.lex_state = 136}, - [75] = {.lex_state = 136}, - [76] = {.lex_state = 136}, - [77] = {.lex_state = 136}, - [78] = {.lex_state = 136}, - [79] = {.lex_state = 136}, - [80] = {.lex_state = 136}, - [81] = {.lex_state = 136}, - [82] = {.lex_state = 136}, - [83] = {.lex_state = 136}, - [84] = {.lex_state = 136}, - [85] = {.lex_state = 136}, - [86] = {.lex_state = 136}, - [87] = {.lex_state = 136}, - [88] = {.lex_state = 136}, - [89] = {.lex_state = 136}, - [90] = {.lex_state = 136}, - [91] = {.lex_state = 136}, - [92] = {.lex_state = 136}, - [93] = {.lex_state = 136}, - [94] = {.lex_state = 136}, - [95] = {.lex_state = 136}, - [96] = {.lex_state = 136}, - [97] = {.lex_state = 136}, - [98] = {.lex_state = 136}, - [99] = {.lex_state = 136}, - [100] = {.lex_state = 136}, - [101] = {.lex_state = 136}, - [102] = {.lex_state = 136}, - [103] = {.lex_state = 136}, - [104] = {.lex_state = 136}, - [105] = {.lex_state = 136}, - [106] = {.lex_state = 136}, - [107] = {.lex_state = 136}, - [108] = {.lex_state = 136}, - [109] = {.lex_state = 136}, - [110] = {.lex_state = 136}, - [111] = {.lex_state = 136}, - [112] = {.lex_state = 136}, - [113] = {.lex_state = 136}, - [114] = {.lex_state = 136}, - [115] = {.lex_state = 136}, - [116] = {.lex_state = 136}, - [117] = {.lex_state = 136}, - [118] = {.lex_state = 136}, - [119] = {.lex_state = 136}, - [120] = {.lex_state = 136}, - [121] = {.lex_state = 136}, - [122] = {.lex_state = 136}, - [123] = {.lex_state = 136}, - [124] = {.lex_state = 136}, - [125] = {.lex_state = 136}, - [126] = {.lex_state = 136}, - [127] = {.lex_state = 136}, - [128] = {.lex_state = 136}, - [129] = {.lex_state = 136}, - [130] = {.lex_state = 136}, - [131] = {.lex_state = 136}, - [132] = {.lex_state = 136}, - [133] = {.lex_state = 136}, - [134] = {.lex_state = 136}, - [135] = {.lex_state = 136}, - [136] = {.lex_state = 136}, - [137] = {.lex_state = 136}, - [138] = {.lex_state = 136}, - [139] = {.lex_state = 136}, - [140] = {.lex_state = 136}, - [141] = {.lex_state = 136}, - [142] = {.lex_state = 136}, - [143] = {.lex_state = 136}, - [144] = {.lex_state = 136}, - [145] = {.lex_state = 136}, - [146] = {.lex_state = 136}, - [147] = {.lex_state = 136}, - [148] = {.lex_state = 136}, - [149] = {.lex_state = 136}, - [150] = {.lex_state = 136}, - [151] = {.lex_state = 136}, - [152] = {.lex_state = 136}, - [153] = {.lex_state = 136}, - [154] = {.lex_state = 136}, - [155] = {.lex_state = 136}, - [156] = {.lex_state = 136}, - [157] = {.lex_state = 136}, - [158] = {.lex_state = 136}, - [159] = {.lex_state = 136}, - [160] = {.lex_state = 136}, - [161] = {.lex_state = 136}, - [162] = {.lex_state = 136}, - [163] = {.lex_state = 136}, - [164] = {.lex_state = 136}, - [165] = {.lex_state = 136}, - [166] = {.lex_state = 136}, - [167] = {.lex_state = 136}, - [168] = {.lex_state = 136}, - [169] = {.lex_state = 136}, - [170] = {.lex_state = 136}, - [171] = {.lex_state = 136}, - [172] = {.lex_state = 136}, - [173] = {.lex_state = 136}, - [174] = {.lex_state = 136}, - [175] = {.lex_state = 136}, - [176] = {.lex_state = 136}, - [177] = {.lex_state = 136}, - [178] = {.lex_state = 136}, - [179] = {.lex_state = 136}, - [180] = {.lex_state = 136}, - [181] = {.lex_state = 136}, - [182] = {.lex_state = 136}, - [183] = {.lex_state = 136}, - [184] = {.lex_state = 136}, - [185] = {.lex_state = 136}, - [186] = {.lex_state = 136}, - [187] = {.lex_state = 136}, - [188] = {.lex_state = 136}, - [189] = {.lex_state = 137}, - [190] = {.lex_state = 136}, - [191] = {.lex_state = 136}, - [192] = {.lex_state = 136}, - [193] = {.lex_state = 136}, - [194] = {.lex_state = 136}, - [195] = {.lex_state = 136}, - [196] = {.lex_state = 136}, - [197] = {.lex_state = 136}, - [198] = {.lex_state = 136}, - [199] = {.lex_state = 136}, - [200] = {.lex_state = 136}, - [201] = {.lex_state = 136}, - [202] = {.lex_state = 136}, - [203] = {.lex_state = 136}, - [204] = {.lex_state = 136}, - [205] = {.lex_state = 136}, - [206] = {.lex_state = 299}, - [207] = {.lex_state = 299}, - [208] = {.lex_state = 136}, - [209] = {.lex_state = 136}, - [210] = {.lex_state = 136}, - [211] = {.lex_state = 299}, - [212] = {.lex_state = 35}, - [213] = {.lex_state = 299}, - [214] = {.lex_state = 299}, - [215] = {.lex_state = 297}, - [216] = {.lex_state = 297}, - [217] = {.lex_state = 297}, - [218] = {.lex_state = 136}, - [219] = {.lex_state = 136}, - [220] = {.lex_state = 136}, - [221] = {.lex_state = 136}, - [222] = {.lex_state = 297}, - [223] = {.lex_state = 136}, - [224] = {.lex_state = 136}, - [225] = {.lex_state = 136}, - [226] = {.lex_state = 136}, - [227] = {.lex_state = 297}, - [228] = {.lex_state = 136}, - [229] = {.lex_state = 297}, - [230] = {.lex_state = 136}, - [231] = {.lex_state = 136}, - [232] = {.lex_state = 136}, - [233] = {.lex_state = 136}, - [234] = {.lex_state = 136}, - [235] = {.lex_state = 136}, - [236] = {.lex_state = 136}, - [237] = {.lex_state = 136}, - [238] = {.lex_state = 136}, - [239] = {.lex_state = 136}, - [240] = {.lex_state = 136}, - [241] = {.lex_state = 136}, - [242] = {.lex_state = 136}, - [243] = {.lex_state = 136}, - [244] = {.lex_state = 297}, - [245] = {.lex_state = 136}, - [246] = {.lex_state = 136}, - [247] = {.lex_state = 136}, - [248] = {.lex_state = 136}, - [249] = {.lex_state = 136}, - [250] = {.lex_state = 136}, - [251] = {.lex_state = 136}, - [252] = {.lex_state = 136}, - [253] = {.lex_state = 297}, - [254] = {.lex_state = 136}, - [255] = {.lex_state = 136}, - [256] = {.lex_state = 136}, - [257] = {.lex_state = 136}, - [258] = {.lex_state = 297}, - [259] = {.lex_state = 136}, - [260] = {.lex_state = 136}, - [261] = {.lex_state = 136}, - [262] = {.lex_state = 136}, - [263] = {.lex_state = 136}, - [264] = {.lex_state = 297}, - [265] = {.lex_state = 297}, - [266] = {.lex_state = 136}, - [267] = {.lex_state = 136}, - [268] = {.lex_state = 136}, - [269] = {.lex_state = 136}, - [270] = {.lex_state = 136}, - [271] = {.lex_state = 136}, - [272] = {.lex_state = 136}, - [273] = {.lex_state = 297}, - [274] = {.lex_state = 136}, - [275] = {.lex_state = 136}, - [276] = {.lex_state = 297}, - [277] = {.lex_state = 297}, - [278] = {.lex_state = 136}, - [279] = {.lex_state = 297}, - [280] = {.lex_state = 136}, - [281] = {.lex_state = 136}, - [282] = {.lex_state = 136}, - [283] = {.lex_state = 136}, - [284] = {.lex_state = 136}, - [285] = {.lex_state = 136}, - [286] = {.lex_state = 136}, - [287] = {.lex_state = 136}, - [288] = {.lex_state = 136}, - [289] = {.lex_state = 136}, - [290] = {.lex_state = 136}, - [291] = {.lex_state = 136}, - [292] = {.lex_state = 136}, - [293] = {.lex_state = 136}, - [294] = {.lex_state = 136}, - [295] = {.lex_state = 136}, - [296] = {.lex_state = 136}, - [297] = {.lex_state = 136}, - [298] = {.lex_state = 136}, - [299] = {.lex_state = 136}, - [300] = {.lex_state = 137}, - [301] = {.lex_state = 137}, - [302] = {.lex_state = 137}, - [303] = {.lex_state = 136}, - [304] = {.lex_state = 136}, - [305] = {.lex_state = 136}, - [306] = {.lex_state = 137}, - [307] = {.lex_state = 137}, - [308] = {.lex_state = 136}, - [309] = {.lex_state = 136}, - [310] = {.lex_state = 136}, - [311] = {.lex_state = 136}, - [312] = {.lex_state = 136}, - [313] = {.lex_state = 136}, - [314] = {.lex_state = 136}, - [315] = {.lex_state = 136}, - [316] = {.lex_state = 136}, - [317] = {.lex_state = 136}, - [318] = {.lex_state = 136}, - [319] = {.lex_state = 137}, - [320] = {.lex_state = 137}, - [321] = {.lex_state = 136}, - [322] = {.lex_state = 136}, - [323] = {.lex_state = 137}, - [324] = {.lex_state = 136}, - [325] = {.lex_state = 136}, - [326] = {.lex_state = 136}, - [327] = {.lex_state = 136}, - [328] = {.lex_state = 136}, - [329] = {.lex_state = 136}, - [330] = {.lex_state = 137}, - [331] = {.lex_state = 137}, - [332] = {.lex_state = 136}, - [333] = {.lex_state = 136}, - [334] = {.lex_state = 136}, - [335] = {.lex_state = 136}, - [336] = {.lex_state = 136}, - [337] = {.lex_state = 136}, - [338] = {.lex_state = 136}, - [339] = {.lex_state = 136}, - [340] = {.lex_state = 137}, - [341] = {.lex_state = 137}, - [342] = {.lex_state = 136}, - [343] = {.lex_state = 136}, - [344] = {.lex_state = 137}, - [345] = {.lex_state = 136}, - [346] = {.lex_state = 137}, - [347] = {.lex_state = 136}, - [348] = {.lex_state = 136}, - [349] = {.lex_state = 136}, - [350] = {.lex_state = 136}, - [351] = {.lex_state = 136}, - [352] = {.lex_state = 137}, - [353] = {.lex_state = 137}, - [354] = {.lex_state = 136}, - [355] = {.lex_state = 137}, - [356] = {.lex_state = 136}, - [357] = {.lex_state = 136}, - [358] = {.lex_state = 137}, - [359] = {.lex_state = 136}, - [360] = {.lex_state = 136}, - [361] = {.lex_state = 136}, - [362] = {.lex_state = 137}, - [363] = {.lex_state = 136}, - [364] = {.lex_state = 136}, - [365] = {.lex_state = 136}, - [366] = {.lex_state = 136}, - [367] = {.lex_state = 137}, - [368] = {.lex_state = 136}, - [369] = {.lex_state = 136}, - [370] = {.lex_state = 136}, - [371] = {.lex_state = 137}, - [372] = {.lex_state = 137}, - [373] = {.lex_state = 136}, - [374] = {.lex_state = 136}, - [375] = {.lex_state = 136}, - [376] = {.lex_state = 136}, - [377] = {.lex_state = 136}, - [378] = {.lex_state = 136}, - [379] = {.lex_state = 137}, - [380] = {.lex_state = 297}, - [381] = {.lex_state = 297}, - [382] = {.lex_state = 136}, - [383] = {.lex_state = 136}, - [384] = {.lex_state = 136}, - [385] = {.lex_state = 136}, - [386] = {.lex_state = 136}, - [387] = {.lex_state = 137}, - [388] = {.lex_state = 136}, - [389] = {.lex_state = 136}, - [390] = {.lex_state = 136}, - [391] = {.lex_state = 136}, - [392] = {.lex_state = 136}, - [393] = {.lex_state = 297}, - [394] = {.lex_state = 136}, - [395] = {.lex_state = 136}, - [396] = {.lex_state = 297}, - [397] = {.lex_state = 136}, - [398] = {.lex_state = 136}, - [399] = {.lex_state = 136}, - [400] = {.lex_state = 136}, - [401] = {.lex_state = 136}, - [402] = {.lex_state = 136}, - [403] = {.lex_state = 136}, - [404] = {.lex_state = 136}, - [405] = {.lex_state = 301}, - [406] = {.lex_state = 136}, - [407] = {.lex_state = 136}, - [408] = {.lex_state = 136}, - [409] = {.lex_state = 136}, - [410] = {.lex_state = 136}, - [411] = {.lex_state = 136}, - [412] = {.lex_state = 136}, - [413] = {.lex_state = 136}, - [414] = {.lex_state = 136}, - [415] = {.lex_state = 136}, - [416] = {.lex_state = 136}, - [417] = {.lex_state = 297}, - [418] = {.lex_state = 136}, - [419] = {.lex_state = 136}, - [420] = {.lex_state = 136}, - [421] = {.lex_state = 301}, - [422] = {.lex_state = 136}, - [423] = {.lex_state = 297}, - [424] = {.lex_state = 136}, - [425] = {.lex_state = 136}, - [426] = {.lex_state = 136}, - [427] = {.lex_state = 136}, - [428] = {.lex_state = 136}, - [429] = {.lex_state = 136}, - [430] = {.lex_state = 136}, - [431] = {.lex_state = 136}, - [432] = {.lex_state = 136}, - [433] = {.lex_state = 136}, - [434] = {.lex_state = 136}, - [435] = {.lex_state = 301}, - [436] = {.lex_state = 136}, - [437] = {.lex_state = 301}, - [438] = {.lex_state = 136}, - [439] = {.lex_state = 297}, - [440] = {.lex_state = 136}, - [441] = {.lex_state = 136}, - [442] = {.lex_state = 136}, - [443] = {.lex_state = 136}, - [444] = {.lex_state = 136}, - [445] = {.lex_state = 136}, - [446] = {.lex_state = 136}, - [447] = {.lex_state = 136}, - [448] = {.lex_state = 297}, - [449] = {.lex_state = 297}, - [450] = {.lex_state = 136}, - [451] = {.lex_state = 136}, - [452] = {.lex_state = 136}, - [453] = {.lex_state = 297}, - [454] = {.lex_state = 297}, - [455] = {.lex_state = 136}, - [456] = {.lex_state = 136}, - [457] = {.lex_state = 297}, - [458] = {.lex_state = 136}, - [459] = {.lex_state = 136}, - [460] = {.lex_state = 136}, - [461] = {.lex_state = 136}, - [462] = {.lex_state = 136}, - [463] = {.lex_state = 136}, - [464] = {.lex_state = 136}, - [465] = {.lex_state = 297}, - [466] = {.lex_state = 136}, - [467] = {.lex_state = 297}, - [468] = {.lex_state = 297}, - [469] = {.lex_state = 136}, - [470] = {.lex_state = 136}, - [471] = {.lex_state = 136}, - [472] = {.lex_state = 136}, - [473] = {.lex_state = 136}, - [474] = {.lex_state = 136}, - [475] = {.lex_state = 136}, - [476] = {.lex_state = 297}, - [477] = {.lex_state = 297}, - [478] = {.lex_state = 297}, - [479] = {.lex_state = 136}, - [480] = {.lex_state = 136}, - [481] = {.lex_state = 297}, - [482] = {.lex_state = 136}, - [483] = {.lex_state = 297}, - [484] = {.lex_state = 136}, - [485] = {.lex_state = 297}, - [486] = {.lex_state = 136}, - [487] = {.lex_state = 136}, - [488] = {.lex_state = 136}, - [489] = {.lex_state = 136}, - [490] = {.lex_state = 136}, - [491] = {.lex_state = 136}, - [492] = {.lex_state = 136}, - [493] = {.lex_state = 136}, - [494] = {.lex_state = 136}, - [495] = {.lex_state = 136}, - [496] = {.lex_state = 136}, - [497] = {.lex_state = 136}, - [498] = {.lex_state = 136}, - [499] = {.lex_state = 297}, - [500] = {.lex_state = 136}, - [501] = {.lex_state = 297}, - [502] = {.lex_state = 136}, - [503] = {.lex_state = 136}, - [504] = {.lex_state = 297}, - [505] = {.lex_state = 297}, - [506] = {.lex_state = 297}, - [507] = {.lex_state = 136}, - [508] = {.lex_state = 136}, - [509] = {.lex_state = 136}, - [510] = {.lex_state = 136}, - [511] = {.lex_state = 136}, - [512] = {.lex_state = 136}, - [513] = {.lex_state = 136}, - [514] = {.lex_state = 136}, - [515] = {.lex_state = 136}, - [516] = {.lex_state = 136}, - [517] = {.lex_state = 136}, - [518] = {.lex_state = 136}, - [519] = {.lex_state = 136}, - [520] = {.lex_state = 136}, - [521] = {.lex_state = 136}, - [522] = {.lex_state = 136}, - [523] = {.lex_state = 136}, - [524] = {.lex_state = 136}, - [525] = {.lex_state = 297}, - [526] = {.lex_state = 136}, - [527] = {.lex_state = 136}, - [528] = {.lex_state = 136}, - [529] = {.lex_state = 136}, - [530] = {.lex_state = 136}, - [531] = {.lex_state = 136}, - [532] = {.lex_state = 136}, - [533] = {.lex_state = 297}, - [534] = {.lex_state = 136}, - [535] = {.lex_state = 136}, - [536] = {.lex_state = 136}, - [537] = {.lex_state = 136}, - [538] = {.lex_state = 136}, - [539] = {.lex_state = 297}, - [540] = {.lex_state = 136}, - [541] = {.lex_state = 297}, - [542] = {.lex_state = 297}, - [543] = {.lex_state = 297}, - [544] = {.lex_state = 136}, - [545] = {.lex_state = 297}, - [546] = {.lex_state = 136}, - [547] = {.lex_state = 297}, - [548] = {.lex_state = 297}, - [549] = {.lex_state = 136}, - [550] = {.lex_state = 136}, - [551] = {.lex_state = 136}, - [552] = {.lex_state = 136}, - [553] = {.lex_state = 136}, - [554] = {.lex_state = 136}, - [555] = {.lex_state = 136}, - [556] = {.lex_state = 136}, - [557] = {.lex_state = 136}, - [558] = {.lex_state = 297}, - [559] = {.lex_state = 136}, - [560] = {.lex_state = 297}, - [561] = {.lex_state = 136}, - [562] = {.lex_state = 136}, - [563] = {.lex_state = 136}, - [564] = {.lex_state = 136}, - [565] = {.lex_state = 136}, - [566] = {.lex_state = 136}, - [567] = {.lex_state = 136}, - [568] = {.lex_state = 136}, - [569] = {.lex_state = 136}, - [570] = {.lex_state = 297}, - [571] = {.lex_state = 297}, - [572] = {.lex_state = 136}, - [573] = {.lex_state = 136}, - [574] = {.lex_state = 297}, - [575] = {.lex_state = 136}, - [576] = {.lex_state = 136}, - [577] = {.lex_state = 136}, - [578] = {.lex_state = 136}, - [579] = {.lex_state = 297}, - [580] = {.lex_state = 297}, - [581] = {.lex_state = 136}, - [582] = {.lex_state = 136}, - [583] = {.lex_state = 136}, - [584] = {.lex_state = 136}, - [585] = {.lex_state = 136}, - [586] = {.lex_state = 297}, - [587] = {.lex_state = 136}, - [588] = {.lex_state = 136}, - [589] = {.lex_state = 136}, - [590] = {.lex_state = 136}, - [591] = {.lex_state = 136}, - [592] = {.lex_state = 136}, - [593] = {.lex_state = 136}, - [594] = {.lex_state = 136}, - [595] = {.lex_state = 136}, - [596] = {.lex_state = 297}, - [597] = {.lex_state = 297}, - [598] = {.lex_state = 136}, - [599] = {.lex_state = 136}, - [600] = {.lex_state = 136}, - [601] = {.lex_state = 136}, - [602] = {.lex_state = 136}, - [603] = {.lex_state = 297}, - [604] = {.lex_state = 136}, - [605] = {.lex_state = 136}, - [606] = {.lex_state = 136}, - [607] = {.lex_state = 136}, - [608] = {.lex_state = 136}, - [609] = {.lex_state = 136}, - [610] = {.lex_state = 297}, - [611] = {.lex_state = 136}, - [612] = {.lex_state = 136}, - [613] = {.lex_state = 136}, - [614] = {.lex_state = 297}, - [615] = {.lex_state = 297}, - [616] = {.lex_state = 136}, - [617] = {.lex_state = 136}, - [618] = {.lex_state = 297}, - [619] = {.lex_state = 136}, - [620] = {.lex_state = 136}, - [621] = {.lex_state = 136}, - [622] = {.lex_state = 297}, - [623] = {.lex_state = 136}, - [624] = {.lex_state = 136}, - [625] = {.lex_state = 136}, - [626] = {.lex_state = 136}, - [627] = {.lex_state = 136}, - [628] = {.lex_state = 136}, - [629] = {.lex_state = 297}, - [630] = {.lex_state = 136}, - [631] = {.lex_state = 136}, - [632] = {.lex_state = 136}, - [633] = {.lex_state = 136}, - [634] = {.lex_state = 136}, - [635] = {.lex_state = 297}, - [636] = {.lex_state = 136}, - [637] = {.lex_state = 136}, - [638] = {.lex_state = 136}, - [639] = {.lex_state = 136}, - [640] = {.lex_state = 136}, - [641] = {.lex_state = 136}, - [642] = {.lex_state = 136}, - [643] = {.lex_state = 297}, - [644] = {.lex_state = 136}, - [645] = {.lex_state = 136}, - [646] = {.lex_state = 297}, - [647] = {.lex_state = 136}, - [648] = {.lex_state = 136}, - [649] = {.lex_state = 136}, - [650] = {.lex_state = 136}, - [651] = {.lex_state = 136}, - [652] = {.lex_state = 136}, - [653] = {.lex_state = 136}, - [654] = {.lex_state = 136}, - [655] = {.lex_state = 136}, - [656] = {.lex_state = 136}, - [657] = {.lex_state = 136}, - [658] = {.lex_state = 136}, - [659] = {.lex_state = 297}, - [660] = {.lex_state = 136}, - [661] = {.lex_state = 136}, - [662] = {.lex_state = 136}, - [663] = {.lex_state = 136}, - [664] = {.lex_state = 136}, - [665] = {.lex_state = 297}, - [666] = {.lex_state = 136}, - [667] = {.lex_state = 136}, - [668] = {.lex_state = 297}, - [669] = {.lex_state = 136}, - [670] = {.lex_state = 136}, - [671] = {.lex_state = 297}, - [672] = {.lex_state = 297}, - [673] = {.lex_state = 297}, - [674] = {.lex_state = 136}, - [675] = {.lex_state = 297}, - [676] = {.lex_state = 136}, - [677] = {.lex_state = 297}, - [678] = {.lex_state = 136}, - [679] = {.lex_state = 136}, - [680] = {.lex_state = 136}, - [681] = {.lex_state = 136}, - [682] = {.lex_state = 136}, - [683] = {.lex_state = 136}, - [684] = {.lex_state = 297}, - [685] = {.lex_state = 136}, - [686] = {.lex_state = 136}, - [687] = {.lex_state = 136}, - [688] = {.lex_state = 297}, - [689] = {.lex_state = 136}, - [690] = {.lex_state = 297}, - [691] = {.lex_state = 136}, - [692] = {.lex_state = 136}, - [693] = {.lex_state = 297}, - [694] = {.lex_state = 297}, - [695] = {.lex_state = 297}, - [696] = {.lex_state = 297}, - [697] = {.lex_state = 297}, - [698] = {.lex_state = 297}, - [699] = {.lex_state = 297}, - [700] = {.lex_state = 297}, - [701] = {.lex_state = 297}, - [702] = {.lex_state = 297}, - [703] = {.lex_state = 297}, - [704] = {.lex_state = 136}, - [705] = {.lex_state = 136}, - [706] = {.lex_state = 136}, - [707] = {.lex_state = 136}, - [708] = {.lex_state = 297}, - [709] = {.lex_state = 136}, - [710] = {.lex_state = 297}, - [711] = {.lex_state = 136}, - [712] = {.lex_state = 136}, - [713] = {.lex_state = 136}, - [714] = {.lex_state = 297}, - [715] = {.lex_state = 136}, - [716] = {.lex_state = 136}, - [717] = {.lex_state = 136}, - [718] = {.lex_state = 136}, - [719] = {.lex_state = 136}, - [720] = {.lex_state = 136}, - [721] = {.lex_state = 136}, - [722] = {.lex_state = 136}, - [723] = {.lex_state = 297}, - [724] = {.lex_state = 136}, - [725] = {.lex_state = 136}, - [726] = {.lex_state = 297}, - [727] = {.lex_state = 136}, - [728] = {.lex_state = 297}, - [729] = {.lex_state = 136}, - [730] = {.lex_state = 136}, - [731] = {.lex_state = 136}, - [732] = {.lex_state = 136}, - [733] = {.lex_state = 136}, - [734] = {.lex_state = 136}, - [735] = {.lex_state = 136}, - [736] = {.lex_state = 136}, - [737] = {.lex_state = 136}, - [738] = {.lex_state = 136}, - [739] = {.lex_state = 136}, - [740] = {.lex_state = 136}, - [741] = {.lex_state = 136}, - [742] = {.lex_state = 136}, - [743] = {.lex_state = 136}, - [744] = {.lex_state = 136}, - [745] = {.lex_state = 136}, - [746] = {.lex_state = 136}, - [747] = {.lex_state = 136}, - [748] = {.lex_state = 136}, - [749] = {.lex_state = 136}, - [750] = {.lex_state = 136}, - [751] = {.lex_state = 136}, - [752] = {.lex_state = 136}, - [753] = {.lex_state = 136}, - [754] = {.lex_state = 136}, - [755] = {.lex_state = 136}, - [756] = {.lex_state = 136}, - [757] = {.lex_state = 297}, - [758] = {.lex_state = 297}, - [759] = {.lex_state = 136}, - [760] = {.lex_state = 136}, - [761] = {.lex_state = 297}, - [762] = {.lex_state = 136}, - [763] = {.lex_state = 136}, - [764] = {.lex_state = 297}, - [765] = {.lex_state = 297}, - [766] = {.lex_state = 297}, - [767] = {.lex_state = 136}, - [768] = {.lex_state = 136}, - [769] = {.lex_state = 136}, - [770] = {.lex_state = 136}, - [771] = {.lex_state = 297}, - [772] = {.lex_state = 297}, - [773] = {.lex_state = 136}, - [774] = {.lex_state = 297}, - [775] = {.lex_state = 297}, - [776] = {.lex_state = 136}, - [777] = {.lex_state = 297}, - [778] = {.lex_state = 136}, - [779] = {.lex_state = 136}, - [780] = {.lex_state = 136}, - [781] = {.lex_state = 136}, - [782] = {.lex_state = 297}, - [783] = {.lex_state = 136}, - [784] = {.lex_state = 136}, - [785] = {.lex_state = 136}, - [786] = {.lex_state = 136}, - [787] = {.lex_state = 136}, - [788] = {.lex_state = 136}, - [789] = {.lex_state = 136}, - [790] = {.lex_state = 136}, - [791] = {.lex_state = 136}, - [792] = {.lex_state = 136}, - [793] = {.lex_state = 297}, - [794] = {.lex_state = 297}, - [795] = {.lex_state = 136}, - [796] = {.lex_state = 136}, - [797] = {.lex_state = 136}, - [798] = {.lex_state = 136}, - [799] = {.lex_state = 136}, - [800] = {.lex_state = 136}, - [801] = {.lex_state = 136}, - [802] = {.lex_state = 136}, - [803] = {.lex_state = 297}, - [804] = {.lex_state = 136}, - [805] = {.lex_state = 136}, - [806] = {.lex_state = 136}, - [807] = {.lex_state = 297}, - [808] = {.lex_state = 136}, - [809] = {.lex_state = 136}, - [810] = {.lex_state = 136}, - [811] = {.lex_state = 136}, - [812] = {.lex_state = 136}, - [813] = {.lex_state = 136}, - [814] = {.lex_state = 297}, - [815] = {.lex_state = 136}, - [816] = {.lex_state = 136}, - [817] = {.lex_state = 136}, - [818] = {.lex_state = 136}, - [819] = {.lex_state = 136}, - [820] = {.lex_state = 297}, - [821] = {.lex_state = 136}, - [822] = {.lex_state = 136}, - [823] = {.lex_state = 297}, - [824] = {.lex_state = 297}, - [825] = {.lex_state = 136}, - [826] = {.lex_state = 136}, - [827] = {.lex_state = 136}, - [828] = {.lex_state = 136}, - [829] = {.lex_state = 136}, - [830] = {.lex_state = 136}, - [831] = {.lex_state = 136}, - [832] = {.lex_state = 136}, - [833] = {.lex_state = 136}, - [834] = {.lex_state = 136}, - [835] = {.lex_state = 136}, - [836] = {.lex_state = 136}, - [837] = {.lex_state = 136}, - [838] = {.lex_state = 136}, - [839] = {.lex_state = 136}, - [840] = {.lex_state = 136}, - [841] = {.lex_state = 136}, - [842] = {.lex_state = 136}, - [843] = {.lex_state = 136}, - [844] = {.lex_state = 136}, - [845] = {.lex_state = 136}, - [846] = {.lex_state = 136}, - [847] = {.lex_state = 136}, - [848] = {.lex_state = 136}, - [849] = {.lex_state = 136}, - [850] = {.lex_state = 136}, - [851] = {.lex_state = 136}, - [852] = {.lex_state = 136}, - [853] = {.lex_state = 136}, - [854] = {.lex_state = 136}, - [855] = {.lex_state = 136}, - [856] = {.lex_state = 136}, - [857] = {.lex_state = 136}, - [858] = {.lex_state = 136}, - [859] = {.lex_state = 136}, - [860] = {.lex_state = 136}, - [861] = {.lex_state = 136}, - [862] = {.lex_state = 136}, - [863] = {.lex_state = 136}, - [864] = {.lex_state = 136}, - [865] = {.lex_state = 136}, - [866] = {.lex_state = 136}, - [867] = {.lex_state = 297}, - [868] = {.lex_state = 297}, - [869] = {.lex_state = 136}, - [870] = {.lex_state = 136}, - [871] = {.lex_state = 136}, - [872] = {.lex_state = 136}, - [873] = {.lex_state = 136}, - [874] = {.lex_state = 136}, - [875] = {.lex_state = 297}, - [876] = {.lex_state = 136}, - [877] = {.lex_state = 136}, - [878] = {.lex_state = 136}, - [879] = {.lex_state = 136}, - [880] = {.lex_state = 136}, - [881] = {.lex_state = 297}, - [882] = {.lex_state = 136}, - [883] = {.lex_state = 136}, - [884] = {.lex_state = 136}, - [885] = {.lex_state = 136}, - [886] = {.lex_state = 136}, - [887] = {.lex_state = 136}, - [888] = {.lex_state = 136}, - [889] = {.lex_state = 136}, - [890] = {.lex_state = 136}, - [891] = {.lex_state = 297}, - [892] = {.lex_state = 297}, - [893] = {.lex_state = 297}, - [894] = {.lex_state = 136}, - [895] = {.lex_state = 297}, - [896] = {.lex_state = 297}, - [897] = {.lex_state = 136}, - [898] = {.lex_state = 136}, - [899] = {.lex_state = 136}, - [900] = {.lex_state = 136}, - [901] = {.lex_state = 136}, - [902] = {.lex_state = 136}, - [903] = {.lex_state = 136}, - [904] = {.lex_state = 136}, - [905] = {.lex_state = 136}, - [906] = {.lex_state = 136}, - [907] = {.lex_state = 136}, - [908] = {.lex_state = 136}, - [909] = {.lex_state = 136}, - [910] = {.lex_state = 136}, - [911] = {.lex_state = 136}, - [912] = {.lex_state = 136}, - [913] = {.lex_state = 136}, - [914] = {.lex_state = 136}, - [915] = {.lex_state = 136}, - [916] = {.lex_state = 136}, - [917] = {.lex_state = 136}, - [918] = {.lex_state = 136}, - [919] = {.lex_state = 136}, - [920] = {.lex_state = 136}, - [921] = {.lex_state = 136}, - [922] = {.lex_state = 136}, - [923] = {.lex_state = 297}, - [924] = {.lex_state = 136}, - [925] = {.lex_state = 136}, - [926] = {.lex_state = 136}, - [927] = {.lex_state = 136}, - [928] = {.lex_state = 136}, - [929] = {.lex_state = 136}, - [930] = {.lex_state = 136}, - [931] = {.lex_state = 136}, - [932] = {.lex_state = 136}, - [933] = {.lex_state = 136}, - [934] = {.lex_state = 136}, - [935] = {.lex_state = 136}, - [936] = {.lex_state = 136}, - [937] = {.lex_state = 136}, - [938] = {.lex_state = 136}, - [939] = {.lex_state = 136}, - [940] = {.lex_state = 136}, - [941] = {.lex_state = 136}, - [942] = {.lex_state = 136}, - [943] = {.lex_state = 136}, - [944] = {.lex_state = 136}, - [945] = {.lex_state = 136}, - [946] = {.lex_state = 136}, - [947] = {.lex_state = 136}, - [948] = {.lex_state = 136}, - [949] = {.lex_state = 136}, - [950] = {.lex_state = 136}, - [951] = {.lex_state = 136}, - [952] = {.lex_state = 136}, - [953] = {.lex_state = 136}, - [954] = {.lex_state = 136}, - [955] = {.lex_state = 136}, - [956] = {.lex_state = 136}, - [957] = {.lex_state = 136}, - [958] = {.lex_state = 136}, - [959] = {.lex_state = 136}, - [960] = {.lex_state = 136}, - [961] = {.lex_state = 136}, - [962] = {.lex_state = 297}, - [963] = {.lex_state = 136}, - [964] = {.lex_state = 136}, - [965] = {.lex_state = 297}, - [966] = {.lex_state = 136}, - [967] = {.lex_state = 136}, - [968] = {.lex_state = 136}, - [969] = {.lex_state = 297}, - [970] = {.lex_state = 136}, - [971] = {.lex_state = 136}, - [972] = {.lex_state = 136}, - [973] = {.lex_state = 7}, - [974] = {.lex_state = 7}, - [975] = {.lex_state = 7}, - [976] = {.lex_state = 7}, - [977] = {.lex_state = 7}, - [978] = {.lex_state = 7}, - [979] = {.lex_state = 299}, - [980] = {.lex_state = 299}, - [981] = {.lex_state = 299}, - [982] = {.lex_state = 299}, - [983] = {.lex_state = 299}, - [984] = {.lex_state = 299}, - [985] = {.lex_state = 299}, - [986] = {.lex_state = 299}, - [987] = {.lex_state = 299}, - [988] = {.lex_state = 299}, - [989] = {.lex_state = 299}, - [990] = {.lex_state = 299}, - [991] = {.lex_state = 299}, - [992] = {.lex_state = 299}, - [993] = {.lex_state = 299}, - [994] = {.lex_state = 299}, - [995] = {.lex_state = 299}, - [996] = {.lex_state = 299}, - [997] = {.lex_state = 299}, - [998] = {.lex_state = 299}, - [999] = {.lex_state = 299}, - [1000] = {.lex_state = 299}, - [1001] = {.lex_state = 299}, - [1002] = {.lex_state = 299}, - [1003] = {.lex_state = 299}, - [1004] = {.lex_state = 299}, - [1005] = {.lex_state = 299}, - [1006] = {.lex_state = 299}, - [1007] = {.lex_state = 299}, - [1008] = {.lex_state = 303}, - [1009] = {.lex_state = 94}, - [1010] = {.lex_state = 94}, - [1011] = {.lex_state = 299}, - [1012] = {.lex_state = 303}, - [1013] = {.lex_state = 94}, - [1014] = {.lex_state = 303}, - [1015] = {.lex_state = 299}, - [1016] = {.lex_state = 299}, - [1017] = {.lex_state = 94}, - [1018] = {.lex_state = 303}, - [1019] = {.lex_state = 94}, - [1020] = {.lex_state = 299}, - [1021] = {.lex_state = 299}, - [1022] = {.lex_state = 299}, - [1023] = {.lex_state = 299}, - [1024] = {.lex_state = 299}, - [1025] = {.lex_state = 299}, - [1026] = {.lex_state = 299}, - [1027] = {.lex_state = 299}, - [1028] = {.lex_state = 299}, - [1029] = {.lex_state = 299}, - [1030] = {.lex_state = 299}, - [1031] = {.lex_state = 299}, - [1032] = {.lex_state = 299}, - [1033] = {.lex_state = 299}, - [1034] = {.lex_state = 299}, - [1035] = {.lex_state = 299}, - [1036] = {.lex_state = 299}, - [1037] = {.lex_state = 299}, - [1038] = {.lex_state = 299}, - [1039] = {.lex_state = 299}, - [1040] = {.lex_state = 299}, - [1041] = {.lex_state = 299}, - [1042] = {.lex_state = 299}, - [1043] = {.lex_state = 299}, - [1044] = {.lex_state = 299}, - [1045] = {.lex_state = 299}, - [1046] = {.lex_state = 299}, - [1047] = {.lex_state = 299}, - [1048] = {.lex_state = 299}, - [1049] = {.lex_state = 299}, - [1050] = {.lex_state = 299}, - [1051] = {.lex_state = 299}, - [1052] = {.lex_state = 299}, - [1053] = {.lex_state = 299}, - [1054] = {.lex_state = 299}, - [1055] = {.lex_state = 299}, - [1056] = {.lex_state = 299}, - [1057] = {.lex_state = 299}, - [1058] = {.lex_state = 299}, - [1059] = {.lex_state = 299}, - [1060] = {.lex_state = 299}, - [1061] = {.lex_state = 299}, - [1062] = {.lex_state = 299}, - [1063] = {.lex_state = 299}, - [1064] = {.lex_state = 299}, - [1065] = {.lex_state = 299}, - [1066] = {.lex_state = 299}, - [1067] = {.lex_state = 299}, - [1068] = {.lex_state = 299}, - [1069] = {.lex_state = 299}, - [1070] = {.lex_state = 299}, - [1071] = {.lex_state = 299}, - [1072] = {.lex_state = 299}, - [1073] = {.lex_state = 299}, - [1074] = {.lex_state = 299}, - [1075] = {.lex_state = 299}, - [1076] = {.lex_state = 299}, - [1077] = {.lex_state = 299}, - [1078] = {.lex_state = 299}, - [1079] = {.lex_state = 299}, - [1080] = {.lex_state = 299}, - [1081] = {.lex_state = 299}, - [1082] = {.lex_state = 299}, - [1083] = {.lex_state = 299}, - [1084] = {.lex_state = 299}, - [1085] = {.lex_state = 299}, - [1086] = {.lex_state = 299}, - [1087] = {.lex_state = 299}, - [1088] = {.lex_state = 299}, - [1089] = {.lex_state = 299}, - [1090] = {.lex_state = 299}, - [1091] = {.lex_state = 299}, - [1092] = {.lex_state = 299}, - [1093] = {.lex_state = 299}, - [1094] = {.lex_state = 299}, - [1095] = {.lex_state = 299}, - [1096] = {.lex_state = 299}, - [1097] = {.lex_state = 299}, - [1098] = {.lex_state = 299}, - [1099] = {.lex_state = 299}, - [1100] = {.lex_state = 299}, - [1101] = {.lex_state = 299}, - [1102] = {.lex_state = 299}, - [1103] = {.lex_state = 299}, - [1104] = {.lex_state = 299}, - [1105] = {.lex_state = 299}, - [1106] = {.lex_state = 299}, - [1107] = {.lex_state = 299}, - [1108] = {.lex_state = 299}, - [1109] = {.lex_state = 299}, - [1110] = {.lex_state = 299}, - [1111] = {.lex_state = 299}, - [1112] = {.lex_state = 299}, - [1113] = {.lex_state = 299}, - [1114] = {.lex_state = 299}, - [1115] = {.lex_state = 299}, - [1116] = {.lex_state = 299}, - [1117] = {.lex_state = 299}, - [1118] = {.lex_state = 299}, - [1119] = {.lex_state = 299}, - [1120] = {.lex_state = 299}, - [1121] = {.lex_state = 299}, - [1122] = {.lex_state = 299}, - [1123] = {.lex_state = 299}, - [1124] = {.lex_state = 299}, - [1125] = {.lex_state = 299}, - [1126] = {.lex_state = 299}, - [1127] = {.lex_state = 299}, - [1128] = {.lex_state = 299}, - [1129] = {.lex_state = 306}, - [1130] = {.lex_state = 306}, - [1131] = {.lex_state = 306}, + [1] = {.lex_state = 202}, + [2] = {.lex_state = 203}, + [3] = {.lex_state = 203}, + [4] = {.lex_state = 203}, + [5] = {.lex_state = 203}, + [6] = {.lex_state = 203}, + [7] = {.lex_state = 203}, + [8] = {.lex_state = 203}, + [9] = {.lex_state = 203}, + [10] = {.lex_state = 203}, + [11] = {.lex_state = 203}, + [12] = {.lex_state = 203}, + [13] = {.lex_state = 203}, + [14] = {.lex_state = 203}, + [15] = {.lex_state = 203}, + [16] = {.lex_state = 203}, + [17] = {.lex_state = 203}, + [18] = {.lex_state = 203}, + [19] = {.lex_state = 203}, + [20] = {.lex_state = 203}, + [21] = {.lex_state = 203}, + [22] = {.lex_state = 203}, + [23] = {.lex_state = 203}, + [24] = {.lex_state = 203}, + [25] = {.lex_state = 203}, + [26] = {.lex_state = 203}, + [27] = {.lex_state = 203}, + [28] = {.lex_state = 203}, + [29] = {.lex_state = 203}, + [30] = {.lex_state = 203}, + [31] = {.lex_state = 203}, + [32] = {.lex_state = 203}, + [33] = {.lex_state = 203}, + [34] = {.lex_state = 203}, + [35] = {.lex_state = 203}, + [36] = {.lex_state = 203}, + [37] = {.lex_state = 203}, + [38] = {.lex_state = 203}, + [39] = {.lex_state = 203}, + [40] = {.lex_state = 203}, + [41] = {.lex_state = 203}, + [42] = {.lex_state = 203}, + [43] = {.lex_state = 203}, + [44] = {.lex_state = 203}, + [45] = {.lex_state = 203}, + [46] = {.lex_state = 203}, + [47] = {.lex_state = 203}, + [48] = {.lex_state = 203}, + [49] = {.lex_state = 203}, + [50] = {.lex_state = 203}, + [51] = {.lex_state = 203}, + [52] = {.lex_state = 203}, + [53] = {.lex_state = 203}, + [54] = {.lex_state = 203}, + [55] = {.lex_state = 203}, + [56] = {.lex_state = 203}, + [57] = {.lex_state = 203}, + [58] = {.lex_state = 203}, + [59] = {.lex_state = 203}, + [60] = {.lex_state = 203}, + [61] = {.lex_state = 203}, + [62] = {.lex_state = 203}, + [63] = {.lex_state = 203}, + [64] = {.lex_state = 203}, + [65] = {.lex_state = 203}, + [66] = {.lex_state = 189}, + [67] = {.lex_state = 192}, + [68] = {.lex_state = 192}, + [69] = {.lex_state = 192}, + [70] = {.lex_state = 192}, + [71] = {.lex_state = 192}, + [72] = {.lex_state = 81}, + [73] = {.lex_state = 81}, + [74] = {.lex_state = 81}, + [75] = {.lex_state = 81}, + [76] = {.lex_state = 81}, + [77] = {.lex_state = 81}, + [78] = {.lex_state = 81}, + [79] = {.lex_state = 81}, + [80] = {.lex_state = 81}, + [81] = {.lex_state = 81}, + [82] = {.lex_state = 81}, + [83] = {.lex_state = 81}, + [84] = {.lex_state = 81}, + [85] = {.lex_state = 81}, + [86] = {.lex_state = 81}, + [87] = {.lex_state = 81}, + [88] = {.lex_state = 81}, + [89] = {.lex_state = 81}, + [90] = {.lex_state = 81}, + [91] = {.lex_state = 81}, + [92] = {.lex_state = 81}, + [93] = {.lex_state = 81}, + [94] = {.lex_state = 81}, + [95] = {.lex_state = 81}, + [96] = {.lex_state = 81}, + [97] = {.lex_state = 81}, + [98] = {.lex_state = 81}, + [99] = {.lex_state = 81}, + [100] = {.lex_state = 81}, + [101] = {.lex_state = 81}, + [102] = {.lex_state = 81}, + [103] = {.lex_state = 81}, + [104] = {.lex_state = 81}, + [105] = {.lex_state = 81}, + [106] = {.lex_state = 81}, + [107] = {.lex_state = 81}, + [108] = {.lex_state = 81}, + [109] = {.lex_state = 81}, + [110] = {.lex_state = 81}, + [111] = {.lex_state = 81}, + [112] = {.lex_state = 81}, + [113] = {.lex_state = 81}, + [114] = {.lex_state = 81}, + [115] = {.lex_state = 81}, + [116] = {.lex_state = 81}, + [117] = {.lex_state = 81}, + [118] = {.lex_state = 81}, + [119] = {.lex_state = 81}, + [120] = {.lex_state = 81}, + [121] = {.lex_state = 81}, + [122] = {.lex_state = 81}, + [123] = {.lex_state = 81}, + [124] = {.lex_state = 81}, + [125] = {.lex_state = 81}, + [126] = {.lex_state = 81}, + [127] = {.lex_state = 81}, + [128] = {.lex_state = 81}, + [129] = {.lex_state = 81}, + [130] = {.lex_state = 81}, + [131] = {.lex_state = 81}, + [132] = {.lex_state = 81}, + [133] = {.lex_state = 81}, + [134] = {.lex_state = 81}, + [135] = {.lex_state = 81}, + [136] = {.lex_state = 81}, + [137] = {.lex_state = 81}, + [138] = {.lex_state = 81}, + [139] = {.lex_state = 81}, + [140] = {.lex_state = 81}, + [141] = {.lex_state = 81}, + [142] = {.lex_state = 81}, + [143] = {.lex_state = 81}, + [144] = {.lex_state = 81}, + [145] = {.lex_state = 81}, + [146] = {.lex_state = 81}, + [147] = {.lex_state = 81}, + [148] = {.lex_state = 81}, + [149] = {.lex_state = 81}, + [150] = {.lex_state = 81}, + [151] = {.lex_state = 81}, + [152] = {.lex_state = 81}, + [153] = {.lex_state = 81}, + [154] = {.lex_state = 81}, + [155] = {.lex_state = 81}, + [156] = {.lex_state = 81}, + [157] = {.lex_state = 81}, + [158] = {.lex_state = 81}, + [159] = {.lex_state = 81}, + [160] = {.lex_state = 81}, + [161] = {.lex_state = 81}, + [162] = {.lex_state = 81}, + [163] = {.lex_state = 81}, + [164] = {.lex_state = 81}, + [165] = {.lex_state = 81}, + [166] = {.lex_state = 81}, + [167] = {.lex_state = 81}, + [168] = {.lex_state = 81}, + [169] = {.lex_state = 81}, + [170] = {.lex_state = 81}, + [171] = {.lex_state = 81}, + [172] = {.lex_state = 81}, + [173] = {.lex_state = 81}, + [174] = {.lex_state = 81}, + [175] = {.lex_state = 81}, + [176] = {.lex_state = 82}, + [177] = {.lex_state = 81}, + [178] = {.lex_state = 81}, + [179] = {.lex_state = 81}, + [180] = {.lex_state = 81}, + [181] = {.lex_state = 81}, + [182] = {.lex_state = 81}, + [183] = {.lex_state = 81}, + [184] = {.lex_state = 81}, + [185] = {.lex_state = 81}, + [186] = {.lex_state = 81}, + [187] = {.lex_state = 81}, + [188] = {.lex_state = 81}, + [189] = {.lex_state = 81}, + [190] = {.lex_state = 81}, + [191] = {.lex_state = 81}, + [192] = {.lex_state = 81}, + [193] = {.lex_state = 81}, + [194] = {.lex_state = 81}, + [195] = {.lex_state = 81}, + [196] = {.lex_state = 81}, + [197] = {.lex_state = 81}, + [198] = {.lex_state = 81}, + [199] = {.lex_state = 81}, + [200] = {.lex_state = 81}, + [201] = {.lex_state = 81}, + [202] = {.lex_state = 81}, + [203] = {.lex_state = 81}, + [204] = {.lex_state = 81}, + [205] = {.lex_state = 2}, + [206] = {.lex_state = 196}, + [207] = {.lex_state = 81}, + [208] = {.lex_state = 81}, + [209] = {.lex_state = 81}, + [210] = {.lex_state = 196}, + [211] = {.lex_state = 81}, + [212] = {.lex_state = 196}, + [213] = {.lex_state = 196}, + [214] = {.lex_state = 196}, + [215] = {.lex_state = 192}, + [216] = {.lex_state = 192}, + [217] = {.lex_state = 81}, + [218] = {.lex_state = 81}, + [219] = {.lex_state = 81}, + [220] = {.lex_state = 81}, + [221] = {.lex_state = 81}, + [222] = {.lex_state = 81}, + [223] = {.lex_state = 81}, + [224] = {.lex_state = 81}, + [225] = {.lex_state = 81}, + [226] = {.lex_state = 81}, + [227] = {.lex_state = 81}, + [228] = {.lex_state = 81}, + [229] = {.lex_state = 81}, + [230] = {.lex_state = 81}, + [231] = {.lex_state = 81}, + [232] = {.lex_state = 81}, + [233] = {.lex_state = 81}, + [234] = {.lex_state = 81}, + [235] = {.lex_state = 81}, + [236] = {.lex_state = 81}, + [237] = {.lex_state = 192}, + [238] = {.lex_state = 81}, + [239] = {.lex_state = 81}, + [240] = {.lex_state = 81}, + [241] = {.lex_state = 81}, + [242] = {.lex_state = 81}, + [243] = {.lex_state = 81}, + [244] = {.lex_state = 192}, + [245] = {.lex_state = 81}, + [246] = {.lex_state = 192}, + [247] = {.lex_state = 81}, + [248] = {.lex_state = 81}, + [249] = {.lex_state = 81}, + [250] = {.lex_state = 192}, + [251] = {.lex_state = 192}, + [252] = {.lex_state = 81}, + [253] = {.lex_state = 81}, + [254] = {.lex_state = 192}, + [255] = {.lex_state = 192}, + [256] = {.lex_state = 81}, + [257] = {.lex_state = 81}, + [258] = {.lex_state = 81}, + [259] = {.lex_state = 81}, + [260] = {.lex_state = 81}, + [261] = {.lex_state = 81}, + [262] = {.lex_state = 81}, + [263] = {.lex_state = 81}, + [264] = {.lex_state = 81}, + [265] = {.lex_state = 81}, + [266] = {.lex_state = 81}, + [267] = {.lex_state = 81}, + [268] = {.lex_state = 81}, + [269] = {.lex_state = 81}, + [270] = {.lex_state = 81}, + [271] = {.lex_state = 81}, + [272] = {.lex_state = 81}, + [273] = {.lex_state = 81}, + [274] = {.lex_state = 81}, + [275] = {.lex_state = 192}, + [276] = {.lex_state = 81}, + [277] = {.lex_state = 81}, + [278] = {.lex_state = 81}, + [279] = {.lex_state = 81}, + [280] = {.lex_state = 192}, + [281] = {.lex_state = 81}, + [282] = {.lex_state = 81}, + [283] = {.lex_state = 81}, + [284] = {.lex_state = 81}, + [285] = {.lex_state = 81}, + [286] = {.lex_state = 81}, + [287] = {.lex_state = 192}, + [288] = {.lex_state = 81}, + [289] = {.lex_state = 81}, + [290] = {.lex_state = 81}, + [291] = {.lex_state = 192}, + [292] = {.lex_state = 192}, + [293] = {.lex_state = 81}, + [294] = {.lex_state = 81}, + [295] = {.lex_state = 81}, + [296] = {.lex_state = 81}, + [297] = {.lex_state = 81}, + [298] = {.lex_state = 192}, + [299] = {.lex_state = 82}, + [300] = {.lex_state = 81}, + [301] = {.lex_state = 81}, + [302] = {.lex_state = 81}, + [303] = {.lex_state = 81}, + [304] = {.lex_state = 81}, + [305] = {.lex_state = 81}, + [306] = {.lex_state = 81}, + [307] = {.lex_state = 81}, + [308] = {.lex_state = 81}, + [309] = {.lex_state = 81}, + [310] = {.lex_state = 81}, + [311] = {.lex_state = 81}, + [312] = {.lex_state = 81}, + [313] = {.lex_state = 81}, + [314] = {.lex_state = 81}, + [315] = {.lex_state = 81}, + [316] = {.lex_state = 81}, + [317] = {.lex_state = 81}, + [318] = {.lex_state = 81}, + [319] = {.lex_state = 81}, + [320] = {.lex_state = 81}, + [321] = {.lex_state = 81}, + [322] = {.lex_state = 81}, + [323] = {.lex_state = 81}, + [324] = {.lex_state = 81}, + [325] = {.lex_state = 82}, + [326] = {.lex_state = 81}, + [327] = {.lex_state = 82}, + [328] = {.lex_state = 81}, + [329] = {.lex_state = 82}, + [330] = {.lex_state = 81}, + [331] = {.lex_state = 82}, + [332] = {.lex_state = 81}, + [333] = {.lex_state = 81}, + [334] = {.lex_state = 81}, + [335] = {.lex_state = 81}, + [336] = {.lex_state = 82}, + [337] = {.lex_state = 81}, + [338] = {.lex_state = 82}, + [339] = {.lex_state = 82}, + [340] = {.lex_state = 82}, + [341] = {.lex_state = 81}, + [342] = {.lex_state = 81}, + [343] = {.lex_state = 82}, + [344] = {.lex_state = 82}, + [345] = {.lex_state = 81}, + [346] = {.lex_state = 81}, + [347] = {.lex_state = 81}, + [348] = {.lex_state = 81}, + [349] = {.lex_state = 81}, + [350] = {.lex_state = 81}, + [351] = {.lex_state = 81}, + [352] = {.lex_state = 81}, + [353] = {.lex_state = 81}, + [354] = {.lex_state = 192}, + [355] = {.lex_state = 81}, + [356] = {.lex_state = 81}, + [357] = {.lex_state = 82}, + [358] = {.lex_state = 82}, + [359] = {.lex_state = 192}, + [360] = {.lex_state = 81}, + [361] = {.lex_state = 81}, + [362] = {.lex_state = 82}, + [363] = {.lex_state = 81}, + [364] = {.lex_state = 81}, + [365] = {.lex_state = 81}, + [366] = {.lex_state = 81}, + [367] = {.lex_state = 82}, + [368] = {.lex_state = 81}, + [369] = {.lex_state = 81}, + [370] = {.lex_state = 82}, + [371] = {.lex_state = 82}, + [372] = {.lex_state = 82}, + [373] = {.lex_state = 81}, + [374] = {.lex_state = 82}, + [375] = {.lex_state = 82}, + [376] = {.lex_state = 82}, + [377] = {.lex_state = 81}, + [378] = {.lex_state = 81}, + [379] = {.lex_state = 81}, + [380] = {.lex_state = 82}, + [381] = {.lex_state = 81}, + [382] = {.lex_state = 81}, + [383] = {.lex_state = 81}, + [384] = {.lex_state = 81}, + [385] = {.lex_state = 81}, + [386] = {.lex_state = 82}, + [387] = {.lex_state = 81}, + [388] = {.lex_state = 82}, + [389] = {.lex_state = 81}, + [390] = {.lex_state = 81}, + [391] = {.lex_state = 81}, + [392] = {.lex_state = 192}, + [393] = {.lex_state = 81}, + [394] = {.lex_state = 81}, + [395] = {.lex_state = 192}, + [396] = {.lex_state = 81}, + [397] = {.lex_state = 81}, + [398] = {.lex_state = 194}, + [399] = {.lex_state = 81}, + [400] = {.lex_state = 81}, + [401] = {.lex_state = 81}, + [402] = {.lex_state = 81}, + [403] = {.lex_state = 81}, + [404] = {.lex_state = 81}, + [405] = {.lex_state = 81}, + [406] = {.lex_state = 81}, + [407] = {.lex_state = 81}, + [408] = {.lex_state = 81}, + [409] = {.lex_state = 81}, + [410] = {.lex_state = 81}, + [411] = {.lex_state = 81}, + [412] = {.lex_state = 81}, + [413] = {.lex_state = 194}, + [414] = {.lex_state = 81}, + [415] = {.lex_state = 81}, + [416] = {.lex_state = 81}, + [417] = {.lex_state = 81}, + [418] = {.lex_state = 81}, + [419] = {.lex_state = 81}, + [420] = {.lex_state = 81}, + [421] = {.lex_state = 194}, + [422] = {.lex_state = 81}, + [423] = {.lex_state = 81}, + [424] = {.lex_state = 81}, + [425] = {.lex_state = 192}, + [426] = {.lex_state = 81}, + [427] = {.lex_state = 81}, + [428] = {.lex_state = 192}, + [429] = {.lex_state = 81}, + [430] = {.lex_state = 81}, + [431] = {.lex_state = 81}, + [432] = {.lex_state = 81}, + [433] = {.lex_state = 81}, + [434] = {.lex_state = 81}, + [435] = {.lex_state = 81}, + [436] = {.lex_state = 81}, + [437] = {.lex_state = 81}, + [438] = {.lex_state = 81}, + [439] = {.lex_state = 81}, + [440] = {.lex_state = 81}, + [441] = {.lex_state = 192}, + [442] = {.lex_state = 81}, + [443] = {.lex_state = 194}, + [444] = {.lex_state = 81}, + [445] = {.lex_state = 81}, + [446] = {.lex_state = 81}, + [447] = {.lex_state = 81}, + [448] = {.lex_state = 192}, + [449] = {.lex_state = 81}, + [450] = {.lex_state = 81}, + [451] = {.lex_state = 192}, + [452] = {.lex_state = 192}, + [453] = {.lex_state = 192}, + [454] = {.lex_state = 192}, + [455] = {.lex_state = 192}, + [456] = {.lex_state = 81}, + [457] = {.lex_state = 81}, + [458] = {.lex_state = 81}, + [459] = {.lex_state = 192}, + [460] = {.lex_state = 81}, + [461] = {.lex_state = 192}, + [462] = {.lex_state = 192}, + [463] = {.lex_state = 81}, + [464] = {.lex_state = 81}, + [465] = {.lex_state = 192}, + [466] = {.lex_state = 81}, + [467] = {.lex_state = 81}, + [468] = {.lex_state = 81}, + [469] = {.lex_state = 81}, + [470] = {.lex_state = 192}, + [471] = {.lex_state = 81}, + [472] = {.lex_state = 81}, + [473] = {.lex_state = 81}, + [474] = {.lex_state = 81}, + [475] = {.lex_state = 81}, + [476] = {.lex_state = 81}, + [477] = {.lex_state = 81}, + [478] = {.lex_state = 81}, + [479] = {.lex_state = 81}, + [480] = {.lex_state = 81}, + [481] = {.lex_state = 81}, + [482] = {.lex_state = 192}, + [483] = {.lex_state = 192}, + [484] = {.lex_state = 192}, + [485] = {.lex_state = 192}, + [486] = {.lex_state = 192}, + [487] = {.lex_state = 81}, + [488] = {.lex_state = 81}, + [489] = {.lex_state = 192}, + [490] = {.lex_state = 81}, + [491] = {.lex_state = 81}, + [492] = {.lex_state = 81}, + [493] = {.lex_state = 81}, + [494] = {.lex_state = 81}, + [495] = {.lex_state = 81}, + [496] = {.lex_state = 81}, + [497] = {.lex_state = 192}, + [498] = {.lex_state = 81}, + [499] = {.lex_state = 81}, + [500] = {.lex_state = 81}, + [501] = {.lex_state = 81}, + [502] = {.lex_state = 192}, + [503] = {.lex_state = 81}, + [504] = {.lex_state = 81}, + [505] = {.lex_state = 192}, + [506] = {.lex_state = 81}, + [507] = {.lex_state = 192}, + [508] = {.lex_state = 192}, + [509] = {.lex_state = 81}, + [510] = {.lex_state = 81}, + [511] = {.lex_state = 192}, + [512] = {.lex_state = 81}, + [513] = {.lex_state = 192}, + [514] = {.lex_state = 81}, + [515] = {.lex_state = 81}, + [516] = {.lex_state = 81}, + [517] = {.lex_state = 81}, + [518] = {.lex_state = 81}, + [519] = {.lex_state = 81}, + [520] = {.lex_state = 81}, + [521] = {.lex_state = 192}, + [522] = {.lex_state = 81}, + [523] = {.lex_state = 192}, + [524] = {.lex_state = 81}, + [525] = {.lex_state = 81}, + [526] = {.lex_state = 192}, + [527] = {.lex_state = 81}, + [528] = {.lex_state = 81}, + [529] = {.lex_state = 81}, + [530] = {.lex_state = 192}, + [531] = {.lex_state = 81}, + [532] = {.lex_state = 81}, + [533] = {.lex_state = 81}, + [534] = {.lex_state = 81}, + [535] = {.lex_state = 81}, + [536] = {.lex_state = 81}, + [537] = {.lex_state = 81}, + [538] = {.lex_state = 81}, + [539] = {.lex_state = 81}, + [540] = {.lex_state = 81}, + [541] = {.lex_state = 192}, + [542] = {.lex_state = 81}, + [543] = {.lex_state = 81}, + [544] = {.lex_state = 81}, + [545] = {.lex_state = 81}, + [546] = {.lex_state = 81}, + [547] = {.lex_state = 81}, + [548] = {.lex_state = 81}, + [549] = {.lex_state = 192}, + [550] = {.lex_state = 81}, + [551] = {.lex_state = 81}, + [552] = {.lex_state = 81}, + [553] = {.lex_state = 81}, + [554] = {.lex_state = 81}, + [555] = {.lex_state = 81}, + [556] = {.lex_state = 81}, + [557] = {.lex_state = 81}, + [558] = {.lex_state = 81}, + [559] = {.lex_state = 81}, + [560] = {.lex_state = 81}, + [561] = {.lex_state = 81}, + [562] = {.lex_state = 81}, + [563] = {.lex_state = 81}, + [564] = {.lex_state = 81}, + [565] = {.lex_state = 81}, + [566] = {.lex_state = 81}, + [567] = {.lex_state = 81}, + [568] = {.lex_state = 81}, + [569] = {.lex_state = 81}, + [570] = {.lex_state = 81}, + [571] = {.lex_state = 81}, + [572] = {.lex_state = 81}, + [573] = {.lex_state = 192}, + [574] = {.lex_state = 81}, + [575] = {.lex_state = 81}, + [576] = {.lex_state = 81}, + [577] = {.lex_state = 81}, + [578] = {.lex_state = 192}, + [579] = {.lex_state = 192}, + [580] = {.lex_state = 192}, + [581] = {.lex_state = 81}, + [582] = {.lex_state = 81}, + [583] = {.lex_state = 81}, + [584] = {.lex_state = 81}, + [585] = {.lex_state = 81}, + [586] = {.lex_state = 81}, + [587] = {.lex_state = 192}, + [588] = {.lex_state = 192}, + [589] = {.lex_state = 81}, + [590] = {.lex_state = 81}, + [591] = {.lex_state = 81}, + [592] = {.lex_state = 81}, + [593] = {.lex_state = 192}, + [594] = {.lex_state = 81}, + [595] = {.lex_state = 81}, + [596] = {.lex_state = 81}, + [597] = {.lex_state = 81}, + [598] = {.lex_state = 81}, + [599] = {.lex_state = 81}, + [600] = {.lex_state = 81}, + [601] = {.lex_state = 81}, + [602] = {.lex_state = 81}, + [603] = {.lex_state = 81}, + [604] = {.lex_state = 81}, + [605] = {.lex_state = 81}, + [606] = {.lex_state = 81}, + [607] = {.lex_state = 81}, + [608] = {.lex_state = 81}, + [609] = {.lex_state = 81}, + [610] = {.lex_state = 81}, + [611] = {.lex_state = 192}, + [612] = {.lex_state = 81}, + [613] = {.lex_state = 81}, + [614] = {.lex_state = 81}, + [615] = {.lex_state = 81}, + [616] = {.lex_state = 81}, + [617] = {.lex_state = 81}, + [618] = {.lex_state = 192}, + [619] = {.lex_state = 81}, + [620] = {.lex_state = 192}, + [621] = {.lex_state = 81}, + [622] = {.lex_state = 192}, + [623] = {.lex_state = 192}, + [624] = {.lex_state = 81}, + [625] = {.lex_state = 81}, + [626] = {.lex_state = 192}, + [627] = {.lex_state = 81}, + [628] = {.lex_state = 192}, + [629] = {.lex_state = 81}, + [630] = {.lex_state = 81}, + [631] = {.lex_state = 81}, + [632] = {.lex_state = 81}, + [633] = {.lex_state = 81}, + [634] = {.lex_state = 81}, + [635] = {.lex_state = 81}, + [636] = {.lex_state = 81}, + [637] = {.lex_state = 81}, + [638] = {.lex_state = 81}, + [639] = {.lex_state = 81}, + [640] = {.lex_state = 81}, + [641] = {.lex_state = 81}, + [642] = {.lex_state = 81}, + [643] = {.lex_state = 192}, + [644] = {.lex_state = 81}, + [645] = {.lex_state = 192}, + [646] = {.lex_state = 81}, + [647] = {.lex_state = 81}, + [648] = {.lex_state = 81}, + [649] = {.lex_state = 192}, + [650] = {.lex_state = 81}, + [651] = {.lex_state = 192}, + [652] = {.lex_state = 192}, + [653] = {.lex_state = 192}, + [654] = {.lex_state = 192}, + [655] = {.lex_state = 81}, + [656] = {.lex_state = 81}, + [657] = {.lex_state = 81}, + [658] = {.lex_state = 81}, + [659] = {.lex_state = 81}, + [660] = {.lex_state = 81}, + [661] = {.lex_state = 81}, + [662] = {.lex_state = 81}, + [663] = {.lex_state = 81}, + [664] = {.lex_state = 192}, + [665] = {.lex_state = 81}, + [666] = {.lex_state = 81}, + [667] = {.lex_state = 81}, + [668] = {.lex_state = 81}, + [669] = {.lex_state = 81}, + [670] = {.lex_state = 81}, + [671] = {.lex_state = 81}, + [672] = {.lex_state = 81}, + [673] = {.lex_state = 81}, + [674] = {.lex_state = 81}, + [675] = {.lex_state = 81}, + [676] = {.lex_state = 192}, + [677] = {.lex_state = 81}, + [678] = {.lex_state = 81}, + [679] = {.lex_state = 81}, + [680] = {.lex_state = 192}, + [681] = {.lex_state = 81}, + [682] = {.lex_state = 192}, + [683] = {.lex_state = 81}, + [684] = {.lex_state = 81}, + [685] = {.lex_state = 192}, + [686] = {.lex_state = 81}, + [687] = {.lex_state = 81}, + [688] = {.lex_state = 81}, + [689] = {.lex_state = 81}, + [690] = {.lex_state = 81}, + [691] = {.lex_state = 81}, + [692] = {.lex_state = 81}, + [693] = {.lex_state = 81}, + [694] = {.lex_state = 81}, + [695] = {.lex_state = 81}, + [696] = {.lex_state = 81}, + [697] = {.lex_state = 81}, + [698] = {.lex_state = 81}, + [699] = {.lex_state = 81}, + [700] = {.lex_state = 81}, + [701] = {.lex_state = 192}, + [702] = {.lex_state = 192}, + [703] = {.lex_state = 192}, + [704] = {.lex_state = 192}, + [705] = {.lex_state = 81}, + [706] = {.lex_state = 81}, + [707] = {.lex_state = 81}, + [708] = {.lex_state = 81}, + [709] = {.lex_state = 81}, + [710] = {.lex_state = 81}, + [711] = {.lex_state = 81}, + [712] = {.lex_state = 81}, + [713] = {.lex_state = 81}, + [714] = {.lex_state = 81}, + [715] = {.lex_state = 81}, + [716] = {.lex_state = 192}, + [717] = {.lex_state = 192}, + [718] = {.lex_state = 81}, + [719] = {.lex_state = 81}, + [720] = {.lex_state = 81}, + [721] = {.lex_state = 81}, + [722] = {.lex_state = 81}, + [723] = {.lex_state = 81}, + [724] = {.lex_state = 81}, + [725] = {.lex_state = 81}, + [726] = {.lex_state = 81}, + [727] = {.lex_state = 81}, + [728] = {.lex_state = 81}, + [729] = {.lex_state = 81}, + [730] = {.lex_state = 81}, + [731] = {.lex_state = 81}, + [732] = {.lex_state = 81}, + [733] = {.lex_state = 81}, + [734] = {.lex_state = 81}, + [735] = {.lex_state = 81}, + [736] = {.lex_state = 81}, + [737] = {.lex_state = 81}, + [738] = {.lex_state = 192}, + [739] = {.lex_state = 81}, + [740] = {.lex_state = 81}, + [741] = {.lex_state = 81}, + [742] = {.lex_state = 81}, + [743] = {.lex_state = 192}, + [744] = {.lex_state = 81}, + [745] = {.lex_state = 81}, + [746] = {.lex_state = 192}, + [747] = {.lex_state = 81}, + [748] = {.lex_state = 192}, + [749] = {.lex_state = 81}, + [750] = {.lex_state = 81}, + [751] = {.lex_state = 81}, + [752] = {.lex_state = 81}, + [753] = {.lex_state = 81}, + [754] = {.lex_state = 81}, + [755] = {.lex_state = 81}, + [756] = {.lex_state = 81}, + [757] = {.lex_state = 81}, + [758] = {.lex_state = 81}, + [759] = {.lex_state = 81}, + [760] = {.lex_state = 81}, + [761] = {.lex_state = 81}, + [762] = {.lex_state = 81}, + [763] = {.lex_state = 81}, + [764] = {.lex_state = 81}, + [765] = {.lex_state = 192}, + [766] = {.lex_state = 81}, + [767] = {.lex_state = 81}, + [768] = {.lex_state = 81}, + [769] = {.lex_state = 81}, + [770] = {.lex_state = 81}, + [771] = {.lex_state = 81}, + [772] = {.lex_state = 81}, + [773] = {.lex_state = 81}, + [774] = {.lex_state = 81}, + [775] = {.lex_state = 81}, + [776] = {.lex_state = 192}, + [777] = {.lex_state = 81}, + [778] = {.lex_state = 81}, + [779] = {.lex_state = 81}, + [780] = {.lex_state = 81}, + [781] = {.lex_state = 81}, + [782] = {.lex_state = 192}, + [783] = {.lex_state = 192}, + [784] = {.lex_state = 81}, + [785] = {.lex_state = 192}, + [786] = {.lex_state = 81}, + [787] = {.lex_state = 81}, + [788] = {.lex_state = 81}, + [789] = {.lex_state = 192}, + [790] = {.lex_state = 192}, + [791] = {.lex_state = 81}, + [792] = {.lex_state = 81}, + [793] = {.lex_state = 81}, + [794] = {.lex_state = 192}, + [795] = {.lex_state = 81}, + [796] = {.lex_state = 192}, + [797] = {.lex_state = 81}, + [798] = {.lex_state = 81}, + [799] = {.lex_state = 81}, + [800] = {.lex_state = 81}, + [801] = {.lex_state = 192}, + [802] = {.lex_state = 192}, + [803] = {.lex_state = 81}, + [804] = {.lex_state = 81}, + [805] = {.lex_state = 81}, + [806] = {.lex_state = 81}, + [807] = {.lex_state = 81}, + [808] = {.lex_state = 81}, + [809] = {.lex_state = 81}, + [810] = {.lex_state = 81}, + [811] = {.lex_state = 192}, + [812] = {.lex_state = 81}, + [813] = {.lex_state = 81}, + [814] = {.lex_state = 192}, + [815] = {.lex_state = 81}, + [816] = {.lex_state = 81}, + [817] = {.lex_state = 81}, + [818] = {.lex_state = 192}, + [819] = {.lex_state = 192}, + [820] = {.lex_state = 192}, + [821] = {.lex_state = 81}, + [822] = {.lex_state = 81}, + [823] = {.lex_state = 81}, + [824] = {.lex_state = 81}, + [825] = {.lex_state = 81}, + [826] = {.lex_state = 81}, + [827] = {.lex_state = 81}, + [828] = {.lex_state = 81}, + [829] = {.lex_state = 81}, + [830] = {.lex_state = 81}, + [831] = {.lex_state = 192}, + [832] = {.lex_state = 192}, + [833] = {.lex_state = 192}, + [834] = {.lex_state = 192}, + [835] = {.lex_state = 81}, + [836] = {.lex_state = 81}, + [837] = {.lex_state = 81}, + [838] = {.lex_state = 192}, + [839] = {.lex_state = 192}, + [840] = {.lex_state = 81}, + [841] = {.lex_state = 81}, + [842] = {.lex_state = 81}, + [843] = {.lex_state = 81}, + [844] = {.lex_state = 192}, + [845] = {.lex_state = 81}, + [846] = {.lex_state = 192}, + [847] = {.lex_state = 81}, + [848] = {.lex_state = 81}, + [849] = {.lex_state = 81}, + [850] = {.lex_state = 81}, + [851] = {.lex_state = 81}, + [852] = {.lex_state = 81}, + [853] = {.lex_state = 81}, + [854] = {.lex_state = 81}, + [855] = {.lex_state = 81}, + [856] = {.lex_state = 81}, + [857] = {.lex_state = 81}, + [858] = {.lex_state = 81}, + [859] = {.lex_state = 81}, + [860] = {.lex_state = 81}, + [861] = {.lex_state = 81}, + [862] = {.lex_state = 81}, + [863] = {.lex_state = 192}, + [864] = {.lex_state = 81}, + [865] = {.lex_state = 192}, + [866] = {.lex_state = 81}, + [867] = {.lex_state = 81}, + [868] = {.lex_state = 81}, + [869] = {.lex_state = 81}, + [870] = {.lex_state = 81}, + [871] = {.lex_state = 81}, + [872] = {.lex_state = 192}, + [873] = {.lex_state = 81}, + [874] = {.lex_state = 81}, + [875] = {.lex_state = 192}, + [876] = {.lex_state = 192}, + [877] = {.lex_state = 81}, + [878] = {.lex_state = 81}, + [879] = {.lex_state = 81}, + [880] = {.lex_state = 192}, + [881] = {.lex_state = 81}, + [882] = {.lex_state = 81}, + [883] = {.lex_state = 192}, + [884] = {.lex_state = 81}, + [885] = {.lex_state = 81}, + [886] = {.lex_state = 81}, + [887] = {.lex_state = 81}, + [888] = {.lex_state = 81}, + [889] = {.lex_state = 192}, + [890] = {.lex_state = 81}, + [891] = {.lex_state = 81}, + [892] = {.lex_state = 81}, + [893] = {.lex_state = 81}, + [894] = {.lex_state = 81}, + [895] = {.lex_state = 81}, + [896] = {.lex_state = 81}, + [897] = {.lex_state = 81}, + [898] = {.lex_state = 81}, + [899] = {.lex_state = 81}, + [900] = {.lex_state = 81}, + [901] = {.lex_state = 81}, + [902] = {.lex_state = 81}, + [903] = {.lex_state = 81}, + [904] = {.lex_state = 81}, + [905] = {.lex_state = 81}, + [906] = {.lex_state = 81}, + [907] = {.lex_state = 192}, + [908] = {.lex_state = 81}, + [909] = {.lex_state = 81}, + [910] = {.lex_state = 81}, + [911] = {.lex_state = 81}, + [912] = {.lex_state = 81}, + [913] = {.lex_state = 81}, + [914] = {.lex_state = 81}, + [915] = {.lex_state = 192}, + [916] = {.lex_state = 81}, + [917] = {.lex_state = 81}, + [918] = {.lex_state = 81}, + [919] = {.lex_state = 81}, + [920] = {.lex_state = 81}, + [921] = {.lex_state = 81}, + [922] = {.lex_state = 81}, + [923] = {.lex_state = 81}, + [924] = {.lex_state = 81}, + [925] = {.lex_state = 81}, + [926] = {.lex_state = 192}, + [927] = {.lex_state = 192}, + [928] = {.lex_state = 192}, + [929] = {.lex_state = 192}, + [930] = {.lex_state = 81}, + [931] = {.lex_state = 81}, + [932] = {.lex_state = 81}, + [933] = {.lex_state = 81}, + [934] = {.lex_state = 81}, + [935] = {.lex_state = 81}, + [936] = {.lex_state = 81}, + [937] = {.lex_state = 81}, + [938] = {.lex_state = 192}, + [939] = {.lex_state = 192}, + [940] = {.lex_state = 81}, + [941] = {.lex_state = 81}, + [942] = {.lex_state = 81}, + [943] = {.lex_state = 81}, + [944] = {.lex_state = 81}, + [945] = {.lex_state = 81}, + [946] = {.lex_state = 81}, + [947] = {.lex_state = 81}, + [948] = {.lex_state = 81}, + [949] = {.lex_state = 81}, + [950] = {.lex_state = 81}, + [951] = {.lex_state = 81}, + [952] = {.lex_state = 81}, + [953] = {.lex_state = 81}, + [954] = {.lex_state = 192}, + [955] = {.lex_state = 81}, + [956] = {.lex_state = 81}, + [957] = {.lex_state = 81}, + [958] = {.lex_state = 81}, + [959] = {.lex_state = 81}, + [960] = {.lex_state = 81}, + [961] = {.lex_state = 81}, + [962] = {.lex_state = 81}, + [963] = {.lex_state = 81}, + [964] = {.lex_state = 81}, + [965] = {.lex_state = 192}, + [966] = {.lex_state = 192}, + [967] = {.lex_state = 81}, + [968] = {.lex_state = 81}, + [969] = {.lex_state = 81}, + [970] = {.lex_state = 81}, + [971] = {.lex_state = 81}, + [972] = {.lex_state = 81}, + [973] = {.lex_state = 27}, + [974] = {.lex_state = 27}, + [975] = {.lex_state = 27}, + [976] = {.lex_state = 27}, + [977] = {.lex_state = 27}, + [978] = {.lex_state = 27}, + [979] = {.lex_state = 196}, + [980] = {.lex_state = 196}, + [981] = {.lex_state = 196}, + [982] = {.lex_state = 196}, + [983] = {.lex_state = 196}, + [984] = {.lex_state = 196}, + [985] = {.lex_state = 196}, + [986] = {.lex_state = 196}, + [987] = {.lex_state = 196}, + [988] = {.lex_state = 196}, + [989] = {.lex_state = 196}, + [990] = {.lex_state = 196}, + [991] = {.lex_state = 196}, + [992] = {.lex_state = 196}, + [993] = {.lex_state = 196}, + [994] = {.lex_state = 196}, + [995] = {.lex_state = 196}, + [996] = {.lex_state = 196}, + [997] = {.lex_state = 196}, + [998] = {.lex_state = 196}, + [999] = {.lex_state = 196}, + [1000] = {.lex_state = 196}, + [1001] = {.lex_state = 196}, + [1002] = {.lex_state = 196}, + [1003] = {.lex_state = 196}, + [1004] = {.lex_state = 196}, + [1005] = {.lex_state = 196}, + [1006] = {.lex_state = 196}, + [1007] = {.lex_state = 196}, + [1008] = {.lex_state = 39}, + [1009] = {.lex_state = 196}, + [1010] = {.lex_state = 198}, + [1011] = {.lex_state = 198}, + [1012] = {.lex_state = 39}, + [1013] = {.lex_state = 196}, + [1014] = {.lex_state = 196}, + [1015] = {.lex_state = 198}, + [1016] = {.lex_state = 39}, + [1017] = {.lex_state = 198}, + [1018] = {.lex_state = 39}, + [1019] = {.lex_state = 39}, + [1020] = {.lex_state = 196}, + [1021] = {.lex_state = 196}, + [1022] = {.lex_state = 196}, + [1023] = {.lex_state = 196}, + [1024] = {.lex_state = 196}, + [1025] = {.lex_state = 196}, + [1026] = {.lex_state = 196}, + [1027] = {.lex_state = 196}, + [1028] = {.lex_state = 196}, + [1029] = {.lex_state = 196}, + [1030] = {.lex_state = 196}, + [1031] = {.lex_state = 196}, + [1032] = {.lex_state = 196}, + [1033] = {.lex_state = 196}, + [1034] = {.lex_state = 196}, + [1035] = {.lex_state = 196}, + [1036] = {.lex_state = 196}, + [1037] = {.lex_state = 196}, + [1038] = {.lex_state = 196}, + [1039] = {.lex_state = 196}, + [1040] = {.lex_state = 196}, + [1041] = {.lex_state = 196}, + [1042] = {.lex_state = 196}, + [1043] = {.lex_state = 196}, + [1044] = {.lex_state = 196}, + [1045] = {.lex_state = 196}, + [1046] = {.lex_state = 196}, + [1047] = {.lex_state = 196}, + [1048] = {.lex_state = 196}, + [1049] = {.lex_state = 196}, + [1050] = {.lex_state = 196}, + [1051] = {.lex_state = 196}, + [1052] = {.lex_state = 196}, + [1053] = {.lex_state = 196}, + [1054] = {.lex_state = 196}, + [1055] = {.lex_state = 196}, + [1056] = {.lex_state = 196}, + [1057] = {.lex_state = 196}, + [1058] = {.lex_state = 196}, + [1059] = {.lex_state = 196}, + [1060] = {.lex_state = 196}, + [1061] = {.lex_state = 196}, + [1062] = {.lex_state = 196}, + [1063] = {.lex_state = 196}, + [1064] = {.lex_state = 196}, + [1065] = {.lex_state = 196}, + [1066] = {.lex_state = 196}, + [1067] = {.lex_state = 196}, + [1068] = {.lex_state = 196}, + [1069] = {.lex_state = 196}, + [1070] = {.lex_state = 196}, + [1071] = {.lex_state = 196}, + [1072] = {.lex_state = 196}, + [1073] = {.lex_state = 196}, + [1074] = {.lex_state = 196}, + [1075] = {.lex_state = 196}, + [1076] = {.lex_state = 196}, + [1077] = {.lex_state = 196}, + [1078] = {.lex_state = 196}, + [1079] = {.lex_state = 196}, + [1080] = {.lex_state = 196}, + [1081] = {.lex_state = 196}, + [1082] = {.lex_state = 196}, + [1083] = {.lex_state = 196}, + [1084] = {.lex_state = 196}, + [1085] = {.lex_state = 196}, + [1086] = {.lex_state = 196}, + [1087] = {.lex_state = 196}, + [1088] = {.lex_state = 196}, + [1089] = {.lex_state = 196}, + [1090] = {.lex_state = 196}, + [1091] = {.lex_state = 196}, + [1092] = {.lex_state = 196}, + [1093] = {.lex_state = 196}, + [1094] = {.lex_state = 196}, + [1095] = {.lex_state = 196}, + [1096] = {.lex_state = 196}, + [1097] = {.lex_state = 196}, + [1098] = {.lex_state = 196}, + [1099] = {.lex_state = 196}, + [1100] = {.lex_state = 196}, + [1101] = {.lex_state = 196}, + [1102] = {.lex_state = 196}, + [1103] = {.lex_state = 196}, + [1104] = {.lex_state = 196}, + [1105] = {.lex_state = 196}, + [1106] = {.lex_state = 196}, + [1107] = {.lex_state = 196}, + [1108] = {.lex_state = 196}, + [1109] = {.lex_state = 196}, + [1110] = {.lex_state = 196}, + [1111] = {.lex_state = 196}, + [1112] = {.lex_state = 196}, + [1113] = {.lex_state = 196}, + [1114] = {.lex_state = 196}, + [1115] = {.lex_state = 196}, + [1116] = {.lex_state = 196}, + [1117] = {.lex_state = 196}, + [1118] = {.lex_state = 196}, + [1119] = {.lex_state = 196}, + [1120] = {.lex_state = 196}, + [1121] = {.lex_state = 196}, + [1122] = {.lex_state = 196}, + [1123] = {.lex_state = 196}, + [1124] = {.lex_state = 196}, + [1125] = {.lex_state = 196}, + [1126] = {.lex_state = 196}, + [1127] = {.lex_state = 196}, + [1128] = {.lex_state = 196}, + [1129] = {.lex_state = 189}, + [1130] = {.lex_state = 189}, + [1131] = {.lex_state = 189}, [1132] = {.lex_state = 11}, [1133] = {.lex_state = 11}, - [1134] = {.lex_state = 305}, + [1134] = {.lex_state = 200}, [1135] = {.lex_state = 11}, [1136] = {.lex_state = 11}, [1137] = {.lex_state = 11}, - [1138] = {.lex_state = 7}, - [1139] = {.lex_state = 7}, - [1140] = {.lex_state = 7}, - [1141] = {.lex_state = 7}, - [1142] = {.lex_state = 7}, - [1143] = {.lex_state = 7}, - [1144] = {.lex_state = 7}, - [1145] = {.lex_state = 15}, - [1146] = {.lex_state = 7}, - [1147] = {.lex_state = 7}, - [1148] = {.lex_state = 7}, - [1149] = {.lex_state = 7}, - [1150] = {.lex_state = 15}, + [1138] = {.lex_state = 27}, + [1139] = {.lex_state = 27}, + [1140] = {.lex_state = 27}, + [1141] = {.lex_state = 27}, + [1142] = {.lex_state = 27}, + [1143] = {.lex_state = 27}, + [1144] = {.lex_state = 27}, + [1145] = {.lex_state = 27}, + [1146] = {.lex_state = 15}, + [1147] = {.lex_state = 27}, + [1148] = {.lex_state = 27}, + [1149] = {.lex_state = 27}, + [1150] = {.lex_state = 27}, [1151] = {.lex_state = 15}, [1152] = {.lex_state = 15}, - [1153] = {.lex_state = 15}, - [1154] = {.lex_state = 7}, - [1155] = {.lex_state = 7}, - [1156] = {.lex_state = 7}, - [1157] = {.lex_state = 7}, - [1158] = {.lex_state = 7}, - [1159] = {.lex_state = 7}, - [1160] = {.lex_state = 7}, - [1161] = {.lex_state = 7}, - [1162] = {.lex_state = 7}, - [1163] = {.lex_state = 7}, - [1164] = {.lex_state = 9}, - [1165] = {.lex_state = 9}, - [1166] = {.lex_state = 7}, - [1167] = {.lex_state = 7}, - [1168] = {.lex_state = 9}, - [1169] = {.lex_state = 9}, - [1170] = {.lex_state = 7}, - [1171] = {.lex_state = 7}, - [1172] = {.lex_state = 7}, - [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 7}, - [1175] = {.lex_state = 7}, - [1176] = {.lex_state = 98}, - [1177] = {.lex_state = 7}, - [1178] = {.lex_state = 7}, - [1179] = {.lex_state = 7}, - [1180] = {.lex_state = 7}, - [1181] = {.lex_state = 7}, - [1182] = {.lex_state = 7}, - [1183] = {.lex_state = 7}, - [1184] = {.lex_state = 7}, - [1185] = {.lex_state = 7}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 7}, - [1188] = {.lex_state = 7}, - [1189] = {.lex_state = 7}, - [1190] = {.lex_state = 7}, - [1191] = {.lex_state = 7}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, - [1194] = {.lex_state = 7}, - [1195] = {.lex_state = 7}, - [1196] = {.lex_state = 7}, - [1197] = {.lex_state = 7}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, - [1200] = {.lex_state = 7}, - [1201] = {.lex_state = 7}, - [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 7}, - [1204] = {.lex_state = 100}, - [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7}, - [1208] = {.lex_state = 7}, - [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 7}, - [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 7}, - [1217] = {.lex_state = 7}, - [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, - [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 7}, - [1226] = {.lex_state = 7}, - [1227] = {.lex_state = 7}, - [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 98}, - [1230] = {.lex_state = 7}, - [1231] = {.lex_state = 7}, - [1232] = {.lex_state = 7}, - [1233] = {.lex_state = 7}, - [1234] = {.lex_state = 7}, - [1235] = {.lex_state = 100}, - [1236] = {.lex_state = 7}, - [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 100}, - [1239] = {.lex_state = 7}, - [1240] = {.lex_state = 100}, - [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 7}, - [1244] = {.lex_state = 7}, - [1245] = {.lex_state = 7}, - [1246] = {.lex_state = 7}, - [1247] = {.lex_state = 7}, - [1248] = {.lex_state = 7}, - [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 7}, - [1252] = {.lex_state = 7}, - [1253] = {.lex_state = 7}, - [1254] = {.lex_state = 7}, - [1255] = {.lex_state = 7}, - [1256] = {.lex_state = 98}, - [1257] = {.lex_state = 98}, - [1258] = {.lex_state = 7}, - [1259] = {.lex_state = 98}, - [1260] = {.lex_state = 7}, - [1261] = {.lex_state = 7}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 7}, - [1264] = {.lex_state = 7}, - [1265] = {.lex_state = 98}, - [1266] = {.lex_state = 100}, - [1267] = {.lex_state = 7}, - [1268] = {.lex_state = 7}, - [1269] = {.lex_state = 7}, - [1270] = {.lex_state = 7}, - [1271] = {.lex_state = 7}, - [1272] = {.lex_state = 7}, - [1273] = {.lex_state = 7}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 7}, - [1276] = {.lex_state = 7}, - [1277] = {.lex_state = 7}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 7}, - [1280] = {.lex_state = 7}, - [1281] = {.lex_state = 7}, - [1282] = {.lex_state = 7}, - [1283] = {.lex_state = 7}, - [1284] = {.lex_state = 7}, - [1285] = {.lex_state = 7}, - [1286] = {.lex_state = 7}, - [1287] = {.lex_state = 7}, - [1288] = {.lex_state = 7}, - [1289] = {.lex_state = 98}, - [1290] = {.lex_state = 94}, - [1291] = {.lex_state = 94}, - [1292] = {.lex_state = 94}, - [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 94}, - [1295] = {.lex_state = 94}, - [1296] = {.lex_state = 94}, - [1297] = {.lex_state = 94}, - [1298] = {.lex_state = 94}, - [1299] = {.lex_state = 94}, - [1300] = {.lex_state = 94}, - [1301] = {.lex_state = 94}, - [1302] = {.lex_state = 94}, - [1303] = {.lex_state = 94}, - [1304] = {.lex_state = 96}, - [1305] = {.lex_state = 94}, - [1306] = {.lex_state = 96}, - [1307] = {.lex_state = 94}, - [1308] = {.lex_state = 94}, - [1309] = {.lex_state = 96}, - [1310] = {.lex_state = 94}, - [1311] = {.lex_state = 94}, - [1312] = {.lex_state = 96}, - [1313] = {.lex_state = 94}, - [1314] = {.lex_state = 94}, - [1315] = {.lex_state = 94}, - [1316] = {.lex_state = 94}, - [1317] = {.lex_state = 94}, - [1318] = {.lex_state = 94}, - [1319] = {.lex_state = 94}, - [1320] = {.lex_state = 94}, - [1321] = {.lex_state = 94}, - [1322] = {.lex_state = 94}, - [1323] = {.lex_state = 94}, - [1324] = {.lex_state = 94}, - [1325] = {.lex_state = 94}, - [1326] = {.lex_state = 94}, - [1327] = {.lex_state = 94}, - [1328] = {.lex_state = 94}, - [1329] = {.lex_state = 94}, - [1330] = {.lex_state = 94}, - [1331] = {.lex_state = 94}, - [1332] = {.lex_state = 94}, - [1333] = {.lex_state = 94}, - [1334] = {.lex_state = 94}, - [1335] = {.lex_state = 94}, - [1336] = {.lex_state = 94}, - [1337] = {.lex_state = 94}, - [1338] = {.lex_state = 94}, - [1339] = {.lex_state = 94}, - [1340] = {.lex_state = 94}, - [1341] = {.lex_state = 94}, - [1342] = {.lex_state = 94}, - [1343] = {.lex_state = 94}, - [1344] = {.lex_state = 94}, - [1345] = {.lex_state = 94}, - [1346] = {.lex_state = 94}, - [1347] = {.lex_state = 94}, - [1348] = {.lex_state = 94}, - [1349] = {.lex_state = 94}, - [1350] = {.lex_state = 94}, - [1351] = {.lex_state = 94}, - [1352] = {.lex_state = 94}, - [1353] = {.lex_state = 94}, - [1354] = {.lex_state = 94}, - [1355] = {.lex_state = 94}, - [1356] = {.lex_state = 94}, - [1357] = {.lex_state = 94}, - [1358] = {.lex_state = 94}, - [1359] = {.lex_state = 94}, - [1360] = {.lex_state = 94}, - [1361] = {.lex_state = 94}, - [1362] = {.lex_state = 94}, - [1363] = {.lex_state = 94}, - [1364] = {.lex_state = 94}, - [1365] = {.lex_state = 94}, - [1366] = {.lex_state = 94}, - [1367] = {.lex_state = 94}, - [1368] = {.lex_state = 94}, - [1369] = {.lex_state = 94}, - [1370] = {.lex_state = 94}, - [1371] = {.lex_state = 94}, - [1372] = {.lex_state = 94}, - [1373] = {.lex_state = 94}, - [1374] = {.lex_state = 94}, - [1375] = {.lex_state = 94}, - [1376] = {.lex_state = 94}, - [1377] = {.lex_state = 94}, - [1378] = {.lex_state = 94}, - [1379] = {.lex_state = 94}, - [1380] = {.lex_state = 94}, - [1381] = {.lex_state = 94}, - [1382] = {.lex_state = 94}, - [1383] = {.lex_state = 94}, - [1384] = {.lex_state = 94}, - [1385] = {.lex_state = 94}, - [1386] = {.lex_state = 94}, - [1387] = {.lex_state = 94}, - [1388] = {.lex_state = 94}, - [1389] = {.lex_state = 94}, - [1390] = {.lex_state = 94}, - [1391] = {.lex_state = 94}, - [1392] = {.lex_state = 94}, - [1393] = {.lex_state = 94}, - [1394] = {.lex_state = 94}, - [1395] = {.lex_state = 94}, - [1396] = {.lex_state = 94}, - [1397] = {.lex_state = 94}, - [1398] = {.lex_state = 94}, - [1399] = {.lex_state = 94}, - [1400] = {.lex_state = 94}, - [1401] = {.lex_state = 94}, - [1402] = {.lex_state = 94}, - [1403] = {.lex_state = 94}, - [1404] = {.lex_state = 94}, - [1405] = {.lex_state = 94}, - [1406] = {.lex_state = 94}, - [1407] = {.lex_state = 94}, - [1408] = {.lex_state = 94}, - [1409] = {.lex_state = 94}, - [1410] = {.lex_state = 94}, - [1411] = {.lex_state = 94}, - [1412] = {.lex_state = 94}, - [1413] = {.lex_state = 94}, - [1414] = {.lex_state = 94}, - [1415] = {.lex_state = 94}, - [1416] = {.lex_state = 94}, - [1417] = {.lex_state = 94}, - [1418] = {.lex_state = 94}, - [1419] = {.lex_state = 94}, - [1420] = {.lex_state = 94}, - [1421] = {.lex_state = 94}, - [1422] = {.lex_state = 94}, - [1423] = {.lex_state = 94}, - [1424] = {.lex_state = 94}, - [1425] = {.lex_state = 94}, - [1426] = {.lex_state = 94}, - [1427] = {.lex_state = 94}, - [1428] = {.lex_state = 94}, - [1429] = {.lex_state = 94}, - [1430] = {.lex_state = 19}, - [1431] = {.lex_state = 94}, - [1432] = {.lex_state = 94}, - [1433] = {.lex_state = 94}, - [1434] = {.lex_state = 19}, - [1435] = {.lex_state = 19}, - [1436] = {.lex_state = 19}, - [1437] = {.lex_state = 94}, - [1438] = {.lex_state = 19}, - [1439] = {.lex_state = 94}, - [1440] = {.lex_state = 106}, - [1441] = {.lex_state = 106}, - [1442] = {.lex_state = 106}, - [1443] = {.lex_state = 307}, - [1444] = {.lex_state = 106}, - [1445] = {.lex_state = 306}, - [1446] = {.lex_state = 306}, - [1447] = {.lex_state = 306}, - [1448] = {.lex_state = 307}, - [1449] = {.lex_state = 306}, - [1450] = {.lex_state = 307}, - [1451] = {.lex_state = 307}, - [1452] = {.lex_state = 306}, - [1453] = {.lex_state = 19}, - [1454] = {.lex_state = 306}, - [1455] = {.lex_state = 306}, - [1456] = {.lex_state = 306}, - [1457] = {.lex_state = 306}, - [1458] = {.lex_state = 306}, - [1459] = {.lex_state = 306}, - [1460] = {.lex_state = 306}, - [1461] = {.lex_state = 19}, - [1462] = {.lex_state = 306}, - [1463] = {.lex_state = 19}, - [1464] = {.lex_state = 306}, - [1465] = {.lex_state = 19}, - [1466] = {.lex_state = 306}, - [1467] = {.lex_state = 306}, - [1468] = {.lex_state = 306}, - [1469] = {.lex_state = 306}, - [1470] = {.lex_state = 306}, - [1471] = {.lex_state = 306}, - [1472] = {.lex_state = 306}, - [1473] = {.lex_state = 306}, - [1474] = {.lex_state = 306}, - [1475] = {.lex_state = 306}, - [1476] = {.lex_state = 306}, - [1477] = {.lex_state = 306}, - [1478] = {.lex_state = 306}, - [1479] = {.lex_state = 306}, - [1480] = {.lex_state = 306}, - [1481] = {.lex_state = 306}, - [1482] = {.lex_state = 306}, - [1483] = {.lex_state = 306}, - [1484] = {.lex_state = 306}, - [1485] = {.lex_state = 306}, - [1486] = {.lex_state = 306}, - [1487] = {.lex_state = 306}, - [1488] = {.lex_state = 306}, - [1489] = {.lex_state = 306}, - [1490] = {.lex_state = 306}, - [1491] = {.lex_state = 306}, - [1492] = {.lex_state = 306}, - [1493] = {.lex_state = 306}, - [1494] = {.lex_state = 306}, - [1495] = {.lex_state = 306}, - [1496] = {.lex_state = 306}, - [1497] = {.lex_state = 306}, - [1498] = {.lex_state = 19}, - [1499] = {.lex_state = 306}, - [1500] = {.lex_state = 306}, - [1501] = {.lex_state = 306}, - [1502] = {.lex_state = 306}, - [1503] = {.lex_state = 306}, - [1504] = {.lex_state = 306}, - [1505] = {.lex_state = 306}, - [1506] = {.lex_state = 306}, - [1507] = {.lex_state = 306}, - [1508] = {.lex_state = 306}, - [1509] = {.lex_state = 306}, - [1510] = {.lex_state = 306}, - [1511] = {.lex_state = 306}, - [1512] = {.lex_state = 306}, - [1513] = {.lex_state = 306}, - [1514] = {.lex_state = 306}, - [1515] = {.lex_state = 306}, - [1516] = {.lex_state = 306}, - [1517] = {.lex_state = 306}, - [1518] = {.lex_state = 306}, - [1519] = {.lex_state = 306}, - [1520] = {.lex_state = 106}, - [1521] = {.lex_state = 306}, - [1522] = {.lex_state = 306}, - [1523] = {.lex_state = 306}, - [1524] = {.lex_state = 306}, - [1525] = {.lex_state = 306}, - [1526] = {.lex_state = 306}, - [1527] = {.lex_state = 306}, - [1528] = {.lex_state = 306}, - [1529] = {.lex_state = 306}, - [1530] = {.lex_state = 306}, - [1531] = {.lex_state = 306}, - [1532] = {.lex_state = 306}, - [1533] = {.lex_state = 306}, - [1534] = {.lex_state = 306}, - [1535] = {.lex_state = 306}, - [1536] = {.lex_state = 306}, - [1537] = {.lex_state = 306}, - [1538] = {.lex_state = 306}, - [1539] = {.lex_state = 311}, - [1540] = {.lex_state = 306}, - [1541] = {.lex_state = 306}, - [1542] = {.lex_state = 306}, - [1543] = {.lex_state = 110}, - [1544] = {.lex_state = 306}, - [1545] = {.lex_state = 306}, - [1546] = {.lex_state = 306}, - [1547] = {.lex_state = 306}, - [1548] = {.lex_state = 306}, - [1549] = {.lex_state = 306}, - [1550] = {.lex_state = 306}, - [1551] = {.lex_state = 306}, - [1552] = {.lex_state = 306}, - [1553] = {.lex_state = 306}, - [1554] = {.lex_state = 306}, - [1555] = {.lex_state = 306}, - [1556] = {.lex_state = 306}, - [1557] = {.lex_state = 306}, - [1558] = {.lex_state = 306}, - [1559] = {.lex_state = 306}, - [1560] = {.lex_state = 311}, - [1561] = {.lex_state = 306}, - [1562] = {.lex_state = 306}, - [1563] = {.lex_state = 306}, - [1564] = {.lex_state = 306}, - [1565] = {.lex_state = 306}, - [1566] = {.lex_state = 306}, - [1567] = {.lex_state = 306}, - [1568] = {.lex_state = 306}, - [1569] = {.lex_state = 306}, - [1570] = {.lex_state = 306}, - [1571] = {.lex_state = 306}, - [1572] = {.lex_state = 306}, - [1573] = {.lex_state = 306}, - [1574] = {.lex_state = 306}, - [1575] = {.lex_state = 306}, - [1576] = {.lex_state = 306}, - [1577] = {.lex_state = 306}, - [1578] = {.lex_state = 306}, - [1579] = {.lex_state = 306}, - [1580] = {.lex_state = 306}, - [1581] = {.lex_state = 306}, - [1582] = {.lex_state = 306}, - [1583] = {.lex_state = 306}, - [1584] = {.lex_state = 306}, - [1585] = {.lex_state = 306}, - [1586] = {.lex_state = 306}, - [1587] = {.lex_state = 306}, - [1588] = {.lex_state = 306}, - [1589] = {.lex_state = 306}, - [1590] = {.lex_state = 306}, - [1591] = {.lex_state = 306}, - [1592] = {.lex_state = 306}, - [1593] = {.lex_state = 306}, - [1594] = {.lex_state = 306}, - [1595] = {.lex_state = 306}, - [1596] = {.lex_state = 306}, - [1597] = {.lex_state = 306}, - [1598] = {.lex_state = 306}, - [1599] = {.lex_state = 306}, - [1600] = {.lex_state = 306}, - [1601] = {.lex_state = 306}, - [1602] = {.lex_state = 306}, - [1603] = {.lex_state = 306}, - [1604] = {.lex_state = 306}, - [1605] = {.lex_state = 306}, - [1606] = {.lex_state = 306}, - [1607] = {.lex_state = 306}, - [1608] = {.lex_state = 306}, - [1609] = {.lex_state = 306}, - [1610] = {.lex_state = 306}, - [1611] = {.lex_state = 306}, - [1612] = {.lex_state = 306}, - [1613] = {.lex_state = 306}, - [1614] = {.lex_state = 311}, - [1615] = {.lex_state = 110}, - [1616] = {.lex_state = 110}, - [1617] = {.lex_state = 110}, - [1618] = {.lex_state = 110}, - [1619] = {.lex_state = 106}, - [1620] = {.lex_state = 311}, - [1621] = {.lex_state = 311}, - [1622] = {.lex_state = 311}, - [1623] = {.lex_state = 136}, - [1624] = {.lex_state = 311}, - [1625] = {.lex_state = 106}, - [1626] = {.lex_state = 106}, - [1627] = {.lex_state = 311}, + [1153] = {.lex_state = 27}, + [1154] = {.lex_state = 15}, + [1155] = {.lex_state = 15}, + [1156] = {.lex_state = 27}, + [1157] = {.lex_state = 27}, + [1158] = {.lex_state = 27}, + [1159] = {.lex_state = 27}, + [1160] = {.lex_state = 29}, + [1161] = {.lex_state = 27}, + [1162] = {.lex_state = 27}, + [1163] = {.lex_state = 27}, + [1164] = {.lex_state = 29}, + [1165] = {.lex_state = 29}, + [1166] = {.lex_state = 27}, + [1167] = {.lex_state = 29}, + [1168] = {.lex_state = 27}, + [1169] = {.lex_state = 27}, + [1170] = {.lex_state = 27}, + [1171] = {.lex_state = 27}, + [1172] = {.lex_state = 27}, + [1173] = {.lex_state = 27}, + [1174] = {.lex_state = 43}, + [1175] = {.lex_state = 27}, + [1176] = {.lex_state = 27}, + [1177] = {.lex_state = 27}, + [1178] = {.lex_state = 27}, + [1179] = {.lex_state = 27}, + [1180] = {.lex_state = 27}, + [1181] = {.lex_state = 27}, + [1182] = {.lex_state = 27}, + [1183] = {.lex_state = 43}, + [1184] = {.lex_state = 27}, + [1185] = {.lex_state = 27}, + [1186] = {.lex_state = 27}, + [1187] = {.lex_state = 27}, + [1188] = {.lex_state = 27}, + [1189] = {.lex_state = 27}, + [1190] = {.lex_state = 27}, + [1191] = {.lex_state = 27}, + [1192] = {.lex_state = 27}, + [1193] = {.lex_state = 27}, + [1194] = {.lex_state = 43}, + [1195] = {.lex_state = 27}, + [1196] = {.lex_state = 27}, + [1197] = {.lex_state = 27}, + [1198] = {.lex_state = 27}, + [1199] = {.lex_state = 27}, + [1200] = {.lex_state = 27}, + [1201] = {.lex_state = 27}, + [1202] = {.lex_state = 27}, + [1203] = {.lex_state = 27}, + [1204] = {.lex_state = 27}, + [1205] = {.lex_state = 27}, + [1206] = {.lex_state = 27}, + [1207] = {.lex_state = 27}, + [1208] = {.lex_state = 27}, + [1209] = {.lex_state = 27}, + [1210] = {.lex_state = 43}, + [1211] = {.lex_state = 27}, + [1212] = {.lex_state = 43}, + [1213] = {.lex_state = 27}, + [1214] = {.lex_state = 27}, + [1215] = {.lex_state = 27}, + [1216] = {.lex_state = 27}, + [1217] = {.lex_state = 27}, + [1218] = {.lex_state = 27}, + [1219] = {.lex_state = 27}, + [1220] = {.lex_state = 27}, + [1221] = {.lex_state = 27}, + [1222] = {.lex_state = 27}, + [1223] = {.lex_state = 27}, + [1224] = {.lex_state = 27}, + [1225] = {.lex_state = 27}, + [1226] = {.lex_state = 27}, + [1227] = {.lex_state = 27}, + [1228] = {.lex_state = 27}, + [1229] = {.lex_state = 27}, + [1230] = {.lex_state = 27}, + [1231] = {.lex_state = 27}, + [1232] = {.lex_state = 27}, + [1233] = {.lex_state = 27}, + [1234] = {.lex_state = 27}, + [1235] = {.lex_state = 27}, + [1236] = {.lex_state = 27}, + [1237] = {.lex_state = 27}, + [1238] = {.lex_state = 27}, + [1239] = {.lex_state = 27}, + [1240] = {.lex_state = 27}, + [1241] = {.lex_state = 27}, + [1242] = {.lex_state = 27}, + [1243] = {.lex_state = 27}, + [1244] = {.lex_state = 27}, + [1245] = {.lex_state = 45}, + [1246] = {.lex_state = 27}, + [1247] = {.lex_state = 27}, + [1248] = {.lex_state = 27}, + [1249] = {.lex_state = 27}, + [1250] = {.lex_state = 43}, + [1251] = {.lex_state = 45}, + [1252] = {.lex_state = 27}, + [1253] = {.lex_state = 27}, + [1254] = {.lex_state = 45}, + [1255] = {.lex_state = 27}, + [1256] = {.lex_state = 27}, + [1257] = {.lex_state = 27}, + [1258] = {.lex_state = 27}, + [1259] = {.lex_state = 27}, + [1260] = {.lex_state = 27}, + [1261] = {.lex_state = 27}, + [1262] = {.lex_state = 27}, + [1263] = {.lex_state = 27}, + [1264] = {.lex_state = 27}, + [1265] = {.lex_state = 27}, + [1266] = {.lex_state = 27}, + [1267] = {.lex_state = 27}, + [1268] = {.lex_state = 27}, + [1269] = {.lex_state = 27}, + [1270] = {.lex_state = 27}, + [1271] = {.lex_state = 27}, + [1272] = {.lex_state = 45}, + [1273] = {.lex_state = 27}, + [1274] = {.lex_state = 27}, + [1275] = {.lex_state = 27}, + [1276] = {.lex_state = 27}, + [1277] = {.lex_state = 27}, + [1278] = {.lex_state = 27}, + [1279] = {.lex_state = 27}, + [1280] = {.lex_state = 27}, + [1281] = {.lex_state = 27}, + [1282] = {.lex_state = 45}, + [1283] = {.lex_state = 27}, + [1284] = {.lex_state = 27}, + [1285] = {.lex_state = 27}, + [1286] = {.lex_state = 27}, + [1287] = {.lex_state = 27}, + [1288] = {.lex_state = 27}, + [1289] = {.lex_state = 39}, + [1290] = {.lex_state = 27}, + [1291] = {.lex_state = 39}, + [1292] = {.lex_state = 39}, + [1293] = {.lex_state = 43}, + [1294] = {.lex_state = 39}, + [1295] = {.lex_state = 39}, + [1296] = {.lex_state = 39}, + [1297] = {.lex_state = 39}, + [1298] = {.lex_state = 39}, + [1299] = {.lex_state = 41}, + [1300] = {.lex_state = 39}, + [1301] = {.lex_state = 39}, + [1302] = {.lex_state = 39}, + [1303] = {.lex_state = 39}, + [1304] = {.lex_state = 41}, + [1305] = {.lex_state = 39}, + [1306] = {.lex_state = 39}, + [1307] = {.lex_state = 39}, + [1308] = {.lex_state = 39}, + [1309] = {.lex_state = 39}, + [1310] = {.lex_state = 39}, + [1311] = {.lex_state = 39}, + [1312] = {.lex_state = 39}, + [1313] = {.lex_state = 41}, + [1314] = {.lex_state = 39}, + [1315] = {.lex_state = 39}, + [1316] = {.lex_state = 39}, + [1317] = {.lex_state = 39}, + [1318] = {.lex_state = 39}, + [1319] = {.lex_state = 39}, + [1320] = {.lex_state = 39}, + [1321] = {.lex_state = 39}, + [1322] = {.lex_state = 39}, + [1323] = {.lex_state = 41}, + [1324] = {.lex_state = 39}, + [1325] = {.lex_state = 39}, + [1326] = {.lex_state = 39}, + [1327] = {.lex_state = 39}, + [1328] = {.lex_state = 39}, + [1329] = {.lex_state = 39}, + [1330] = {.lex_state = 39}, + [1331] = {.lex_state = 39}, + [1332] = {.lex_state = 39}, + [1333] = {.lex_state = 39}, + [1334] = {.lex_state = 39}, + [1335] = {.lex_state = 39}, + [1336] = {.lex_state = 39}, + [1337] = {.lex_state = 39}, + [1338] = {.lex_state = 39}, + [1339] = {.lex_state = 39}, + [1340] = {.lex_state = 39}, + [1341] = {.lex_state = 39}, + [1342] = {.lex_state = 39}, + [1343] = {.lex_state = 39}, + [1344] = {.lex_state = 39}, + [1345] = {.lex_state = 39}, + [1346] = {.lex_state = 39}, + [1347] = {.lex_state = 39}, + [1348] = {.lex_state = 39}, + [1349] = {.lex_state = 39}, + [1350] = {.lex_state = 39}, + [1351] = {.lex_state = 39}, + [1352] = {.lex_state = 39}, + [1353] = {.lex_state = 39}, + [1354] = {.lex_state = 39}, + [1355] = {.lex_state = 39}, + [1356] = {.lex_state = 39}, + [1357] = {.lex_state = 39}, + [1358] = {.lex_state = 39}, + [1359] = {.lex_state = 39}, + [1360] = {.lex_state = 39}, + [1361] = {.lex_state = 39}, + [1362] = {.lex_state = 39}, + [1363] = {.lex_state = 39}, + [1364] = {.lex_state = 39}, + [1365] = {.lex_state = 39}, + [1366] = {.lex_state = 39}, + [1367] = {.lex_state = 39}, + [1368] = {.lex_state = 39}, + [1369] = {.lex_state = 39}, + [1370] = {.lex_state = 39}, + [1371] = {.lex_state = 39}, + [1372] = {.lex_state = 39}, + [1373] = {.lex_state = 39}, + [1374] = {.lex_state = 39}, + [1375] = {.lex_state = 39}, + [1376] = {.lex_state = 39}, + [1377] = {.lex_state = 39}, + [1378] = {.lex_state = 39}, + [1379] = {.lex_state = 39}, + [1380] = {.lex_state = 39}, + [1381] = {.lex_state = 39}, + [1382] = {.lex_state = 39}, + [1383] = {.lex_state = 39}, + [1384] = {.lex_state = 39}, + [1385] = {.lex_state = 39}, + [1386] = {.lex_state = 39}, + [1387] = {.lex_state = 39}, + [1388] = {.lex_state = 39}, + [1389] = {.lex_state = 39}, + [1390] = {.lex_state = 39}, + [1391] = {.lex_state = 39}, + [1392] = {.lex_state = 39}, + [1393] = {.lex_state = 39}, + [1394] = {.lex_state = 39}, + [1395] = {.lex_state = 39}, + [1396] = {.lex_state = 39}, + [1397] = {.lex_state = 39}, + [1398] = {.lex_state = 39}, + [1399] = {.lex_state = 39}, + [1400] = {.lex_state = 39}, + [1401] = {.lex_state = 39}, + [1402] = {.lex_state = 39}, + [1403] = {.lex_state = 39}, + [1404] = {.lex_state = 39}, + [1405] = {.lex_state = 39}, + [1406] = {.lex_state = 39}, + [1407] = {.lex_state = 39}, + [1408] = {.lex_state = 39}, + [1409] = {.lex_state = 39}, + [1410] = {.lex_state = 39}, + [1411] = {.lex_state = 39}, + [1412] = {.lex_state = 39}, + [1413] = {.lex_state = 39}, + [1414] = {.lex_state = 39}, + [1415] = {.lex_state = 39}, + [1416] = {.lex_state = 39}, + [1417] = {.lex_state = 39}, + [1418] = {.lex_state = 39}, + [1419] = {.lex_state = 39}, + [1420] = {.lex_state = 39}, + [1421] = {.lex_state = 39}, + [1422] = {.lex_state = 39}, + [1423] = {.lex_state = 39}, + [1424] = {.lex_state = 39}, + [1425] = {.lex_state = 39}, + [1426] = {.lex_state = 39}, + [1427] = {.lex_state = 39}, + [1428] = {.lex_state = 39}, + [1429] = {.lex_state = 39}, + [1430] = {.lex_state = 39}, + [1431] = {.lex_state = 31}, + [1432] = {.lex_state = 39}, + [1433] = {.lex_state = 31}, + [1434] = {.lex_state = 39}, + [1435] = {.lex_state = 31}, + [1436] = {.lex_state = 31}, + [1437] = {.lex_state = 31}, + [1438] = {.lex_state = 39}, + [1439] = {.lex_state = 39}, + [1440] = {.lex_state = 51}, + [1441] = {.lex_state = 51}, + [1442] = {.lex_state = 190}, + [1443] = {.lex_state = 51}, + [1444] = {.lex_state = 189}, + [1445] = {.lex_state = 190}, + [1446] = {.lex_state = 189}, + [1447] = {.lex_state = 189}, + [1448] = {.lex_state = 31}, + [1449] = {.lex_state = 51}, + [1450] = {.lex_state = 189}, + [1451] = {.lex_state = 189}, + [1452] = {.lex_state = 189}, + [1453] = {.lex_state = 189}, + [1454] = {.lex_state = 190}, + [1455] = {.lex_state = 190}, + [1456] = {.lex_state = 189}, + [1457] = {.lex_state = 189}, + [1458] = {.lex_state = 189}, + [1459] = {.lex_state = 189}, + [1460] = {.lex_state = 31}, + [1461] = {.lex_state = 189}, + [1462] = {.lex_state = 31}, + [1463] = {.lex_state = 189}, + [1464] = {.lex_state = 189}, + [1465] = {.lex_state = 31}, + [1466] = {.lex_state = 189}, + [1467] = {.lex_state = 189}, + [1468] = {.lex_state = 189}, + [1469] = {.lex_state = 189}, + [1470] = {.lex_state = 31}, + [1471] = {.lex_state = 189}, + [1472] = {.lex_state = 189}, + [1473] = {.lex_state = 189}, + [1474] = {.lex_state = 189}, + [1475] = {.lex_state = 189}, + [1476] = {.lex_state = 189}, + [1477] = {.lex_state = 189}, + [1478] = {.lex_state = 189}, + [1479] = {.lex_state = 189}, + [1480] = {.lex_state = 189}, + [1481] = {.lex_state = 189}, + [1482] = {.lex_state = 189}, + [1483] = {.lex_state = 189}, + [1484] = {.lex_state = 189}, + [1485] = {.lex_state = 189}, + [1486] = {.lex_state = 189}, + [1487] = {.lex_state = 189}, + [1488] = {.lex_state = 189}, + [1489] = {.lex_state = 189}, + [1490] = {.lex_state = 189}, + [1491] = {.lex_state = 189}, + [1492] = {.lex_state = 189}, + [1493] = {.lex_state = 189}, + [1494] = {.lex_state = 189}, + [1495] = {.lex_state = 189}, + [1496] = {.lex_state = 189}, + [1497] = {.lex_state = 189}, + [1498] = {.lex_state = 189}, + [1499] = {.lex_state = 189}, + [1500] = {.lex_state = 189}, + [1501] = {.lex_state = 189}, + [1502] = {.lex_state = 189}, + [1503] = {.lex_state = 189}, + [1504] = {.lex_state = 189}, + [1505] = {.lex_state = 189}, + [1506] = {.lex_state = 189}, + [1507] = {.lex_state = 189}, + [1508] = {.lex_state = 189}, + [1509] = {.lex_state = 189}, + [1510] = {.lex_state = 189}, + [1511] = {.lex_state = 189}, + [1512] = {.lex_state = 189}, + [1513] = {.lex_state = 189}, + [1514] = {.lex_state = 189}, + [1515] = {.lex_state = 189}, + [1516] = {.lex_state = 189}, + [1517] = {.lex_state = 189}, + [1518] = {.lex_state = 189}, + [1519] = {.lex_state = 189}, + [1520] = {.lex_state = 189}, + [1521] = {.lex_state = 189}, + [1522] = {.lex_state = 189}, + [1523] = {.lex_state = 203}, + [1524] = {.lex_state = 189}, + [1525] = {.lex_state = 189}, + [1526] = {.lex_state = 189}, + [1527] = {.lex_state = 189}, + [1528] = {.lex_state = 189}, + [1529] = {.lex_state = 189}, + [1530] = {.lex_state = 189}, + [1531] = {.lex_state = 189}, + [1532] = {.lex_state = 189}, + [1533] = {.lex_state = 189}, + [1534] = {.lex_state = 189}, + [1535] = {.lex_state = 189}, + [1536] = {.lex_state = 189}, + [1537] = {.lex_state = 189}, + [1538] = {.lex_state = 189}, + [1539] = {.lex_state = 51}, + [1540] = {.lex_state = 189}, + [1541] = {.lex_state = 189}, + [1542] = {.lex_state = 189}, + [1543] = {.lex_state = 189}, + [1544] = {.lex_state = 189}, + [1545] = {.lex_state = 189}, + [1546] = {.lex_state = 203}, + [1547] = {.lex_state = 189}, + [1548] = {.lex_state = 189}, + [1549] = {.lex_state = 189}, + [1550] = {.lex_state = 189}, + [1551] = {.lex_state = 189}, + [1552] = {.lex_state = 189}, + [1553] = {.lex_state = 189}, + [1554] = {.lex_state = 189}, + [1555] = {.lex_state = 189}, + [1556] = {.lex_state = 189}, + [1557] = {.lex_state = 189}, + [1558] = {.lex_state = 189}, + [1559] = {.lex_state = 55}, + [1560] = {.lex_state = 189}, + [1561] = {.lex_state = 189}, + [1562] = {.lex_state = 189}, + [1563] = {.lex_state = 189}, + [1564] = {.lex_state = 189}, + [1565] = {.lex_state = 189}, + [1566] = {.lex_state = 189}, + [1567] = {.lex_state = 189}, + [1568] = {.lex_state = 189}, + [1569] = {.lex_state = 189}, + [1570] = {.lex_state = 189}, + [1571] = {.lex_state = 189}, + [1572] = {.lex_state = 189}, + [1573] = {.lex_state = 189}, + [1574] = {.lex_state = 189}, + [1575] = {.lex_state = 189}, + [1576] = {.lex_state = 189}, + [1577] = {.lex_state = 189}, + [1578] = {.lex_state = 189}, + [1579] = {.lex_state = 189}, + [1580] = {.lex_state = 189}, + [1581] = {.lex_state = 189}, + [1582] = {.lex_state = 189}, + [1583] = {.lex_state = 189}, + [1584] = {.lex_state = 189}, + [1585] = {.lex_state = 189}, + [1586] = {.lex_state = 189}, + [1587] = {.lex_state = 189}, + [1588] = {.lex_state = 189}, + [1589] = {.lex_state = 189}, + [1590] = {.lex_state = 189}, + [1591] = {.lex_state = 189}, + [1592] = {.lex_state = 189}, + [1593] = {.lex_state = 189}, + [1594] = {.lex_state = 189}, + [1595] = {.lex_state = 189}, + [1596] = {.lex_state = 189}, + [1597] = {.lex_state = 189}, + [1598] = {.lex_state = 189}, + [1599] = {.lex_state = 189}, + [1600] = {.lex_state = 189}, + [1601] = {.lex_state = 189}, + [1602] = {.lex_state = 189}, + [1603] = {.lex_state = 189}, + [1604] = {.lex_state = 189}, + [1605] = {.lex_state = 189}, + [1606] = {.lex_state = 189}, + [1607] = {.lex_state = 189}, + [1608] = {.lex_state = 189}, + [1609] = {.lex_state = 189}, + [1610] = {.lex_state = 189}, + [1611] = {.lex_state = 189}, + [1612] = {.lex_state = 189}, + [1613] = {.lex_state = 189}, + [1614] = {.lex_state = 51}, + [1615] = {.lex_state = 55}, + [1616] = {.lex_state = 55}, + [1617] = {.lex_state = 55}, + [1618] = {.lex_state = 55}, + [1619] = {.lex_state = 203}, + [1620] = {.lex_state = 203}, + [1621] = {.lex_state = 203}, + [1622] = {.lex_state = 81}, + [1623] = {.lex_state = 203}, + [1624] = {.lex_state = 51}, + [1625] = {.lex_state = 203}, + [1626] = {.lex_state = 51}, + [1627] = {.lex_state = 203}, [1628] = {.lex_state = 11}, [1629] = {.lex_state = 11}, [1630] = {.lex_state = 11}, @@ -22907,3133 +16136,3145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1635] = {.lex_state = 15}, [1636] = {.lex_state = 15}, [1637] = {.lex_state = 15}, - [1638] = {.lex_state = 100}, - [1639] = {.lex_state = 98}, - [1640] = {.lex_state = 100}, - [1641] = {.lex_state = 100}, - [1642] = {.lex_state = 100}, - [1643] = {.lex_state = 100}, - [1644] = {.lex_state = 29}, - [1645] = {.lex_state = 98}, - [1646] = {.lex_state = 98}, - [1647] = {.lex_state = 98}, - [1648] = {.lex_state = 98}, - [1649] = {.lex_state = 29}, - [1650] = {.lex_state = 29}, - [1651] = {.lex_state = 29}, - [1652] = {.lex_state = 29}, - [1653] = {.lex_state = 29}, - [1654] = {.lex_state = 29}, - [1655] = {.lex_state = 29}, - [1656] = {.lex_state = 29}, - [1657] = {.lex_state = 29}, - [1658] = {.lex_state = 29}, - [1659] = {.lex_state = 29}, - [1660] = {.lex_state = 29}, - [1661] = {.lex_state = 29}, - [1662] = {.lex_state = 23}, + [1638] = {.lex_state = 45}, + [1639] = {.lex_state = 23}, + [1640] = {.lex_state = 45}, + [1641] = {.lex_state = 43}, + [1642] = {.lex_state = 45}, + [1643] = {.lex_state = 43}, + [1644] = {.lex_state = 43}, + [1645] = {.lex_state = 45}, + [1646] = {.lex_state = 43}, + [1647] = {.lex_state = 43}, + [1648] = {.lex_state = 45}, + [1649] = {.lex_state = 23}, + [1650] = {.lex_state = 23}, + [1651] = {.lex_state = 23}, + [1652] = {.lex_state = 23}, + [1653] = {.lex_state = 23}, + [1654] = {.lex_state = 23}, + [1655] = {.lex_state = 23}, + [1656] = {.lex_state = 23}, + [1657] = {.lex_state = 23}, + [1658] = {.lex_state = 23}, + [1659] = {.lex_state = 23}, + [1660] = {.lex_state = 23}, + [1661] = {.lex_state = 23}, + [1662] = {.lex_state = 19}, [1663] = {.lex_state = 12}, - [1664] = {.lex_state = 31}, - [1665] = {.lex_state = 23}, - [1666] = {.lex_state = 12}, - [1667] = {.lex_state = 29}, - [1668] = {.lex_state = 29}, - [1669] = {.lex_state = 29}, - [1670] = {.lex_state = 29}, - [1671] = {.lex_state = 31}, - [1672] = {.lex_state = 29}, - [1673] = {.lex_state = 29}, - [1674] = {.lex_state = 29}, - [1675] = {.lex_state = 29}, - [1676] = {.lex_state = 31}, - [1677] = {.lex_state = 29}, - [1678] = {.lex_state = 31}, - [1679] = {.lex_state = 31}, - [1680] = {.lex_state = 29}, - [1681] = {.lex_state = 29}, - [1682] = {.lex_state = 126}, - [1683] = {.lex_state = 31}, - [1684] = {.lex_state = 31}, - [1685] = {.lex_state = 311}, - [1686] = {.lex_state = 31}, - [1687] = {.lex_state = 29}, - [1688] = {.lex_state = 29}, - [1689] = {.lex_state = 126}, - [1690] = {.lex_state = 29}, - [1691] = {.lex_state = 29}, - [1692] = {.lex_state = 29}, - [1693] = {.lex_state = 29}, - [1694] = {.lex_state = 29}, - [1695] = {.lex_state = 29}, - [1696] = {.lex_state = 31}, - [1697] = {.lex_state = 29}, - [1698] = {.lex_state = 29}, - [1699] = {.lex_state = 31}, - [1700] = {.lex_state = 29}, - [1701] = {.lex_state = 31}, - [1702] = {.lex_state = 29}, - [1703] = {.lex_state = 31}, - [1704] = {.lex_state = 29}, - [1705] = {.lex_state = 29}, - [1706] = {.lex_state = 31}, - [1707] = {.lex_state = 29}, - [1708] = {.lex_state = 29}, - [1709] = {.lex_state = 29}, - [1710] = {.lex_state = 29}, - [1711] = {.lex_state = 29}, - [1712] = {.lex_state = 29}, - [1713] = {.lex_state = 25}, - [1714] = {.lex_state = 29}, - [1715] = {.lex_state = 25}, - [1716] = {.lex_state = 29}, - [1717] = {.lex_state = 16}, - [1718] = {.lex_state = 29}, - [1719] = {.lex_state = 29}, - [1720] = {.lex_state = 29}, - [1721] = {.lex_state = 29}, - [1722] = {.lex_state = 29}, - [1723] = {.lex_state = 29}, - [1724] = {.lex_state = 29}, - [1725] = {.lex_state = 29}, - [1726] = {.lex_state = 29}, - [1727] = {.lex_state = 29}, - [1728] = {.lex_state = 29}, - [1729] = {.lex_state = 29}, - [1730] = {.lex_state = 29}, - [1731] = {.lex_state = 29}, - [1732] = {.lex_state = 29}, - [1733] = {.lex_state = 29}, - [1734] = {.lex_state = 29}, - [1735] = {.lex_state = 29}, - [1736] = {.lex_state = 29}, - [1737] = {.lex_state = 29}, - [1738] = {.lex_state = 29}, - [1739] = {.lex_state = 29}, - [1740] = {.lex_state = 29}, - [1741] = {.lex_state = 29}, - [1742] = {.lex_state = 29}, - [1743] = {.lex_state = 29}, - [1744] = {.lex_state = 29}, - [1745] = {.lex_state = 29}, - [1746] = {.lex_state = 29}, - [1747] = {.lex_state = 29}, - [1748] = {.lex_state = 29}, - [1749] = {.lex_state = 29}, - [1750] = {.lex_state = 29}, - [1751] = {.lex_state = 29}, - [1752] = {.lex_state = 31}, - [1753] = {.lex_state = 16}, - [1754] = {.lex_state = 29}, - [1755] = {.lex_state = 29}, - [1756] = {.lex_state = 29}, - [1757] = {.lex_state = 29}, - [1758] = {.lex_state = 29}, - [1759] = {.lex_state = 29}, - [1760] = {.lex_state = 29}, - [1761] = {.lex_state = 29}, - [1762] = {.lex_state = 29}, - [1763] = {.lex_state = 29}, - [1764] = {.lex_state = 29}, - [1765] = {.lex_state = 29}, - [1766] = {.lex_state = 29}, - [1767] = {.lex_state = 29}, - [1768] = {.lex_state = 29}, - [1769] = {.lex_state = 29}, - [1770] = {.lex_state = 29}, - [1771] = {.lex_state = 29}, - [1772] = {.lex_state = 29}, - [1773] = {.lex_state = 29}, - [1774] = {.lex_state = 29}, - [1775] = {.lex_state = 29}, - [1776] = {.lex_state = 29}, - [1777] = {.lex_state = 29}, - [1778] = {.lex_state = 29}, - [1779] = {.lex_state = 29}, - [1780] = {.lex_state = 29}, - [1781] = {.lex_state = 29}, - [1782] = {.lex_state = 29}, - [1783] = {.lex_state = 29}, - [1784] = {.lex_state = 29}, - [1785] = {.lex_state = 29}, - [1786] = {.lex_state = 29}, - [1787] = {.lex_state = 29}, - [1788] = {.lex_state = 29}, - [1789] = {.lex_state = 29}, - [1790] = {.lex_state = 29}, - [1791] = {.lex_state = 29}, - [1792] = {.lex_state = 29}, - [1793] = {.lex_state = 29}, - [1794] = {.lex_state = 29}, - [1795] = {.lex_state = 31}, - [1796] = {.lex_state = 128}, - [1797] = {.lex_state = 128}, - [1798] = {.lex_state = 128}, - [1799] = {.lex_state = 128}, - [1800] = {.lex_state = 126}, - [1801] = {.lex_state = 31}, - [1802] = {.lex_state = 128}, - [1803] = {.lex_state = 128}, - [1804] = {.lex_state = 126}, - [1805] = {.lex_state = 128}, - [1806] = {.lex_state = 128}, - [1807] = {.lex_state = 128}, - [1808] = {.lex_state = 126}, - [1809] = {.lex_state = 128}, - [1810] = {.lex_state = 128}, - [1811] = {.lex_state = 31}, - [1812] = {.lex_state = 126}, - [1813] = {.lex_state = 126}, - [1814] = {.lex_state = 126}, - [1815] = {.lex_state = 126}, - [1816] = {.lex_state = 31}, - [1817] = {.lex_state = 126}, - [1818] = {.lex_state = 126}, - [1819] = {.lex_state = 126}, - [1820] = {.lex_state = 126}, - [1821] = {.lex_state = 126}, - [1822] = {.lex_state = 126}, - [1823] = {.lex_state = 126}, - [1824] = {.lex_state = 31}, - [1825] = {.lex_state = 31}, - [1826] = {.lex_state = 31}, - [1827] = {.lex_state = 31}, - [1828] = {.lex_state = 116}, - [1829] = {.lex_state = 126}, - [1830] = {.lex_state = 31}, - [1831] = {.lex_state = 31}, - [1832] = {.lex_state = 31}, - [1833] = {.lex_state = 31}, - [1834] = {.lex_state = 31}, - [1835] = {.lex_state = 31}, - [1836] = {.lex_state = 31}, + [1664] = {.lex_state = 12}, + [1665] = {.lex_state = 19}, + [1666] = {.lex_state = 25}, + [1667] = {.lex_state = 23}, + [1668] = {.lex_state = 23}, + [1669] = {.lex_state = 25}, + [1670] = {.lex_state = 23}, + [1671] = {.lex_state = 23}, + [1672] = {.lex_state = 25}, + [1673] = {.lex_state = 23}, + [1674] = {.lex_state = 23}, + [1675] = {.lex_state = 23}, + [1676] = {.lex_state = 25}, + [1677] = {.lex_state = 23}, + [1678] = {.lex_state = 23}, + [1679] = {.lex_state = 203}, + [1680] = {.lex_state = 23}, + [1681] = {.lex_state = 71}, + [1682] = {.lex_state = 23}, + [1683] = {.lex_state = 25}, + [1684] = {.lex_state = 23}, + [1685] = {.lex_state = 23}, + [1686] = {.lex_state = 23}, + [1687] = {.lex_state = 25}, + [1688] = {.lex_state = 25}, + [1689] = {.lex_state = 71}, + [1690] = {.lex_state = 25}, + [1691] = {.lex_state = 25}, + [1692] = {.lex_state = 23}, + [1693] = {.lex_state = 25}, + [1694] = {.lex_state = 23}, + [1695] = {.lex_state = 23}, + [1696] = {.lex_state = 23}, + [1697] = {.lex_state = 23}, + [1698] = {.lex_state = 23}, + [1699] = {.lex_state = 25}, + [1700] = {.lex_state = 23}, + [1701] = {.lex_state = 23}, + [1702] = {.lex_state = 25}, + [1703] = {.lex_state = 23}, + [1704] = {.lex_state = 23}, + [1705] = {.lex_state = 23}, + [1706] = {.lex_state = 25}, + [1707] = {.lex_state = 23}, + [1708] = {.lex_state = 23}, + [1709] = {.lex_state = 23}, + [1710] = {.lex_state = 23}, + [1711] = {.lex_state = 23}, + [1712] = {.lex_state = 23}, + [1713] = {.lex_state = 23}, + [1714] = {.lex_state = 23}, + [1715] = {.lex_state = 23}, + [1716] = {.lex_state = 23}, + [1717] = {.lex_state = 23}, + [1718] = {.lex_state = 23}, + [1719] = {.lex_state = 23}, + [1720] = {.lex_state = 23}, + [1721] = {.lex_state = 23}, + [1722] = {.lex_state = 23}, + [1723] = {.lex_state = 23}, + [1724] = {.lex_state = 23}, + [1725] = {.lex_state = 23}, + [1726] = {.lex_state = 23}, + [1727] = {.lex_state = 23}, + [1728] = {.lex_state = 23}, + [1729] = {.lex_state = 23}, + [1730] = {.lex_state = 23}, + [1731] = {.lex_state = 23}, + [1732] = {.lex_state = 23}, + [1733] = {.lex_state = 23}, + [1734] = {.lex_state = 23}, + [1735] = {.lex_state = 23}, + [1736] = {.lex_state = 23}, + [1737] = {.lex_state = 23}, + [1738] = {.lex_state = 23}, + [1739] = {.lex_state = 23}, + [1740] = {.lex_state = 23}, + [1741] = {.lex_state = 23}, + [1742] = {.lex_state = 23}, + [1743] = {.lex_state = 23}, + [1744] = {.lex_state = 23}, + [1745] = {.lex_state = 23}, + [1746] = {.lex_state = 23}, + [1747] = {.lex_state = 23}, + [1748] = {.lex_state = 23}, + [1749] = {.lex_state = 23}, + [1750] = {.lex_state = 23}, + [1751] = {.lex_state = 23}, + [1752] = {.lex_state = 23}, + [1753] = {.lex_state = 23}, + [1754] = {.lex_state = 23}, + [1755] = {.lex_state = 23}, + [1756] = {.lex_state = 23}, + [1757] = {.lex_state = 23}, + [1758] = {.lex_state = 23}, + [1759] = {.lex_state = 23}, + [1760] = {.lex_state = 23}, + [1761] = {.lex_state = 23}, + [1762] = {.lex_state = 23}, + [1763] = {.lex_state = 23}, + [1764] = {.lex_state = 21}, + [1765] = {.lex_state = 23}, + [1766] = {.lex_state = 16}, + [1767] = {.lex_state = 23}, + [1768] = {.lex_state = 21}, + [1769] = {.lex_state = 23}, + [1770] = {.lex_state = 23}, + [1771] = {.lex_state = 23}, + [1772] = {.lex_state = 23}, + [1773] = {.lex_state = 16}, + [1774] = {.lex_state = 23}, + [1775] = {.lex_state = 23}, + [1776] = {.lex_state = 23}, + [1777] = {.lex_state = 23}, + [1778] = {.lex_state = 23}, + [1779] = {.lex_state = 23}, + [1780] = {.lex_state = 23}, + [1781] = {.lex_state = 23}, + [1782] = {.lex_state = 23}, + [1783] = {.lex_state = 23}, + [1784] = {.lex_state = 25}, + [1785] = {.lex_state = 23}, + [1786] = {.lex_state = 23}, + [1787] = {.lex_state = 23}, + [1788] = {.lex_state = 23}, + [1789] = {.lex_state = 23}, + [1790] = {.lex_state = 23}, + [1791] = {.lex_state = 23}, + [1792] = {.lex_state = 23}, + [1793] = {.lex_state = 23}, + [1794] = {.lex_state = 23}, + [1795] = {.lex_state = 73}, + [1796] = {.lex_state = 73}, + [1797] = {.lex_state = 73}, + [1798] = {.lex_state = 71}, + [1799] = {.lex_state = 71}, + [1800] = {.lex_state = 73}, + [1801] = {.lex_state = 73}, + [1802] = {.lex_state = 73}, + [1803] = {.lex_state = 73}, + [1804] = {.lex_state = 73}, + [1805] = {.lex_state = 71}, + [1806] = {.lex_state = 25}, + [1807] = {.lex_state = 25}, + [1808] = {.lex_state = 25}, + [1809] = {.lex_state = 71}, + [1810] = {.lex_state = 71}, + [1811] = {.lex_state = 71}, + [1812] = {.lex_state = 25}, + [1813] = {.lex_state = 25}, + [1814] = {.lex_state = 73}, + [1815] = {.lex_state = 71}, + [1816] = {.lex_state = 71}, + [1817] = {.lex_state = 71}, + [1818] = {.lex_state = 73}, + [1819] = {.lex_state = 71}, + [1820] = {.lex_state = 71}, + [1821] = {.lex_state = 71}, + [1822] = {.lex_state = 73}, + [1823] = {.lex_state = 25}, + [1824] = {.lex_state = 71}, + [1825] = {.lex_state = 71}, + [1826] = {.lex_state = 25}, + [1827] = {.lex_state = 71}, + [1828] = {.lex_state = 25}, + [1829] = {.lex_state = 25}, + [1830] = {.lex_state = 25}, + [1831] = {.lex_state = 25}, + [1832] = {.lex_state = 63}, + [1833] = {.lex_state = 25}, + [1834] = {.lex_state = 25}, + [1835] = {.lex_state = 25}, + [1836] = {.lex_state = 25}, [1837] = {.lex_state = 31}, [1838] = {.lex_state = 31}, - [1839] = {.lex_state = 101}, - [1840] = {.lex_state = 31}, - [1841] = {.lex_state = 101}, - [1842] = {.lex_state = 31}, - [1843] = {.lex_state = 31}, - [1844] = {.lex_state = 31}, - [1845] = {.lex_state = 126}, - [1846] = {.lex_state = 31}, - [1847] = {.lex_state = 19}, - [1848] = {.lex_state = 126}, - [1849] = {.lex_state = 126}, - [1850] = {.lex_state = 126}, - [1851] = {.lex_state = 31}, - [1852] = {.lex_state = 126}, - [1853] = {.lex_state = 126}, - [1854] = {.lex_state = 31}, - [1855] = {.lex_state = 31}, - [1856] = {.lex_state = 31}, - [1857] = {.lex_state = 31}, - [1858] = {.lex_state = 31}, - [1859] = {.lex_state = 31}, - [1860] = {.lex_state = 31}, - [1861] = {.lex_state = 31}, - [1862] = {.lex_state = 31}, - [1863] = {.lex_state = 31}, - [1864] = {.lex_state = 118}, - [1865] = {.lex_state = 126}, - [1866] = {.lex_state = 128}, - [1867] = {.lex_state = 126}, - [1868] = {.lex_state = 31}, - [1869] = {.lex_state = 31}, - [1870] = {.lex_state = 31}, - [1871] = {.lex_state = 31}, - [1872] = {.lex_state = 31}, - [1873] = {.lex_state = 31}, - [1874] = {.lex_state = 31}, - [1875] = {.lex_state = 31}, - [1876] = {.lex_state = 31}, - [1877] = {.lex_state = 31}, - [1878] = {.lex_state = 31}, - [1879] = {.lex_state = 31}, - [1880] = {.lex_state = 31}, - [1881] = {.lex_state = 19}, - [1882] = {.lex_state = 19}, - [1883] = {.lex_state = 31}, - [1884] = {.lex_state = 31}, - [1885] = {.lex_state = 31}, - [1886] = {.lex_state = 31}, - [1887] = {.lex_state = 31}, + [1839] = {.lex_state = 25}, + [1840] = {.lex_state = 71}, + [1841] = {.lex_state = 71}, + [1842] = {.lex_state = 71}, + [1843] = {.lex_state = 71}, + [1844] = {.lex_state = 71}, + [1845] = {.lex_state = 71}, + [1846] = {.lex_state = 25}, + [1847] = {.lex_state = 25}, + [1848] = {.lex_state = 49}, + [1849] = {.lex_state = 25}, + [1850] = {.lex_state = 25}, + [1851] = {.lex_state = 25}, + [1852] = {.lex_state = 25}, + [1853] = {.lex_state = 25}, + [1854] = {.lex_state = 25}, + [1855] = {.lex_state = 25}, + [1856] = {.lex_state = 25}, + [1857] = {.lex_state = 25}, + [1858] = {.lex_state = 25}, + [1859] = {.lex_state = 25}, + [1860] = {.lex_state = 25}, + [1861] = {.lex_state = 25}, + [1862] = {.lex_state = 25}, + [1863] = {.lex_state = 25}, + [1864] = {.lex_state = 25}, + [1865] = {.lex_state = 31}, + [1866] = {.lex_state = 31}, + [1867] = {.lex_state = 25}, + [1868] = {.lex_state = 25}, + [1869] = {.lex_state = 25}, + [1870] = {.lex_state = 61}, + [1871] = {.lex_state = 25}, + [1872] = {.lex_state = 25}, + [1873] = {.lex_state = 25}, + [1874] = {.lex_state = 25}, + [1875] = {.lex_state = 25}, + [1876] = {.lex_state = 25}, + [1877] = {.lex_state = 25}, + [1878] = {.lex_state = 25}, + [1879] = {.lex_state = 25}, + [1880] = {.lex_state = 25}, + [1881] = {.lex_state = 25}, + [1882] = {.lex_state = 25}, + [1883] = {.lex_state = 25}, + [1884] = {.lex_state = 25}, + [1885] = {.lex_state = 73}, + [1886] = {.lex_state = 49}, + [1887] = {.lex_state = 25}, [1888] = {.lex_state = 31}, - [1889] = {.lex_state = 31}, - [1890] = {.lex_state = 31}, - [1891] = {.lex_state = 31}, - [1892] = {.lex_state = 118}, - [1893] = {.lex_state = 31}, - [1894] = {.lex_state = 31}, - [1895] = {.lex_state = 31}, - [1896] = {.lex_state = 31}, - [1897] = {.lex_state = 31}, - [1898] = {.lex_state = 31}, - [1899] = {.lex_state = 31}, - [1900] = {.lex_state = 31}, - [1901] = {.lex_state = 31}, - [1902] = {.lex_state = 31}, - [1903] = {.lex_state = 31}, - [1904] = {.lex_state = 31}, - [1905] = {.lex_state = 31}, - [1906] = {.lex_state = 31}, - [1907] = {.lex_state = 31}, - [1908] = {.lex_state = 31}, - [1909] = {.lex_state = 31}, - [1910] = {.lex_state = 126}, - [1911] = {.lex_state = 31}, - [1912] = {.lex_state = 31}, - [1913] = {.lex_state = 31}, - [1914] = {.lex_state = 31}, - [1915] = {.lex_state = 31}, - [1916] = {.lex_state = 19}, - [1917] = {.lex_state = 19}, - [1918] = {.lex_state = 116}, - [1919] = {.lex_state = 31}, - [1920] = {.lex_state = 31}, - [1921] = {.lex_state = 31}, - [1922] = {.lex_state = 31}, - [1923] = {.lex_state = 31}, - [1924] = {.lex_state = 31}, - [1925] = {.lex_state = 31}, - [1926] = {.lex_state = 31}, - [1927] = {.lex_state = 31}, - [1928] = {.lex_state = 31}, - [1929] = {.lex_state = 31}, - [1930] = {.lex_state = 31}, - [1931] = {.lex_state = 31}, - [1932] = {.lex_state = 31}, - [1933] = {.lex_state = 31}, - [1934] = {.lex_state = 31}, - [1935] = {.lex_state = 31}, - [1936] = {.lex_state = 31}, - [1937] = {.lex_state = 31}, - [1938] = {.lex_state = 31}, - [1939] = {.lex_state = 31}, - [1940] = {.lex_state = 31}, - [1941] = {.lex_state = 31}, - [1942] = {.lex_state = 31}, - [1943] = {.lex_state = 104}, - [1944] = {.lex_state = 31}, - [1945] = {.lex_state = 31}, - [1946] = {.lex_state = 104}, - [1947] = {.lex_state = 31}, - [1948] = {.lex_state = 31}, - [1949] = {.lex_state = 126}, - [1950] = {.lex_state = 35}, - [1951] = {.lex_state = 128}, - [1952] = {.lex_state = 126}, - [1953] = {.lex_state = 126}, - [1954] = {.lex_state = 126}, - [1955] = {.lex_state = 35}, - [1956] = {.lex_state = 128}, - [1957] = {.lex_state = 128}, - [1958] = {.lex_state = 128}, - [1959] = {.lex_state = 126}, - [1960] = {.lex_state = 126}, - [1961] = {.lex_state = 126}, - [1962] = {.lex_state = 128}, - [1963] = {.lex_state = 128}, - [1964] = {.lex_state = 128}, - [1965] = {.lex_state = 128}, - [1966] = {.lex_state = 128}, - [1967] = {.lex_state = 128}, - [1968] = {.lex_state = 126}, - [1969] = {.lex_state = 126}, - [1970] = {.lex_state = 128}, - [1971] = {.lex_state = 126}, - [1972] = {.lex_state = 128}, - [1973] = {.lex_state = 126}, - [1974] = {.lex_state = 128}, - [1975] = {.lex_state = 128}, - [1976] = {.lex_state = 128}, - [1977] = {.lex_state = 128}, - [1978] = {.lex_state = 128}, - [1979] = {.lex_state = 128}, - [1980] = {.lex_state = 128}, - [1981] = {.lex_state = 128}, - [1982] = {.lex_state = 128}, - [1983] = {.lex_state = 128}, - [1984] = {.lex_state = 128}, - [1985] = {.lex_state = 126}, - [1986] = {.lex_state = 126}, - [1987] = {.lex_state = 128}, - [1988] = {.lex_state = 128}, - [1989] = {.lex_state = 128}, - [1990] = {.lex_state = 128}, - [1991] = {.lex_state = 128}, - [1992] = {.lex_state = 128}, - [1993] = {.lex_state = 128}, - [1994] = {.lex_state = 128}, - [1995] = {.lex_state = 128}, - [1996] = {.lex_state = 128}, - [1997] = {.lex_state = 126}, - [1998] = {.lex_state = 126}, - [1999] = {.lex_state = 126}, - [2000] = {.lex_state = 128}, - [2001] = {.lex_state = 128}, - [2002] = {.lex_state = 126}, - [2003] = {.lex_state = 126}, - [2004] = {.lex_state = 126}, - [2005] = {.lex_state = 126}, - [2006] = {.lex_state = 128}, - [2007] = {.lex_state = 126}, - [2008] = {.lex_state = 128}, - [2009] = {.lex_state = 128}, - [2010] = {.lex_state = 128}, - [2011] = {.lex_state = 126}, - [2012] = {.lex_state = 128}, - [2013] = {.lex_state = 126}, - [2014] = {.lex_state = 126}, - [2015] = {.lex_state = 126}, - [2016] = {.lex_state = 126}, - [2017] = {.lex_state = 126}, - [2018] = {.lex_state = 126}, - [2019] = {.lex_state = 126}, - [2020] = {.lex_state = 126}, - [2021] = {.lex_state = 126}, - [2022] = {.lex_state = 126}, - [2023] = {.lex_state = 126}, - [2024] = {.lex_state = 126}, - [2025] = {.lex_state = 128}, - [2026] = {.lex_state = 128}, - [2027] = {.lex_state = 126}, - [2028] = {.lex_state = 126}, - [2029] = {.lex_state = 126}, - [2030] = {.lex_state = 126}, - [2031] = {.lex_state = 126}, - [2032] = {.lex_state = 126}, - [2033] = {.lex_state = 126}, - [2034] = {.lex_state = 126}, - [2035] = {.lex_state = 126}, - [2036] = {.lex_state = 35}, - [2037] = {.lex_state = 128}, - [2038] = {.lex_state = 126}, - [2039] = {.lex_state = 128}, - [2040] = {.lex_state = 128}, - [2041] = {.lex_state = 126}, - [2042] = {.lex_state = 126}, - [2043] = {.lex_state = 126}, - [2044] = {.lex_state = 126}, - [2045] = {.lex_state = 126}, - [2046] = {.lex_state = 128}, - [2047] = {.lex_state = 128}, - [2048] = {.lex_state = 128}, - [2049] = {.lex_state = 126}, - [2050] = {.lex_state = 128}, - [2051] = {.lex_state = 126}, - [2052] = {.lex_state = 126}, - [2053] = {.lex_state = 126}, - [2054] = {.lex_state = 128}, - [2055] = {.lex_state = 128}, - [2056] = {.lex_state = 126}, - [2057] = {.lex_state = 126}, - [2058] = {.lex_state = 128}, - [2059] = {.lex_state = 128}, - [2060] = {.lex_state = 128}, - [2061] = {.lex_state = 126}, - [2062] = {.lex_state = 126}, - [2063] = {.lex_state = 126}, - [2064] = {.lex_state = 126}, - [2065] = {.lex_state = 126}, - [2066] = {.lex_state = 128}, - [2067] = {.lex_state = 128}, - [2068] = {.lex_state = 126}, - [2069] = {.lex_state = 128}, - [2070] = {.lex_state = 128}, - [2071] = {.lex_state = 126}, - [2072] = {.lex_state = 128}, - [2073] = {.lex_state = 126}, - [2074] = {.lex_state = 126}, - [2075] = {.lex_state = 128}, - [2076] = {.lex_state = 126}, - [2077] = {.lex_state = 126}, - [2078] = {.lex_state = 126}, - [2079] = {.lex_state = 126}, - [2080] = {.lex_state = 128}, - [2081] = {.lex_state = 128}, - [2082] = {.lex_state = 128}, - [2083] = {.lex_state = 126}, - [2084] = {.lex_state = 128}, - [2085] = {.lex_state = 126}, - [2086] = {.lex_state = 128}, - [2087] = {.lex_state = 126}, - [2088] = {.lex_state = 128}, - [2089] = {.lex_state = 126}, - [2090] = {.lex_state = 126}, - [2091] = {.lex_state = 128}, - [2092] = {.lex_state = 128}, - [2093] = {.lex_state = 128}, - [2094] = {.lex_state = 128}, - [2095] = {.lex_state = 128}, - [2096] = {.lex_state = 128}, - [2097] = {.lex_state = 128}, - [2098] = {.lex_state = 128}, - [2099] = {.lex_state = 128}, - [2100] = {.lex_state = 128}, - [2101] = {.lex_state = 128}, - [2102] = {.lex_state = 128}, - [2103] = {.lex_state = 126}, - [2104] = {.lex_state = 126}, - [2105] = {.lex_state = 126}, - [2106] = {.lex_state = 128}, - [2107] = {.lex_state = 128}, - [2108] = {.lex_state = 126}, - [2109] = {.lex_state = 126}, - [2110] = {.lex_state = 128}, - [2111] = {.lex_state = 126}, - [2112] = {.lex_state = 126}, - [2113] = {.lex_state = 126}, - [2114] = {.lex_state = 128}, - [2115] = {.lex_state = 128}, - [2116] = {.lex_state = 128}, - [2117] = {.lex_state = 128}, - [2118] = {.lex_state = 126}, - [2119] = {.lex_state = 126}, - [2120] = {.lex_state = 126}, - [2121] = {.lex_state = 126}, - [2122] = {.lex_state = 126}, - [2123] = {.lex_state = 126}, - [2124] = {.lex_state = 126}, - [2125] = {.lex_state = 126}, - [2126] = {.lex_state = 126}, - [2127] = {.lex_state = 126}, - [2128] = {.lex_state = 128}, - [2129] = {.lex_state = 126}, - [2130] = {.lex_state = 126}, - [2131] = {.lex_state = 126}, - [2132] = {.lex_state = 126}, - [2133] = {.lex_state = 126}, - [2134] = {.lex_state = 126}, - [2135] = {.lex_state = 126}, - [2136] = {.lex_state = 128}, - [2137] = {.lex_state = 128}, - [2138] = {.lex_state = 128}, - [2139] = {.lex_state = 128}, - [2140] = {.lex_state = 128}, - [2141] = {.lex_state = 128}, - [2142] = {.lex_state = 128}, - [2143] = {.lex_state = 126}, - [2144] = {.lex_state = 126}, - [2145] = {.lex_state = 126}, - [2146] = {.lex_state = 128}, - [2147] = {.lex_state = 126}, - [2148] = {.lex_state = 128}, - [2149] = {.lex_state = 128}, - [2150] = {.lex_state = 128}, - [2151] = {.lex_state = 126}, - [2152] = {.lex_state = 126}, - [2153] = {.lex_state = 128}, - [2154] = {.lex_state = 126}, - [2155] = {.lex_state = 126}, - [2156] = {.lex_state = 128}, - [2157] = {.lex_state = 126}, - [2158] = {.lex_state = 126}, - [2159] = {.lex_state = 126}, - [2160] = {.lex_state = 128}, - [2161] = {.lex_state = 128}, - [2162] = {.lex_state = 128}, - [2163] = {.lex_state = 126}, - [2164] = {.lex_state = 126}, - [2165] = {.lex_state = 128}, - [2166] = {.lex_state = 126}, - [2167] = {.lex_state = 128}, - [2168] = {.lex_state = 126}, - [2169] = {.lex_state = 126}, - [2170] = {.lex_state = 126}, - [2171] = {.lex_state = 106}, - [2172] = {.lex_state = 106}, - [2173] = {.lex_state = 106}, - [2174] = {.lex_state = 106}, - [2175] = {.lex_state = 106}, - [2176] = {.lex_state = 20}, - [2177] = {.lex_state = 20}, - [2178] = {.lex_state = 126}, - [2179] = {.lex_state = 20}, - [2180] = {.lex_state = 20}, - [2181] = {.lex_state = 136}, - [2182] = {.lex_state = 20}, - [2183] = {.lex_state = 136}, - [2184] = {.lex_state = 136}, - [2185] = {.lex_state = 20}, - [2186] = {.lex_state = 20}, - [2187] = {.lex_state = 20}, - [2188] = {.lex_state = 20}, - [2189] = {.lex_state = 136}, - [2190] = {.lex_state = 20}, - [2191] = {.lex_state = 27}, - [2192] = {.lex_state = 27}, - [2193] = {.lex_state = 136}, - [2194] = {.lex_state = 136}, - [2195] = {.lex_state = 27}, - [2196] = {.lex_state = 136}, - [2197] = {.lex_state = 136}, - [2198] = {.lex_state = 136}, - [2199] = {.lex_state = 136}, - [2200] = {.lex_state = 136}, - [2201] = {.lex_state = 27}, - [2202] = {.lex_state = 20}, - [2203] = {.lex_state = 20}, - [2204] = {.lex_state = 20}, - [2205] = {.lex_state = 20}, - [2206] = {.lex_state = 20}, - [2207] = {.lex_state = 20}, - [2208] = {.lex_state = 36}, - [2209] = {.lex_state = 20}, - [2210] = {.lex_state = 20}, - [2211] = {.lex_state = 136}, - [2212] = {.lex_state = 20}, - [2213] = {.lex_state = 110}, - [2214] = {.lex_state = 110}, - [2215] = {.lex_state = 20}, - [2216] = {.lex_state = 110}, - [2217] = {.lex_state = 110}, - [2218] = {.lex_state = 20}, - [2219] = {.lex_state = 20}, - [2220] = {.lex_state = 20}, - [2221] = {.lex_state = 20}, - [2222] = {.lex_state = 20}, - [2223] = {.lex_state = 136}, - [2224] = {.lex_state = 20}, - [2225] = {.lex_state = 20}, - [2226] = {.lex_state = 20}, - [2227] = {.lex_state = 20}, - [2228] = {.lex_state = 20}, - [2229] = {.lex_state = 20}, - [2230] = {.lex_state = 20}, - [2231] = {.lex_state = 20}, - [2232] = {.lex_state = 20}, - [2233] = {.lex_state = 20}, - [2234] = {.lex_state = 20}, - [2235] = {.lex_state = 20}, - [2236] = {.lex_state = 20}, - [2237] = {.lex_state = 20}, - [2238] = {.lex_state = 20}, - [2239] = {.lex_state = 20}, - [2240] = {.lex_state = 20}, - [2241] = {.lex_state = 20}, - [2242] = {.lex_state = 20}, - [2243] = {.lex_state = 20}, - [2244] = {.lex_state = 20}, - [2245] = {.lex_state = 20}, - [2246] = {.lex_state = 20}, - [2247] = {.lex_state = 20}, - [2248] = {.lex_state = 20}, - [2249] = {.lex_state = 20}, - [2250] = {.lex_state = 20}, - [2251] = {.lex_state = 20}, - [2252] = {.lex_state = 20}, - [2253] = {.lex_state = 20}, - [2254] = {.lex_state = 20}, - [2255] = {.lex_state = 20}, - [2256] = {.lex_state = 20}, - [2257] = {.lex_state = 20}, - [2258] = {.lex_state = 20}, - [2259] = {.lex_state = 20}, - [2260] = {.lex_state = 20}, - [2261] = {.lex_state = 20}, - [2262] = {.lex_state = 20}, - [2263] = {.lex_state = 20}, - [2264] = {.lex_state = 20}, - [2265] = {.lex_state = 20}, - [2266] = {.lex_state = 20}, - [2267] = {.lex_state = 20}, - [2268] = {.lex_state = 20}, - [2269] = {.lex_state = 20}, - [2270] = {.lex_state = 20}, - [2271] = {.lex_state = 20}, - [2272] = {.lex_state = 20}, - [2273] = {.lex_state = 20}, - [2274] = {.lex_state = 20}, - [2275] = {.lex_state = 20}, - [2276] = {.lex_state = 20}, - [2277] = {.lex_state = 20}, - [2278] = {.lex_state = 20}, - [2279] = {.lex_state = 20}, - [2280] = {.lex_state = 136}, - [2281] = {.lex_state = 20}, - [2282] = {.lex_state = 20}, - [2283] = {.lex_state = 20}, - [2284] = {.lex_state = 20}, - [2285] = {.lex_state = 20}, - [2286] = {.lex_state = 20}, - [2287] = {.lex_state = 20}, - [2288] = {.lex_state = 20}, - [2289] = {.lex_state = 20}, - [2290] = {.lex_state = 20}, - [2291] = {.lex_state = 20}, - [2292] = {.lex_state = 20}, - [2293] = {.lex_state = 20}, - [2294] = {.lex_state = 136}, - [2295] = {.lex_state = 20}, - [2296] = {.lex_state = 20}, - [2297] = {.lex_state = 20}, - [2298] = {.lex_state = 20}, - [2299] = {.lex_state = 20}, - [2300] = {.lex_state = 20}, - [2301] = {.lex_state = 20}, - [2302] = {.lex_state = 20}, - [2303] = {.lex_state = 20}, - [2304] = {.lex_state = 20}, - [2305] = {.lex_state = 20}, - [2306] = {.lex_state = 20}, - [2307] = {.lex_state = 20}, - [2308] = {.lex_state = 20}, - [2309] = {.lex_state = 20}, - [2310] = {.lex_state = 20}, - [2311] = {.lex_state = 20}, - [2312] = {.lex_state = 20}, - [2313] = {.lex_state = 20}, - [2314] = {.lex_state = 20}, - [2315] = {.lex_state = 20}, - [2316] = {.lex_state = 110}, - [2317] = {.lex_state = 120}, - [2318] = {.lex_state = 20}, - [2319] = {.lex_state = 20}, - [2320] = {.lex_state = 20}, - [2321] = {.lex_state = 130}, - [2322] = {.lex_state = 20}, - [2323] = {.lex_state = 20}, - [2324] = {.lex_state = 20}, - [2325] = {.lex_state = 20}, - [2326] = {.lex_state = 130}, - [2327] = {.lex_state = 130}, - [2328] = {.lex_state = 20}, - [2329] = {.lex_state = 20}, - [2330] = {.lex_state = 20}, - [2331] = {.lex_state = 20}, - [2332] = {.lex_state = 136}, - [2333] = {.lex_state = 20}, - [2334] = {.lex_state = 120}, - [2335] = {.lex_state = 136}, - [2336] = {.lex_state = 107}, - [2337] = {.lex_state = 20}, - [2338] = {.lex_state = 107}, - [2339] = {.lex_state = 20}, - [2340] = {.lex_state = 33}, - [2341] = {.lex_state = 20}, - [2342] = {.lex_state = 130}, - [2343] = {.lex_state = 33}, - [2344] = {.lex_state = 130}, - [2345] = {.lex_state = 130}, - [2346] = {.lex_state = 33}, - [2347] = {.lex_state = 33}, - [2348] = {.lex_state = 130}, - [2349] = {.lex_state = 130}, - [2350] = {.lex_state = 130}, - [2351] = {.lex_state = 33}, - [2352] = {.lex_state = 130}, - [2353] = {.lex_state = 130}, - [2354] = {.lex_state = 130}, - [2355] = {.lex_state = 130}, - [2356] = {.lex_state = 130}, - [2357] = {.lex_state = 130}, - [2358] = {.lex_state = 130}, - [2359] = {.lex_state = 130}, - [2360] = {.lex_state = 33}, - [2361] = {.lex_state = 130}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 130}, - [2364] = {.lex_state = 130}, - [2365] = {.lex_state = 33}, - [2366] = {.lex_state = 130}, - [2367] = {.lex_state = 130}, - [2368] = {.lex_state = 130}, - [2369] = {.lex_state = 130}, - [2370] = {.lex_state = 130}, - [2371] = {.lex_state = 130}, - [2372] = {.lex_state = 130}, - [2373] = {.lex_state = 130}, - [2374] = {.lex_state = 130}, - [2375] = {.lex_state = 130}, - [2376] = {.lex_state = 130}, - [2377] = {.lex_state = 130}, - [2378] = {.lex_state = 130}, - [2379] = {.lex_state = 130}, - [2380] = {.lex_state = 130}, - [2381] = {.lex_state = 130}, - [2382] = {.lex_state = 130}, - [2383] = {.lex_state = 130}, - [2384] = {.lex_state = 130}, - [2385] = {.lex_state = 130}, - [2386] = {.lex_state = 130}, - [2387] = {.lex_state = 130}, - [2388] = {.lex_state = 130}, - [2389] = {.lex_state = 130}, - [2390] = {.lex_state = 130}, - [2391] = {.lex_state = 130}, - [2392] = {.lex_state = 130}, - [2393] = {.lex_state = 130}, - [2394] = {.lex_state = 130}, - [2395] = {.lex_state = 130}, - [2396] = {.lex_state = 27}, - [2397] = {.lex_state = 33}, - [2398] = {.lex_state = 130}, - [2399] = {.lex_state = 130}, - [2400] = {.lex_state = 130}, - [2401] = {.lex_state = 130}, - [2402] = {.lex_state = 33}, - [2403] = {.lex_state = 130}, - [2404] = {.lex_state = 33}, - [2405] = {.lex_state = 33}, - [2406] = {.lex_state = 33}, - [2407] = {.lex_state = 130}, - [2408] = {.lex_state = 33}, - [2409] = {.lex_state = 33}, - [2410] = {.lex_state = 130}, - [2411] = {.lex_state = 130}, - [2412] = {.lex_state = 130}, - [2413] = {.lex_state = 130}, - [2414] = {.lex_state = 130}, - [2415] = {.lex_state = 130}, - [2416] = {.lex_state = 130}, - [2417] = {.lex_state = 130}, - [2418] = {.lex_state = 130}, - [2419] = {.lex_state = 130}, - [2420] = {.lex_state = 130}, - [2421] = {.lex_state = 130}, - [2422] = {.lex_state = 130}, - [2423] = {.lex_state = 130}, - [2424] = {.lex_state = 130}, - [2425] = {.lex_state = 130}, - [2426] = {.lex_state = 130}, - [2427] = {.lex_state = 130}, - [2428] = {.lex_state = 130}, - [2429] = {.lex_state = 130}, - [2430] = {.lex_state = 130}, - [2431] = {.lex_state = 130}, - [2432] = {.lex_state = 130}, - [2433] = {.lex_state = 130}, - [2434] = {.lex_state = 130}, - [2435] = {.lex_state = 130}, - [2436] = {.lex_state = 130}, - [2437] = {.lex_state = 130}, - [2438] = {.lex_state = 130}, - [2439] = {.lex_state = 130}, - [2440] = {.lex_state = 33}, - [2441] = {.lex_state = 130}, - [2442] = {.lex_state = 33}, - [2443] = {.lex_state = 130}, - [2444] = {.lex_state = 130}, - [2445] = {.lex_state = 130}, - [2446] = {.lex_state = 130}, - [2447] = {.lex_state = 130}, - [2448] = {.lex_state = 130}, - [2449] = {.lex_state = 130}, - [2450] = {.lex_state = 130}, - [2451] = {.lex_state = 130}, - [2452] = {.lex_state = 130}, - [2453] = {.lex_state = 130}, - [2454] = {.lex_state = 130}, - [2455] = {.lex_state = 130}, - [2456] = {.lex_state = 130}, - [2457] = {.lex_state = 130}, - [2458] = {.lex_state = 130}, - [2459] = {.lex_state = 130}, - [2460] = {.lex_state = 130}, - [2461] = {.lex_state = 20}, - [2462] = {.lex_state = 20}, - [2463] = {.lex_state = 33}, - [2464] = {.lex_state = 130}, - [2465] = {.lex_state = 130}, - [2466] = {.lex_state = 130}, - [2467] = {.lex_state = 130}, - [2468] = {.lex_state = 130}, - [2469] = {.lex_state = 130}, - [2470] = {.lex_state = 130}, - [2471] = {.lex_state = 33}, - [2472] = {.lex_state = 33}, - [2473] = {.lex_state = 33}, - [2474] = {.lex_state = 33}, - [2475] = {.lex_state = 130}, - [2476] = {.lex_state = 130}, - [2477] = {.lex_state = 130}, - [2478] = {.lex_state = 33}, - [2479] = {.lex_state = 33}, - [2480] = {.lex_state = 130}, - [2481] = {.lex_state = 132}, - [2482] = {.lex_state = 33}, - [2483] = {.lex_state = 132}, - [2484] = {.lex_state = 132}, - [2485] = {.lex_state = 132}, - [2486] = {.lex_state = 132}, - [2487] = {.lex_state = 132}, - [2488] = {.lex_state = 132}, - [2489] = {.lex_state = 132}, - [2490] = {.lex_state = 33}, - [2491] = {.lex_state = 33}, - [2492] = {.lex_state = 33}, - [2493] = {.lex_state = 33}, - [2494] = {.lex_state = 36}, - [2495] = {.lex_state = 130}, - [2496] = {.lex_state = 38}, - [2497] = {.lex_state = 38}, - [2498] = {.lex_state = 38}, - [2499] = {.lex_state = 130}, - [2500] = {.lex_state = 130}, - [2501] = {.lex_state = 33}, - [2502] = {.lex_state = 33}, - [2503] = {.lex_state = 130}, - [2504] = {.lex_state = 130}, - [2505] = {.lex_state = 130}, - [2506] = {.lex_state = 130}, - [2507] = {.lex_state = 130}, - [2508] = {.lex_state = 130}, - [2509] = {.lex_state = 132}, - [2510] = {.lex_state = 33}, - [2511] = {.lex_state = 33}, - [2512] = {.lex_state = 130}, - [2513] = {.lex_state = 132}, - [2514] = {.lex_state = 130}, - [2515] = {.lex_state = 33}, - [2516] = {.lex_state = 132}, - [2517] = {.lex_state = 132}, - [2518] = {.lex_state = 33}, - [2519] = {.lex_state = 122}, - [2520] = {.lex_state = 33}, - [2521] = {.lex_state = 112}, - [2522] = {.lex_state = 33}, - [2523] = {.lex_state = 33}, - [2524] = {.lex_state = 33}, - [2525] = {.lex_state = 33}, - [2526] = {.lex_state = 33}, - [2527] = {.lex_state = 33}, - [2528] = {.lex_state = 33}, - [2529] = {.lex_state = 33}, - [2530] = {.lex_state = 33}, - [2531] = {.lex_state = 33}, - [2532] = {.lex_state = 33}, - [2533] = {.lex_state = 33}, - [2534] = {.lex_state = 33}, - [2535] = {.lex_state = 33}, - [2536] = {.lex_state = 33}, - [2537] = {.lex_state = 112}, - [2538] = {.lex_state = 33}, - [2539] = {.lex_state = 33}, - [2540] = {.lex_state = 33}, - [2541] = {.lex_state = 33}, - [2542] = {.lex_state = 33}, - [2543] = {.lex_state = 33}, - [2544] = {.lex_state = 132}, - [2545] = {.lex_state = 33}, - [2546] = {.lex_state = 33}, - [2547] = {.lex_state = 33}, - [2548] = {.lex_state = 33}, - [2549] = {.lex_state = 130}, - [2550] = {.lex_state = 33}, - [2551] = {.lex_state = 33}, - [2552] = {.lex_state = 33}, - [2553] = {.lex_state = 130}, - [2554] = {.lex_state = 33}, - [2555] = {.lex_state = 33}, - [2556] = {.lex_state = 130}, - [2557] = {.lex_state = 130}, - [2558] = {.lex_state = 33}, - [2559] = {.lex_state = 33}, - [2560] = {.lex_state = 33}, - [2561] = {.lex_state = 33}, - [2562] = {.lex_state = 130}, - [2563] = {.lex_state = 33}, - [2564] = {.lex_state = 33}, - [2565] = {.lex_state = 33}, - [2566] = {.lex_state = 33}, - [2567] = {.lex_state = 33}, - [2568] = {.lex_state = 33}, - [2569] = {.lex_state = 33}, - [2570] = {.lex_state = 33}, - [2571] = {.lex_state = 33}, - [2572] = {.lex_state = 130}, - [2573] = {.lex_state = 33}, - [2574] = {.lex_state = 33}, - [2575] = {.lex_state = 33}, - [2576] = {.lex_state = 33}, - [2577] = {.lex_state = 130}, - [2578] = {.lex_state = 130}, - [2579] = {.lex_state = 33}, - [2580] = {.lex_state = 33}, - [2581] = {.lex_state = 33}, - [2582] = {.lex_state = 33}, - [2583] = {.lex_state = 33}, - [2584] = {.lex_state = 33}, - [2585] = {.lex_state = 33}, - [2586] = {.lex_state = 33}, - [2587] = {.lex_state = 33}, - [2588] = {.lex_state = 33}, - [2589] = {.lex_state = 33}, - [2590] = {.lex_state = 33}, - [2591] = {.lex_state = 33}, - [2592] = {.lex_state = 132}, - [2593] = {.lex_state = 33}, - [2594] = {.lex_state = 33}, - [2595] = {.lex_state = 33}, - [2596] = {.lex_state = 33}, - [2597] = {.lex_state = 132}, - [2598] = {.lex_state = 132}, - [2599] = {.lex_state = 33}, - [2600] = {.lex_state = 33}, - [2601] = {.lex_state = 132}, - [2602] = {.lex_state = 122}, - [2603] = {.lex_state = 33}, - [2604] = {.lex_state = 130}, - [2605] = {.lex_state = 33}, - [2606] = {.lex_state = 33}, - [2607] = {.lex_state = 33}, - [2608] = {.lex_state = 33}, - [2609] = {.lex_state = 33}, - [2610] = {.lex_state = 33}, - [2611] = {.lex_state = 33}, - [2612] = {.lex_state = 132}, - [2613] = {.lex_state = 33}, - [2614] = {.lex_state = 33}, - [2615] = {.lex_state = 33}, - [2616] = {.lex_state = 33}, - [2617] = {.lex_state = 130}, - [2618] = {.lex_state = 33}, - [2619] = {.lex_state = 130}, - [2620] = {.lex_state = 33}, - [2621] = {.lex_state = 33}, - [2622] = {.lex_state = 33}, - [2623] = {.lex_state = 33}, - [2624] = {.lex_state = 33}, - [2625] = {.lex_state = 132}, - [2626] = {.lex_state = 33}, - [2627] = {.lex_state = 33}, - [2628] = {.lex_state = 33}, - [2629] = {.lex_state = 132}, - [2630] = {.lex_state = 33}, - [2631] = {.lex_state = 132}, - [2632] = {.lex_state = 130}, - [2633] = {.lex_state = 132}, - [2634] = {.lex_state = 130}, - [2635] = {.lex_state = 132}, - [2636] = {.lex_state = 33}, - [2637] = {.lex_state = 33}, - [2638] = {.lex_state = 33}, - [2639] = {.lex_state = 130}, - [2640] = {.lex_state = 130}, - [2641] = {.lex_state = 130}, - [2642] = {.lex_state = 130}, - [2643] = {.lex_state = 130}, - [2644] = {.lex_state = 130}, - [2645] = {.lex_state = 33}, - [2646] = {.lex_state = 33}, - [2647] = {.lex_state = 33}, - [2648] = {.lex_state = 33}, - [2649] = {.lex_state = 33}, - [2650] = {.lex_state = 33}, - [2651] = {.lex_state = 33}, - [2652] = {.lex_state = 33}, - [2653] = {.lex_state = 130}, - [2654] = {.lex_state = 130}, - [2655] = {.lex_state = 130}, - [2656] = {.lex_state = 130}, - [2657] = {.lex_state = 130}, - [2658] = {.lex_state = 130}, - [2659] = {.lex_state = 132}, - [2660] = {.lex_state = 130}, - [2661] = {.lex_state = 132}, - [2662] = {.lex_state = 130}, - [2663] = {.lex_state = 130}, - [2664] = {.lex_state = 130}, - [2665] = {.lex_state = 132}, - [2666] = {.lex_state = 130}, - [2667] = {.lex_state = 132}, - [2668] = {.lex_state = 130}, - [2669] = {.lex_state = 130}, - [2670] = {.lex_state = 132}, - [2671] = {.lex_state = 130}, - [2672] = {.lex_state = 130}, - [2673] = {.lex_state = 130}, - [2674] = {.lex_state = 130}, - [2675] = {.lex_state = 130}, - [2676] = {.lex_state = 130}, - [2677] = {.lex_state = 130}, - [2678] = {.lex_state = 130}, - [2679] = {.lex_state = 130}, - [2680] = {.lex_state = 130}, - [2681] = {.lex_state = 130}, - [2682] = {.lex_state = 130}, - [2683] = {.lex_state = 130}, - [2684] = {.lex_state = 130}, - [2685] = {.lex_state = 134}, - [2686] = {.lex_state = 130}, - [2687] = {.lex_state = 130}, - [2688] = {.lex_state = 130}, - [2689] = {.lex_state = 130}, - [2690] = {.lex_state = 130}, - [2691] = {.lex_state = 132}, - [2692] = {.lex_state = 132}, - [2693] = {.lex_state = 130}, - [2694] = {.lex_state = 130}, - [2695] = {.lex_state = 132}, - [2696] = {.lex_state = 130}, - [2697] = {.lex_state = 130}, - [2698] = {.lex_state = 124}, - [2699] = {.lex_state = 130}, - [2700] = {.lex_state = 130}, - [2701] = {.lex_state = 130}, - [2702] = {.lex_state = 140}, - [2703] = {.lex_state = 130}, - [2704] = {.lex_state = 130}, - [2705] = {.lex_state = 134}, - [2706] = {.lex_state = 132}, - [2707] = {.lex_state = 132}, - [2708] = {.lex_state = 140}, - [2709] = {.lex_state = 132}, - [2710] = {.lex_state = 130}, - [2711] = {.lex_state = 130}, - [2712] = {.lex_state = 132}, - [2713] = {.lex_state = 132}, - [2714] = {.lex_state = 130}, - [2715] = {.lex_state = 130}, - [2716] = {.lex_state = 132}, - [2717] = {.lex_state = 132}, - [2718] = {.lex_state = 132}, - [2719] = {.lex_state = 132}, - [2720] = {.lex_state = 132}, - [2721] = {.lex_state = 140}, - [2722] = {.lex_state = 130}, - [2723] = {.lex_state = 130}, - [2724] = {.lex_state = 132}, - [2725] = {.lex_state = 132}, - [2726] = {.lex_state = 140}, - [2727] = {.lex_state = 140}, - [2728] = {.lex_state = 130}, - [2729] = {.lex_state = 132}, - [2730] = {.lex_state = 132}, - [2731] = {.lex_state = 132}, - [2732] = {.lex_state = 132}, - [2733] = {.lex_state = 132}, - [2734] = {.lex_state = 132}, - [2735] = {.lex_state = 130}, - [2736] = {.lex_state = 132}, - [2737] = {.lex_state = 132}, - [2738] = {.lex_state = 140}, - [2739] = {.lex_state = 130}, - [2740] = {.lex_state = 114}, - [2741] = {.lex_state = 114}, - [2742] = {.lex_state = 132}, - [2743] = {.lex_state = 132}, - [2744] = {.lex_state = 132}, - [2745] = {.lex_state = 132}, - [2746] = {.lex_state = 130}, - [2747] = {.lex_state = 130}, - [2748] = {.lex_state = 130}, - [2749] = {.lex_state = 132}, - [2750] = {.lex_state = 130}, - [2751] = {.lex_state = 130}, - [2752] = {.lex_state = 140}, - [2753] = {.lex_state = 132}, - [2754] = {.lex_state = 132}, - [2755] = {.lex_state = 140}, - [2756] = {.lex_state = 130}, - [2757] = {.lex_state = 132}, - [2758] = {.lex_state = 132}, - [2759] = {.lex_state = 132}, - [2760] = {.lex_state = 132}, - [2761] = {.lex_state = 132}, - [2762] = {.lex_state = 140}, - [2763] = {.lex_state = 140}, - [2764] = {.lex_state = 132}, - [2765] = {.lex_state = 130}, - [2766] = {.lex_state = 132}, - [2767] = {.lex_state = 132}, - [2768] = {.lex_state = 132}, - [2769] = {.lex_state = 132}, - [2770] = {.lex_state = 132}, - [2771] = {.lex_state = 130}, - [2772] = {.lex_state = 132}, - [2773] = {.lex_state = 130}, - [2774] = {.lex_state = 132}, - [2775] = {.lex_state = 130}, - [2776] = {.lex_state = 130}, - [2777] = {.lex_state = 140}, - [2778] = {.lex_state = 132}, - [2779] = {.lex_state = 132}, - [2780] = {.lex_state = 132}, - [2781] = {.lex_state = 132}, - [2782] = {.lex_state = 130}, - [2783] = {.lex_state = 130}, - [2784] = {.lex_state = 132}, - [2785] = {.lex_state = 132}, - [2786] = {.lex_state = 132}, - [2787] = {.lex_state = 132}, - [2788] = {.lex_state = 132}, - [2789] = {.lex_state = 130}, - [2790] = {.lex_state = 140}, - [2791] = {.lex_state = 132}, - [2792] = {.lex_state = 130}, - [2793] = {.lex_state = 140}, - [2794] = {.lex_state = 132}, - [2795] = {.lex_state = 130}, - [2796] = {.lex_state = 130}, - [2797] = {.lex_state = 132}, - [2798] = {.lex_state = 132}, - [2799] = {.lex_state = 130}, - [2800] = {.lex_state = 130}, - [2801] = {.lex_state = 132}, - [2802] = {.lex_state = 132}, - [2803] = {.lex_state = 130}, - [2804] = {.lex_state = 132}, - [2805] = {.lex_state = 130}, - [2806] = {.lex_state = 134}, - [2807] = {.lex_state = 130}, - [2808] = {.lex_state = 130}, - [2809] = {.lex_state = 132}, - [2810] = {.lex_state = 130}, - [2811] = {.lex_state = 130}, - [2812] = {.lex_state = 130}, - [2813] = {.lex_state = 132}, - [2814] = {.lex_state = 132}, - [2815] = {.lex_state = 132}, - [2816] = {.lex_state = 134}, - [2817] = {.lex_state = 132}, - [2818] = {.lex_state = 132}, - [2819] = {.lex_state = 140}, - [2820] = {.lex_state = 130}, - [2821] = {.lex_state = 130}, - [2822] = {.lex_state = 132}, - [2823] = {.lex_state = 130}, - [2824] = {.lex_state = 132}, - [2825] = {.lex_state = 132}, - [2826] = {.lex_state = 130}, - [2827] = {.lex_state = 132}, - [2828] = {.lex_state = 132}, - [2829] = {.lex_state = 132}, - [2830] = {.lex_state = 132}, - [2831] = {.lex_state = 130}, - [2832] = {.lex_state = 132}, - [2833] = {.lex_state = 130}, - [2834] = {.lex_state = 132}, - [2835] = {.lex_state = 132}, - [2836] = {.lex_state = 132}, - [2837] = {.lex_state = 132}, - [2838] = {.lex_state = 132}, - [2839] = {.lex_state = 132}, - [2840] = {.lex_state = 130}, - [2841] = {.lex_state = 130}, - [2842] = {.lex_state = 132}, - [2843] = {.lex_state = 132}, - [2844] = {.lex_state = 140}, - [2845] = {.lex_state = 132}, - [2846] = {.lex_state = 140}, - [2847] = {.lex_state = 132}, - [2848] = {.lex_state = 132}, - [2849] = {.lex_state = 132}, - [2850] = {.lex_state = 130}, - [2851] = {.lex_state = 132}, - [2852] = {.lex_state = 132}, - [2853] = {.lex_state = 132}, - [2854] = {.lex_state = 132}, - [2855] = {.lex_state = 132}, - [2856] = {.lex_state = 130}, - [2857] = {.lex_state = 130}, - [2858] = {.lex_state = 132}, - [2859] = {.lex_state = 130}, - [2860] = {.lex_state = 132}, - [2861] = {.lex_state = 132}, - [2862] = {.lex_state = 132}, - [2863] = {.lex_state = 130}, - [2864] = {.lex_state = 130}, - [2865] = {.lex_state = 130}, - [2866] = {.lex_state = 130}, - [2867] = {.lex_state = 130}, - [2868] = {.lex_state = 130}, - [2869] = {.lex_state = 130}, - [2870] = {.lex_state = 132}, - [2871] = {.lex_state = 132}, - [2872] = {.lex_state = 132}, - [2873] = {.lex_state = 132}, - [2874] = {.lex_state = 132}, - [2875] = {.lex_state = 132}, - [2876] = {.lex_state = 124}, - [2877] = {.lex_state = 130}, - [2878] = {.lex_state = 132}, - [2879] = {.lex_state = 130}, - [2880] = {.lex_state = 132}, - [2881] = {.lex_state = 132}, - [2882] = {.lex_state = 130}, - [2883] = {.lex_state = 130}, - [2884] = {.lex_state = 130}, - [2885] = {.lex_state = 130}, - [2886] = {.lex_state = 130}, - [2887] = {.lex_state = 130}, - [2888] = {.lex_state = 130}, - [2889] = {.lex_state = 130}, - [2890] = {.lex_state = 130}, - [2891] = {.lex_state = 130}, - [2892] = {.lex_state = 130}, - [2893] = {.lex_state = 130}, - [2894] = {.lex_state = 130}, - [2895] = {.lex_state = 130}, - [2896] = {.lex_state = 134}, - [2897] = {.lex_state = 134}, - [2898] = {.lex_state = 130}, - [2899] = {.lex_state = 138}, - [2900] = {.lex_state = 130}, - [2901] = {.lex_state = 130}, - [2902] = {.lex_state = 130}, - [2903] = {.lex_state = 130}, - [2904] = {.lex_state = 138}, - [2905] = {.lex_state = 130}, - [2906] = {.lex_state = 130}, - [2907] = {.lex_state = 130}, - [2908] = {.lex_state = 138}, - [2909] = {.lex_state = 138}, - [2910] = {.lex_state = 134}, - [2911] = {.lex_state = 134}, - [2912] = {.lex_state = 140}, - [2913] = {.lex_state = 134}, - [2914] = {.lex_state = 134}, - [2915] = {.lex_state = 130}, - [2916] = {.lex_state = 130}, - [2917] = {.lex_state = 130}, - [2918] = {.lex_state = 134}, - [2919] = {.lex_state = 130}, - [2920] = {.lex_state = 134}, - [2921] = {.lex_state = 134}, - [2922] = {.lex_state = 134}, - [2923] = {.lex_state = 134}, - [2924] = {.lex_state = 130}, - [2925] = {.lex_state = 134}, - [2926] = {.lex_state = 134}, - [2927] = {.lex_state = 38}, - [2928] = {.lex_state = 134}, - [2929] = {.lex_state = 130}, - [2930] = {.lex_state = 130}, - [2931] = {.lex_state = 38}, - [2932] = {.lex_state = 134}, - [2933] = {.lex_state = 134}, - [2934] = {.lex_state = 134}, - [2935] = {.lex_state = 130}, - [2936] = {.lex_state = 140}, - [2937] = {.lex_state = 134}, - [2938] = {.lex_state = 134}, - [2939] = {.lex_state = 134}, - [2940] = {.lex_state = 130}, - [2941] = {.lex_state = 134}, - [2942] = {.lex_state = 134}, - [2943] = {.lex_state = 38}, - [2944] = {.lex_state = 134}, - [2945] = {.lex_state = 134}, - [2946] = {.lex_state = 130}, - [2947] = {.lex_state = 130}, - [2948] = {.lex_state = 130}, - [2949] = {.lex_state = 134}, - [2950] = {.lex_state = 134}, - [2951] = {.lex_state = 140}, - [2952] = {.lex_state = 134}, - [2953] = {.lex_state = 134}, - [2954] = {.lex_state = 140}, - [2955] = {.lex_state = 130}, - [2956] = {.lex_state = 134}, - [2957] = {.lex_state = 134}, - [2958] = {.lex_state = 130}, - [2959] = {.lex_state = 134}, - [2960] = {.lex_state = 130}, - [2961] = {.lex_state = 130}, - [2962] = {.lex_state = 130}, - [2963] = {.lex_state = 130}, - [2964] = {.lex_state = 130}, - [2965] = {.lex_state = 130}, - [2966] = {.lex_state = 130}, - [2967] = {.lex_state = 130}, - [2968] = {.lex_state = 130}, - [2969] = {.lex_state = 130}, - [2970] = {.lex_state = 130}, - [2971] = {.lex_state = 130}, - [2972] = {.lex_state = 130}, - [2973] = {.lex_state = 130}, - [2974] = {.lex_state = 130}, - [2975] = {.lex_state = 130}, - [2976] = {.lex_state = 130}, - [2977] = {.lex_state = 130}, - [2978] = {.lex_state = 130}, - [2979] = {.lex_state = 130}, - [2980] = {.lex_state = 130}, - [2981] = {.lex_state = 130}, - [2982] = {.lex_state = 130}, - [2983] = {.lex_state = 130}, - [2984] = {.lex_state = 130}, - [2985] = {.lex_state = 130}, - [2986] = {.lex_state = 130}, - [2987] = {.lex_state = 130}, - [2988] = {.lex_state = 130}, - [2989] = {.lex_state = 130}, - [2990] = {.lex_state = 130}, - [2991] = {.lex_state = 130}, - [2992] = {.lex_state = 130}, - [2993] = {.lex_state = 130}, - [2994] = {.lex_state = 130}, - [2995] = {.lex_state = 130}, - [2996] = {.lex_state = 130}, - [2997] = {.lex_state = 130}, - [2998] = {.lex_state = 130}, - [2999] = {.lex_state = 130}, - [3000] = {.lex_state = 130}, - [3001] = {.lex_state = 130}, - [3002] = {.lex_state = 130}, - [3003] = {.lex_state = 130}, - [3004] = {.lex_state = 130}, - [3005] = {.lex_state = 130}, - [3006] = {.lex_state = 130}, - [3007] = {.lex_state = 130}, - [3008] = {.lex_state = 130}, - [3009] = {.lex_state = 130}, - [3010] = {.lex_state = 130}, - [3011] = {.lex_state = 130}, - [3012] = {.lex_state = 130}, - [3013] = {.lex_state = 130}, - [3014] = {.lex_state = 130}, - [3015] = {.lex_state = 130}, - [3016] = {.lex_state = 130}, - [3017] = {.lex_state = 130}, - [3018] = {.lex_state = 130}, - [3019] = {.lex_state = 130}, - [3020] = {.lex_state = 130}, - [3021] = {.lex_state = 130}, - [3022] = {.lex_state = 130}, - [3023] = {.lex_state = 130}, - [3024] = {.lex_state = 130}, - [3025] = {.lex_state = 130}, - [3026] = {.lex_state = 130}, - [3027] = {.lex_state = 130}, - [3028] = {.lex_state = 130}, - [3029] = {.lex_state = 130}, - [3030] = {.lex_state = 130}, - [3031] = {.lex_state = 130}, - [3032] = {.lex_state = 130}, - [3033] = {.lex_state = 130}, - [3034] = {.lex_state = 130}, - [3035] = {.lex_state = 140}, - [3036] = {.lex_state = 140}, - [3037] = {.lex_state = 140}, - [3038] = {.lex_state = 140}, - [3039] = {.lex_state = 140}, - [3040] = {.lex_state = 140}, - [3041] = {.lex_state = 140}, - [3042] = {.lex_state = 140}, - [3043] = {.lex_state = 140}, - [3044] = {.lex_state = 140}, - [3045] = {.lex_state = 140}, - [3046] = {.lex_state = 140}, - [3047] = {.lex_state = 140}, - [3048] = {.lex_state = 140}, - [3049] = {.lex_state = 140}, - [3050] = {.lex_state = 140}, - [3051] = {.lex_state = 140}, - [3052] = {.lex_state = 140}, - [3053] = {.lex_state = 140}, - [3054] = {.lex_state = 140}, - [3055] = {.lex_state = 140}, - [3056] = {.lex_state = 140}, - [3057] = {.lex_state = 140}, - [3058] = {.lex_state = 140}, - [3059] = {.lex_state = 140}, - [3060] = {.lex_state = 140}, - [3061] = {.lex_state = 140}, - [3062] = {.lex_state = 140}, - [3063] = {.lex_state = 140}, - [3064] = {.lex_state = 140}, - [3065] = {.lex_state = 140}, - [3066] = {.lex_state = 140}, - [3067] = {.lex_state = 140}, - [3068] = {.lex_state = 140}, - [3069] = {.lex_state = 140}, - [3070] = {.lex_state = 140}, - [3071] = {.lex_state = 140}, - [3072] = {.lex_state = 140}, - [3073] = {.lex_state = 140}, - [3074] = {.lex_state = 140}, - [3075] = {.lex_state = 140}, - [3076] = {.lex_state = 140}, - [3077] = {.lex_state = 140}, - [3078] = {.lex_state = 140}, - [3079] = {.lex_state = 140}, - [3080] = {.lex_state = 140}, - [3081] = {.lex_state = 140}, - [3082] = {.lex_state = 140}, - [3083] = {.lex_state = 140}, - [3084] = {.lex_state = 140}, - [3085] = {.lex_state = 140}, - [3086] = {.lex_state = 140}, - [3087] = {.lex_state = 140}, - [3088] = {.lex_state = 140}, - [3089] = {.lex_state = 140}, - [3090] = {.lex_state = 140}, - [3091] = {.lex_state = 140}, - [3092] = {.lex_state = 140}, - [3093] = {.lex_state = 140}, - [3094] = {.lex_state = 140}, - [3095] = {.lex_state = 140}, - [3096] = {.lex_state = 140}, - [3097] = {.lex_state = 140}, - [3098] = {.lex_state = 140}, - [3099] = {.lex_state = 140}, - [3100] = {.lex_state = 140}, - [3101] = {.lex_state = 140}, - [3102] = {.lex_state = 140}, - [3103] = {.lex_state = 140}, - [3104] = {.lex_state = 140}, - [3105] = {.lex_state = 140}, - [3106] = {.lex_state = 140}, - [3107] = {.lex_state = 140}, - [3108] = {.lex_state = 140}, - [3109] = {.lex_state = 140}, - [3110] = {.lex_state = 140}, - [3111] = {.lex_state = 140}, - [3112] = {.lex_state = 140}, - [3113] = {.lex_state = 140}, - [3114] = {.lex_state = 140}, - [3115] = {.lex_state = 140}, - [3116] = {.lex_state = 140}, - [3117] = {.lex_state = 140}, - [3118] = {.lex_state = 140}, - [3119] = {.lex_state = 140}, - [3120] = {.lex_state = 140}, - [3121] = {.lex_state = 140}, - [3122] = {.lex_state = 140}, - [3123] = {.lex_state = 140}, - [3124] = {.lex_state = 140}, - [3125] = {.lex_state = 140}, - [3126] = {.lex_state = 140}, - [3127] = {.lex_state = 140}, - [3128] = {.lex_state = 140}, - [3129] = {.lex_state = 140}, - [3130] = {.lex_state = 140}, - [3131] = {.lex_state = 140}, - [3132] = {.lex_state = 140}, - [3133] = {.lex_state = 140}, - [3134] = {.lex_state = 140}, - [3135] = {.lex_state = 140}, - [3136] = {.lex_state = 140}, - [3137] = {.lex_state = 140}, - [3138] = {.lex_state = 140}, - [3139] = {.lex_state = 140}, - [3140] = {.lex_state = 140}, - [3141] = {.lex_state = 140}, - [3142] = {.lex_state = 140}, - [3143] = {.lex_state = 140}, - [3144] = {.lex_state = 140}, - [3145] = {.lex_state = 140}, - [3146] = {.lex_state = 140}, - [3147] = {.lex_state = 140}, - [3148] = {.lex_state = 140}, - [3149] = {.lex_state = 140}, - [3150] = {.lex_state = 140}, - [3151] = {.lex_state = 140}, - [3152] = {.lex_state = 140}, - [3153] = {.lex_state = 140}, - [3154] = {.lex_state = 140}, - [3155] = {.lex_state = 140}, - [3156] = {.lex_state = 140}, - [3157] = {.lex_state = 140}, - [3158] = {.lex_state = 140}, - [3159] = {.lex_state = 140}, - [3160] = {.lex_state = 140}, - [3161] = {.lex_state = 140}, - [3162] = {.lex_state = 140}, - [3163] = {.lex_state = 140}, - [3164] = {.lex_state = 140}, - [3165] = {.lex_state = 140}, - [3166] = {.lex_state = 140}, - [3167] = {.lex_state = 140}, - [3168] = {.lex_state = 140}, - [3169] = {.lex_state = 140}, - [3170] = {.lex_state = 140}, - [3171] = {.lex_state = 140}, - [3172] = {.lex_state = 140}, - [3173] = {.lex_state = 140}, - [3174] = {.lex_state = 140}, - [3175] = {.lex_state = 140}, - [3176] = {.lex_state = 140}, - [3177] = {.lex_state = 140}, - [3178] = {.lex_state = 140}, - [3179] = {.lex_state = 140}, - [3180] = {.lex_state = 140}, - [3181] = {.lex_state = 140}, - [3182] = {.lex_state = 140}, - [3183] = {.lex_state = 140}, - [3184] = {.lex_state = 140}, - [3185] = {.lex_state = 140}, - [3186] = {.lex_state = 140}, - [3187] = {.lex_state = 140}, - [3188] = {.lex_state = 140}, - [3189] = {.lex_state = 140}, - [3190] = {.lex_state = 140}, - [3191] = {.lex_state = 140}, - [3192] = {.lex_state = 140}, - [3193] = {.lex_state = 140}, - [3194] = {.lex_state = 140}, - [3195] = {.lex_state = 140}, - [3196] = {.lex_state = 140}, - [3197] = {.lex_state = 140}, - [3198] = {.lex_state = 140}, - [3199] = {.lex_state = 140}, - [3200] = {.lex_state = 140}, - [3201] = {.lex_state = 140}, - [3202] = {.lex_state = 140}, - [3203] = {.lex_state = 140}, - [3204] = {.lex_state = 140}, - [3205] = {.lex_state = 140}, - [3206] = {.lex_state = 140}, - [3207] = {.lex_state = 140}, - [3208] = {.lex_state = 140}, - [3209] = {.lex_state = 140}, - [3210] = {.lex_state = 140}, - [3211] = {.lex_state = 140}, - [3212] = {.lex_state = 140}, - [3213] = {.lex_state = 140}, - [3214] = {.lex_state = 140}, - [3215] = {.lex_state = 140}, - [3216] = {.lex_state = 140}, - [3217] = {.lex_state = 140}, - [3218] = {.lex_state = 140}, - [3219] = {.lex_state = 140}, - [3220] = {.lex_state = 140}, - [3221] = {.lex_state = 140}, - [3222] = {.lex_state = 140}, - [3223] = {.lex_state = 140}, - [3224] = {.lex_state = 140}, - [3225] = {.lex_state = 140}, - [3226] = {.lex_state = 140}, - [3227] = {.lex_state = 140}, - [3228] = {.lex_state = 140}, - [3229] = {.lex_state = 140}, - [3230] = {.lex_state = 140}, - [3231] = {.lex_state = 140}, - [3232] = {.lex_state = 140}, - [3233] = {.lex_state = 140}, - [3234] = {.lex_state = 140}, - [3235] = {.lex_state = 140}, - [3236] = {.lex_state = 140}, - [3237] = {.lex_state = 140}, - [3238] = {.lex_state = 140}, - [3239] = {.lex_state = 140}, - [3240] = {.lex_state = 140}, - [3241] = {.lex_state = 140}, - [3242] = {.lex_state = 140}, - [3243] = {.lex_state = 140}, - [3244] = {.lex_state = 140}, - [3245] = {.lex_state = 140}, - [3246] = {.lex_state = 140}, - [3247] = {.lex_state = 140}, - [3248] = {.lex_state = 140}, - [3249] = {.lex_state = 140}, - [3250] = {.lex_state = 140}, - [3251] = {.lex_state = 140}, - [3252] = {.lex_state = 140}, - [3253] = {.lex_state = 140}, - [3254] = {.lex_state = 140}, - [3255] = {.lex_state = 140}, - [3256] = {.lex_state = 140}, - [3257] = {.lex_state = 140}, - [3258] = {.lex_state = 140}, - [3259] = {.lex_state = 140}, - [3260] = {.lex_state = 140}, - [3261] = {.lex_state = 140}, - [3262] = {.lex_state = 140}, - [3263] = {.lex_state = 140}, - [3264] = {.lex_state = 140}, - [3265] = {.lex_state = 140}, - [3266] = {.lex_state = 140}, - [3267] = {.lex_state = 140}, - [3268] = {.lex_state = 140}, - [3269] = {.lex_state = 140}, - [3270] = {.lex_state = 140}, - [3271] = {.lex_state = 140}, - [3272] = {.lex_state = 140}, - [3273] = {.lex_state = 140}, - [3274] = {.lex_state = 140}, - [3275] = {.lex_state = 140}, - [3276] = {.lex_state = 140}, - [3277] = {.lex_state = 140}, - [3278] = {.lex_state = 140}, - [3279] = {.lex_state = 140}, - [3280] = {.lex_state = 140}, - [3281] = {.lex_state = 140}, - [3282] = {.lex_state = 140}, - [3283] = {.lex_state = 140}, - [3284] = {.lex_state = 140}, - [3285] = {.lex_state = 140}, - [3286] = {.lex_state = 140}, - [3287] = {.lex_state = 140}, - [3288] = {.lex_state = 140}, - [3289] = {.lex_state = 140}, - [3290] = {.lex_state = 140}, - [3291] = {.lex_state = 140}, - [3292] = {.lex_state = 140}, - [3293] = {.lex_state = 140}, - [3294] = {.lex_state = 140}, - [3295] = {.lex_state = 140}, - [3296] = {.lex_state = 140}, - [3297] = {.lex_state = 140}, - [3298] = {.lex_state = 140}, - [3299] = {.lex_state = 140}, - [3300] = {.lex_state = 140}, - [3301] = {.lex_state = 140}, - [3302] = {.lex_state = 140}, - [3303] = {.lex_state = 140}, - [3304] = {.lex_state = 140}, - [3305] = {.lex_state = 140}, - [3306] = {.lex_state = 140}, - [3307] = {.lex_state = 140}, - [3308] = {.lex_state = 140}, - [3309] = {.lex_state = 140}, - [3310] = {.lex_state = 140}, - [3311] = {.lex_state = 140}, - [3312] = {.lex_state = 140}, - [3313] = {.lex_state = 140}, - [3314] = {.lex_state = 140}, - [3315] = {.lex_state = 140}, - [3316] = {.lex_state = 140}, - [3317] = {.lex_state = 140}, - [3318] = {.lex_state = 140}, - [3319] = {.lex_state = 140}, - [3320] = {.lex_state = 140}, - [3321] = {.lex_state = 140}, - [3322] = {.lex_state = 140}, - [3323] = {.lex_state = 140}, - [3324] = {.lex_state = 140}, - [3325] = {.lex_state = 140}, - [3326] = {.lex_state = 140}, - [3327] = {.lex_state = 140}, - [3328] = {.lex_state = 140}, - [3329] = {.lex_state = 140}, - [3330] = {.lex_state = 140}, - [3331] = {.lex_state = 140}, - [3332] = {.lex_state = 140}, - [3333] = {.lex_state = 140}, - [3334] = {.lex_state = 140}, - [3335] = {.lex_state = 140}, - [3336] = {.lex_state = 140}, - [3337] = {.lex_state = 140}, - [3338] = {.lex_state = 140}, - [3339] = {.lex_state = 140}, - [3340] = {.lex_state = 140}, - [3341] = {.lex_state = 140}, - [3342] = {.lex_state = 144}, - [3343] = {.lex_state = 140}, - [3344] = {.lex_state = 140}, - [3345] = {.lex_state = 140}, - [3346] = {.lex_state = 140}, - [3347] = {.lex_state = 140}, - [3348] = {.lex_state = 140}, - [3349] = {.lex_state = 140}, - [3350] = {.lex_state = 140}, - [3351] = {.lex_state = 140}, - [3352] = {.lex_state = 140}, - [3353] = {.lex_state = 140}, - [3354] = {.lex_state = 144}, - [3355] = {.lex_state = 140}, - [3356] = {.lex_state = 140}, - [3357] = {.lex_state = 140}, - [3358] = {.lex_state = 142}, - [3359] = {.lex_state = 38}, - [3360] = {.lex_state = 38}, - [3361] = {.lex_state = 38}, - [3362] = {.lex_state = 38}, - [3363] = {.lex_state = 38}, - [3364] = {.lex_state = 297}, - [3365] = {.lex_state = 140}, - [3366] = {.lex_state = 140}, - [3367] = {.lex_state = 140}, - [3368] = {.lex_state = 140}, - [3369] = {.lex_state = 141}, - [3370] = {.lex_state = 144}, - [3371] = {.lex_state = 141}, - [3372] = {.lex_state = 140}, - [3373] = {.lex_state = 141}, - [3374] = {.lex_state = 98}, - [3375] = {.lex_state = 39}, - [3376] = {.lex_state = 39}, - [3377] = {.lex_state = 98}, - [3378] = {.lex_state = 98}, - [3379] = {.lex_state = 140}, - [3380] = {.lex_state = 98}, - [3381] = {.lex_state = 98}, - [3382] = {.lex_state = 98}, - [3383] = {.lex_state = 98}, - [3384] = {.lex_state = 98}, - [3385] = {.lex_state = 98}, - [3386] = {.lex_state = 98}, - [3387] = {.lex_state = 98}, - [3388] = {.lex_state = 140}, - [3389] = {.lex_state = 140}, - [3390] = {.lex_state = 142}, - [3391] = {.lex_state = 142}, - [3392] = {.lex_state = 142}, - [3393] = {.lex_state = 140}, - [3394] = {.lex_state = 98}, - [3395] = {.lex_state = 141}, - [3396] = {.lex_state = 39}, - [3397] = {.lex_state = 141}, - [3398] = {.lex_state = 98}, - [3399] = {.lex_state = 142}, - [3400] = {.lex_state = 142}, - [3401] = {.lex_state = 142}, - [3402] = {.lex_state = 142}, - [3403] = {.lex_state = 142}, - [3404] = {.lex_state = 141}, - [3405] = {.lex_state = 142}, - [3406] = {.lex_state = 141}, - [3407] = {.lex_state = 142}, - [3408] = {.lex_state = 98}, - [3409] = {.lex_state = 142}, - [3410] = {.lex_state = 142}, - [3411] = {.lex_state = 141}, - [3412] = {.lex_state = 141}, - [3413] = {.lex_state = 142}, - [3414] = {.lex_state = 142}, - [3415] = {.lex_state = 142}, - [3416] = {.lex_state = 141}, - [3417] = {.lex_state = 142}, - [3418] = {.lex_state = 142}, - [3419] = {.lex_state = 40}, - [3420] = {.lex_state = 141}, - [3421] = {.lex_state = 98}, - [3422] = {.lex_state = 142}, - [3423] = {.lex_state = 98}, - [3424] = {.lex_state = 40}, - [3425] = {.lex_state = 142}, - [3426] = {.lex_state = 142}, - [3427] = {.lex_state = 142}, - [3428] = {.lex_state = 142}, - [3429] = {.lex_state = 142}, - [3430] = {.lex_state = 40}, - [3431] = {.lex_state = 142}, - [3432] = {.lex_state = 142}, - [3433] = {.lex_state = 142}, - [3434] = {.lex_state = 142}, - [3435] = {.lex_state = 142}, - [3436] = {.lex_state = 40}, - [3437] = {.lex_state = 142}, - [3438] = {.lex_state = 142}, - [3439] = {.lex_state = 142}, - [3440] = {.lex_state = 142}, - [3441] = {.lex_state = 39}, - [3442] = {.lex_state = 141}, - [3443] = {.lex_state = 39}, - [3444] = {.lex_state = 141}, - [3445] = {.lex_state = 39}, - [3446] = {.lex_state = 39}, - [3447] = {.lex_state = 141}, - [3448] = {.lex_state = 141}, - [3449] = {.lex_state = 39}, - [3450] = {.lex_state = 39}, - [3451] = {.lex_state = 39}, - [3452] = {.lex_state = 39}, - [3453] = {.lex_state = 40}, - [3454] = {.lex_state = 39}, - [3455] = {.lex_state = 39}, - [3456] = {.lex_state = 39}, - [3457] = {.lex_state = 39}, - [3458] = {.lex_state = 39}, - [3459] = {.lex_state = 39}, - [3460] = {.lex_state = 39}, - [3461] = {.lex_state = 39}, - [3462] = {.lex_state = 39}, - [3463] = {.lex_state = 39}, - [3464] = {.lex_state = 39}, - [3465] = {.lex_state = 39}, - [3466] = {.lex_state = 141}, - [3467] = {.lex_state = 39}, - [3468] = {.lex_state = 39}, - [3469] = {.lex_state = 39}, - [3470] = {.lex_state = 39}, - [3471] = {.lex_state = 39}, - [3472] = {.lex_state = 39}, - [3473] = {.lex_state = 39}, - [3474] = {.lex_state = 40}, - [3475] = {.lex_state = 142}, - [3476] = {.lex_state = 142}, - [3477] = {.lex_state = 138}, - [3478] = {.lex_state = 39}, - [3479] = {.lex_state = 138}, - [3480] = {.lex_state = 138}, - [3481] = {.lex_state = 39}, - [3482] = {.lex_state = 142}, - [3483] = {.lex_state = 138}, - [3484] = {.lex_state = 138}, - [3485] = {.lex_state = 138}, - [3486] = {.lex_state = 39}, - [3487] = {.lex_state = 138}, - [3488] = {.lex_state = 138}, - [3489] = {.lex_state = 142}, - [3490] = {.lex_state = 138}, - [3491] = {.lex_state = 138}, - [3492] = {.lex_state = 138}, - [3493] = {.lex_state = 138}, - [3494] = {.lex_state = 39}, - [3495] = {.lex_state = 29}, - [3496] = {.lex_state = 39}, - [3497] = {.lex_state = 29}, - [3498] = {.lex_state = 39}, - [3499] = {.lex_state = 39}, - [3500] = {.lex_state = 39}, - [3501] = {.lex_state = 39}, - [3502] = {.lex_state = 39}, - [3503] = {.lex_state = 39}, - [3504] = {.lex_state = 29}, - [3505] = {.lex_state = 39}, - [3506] = {.lex_state = 39}, - [3507] = {.lex_state = 39}, - [3508] = {.lex_state = 29}, - [3509] = {.lex_state = 39}, - [3510] = {.lex_state = 39}, - [3511] = {.lex_state = 142}, - [3512] = {.lex_state = 29}, - [3513] = {.lex_state = 138}, - [3514] = {.lex_state = 138}, - [3515] = {.lex_state = 142}, - [3516] = {.lex_state = 138}, - [3517] = {.lex_state = 138}, - [3518] = {.lex_state = 138}, - [3519] = {.lex_state = 138}, - [3520] = {.lex_state = 138}, - [3521] = {.lex_state = 138}, - [3522] = {.lex_state = 142}, - [3523] = {.lex_state = 138}, - [3524] = {.lex_state = 138}, - [3525] = {.lex_state = 138}, - [3526] = {.lex_state = 138}, - [3527] = {.lex_state = 138}, - [3528] = {.lex_state = 138}, - [3529] = {.lex_state = 142}, - [3530] = {.lex_state = 138}, - [3531] = {.lex_state = 39}, - [3532] = {.lex_state = 142}, - [3533] = {.lex_state = 138}, - [3534] = {.lex_state = 138}, - [3535] = {.lex_state = 138}, - [3536] = {.lex_state = 142}, - [3537] = {.lex_state = 138}, - [3538] = {.lex_state = 142}, - [3539] = {.lex_state = 29}, - [3540] = {.lex_state = 138}, - [3541] = {.lex_state = 138}, - [3542] = {.lex_state = 138}, - [3543] = {.lex_state = 138}, - [3544] = {.lex_state = 138}, - [3545] = {.lex_state = 306}, - [3546] = {.lex_state = 142}, - [3547] = {.lex_state = 152}, - [3548] = {.lex_state = 145}, - [3549] = {.lex_state = 152}, - [3550] = {.lex_state = 145}, - [3551] = {.lex_state = 145}, - [3552] = {.lex_state = 145}, - [3553] = {.lex_state = 152}, - [3554] = {.lex_state = 145}, - [3555] = {.lex_state = 152}, - [3556] = {.lex_state = 145}, - [3557] = {.lex_state = 152}, - [3558] = {.lex_state = 0}, - [3559] = {.lex_state = 145}, - [3560] = {.lex_state = 147}, - [3561] = {.lex_state = 152}, - [3562] = {.lex_state = 152}, - [3563] = {.lex_state = 145}, - [3564] = {.lex_state = 152}, - [3565] = {.lex_state = 145}, - [3566] = {.lex_state = 145}, - [3567] = {.lex_state = 152}, - [3568] = {.lex_state = 145}, - [3569] = {.lex_state = 152}, - [3570] = {.lex_state = 145}, - [3571] = {.lex_state = 145}, - [3572] = {.lex_state = 152}, - [3573] = {.lex_state = 152}, - [3574] = {.lex_state = 152}, - [3575] = {.lex_state = 145}, - [3576] = {.lex_state = 145}, - [3577] = {.lex_state = 145}, - [3578] = {.lex_state = 152}, - [3579] = {.lex_state = 145}, - [3580] = {.lex_state = 152}, - [3581] = {.lex_state = 306}, - [3582] = {.lex_state = 152}, - [3583] = {.lex_state = 145}, - [3584] = {.lex_state = 152}, - [3585] = {.lex_state = 145}, - [3586] = {.lex_state = 152}, - [3587] = {.lex_state = 145}, - [3588] = {.lex_state = 145}, - [3589] = {.lex_state = 39}, - [3590] = {.lex_state = 152}, - [3591] = {.lex_state = 152}, - [3592] = {.lex_state = 145}, - [3593] = {.lex_state = 152}, - [3594] = {.lex_state = 145}, - [3595] = {.lex_state = 152}, - [3596] = {.lex_state = 152}, - [3597] = {.lex_state = 145}, - [3598] = {.lex_state = 145}, - [3599] = {.lex_state = 39}, - [3600] = {.lex_state = 152}, - [3601] = {.lex_state = 145}, - [3602] = {.lex_state = 145}, - [3603] = {.lex_state = 145}, - [3604] = {.lex_state = 306}, - [3605] = {.lex_state = 152}, - [3606] = {.lex_state = 145}, - [3607] = {.lex_state = 152}, - [3608] = {.lex_state = 152}, - [3609] = {.lex_state = 306}, - [3610] = {.lex_state = 152}, - [3611] = {.lex_state = 145}, - [3612] = {.lex_state = 152}, - [3613] = {.lex_state = 152}, - [3614] = {.lex_state = 145}, - [3615] = {.lex_state = 145}, - [3616] = {.lex_state = 152}, - [3617] = {.lex_state = 152}, - [3618] = {.lex_state = 145}, - [3619] = {.lex_state = 145}, - [3620] = {.lex_state = 152}, - [3621] = {.lex_state = 145}, - [3622] = {.lex_state = 145}, - [3623] = {.lex_state = 152}, - [3624] = {.lex_state = 145}, - [3625] = {.lex_state = 152}, - [3626] = {.lex_state = 152}, - [3627] = {.lex_state = 152}, - [3628] = {.lex_state = 145}, - [3629] = {.lex_state = 152}, - [3630] = {.lex_state = 145}, - [3631] = {.lex_state = 152}, - [3632] = {.lex_state = 152}, - [3633] = {.lex_state = 152}, - [3634] = {.lex_state = 145}, - [3635] = {.lex_state = 152}, - [3636] = {.lex_state = 145}, - [3637] = {.lex_state = 152}, - [3638] = {.lex_state = 306}, - [3639] = {.lex_state = 152}, - [3640] = {.lex_state = 145}, - [3641] = {.lex_state = 306}, - [3642] = {.lex_state = 145}, - [3643] = {.lex_state = 306}, - [3644] = {.lex_state = 152}, - [3645] = {.lex_state = 145}, - [3646] = {.lex_state = 145}, - [3647] = {.lex_state = 0}, - [3648] = {.lex_state = 152}, - [3649] = {.lex_state = 152}, - [3650] = {.lex_state = 306}, - [3651] = {.lex_state = 145}, - [3652] = {.lex_state = 152}, - [3653] = {.lex_state = 145}, - [3654] = {.lex_state = 152}, - [3655] = {.lex_state = 145}, - [3656] = {.lex_state = 145}, - [3657] = {.lex_state = 142}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 138}, - [3660] = {.lex_state = 306}, - [3661] = {.lex_state = 306}, - [3662] = {.lex_state = 138}, - [3663] = {.lex_state = 138}, - [3664] = {.lex_state = 39}, - [3665] = {.lex_state = 138}, - [3666] = {.lex_state = 142}, - [3667] = {.lex_state = 306}, - [3668] = {.lex_state = 142}, - [3669] = {.lex_state = 138}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 138}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 39}, - [3674] = {.lex_state = 138}, - [3675] = {.lex_state = 138}, - [3676] = {.lex_state = 142}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 306}, - [3679] = {.lex_state = 142}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 0}, - [3682] = {.lex_state = 310}, - [3683] = {.lex_state = 142}, - [3684] = {.lex_state = 306}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 142}, - [3687] = {.lex_state = 306}, - [3688] = {.lex_state = 0}, - [3689] = {.lex_state = 39}, - [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 126}, - [3692] = {.lex_state = 306}, - [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 306}, - [3695] = {.lex_state = 306}, - [3696] = {.lex_state = 0}, - [3697] = {.lex_state = 142}, - [3698] = {.lex_state = 0}, - [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 0}, - [3701] = {.lex_state = 310}, - [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 306}, - [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 147}, - [3706] = {.lex_state = 0}, - [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 310}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 306}, - [3713] = {.lex_state = 142}, - [3714] = {.lex_state = 306}, - [3715] = {.lex_state = 306}, - [3716] = {.lex_state = 306}, - [3717] = {.lex_state = 142}, - [3718] = {.lex_state = 126}, - [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 306}, - [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 306}, - [3723] = {.lex_state = 142}, - [3724] = {.lex_state = 306}, - [3725] = {.lex_state = 126}, - [3726] = {.lex_state = 126}, - [3727] = {.lex_state = 142}, - [3728] = {.lex_state = 142}, - [3729] = {.lex_state = 142}, - [3730] = {.lex_state = 142}, - [3731] = {.lex_state = 142}, - [3732] = {.lex_state = 0}, - [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 306}, - [3736] = {.lex_state = 126}, - [3737] = {.lex_state = 126}, - [3738] = {.lex_state = 142}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 306}, - [3741] = {.lex_state = 0}, - [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 145}, - [3744] = {.lex_state = 126}, - [3745] = {.lex_state = 142}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 142}, - [3748] = {.lex_state = 145}, - [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 306}, - [3753] = {.lex_state = 306}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 306}, - [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 142}, - [3760] = {.lex_state = 138}, - [3761] = {.lex_state = 142}, - [3762] = {.lex_state = 126}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 142}, - [3765] = {.lex_state = 126}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 142}, - [3768] = {.lex_state = 142}, - [3769] = {.lex_state = 126}, - [3770] = {.lex_state = 126}, - [3771] = {.lex_state = 142}, - [3772] = {.lex_state = 142}, - [3773] = {.lex_state = 126}, - [3774] = {.lex_state = 126}, - [3775] = {.lex_state = 0}, - [3776] = {.lex_state = 126}, - [3777] = {.lex_state = 142}, - [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 306}, - [3780] = {.lex_state = 142}, - [3781] = {.lex_state = 306}, - [3782] = {.lex_state = 0}, - [3783] = {.lex_state = 142}, - [3784] = {.lex_state = 0}, - [3785] = {.lex_state = 306}, - [3786] = {.lex_state = 306}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 142}, - [3789] = {.lex_state = 306}, - [3790] = {.lex_state = 126}, - [3791] = {.lex_state = 0}, - [3792] = {.lex_state = 152}, - [3793] = {.lex_state = 0}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 145}, - [3796] = {.lex_state = 147}, - [3797] = {.lex_state = 310}, - [3798] = {.lex_state = 152}, - [3799] = {.lex_state = 306}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 152}, - [3802] = {.lex_state = 126}, - [3803] = {.lex_state = 126}, - [3804] = {.lex_state = 142}, - [3805] = {.lex_state = 306}, - [3806] = {.lex_state = 306}, - [3807] = {.lex_state = 0}, - [3808] = {.lex_state = 142}, - [3809] = {.lex_state = 0}, - [3810] = {.lex_state = 126}, - [3811] = {.lex_state = 142}, - [3812] = {.lex_state = 142}, - [3813] = {.lex_state = 152}, - [3814] = {.lex_state = 126}, - [3815] = {.lex_state = 152}, - [3816] = {.lex_state = 126}, - [3817] = {.lex_state = 142}, - [3818] = {.lex_state = 142}, - [3819] = {.lex_state = 126}, - [3820] = {.lex_state = 142}, - [3821] = {.lex_state = 142}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 306}, - [3825] = {.lex_state = 142}, - [3826] = {.lex_state = 126}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 142}, - [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 0}, - [3833] = {.lex_state = 126}, - [3834] = {.lex_state = 145}, - [3835] = {.lex_state = 142}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 126}, - [3838] = {.lex_state = 142}, - [3839] = {.lex_state = 126}, - [3840] = {.lex_state = 0}, - [3841] = {.lex_state = 126}, - [3842] = {.lex_state = 142}, - [3843] = {.lex_state = 138}, - [3844] = {.lex_state = 138}, - [3845] = {.lex_state = 142}, - [3846] = {.lex_state = 145}, - [3847] = {.lex_state = 306}, - [3848] = {.lex_state = 142}, - [3849] = {.lex_state = 126}, - [3850] = {.lex_state = 142}, - [3851] = {.lex_state = 142}, - [3852] = {.lex_state = 142}, - [3853] = {.lex_state = 142}, - [3854] = {.lex_state = 126}, - [3855] = {.lex_state = 126}, - [3856] = {.lex_state = 142}, - [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 0}, - [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 126}, - [3861] = {.lex_state = 142}, - [3862] = {.lex_state = 142}, - [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 142}, - [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 153}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 142}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 153}, - [3872] = {.lex_state = 146}, - [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 146}, - [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 0}, - [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 153}, - [3881] = {.lex_state = 146}, - [3882] = {.lex_state = 153}, - [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 0}, - [3885] = {.lex_state = 0}, - [3886] = {.lex_state = 146}, - [3887] = {.lex_state = 310}, - [3888] = {.lex_state = 0}, - [3889] = {.lex_state = 138}, - [3890] = {.lex_state = 0}, - [3891] = {.lex_state = 153}, - [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 310}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 0}, - [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 138}, - [3899] = {.lex_state = 142}, - [3900] = {.lex_state = 142}, - [3901] = {.lex_state = 146}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 146}, - [3905] = {.lex_state = 153}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 0}, - [3908] = {.lex_state = 146}, - [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 153}, - [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 0}, - [3916] = {.lex_state = 310}, - [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 0}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 146}, - [3924] = {.lex_state = 153}, - [3925] = {.lex_state = 142}, - [3926] = {.lex_state = 0}, - [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 146}, - [3929] = {.lex_state = 153}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, - [3932] = {.lex_state = 0}, - [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 142}, - [3936] = {.lex_state = 146}, - [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 153}, - [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 0}, - [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 0}, - [3946] = {.lex_state = 0}, - [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 142}, - [3950] = {.lex_state = 0}, - [3951] = {.lex_state = 146}, - [3952] = {.lex_state = 126}, - [3953] = {.lex_state = 142}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 153}, - [3956] = {.lex_state = 138}, - [3957] = {.lex_state = 126}, - [3958] = {.lex_state = 310}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 146}, - [3961] = {.lex_state = 142}, - [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 138}, - [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 146}, - [3969] = {.lex_state = 153}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 142}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 0}, - [3975] = {.lex_state = 146}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 153}, - [3979] = {.lex_state = 0}, - [3980] = {.lex_state = 310}, - [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 142}, - [3992] = {.lex_state = 142}, - [3993] = {.lex_state = 0}, - [3994] = {.lex_state = 153}, - [3995] = {.lex_state = 146}, - [3996] = {.lex_state = 142}, - [3997] = {.lex_state = 146}, - [3998] = {.lex_state = 153}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 142}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 0}, - [4003] = {.lex_state = 0}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 0}, - [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 142}, - [4021] = {.lex_state = 153}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 153}, - [4025] = {.lex_state = 153}, - [4026] = {.lex_state = 146}, - [4027] = {.lex_state = 153}, - [4028] = {.lex_state = 142}, - [4029] = {.lex_state = 310}, - [4030] = {.lex_state = 142}, - [4031] = {.lex_state = 0}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 146}, - [4034] = {.lex_state = 146}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 153}, - [4037] = {.lex_state = 146}, - [4038] = {.lex_state = 0}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 142}, - [4043] = {.lex_state = 146}, - [4044] = {.lex_state = 153}, - [4045] = {.lex_state = 142}, - [4046] = {.lex_state = 138}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 142}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 0}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 142}, - [4058] = {.lex_state = 0}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 146}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 153}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 146}, - [4076] = {.lex_state = 153}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 138}, - [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 0}, - [4085] = {.lex_state = 153}, - [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 142}, - [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 146}, - [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 153}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 142}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 126}, - [4100] = {.lex_state = 146}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 142}, - [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 0}, - [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 126}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 142}, - [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 142}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 0}, - [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 142}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 0}, - [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 142}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 0}, - [4157] = {.lex_state = 0}, - [4158] = {.lex_state = 142}, - [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 142}, - [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 142}, - [4171] = {.lex_state = 0}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 0}, - [4177] = {.lex_state = 0}, - [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 0}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 142}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 142}, - [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 0}, - [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 0}, - [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 142}, - [4201] = {.lex_state = 142}, - [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 142}, - [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 0}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 146}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 142}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 142}, - [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 153}, - [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 142}, - [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 142}, - [4232] = {.lex_state = 0}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, - [4235] = {.lex_state = 142}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 0}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 142}, - [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 0}, - [4253] = {.lex_state = 0}, - [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 0}, - [4259] = {.lex_state = 0}, - [4260] = {.lex_state = 142}, - [4261] = {.lex_state = 142}, - [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 310}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 142}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 142}, - [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 142}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 142}, - [4282] = {.lex_state = 142}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 0}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 142}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 0}, - [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 0}, - [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 0}, - [4307] = {.lex_state = 142}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 126}, - [4311] = {.lex_state = 126}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 0}, - [4314] = {.lex_state = 0}, - [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 142}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 142}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 142}, - [4328] = {.lex_state = 0}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, - [4332] = {.lex_state = 142}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 142}, - [4336] = {.lex_state = 142}, - [4337] = {.lex_state = 142}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 142}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 142}, - [4343] = {.lex_state = 0}, - [4344] = {.lex_state = 142}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 0}, - [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 142}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 0}, - [4365] = {.lex_state = 142}, - [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 142}, - [4370] = {.lex_state = 0}, - [4371] = {.lex_state = 0}, - [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 142}, - [4376] = {.lex_state = 0}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 142}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 142}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 142}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 0}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 142}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 213}, - [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 213}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 213}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 213}, - [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 0}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 213}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 213}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 98}, - [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 0}, - [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 0}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 0}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 213}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 142}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 142}, - [4494] = {.lex_state = 142}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 142}, - [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 213}, - [4503] = {.lex_state = 142}, - [4504] = {.lex_state = 0}, - [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 0}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 213}, - [4510] = {.lex_state = 142}, - [4511] = {.lex_state = 142}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 142}, - [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 0}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 142}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0}, - [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 98}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 213}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 0}, - [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, - [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 142}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 142}, - [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 213}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 142}, - [4554] = {.lex_state = 0}, - [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 0}, - [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 0}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 213}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 0}, - [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 213}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 0}, - [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 0}, - [4583] = {.lex_state = 126}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 142}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 0}, - [4596] = {.lex_state = 213}, - [4597] = {.lex_state = 0}, - [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 0}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 0}, - [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 0}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 142}, - [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 0}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 0}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, - [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 0}, - [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 382}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 98}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 0}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 142}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 142}, - [4687] = {.lex_state = 142}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 0}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 142}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 214}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 214}, - [4709] = {.lex_state = 142}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 0}, - [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 0}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 310}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 142}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 142}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 0}, - [4736] = {.lex_state = 142}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 0}, - [4742] = {.lex_state = 142}, - [4743] = {.lex_state = 0}, - [4744] = {.lex_state = 0}, - [4745] = {.lex_state = 0}, - [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 0}, - [4749] = {.lex_state = 0}, - [4750] = {.lex_state = 0}, - [4751] = {.lex_state = 142}, - [4752] = {.lex_state = 382}, - [4753] = {.lex_state = 0}, - [4754] = {(TSStateId)(-1)}, + [1889] = {.lex_state = 63}, + [1890] = {.lex_state = 25}, + [1891] = {.lex_state = 46}, + [1892] = {.lex_state = 25}, + [1893] = {.lex_state = 25}, + [1894] = {.lex_state = 25}, + [1895] = {.lex_state = 25}, + [1896] = {.lex_state = 25}, + [1897] = {.lex_state = 25}, + [1898] = {.lex_state = 25}, + [1899] = {.lex_state = 25}, + [1900] = {.lex_state = 71}, + [1901] = {.lex_state = 25}, + [1902] = {.lex_state = 25}, + [1903] = {.lex_state = 25}, + [1904] = {.lex_state = 25}, + [1905] = {.lex_state = 25}, + [1906] = {.lex_state = 46}, + [1907] = {.lex_state = 25}, + [1908] = {.lex_state = 25}, + [1909] = {.lex_state = 25}, + [1910] = {.lex_state = 25}, + [1911] = {.lex_state = 25}, + [1912] = {.lex_state = 25}, + [1913] = {.lex_state = 25}, + [1914] = {.lex_state = 61}, + [1915] = {.lex_state = 25}, + [1916] = {.lex_state = 25}, + [1917] = {.lex_state = 71}, + [1918] = {.lex_state = 71}, + [1919] = {.lex_state = 25}, + [1920] = {.lex_state = 25}, + [1921] = {.lex_state = 25}, + [1922] = {.lex_state = 25}, + [1923] = {.lex_state = 25}, + [1924] = {.lex_state = 25}, + [1925] = {.lex_state = 25}, + [1926] = {.lex_state = 25}, + [1927] = {.lex_state = 25}, + [1928] = {.lex_state = 25}, + [1929] = {.lex_state = 25}, + [1930] = {.lex_state = 25}, + [1931] = {.lex_state = 25}, + [1932] = {.lex_state = 25}, + [1933] = {.lex_state = 25}, + [1934] = {.lex_state = 25}, + [1935] = {.lex_state = 25}, + [1936] = {.lex_state = 25}, + [1937] = {.lex_state = 25}, + [1938] = {.lex_state = 25}, + [1939] = {.lex_state = 25}, + [1940] = {.lex_state = 25}, + [1941] = {.lex_state = 25}, + [1942] = {.lex_state = 25}, + [1943] = {.lex_state = 25}, + [1944] = {.lex_state = 25}, + [1945] = {.lex_state = 25}, + [1946] = {.lex_state = 25}, + [1947] = {.lex_state = 25}, + [1948] = {.lex_state = 25}, + [1949] = {.lex_state = 73}, + [1950] = {.lex_state = 71}, + [1951] = {.lex_state = 71}, + [1952] = {.lex_state = 71}, + [1953] = {.lex_state = 71}, + [1954] = {.lex_state = 2}, + [1955] = {.lex_state = 73}, + [1956] = {.lex_state = 73}, + [1957] = {.lex_state = 2}, + [1958] = {.lex_state = 73}, + [1959] = {.lex_state = 71}, + [1960] = {.lex_state = 71}, + [1961] = {.lex_state = 71}, + [1962] = {.lex_state = 71}, + [1963] = {.lex_state = 73}, + [1964] = {.lex_state = 71}, + [1965] = {.lex_state = 71}, + [1966] = {.lex_state = 71}, + [1967] = {.lex_state = 71}, + [1968] = {.lex_state = 71}, + [1969] = {.lex_state = 71}, + [1970] = {.lex_state = 71}, + [1971] = {.lex_state = 71}, + [1972] = {.lex_state = 73}, + [1973] = {.lex_state = 71}, + [1974] = {.lex_state = 71}, + [1975] = {.lex_state = 71}, + [1976] = {.lex_state = 71}, + [1977] = {.lex_state = 71}, + [1978] = {.lex_state = 71}, + [1979] = {.lex_state = 71}, + [1980] = {.lex_state = 71}, + [1981] = {.lex_state = 71}, + [1982] = {.lex_state = 71}, + [1983] = {.lex_state = 71}, + [1984] = {.lex_state = 71}, + [1985] = {.lex_state = 71}, + [1986] = {.lex_state = 71}, + [1987] = {.lex_state = 71}, + [1988] = {.lex_state = 71}, + [1989] = {.lex_state = 71}, + [1990] = {.lex_state = 71}, + [1991] = {.lex_state = 71}, + [1992] = {.lex_state = 71}, + [1993] = {.lex_state = 71}, + [1994] = {.lex_state = 71}, + [1995] = {.lex_state = 71}, + [1996] = {.lex_state = 71}, + [1997] = {.lex_state = 71}, + [1998] = {.lex_state = 73}, + [1999] = {.lex_state = 71}, + [2000] = {.lex_state = 71}, + [2001] = {.lex_state = 71}, + [2002] = {.lex_state = 71}, + [2003] = {.lex_state = 73}, + [2004] = {.lex_state = 71}, + [2005] = {.lex_state = 71}, + [2006] = {.lex_state = 71}, + [2007] = {.lex_state = 71}, + [2008] = {.lex_state = 73}, + [2009] = {.lex_state = 73}, + [2010] = {.lex_state = 71}, + [2011] = {.lex_state = 71}, + [2012] = {.lex_state = 71}, + [2013] = {.lex_state = 73}, + [2014] = {.lex_state = 73}, + [2015] = {.lex_state = 71}, + [2016] = {.lex_state = 71}, + [2017] = {.lex_state = 71}, + [2018] = {.lex_state = 71}, + [2019] = {.lex_state = 71}, + [2020] = {.lex_state = 73}, + [2021] = {.lex_state = 73}, + [2022] = {.lex_state = 71}, + [2023] = {.lex_state = 71}, + [2024] = {.lex_state = 71}, + [2025] = {.lex_state = 73}, + [2026] = {.lex_state = 71}, + [2027] = {.lex_state = 71}, + [2028] = {.lex_state = 71}, + [2029] = {.lex_state = 73}, + [2030] = {.lex_state = 71}, + [2031] = {.lex_state = 71}, + [2032] = {.lex_state = 71}, + [2033] = {.lex_state = 73}, + [2034] = {.lex_state = 73}, + [2035] = {.lex_state = 73}, + [2036] = {.lex_state = 71}, + [2037] = {.lex_state = 73}, + [2038] = {.lex_state = 73}, + [2039] = {.lex_state = 71}, + [2040] = {.lex_state = 2}, + [2041] = {.lex_state = 73}, + [2042] = {.lex_state = 71}, + [2043] = {.lex_state = 71}, + [2044] = {.lex_state = 73}, + [2045] = {.lex_state = 71}, + [2046] = {.lex_state = 71}, + [2047] = {.lex_state = 73}, + [2048] = {.lex_state = 71}, + [2049] = {.lex_state = 73}, + [2050] = {.lex_state = 73}, + [2051] = {.lex_state = 73}, + [2052] = {.lex_state = 73}, + [2053] = {.lex_state = 71}, + [2054] = {.lex_state = 71}, + [2055] = {.lex_state = 71}, + [2056] = {.lex_state = 71}, + [2057] = {.lex_state = 71}, + [2058] = {.lex_state = 71}, + [2059] = {.lex_state = 71}, + [2060] = {.lex_state = 71}, + [2061] = {.lex_state = 71}, + [2062] = {.lex_state = 73}, + [2063] = {.lex_state = 73}, + [2064] = {.lex_state = 71}, + [2065] = {.lex_state = 71}, + [2066] = {.lex_state = 71}, + [2067] = {.lex_state = 71}, + [2068] = {.lex_state = 73}, + [2069] = {.lex_state = 71}, + [2070] = {.lex_state = 71}, + [2071] = {.lex_state = 71}, + [2072] = {.lex_state = 71}, + [2073] = {.lex_state = 71}, + [2074] = {.lex_state = 71}, + [2075] = {.lex_state = 73}, + [2076] = {.lex_state = 71}, + [2077] = {.lex_state = 73}, + [2078] = {.lex_state = 73}, + [2079] = {.lex_state = 71}, + [2080] = {.lex_state = 71}, + [2081] = {.lex_state = 73}, + [2082] = {.lex_state = 71}, + [2083] = {.lex_state = 71}, + [2084] = {.lex_state = 71}, + [2085] = {.lex_state = 71}, + [2086] = {.lex_state = 71}, + [2087] = {.lex_state = 71}, + [2088] = {.lex_state = 73}, + [2089] = {.lex_state = 73}, + [2090] = {.lex_state = 73}, + [2091] = {.lex_state = 73}, + [2092] = {.lex_state = 73}, + [2093] = {.lex_state = 71}, + [2094] = {.lex_state = 71}, + [2095] = {.lex_state = 73}, + [2096] = {.lex_state = 73}, + [2097] = {.lex_state = 71}, + [2098] = {.lex_state = 73}, + [2099] = {.lex_state = 73}, + [2100] = {.lex_state = 73}, + [2101] = {.lex_state = 73}, + [2102] = {.lex_state = 73}, + [2103] = {.lex_state = 71}, + [2104] = {.lex_state = 71}, + [2105] = {.lex_state = 73}, + [2106] = {.lex_state = 73}, + [2107] = {.lex_state = 73}, + [2108] = {.lex_state = 73}, + [2109] = {.lex_state = 73}, + [2110] = {.lex_state = 71}, + [2111] = {.lex_state = 71}, + [2112] = {.lex_state = 73}, + [2113] = {.lex_state = 73}, + [2114] = {.lex_state = 73}, + [2115] = {.lex_state = 73}, + [2116] = {.lex_state = 73}, + [2117] = {.lex_state = 73}, + [2118] = {.lex_state = 73}, + [2119] = {.lex_state = 73}, + [2120] = {.lex_state = 73}, + [2121] = {.lex_state = 73}, + [2122] = {.lex_state = 73}, + [2123] = {.lex_state = 73}, + [2124] = {.lex_state = 71}, + [2125] = {.lex_state = 73}, + [2126] = {.lex_state = 73}, + [2127] = {.lex_state = 71}, + [2128] = {.lex_state = 73}, + [2129] = {.lex_state = 73}, + [2130] = {.lex_state = 71}, + [2131] = {.lex_state = 73}, + [2132] = {.lex_state = 73}, + [2133] = {.lex_state = 71}, + [2134] = {.lex_state = 73}, + [2135] = {.lex_state = 71}, + [2136] = {.lex_state = 73}, + [2137] = {.lex_state = 73}, + [2138] = {.lex_state = 73}, + [2139] = {.lex_state = 73}, + [2140] = {.lex_state = 71}, + [2141] = {.lex_state = 73}, + [2142] = {.lex_state = 73}, + [2143] = {.lex_state = 73}, + [2144] = {.lex_state = 73}, + [2145] = {.lex_state = 73}, + [2146] = {.lex_state = 73}, + [2147] = {.lex_state = 73}, + [2148] = {.lex_state = 73}, + [2149] = {.lex_state = 73}, + [2150] = {.lex_state = 73}, + [2151] = {.lex_state = 73}, + [2152] = {.lex_state = 73}, + [2153] = {.lex_state = 73}, + [2154] = {.lex_state = 71}, + [2155] = {.lex_state = 73}, + [2156] = {.lex_state = 73}, + [2157] = {.lex_state = 73}, + [2158] = {.lex_state = 73}, + [2159] = {.lex_state = 73}, + [2160] = {.lex_state = 73}, + [2161] = {.lex_state = 73}, + [2162] = {.lex_state = 73}, + [2163] = {.lex_state = 73}, + [2164] = {.lex_state = 73}, + [2165] = {.lex_state = 73}, + [2166] = {.lex_state = 73}, + [2167] = {.lex_state = 73}, + [2168] = {.lex_state = 73}, + [2169] = {.lex_state = 73}, + [2170] = {.lex_state = 73}, + [2171] = {.lex_state = 51}, + [2172] = {.lex_state = 51}, + [2173] = {.lex_state = 51}, + [2174] = {.lex_state = 51}, + [2175] = {.lex_state = 51}, + [2176] = {.lex_state = 32}, + [2177] = {.lex_state = 32}, + [2178] = {.lex_state = 32}, + [2179] = {.lex_state = 71}, + [2180] = {.lex_state = 32}, + [2181] = {.lex_state = 81}, + [2182] = {.lex_state = 32}, + [2183] = {.lex_state = 35}, + [2184] = {.lex_state = 32}, + [2185] = {.lex_state = 35}, + [2186] = {.lex_state = 81}, + [2187] = {.lex_state = 81}, + [2188] = {.lex_state = 81}, + [2189] = {.lex_state = 81}, + [2190] = {.lex_state = 35}, + [2191] = {.lex_state = 32}, + [2192] = {.lex_state = 81}, + [2193] = {.lex_state = 81}, + [2194] = {.lex_state = 81}, + [2195] = {.lex_state = 32}, + [2196] = {.lex_state = 81}, + [2197] = {.lex_state = 35}, + [2198] = {.lex_state = 32}, + [2199] = {.lex_state = 81}, + [2200] = {.lex_state = 32}, + [2201] = {.lex_state = 81}, + [2202] = {.lex_state = 32}, + [2203] = {.lex_state = 32}, + [2204] = {.lex_state = 32}, + [2205] = {.lex_state = 32}, + [2206] = {.lex_state = 32}, + [2207] = {.lex_state = 32}, + [2208] = {.lex_state = 32}, + [2209] = {.lex_state = 81}, + [2210] = {.lex_state = 32}, + [2211] = {.lex_state = 32}, + [2212] = {.lex_state = 32}, + [2213] = {.lex_state = 32}, + [2214] = {.lex_state = 32}, + [2215] = {.lex_state = 32}, + [2216] = {.lex_state = 32}, + [2217] = {.lex_state = 32}, + [2218] = {.lex_state = 32}, + [2219] = {.lex_state = 32}, + [2220] = {.lex_state = 32}, + [2221] = {.lex_state = 32}, + [2222] = {.lex_state = 32}, + [2223] = {.lex_state = 32}, + [2224] = {.lex_state = 32}, + [2225] = {.lex_state = 32}, + [2226] = {.lex_state = 32}, + [2227] = {.lex_state = 32}, + [2228] = {.lex_state = 32}, + [2229] = {.lex_state = 32}, + [2230] = {.lex_state = 32}, + [2231] = {.lex_state = 32}, + [2232] = {.lex_state = 32}, + [2233] = {.lex_state = 32}, + [2234] = {.lex_state = 32}, + [2235] = {.lex_state = 32}, + [2236] = {.lex_state = 32}, + [2237] = {.lex_state = 32}, + [2238] = {.lex_state = 32}, + [2239] = {.lex_state = 32}, + [2240] = {.lex_state = 32}, + [2241] = {.lex_state = 32}, + [2242] = {.lex_state = 32}, + [2243] = {.lex_state = 32}, + [2244] = {.lex_state = 32}, + [2245] = {.lex_state = 32}, + [2246] = {.lex_state = 32}, + [2247] = {.lex_state = 32}, + [2248] = {.lex_state = 32}, + [2249] = {.lex_state = 32}, + [2250] = {.lex_state = 32}, + [2251] = {.lex_state = 32}, + [2252] = {.lex_state = 32}, + [2253] = {.lex_state = 81}, + [2254] = {.lex_state = 32}, + [2255] = {.lex_state = 32}, + [2256] = {.lex_state = 32}, + [2257] = {.lex_state = 32}, + [2258] = {.lex_state = 32}, + [2259] = {.lex_state = 32}, + [2260] = {.lex_state = 32}, + [2261] = {.lex_state = 32}, + [2262] = {.lex_state = 32}, + [2263] = {.lex_state = 32}, + [2264] = {.lex_state = 32}, + [2265] = {.lex_state = 32}, + [2266] = {.lex_state = 32}, + [2267] = {.lex_state = 32}, + [2268] = {.lex_state = 32}, + [2269] = {.lex_state = 32}, + [2270] = {.lex_state = 32}, + [2271] = {.lex_state = 32}, + [2272] = {.lex_state = 32}, + [2273] = {.lex_state = 32}, + [2274] = {.lex_state = 32}, + [2275] = {.lex_state = 32}, + [2276] = {.lex_state = 32}, + [2277] = {.lex_state = 32}, + [2278] = {.lex_state = 32}, + [2279] = {.lex_state = 32}, + [2280] = {.lex_state = 32}, + [2281] = {.lex_state = 32}, + [2282] = {.lex_state = 55}, + [2283] = {.lex_state = 32}, + [2284] = {.lex_state = 32}, + [2285] = {.lex_state = 32}, + [2286] = {.lex_state = 32}, + [2287] = {.lex_state = 81}, + [2288] = {.lex_state = 32}, + [2289] = {.lex_state = 55}, + [2290] = {.lex_state = 81}, + [2291] = {.lex_state = 55}, + [2292] = {.lex_state = 32}, + [2293] = {.lex_state = 32}, + [2294] = {.lex_state = 55}, + [2295] = {.lex_state = 55}, + [2296] = {.lex_state = 32}, + [2297] = {.lex_state = 32}, + [2298] = {.lex_state = 32}, + [2299] = {.lex_state = 32}, + [2300] = {.lex_state = 32}, + [2301] = {.lex_state = 32}, + [2302] = {.lex_state = 32}, + [2303] = {.lex_state = 3}, + [2304] = {.lex_state = 32}, + [2305] = {.lex_state = 32}, + [2306] = {.lex_state = 32}, + [2307] = {.lex_state = 32}, + [2308] = {.lex_state = 32}, + [2309] = {.lex_state = 32}, + [2310] = {.lex_state = 32}, + [2311] = {.lex_state = 32}, + [2312] = {.lex_state = 32}, + [2313] = {.lex_state = 32}, + [2314] = {.lex_state = 32}, + [2315] = {.lex_state = 32}, + [2316] = {.lex_state = 32}, + [2317] = {.lex_state = 32}, + [2318] = {.lex_state = 32}, + [2319] = {.lex_state = 32}, + [2320] = {.lex_state = 32}, + [2321] = {.lex_state = 32}, + [2322] = {.lex_state = 81}, + [2323] = {.lex_state = 65}, + [2324] = {.lex_state = 32}, + [2325] = {.lex_state = 32}, + [2326] = {.lex_state = 32}, + [2327] = {.lex_state = 75}, + [2328] = {.lex_state = 32}, + [2329] = {.lex_state = 81}, + [2330] = {.lex_state = 65}, + [2331] = {.lex_state = 75}, + [2332] = {.lex_state = 75}, + [2333] = {.lex_state = 32}, + [2334] = {.lex_state = 32}, + [2335] = {.lex_state = 32}, + [2336] = {.lex_state = 52}, + [2337] = {.lex_state = 52}, + [2338] = {.lex_state = 32}, + [2339] = {.lex_state = 75}, + [2340] = {.lex_state = 75}, + [2341] = {.lex_state = 37}, + [2342] = {.lex_state = 32}, + [2343] = {.lex_state = 75}, + [2344] = {.lex_state = 37}, + [2345] = {.lex_state = 32}, + [2346] = {.lex_state = 37}, + [2347] = {.lex_state = 37}, + [2348] = {.lex_state = 75}, + [2349] = {.lex_state = 75}, + [2350] = {.lex_state = 75}, + [2351] = {.lex_state = 75}, + [2352] = {.lex_state = 75}, + [2353] = {.lex_state = 75}, + [2354] = {.lex_state = 75}, + [2355] = {.lex_state = 75}, + [2356] = {.lex_state = 75}, + [2357] = {.lex_state = 37}, + [2358] = {.lex_state = 37}, + [2359] = {.lex_state = 75}, + [2360] = {.lex_state = 75}, + [2361] = {.lex_state = 75}, + [2362] = {.lex_state = 75}, + [2363] = {.lex_state = 75}, + [2364] = {.lex_state = 75}, + [2365] = {.lex_state = 75}, + [2366] = {.lex_state = 75}, + [2367] = {.lex_state = 75}, + [2368] = {.lex_state = 37}, + [2369] = {.lex_state = 75}, + [2370] = {.lex_state = 75}, + [2371] = {.lex_state = 75}, + [2372] = {.lex_state = 75}, + [2373] = {.lex_state = 75}, + [2374] = {.lex_state = 75}, + [2375] = {.lex_state = 75}, + [2376] = {.lex_state = 37}, + [2377] = {.lex_state = 37}, + [2378] = {.lex_state = 75}, + [2379] = {.lex_state = 75}, + [2380] = {.lex_state = 75}, + [2381] = {.lex_state = 75}, + [2382] = {.lex_state = 75}, + [2383] = {.lex_state = 75}, + [2384] = {.lex_state = 75}, + [2385] = {.lex_state = 75}, + [2386] = {.lex_state = 75}, + [2387] = {.lex_state = 75}, + [2388] = {.lex_state = 37}, + [2389] = {.lex_state = 75}, + [2390] = {.lex_state = 75}, + [2391] = {.lex_state = 75}, + [2392] = {.lex_state = 75}, + [2393] = {.lex_state = 75}, + [2394] = {.lex_state = 75}, + [2395] = {.lex_state = 75}, + [2396] = {.lex_state = 75}, + [2397] = {.lex_state = 75}, + [2398] = {.lex_state = 75}, + [2399] = {.lex_state = 37}, + [2400] = {.lex_state = 75}, + [2401] = {.lex_state = 75}, + [2402] = {.lex_state = 75}, + [2403] = {.lex_state = 75}, + [2404] = {.lex_state = 75}, + [2405] = {.lex_state = 75}, + [2406] = {.lex_state = 75}, + [2407] = {.lex_state = 75}, + [2408] = {.lex_state = 75}, + [2409] = {.lex_state = 75}, + [2410] = {.lex_state = 37}, + [2411] = {.lex_state = 75}, + [2412] = {.lex_state = 75}, + [2413] = {.lex_state = 75}, + [2414] = {.lex_state = 75}, + [2415] = {.lex_state = 75}, + [2416] = {.lex_state = 75}, + [2417] = {.lex_state = 75}, + [2418] = {.lex_state = 75}, + [2419] = {.lex_state = 75}, + [2420] = {.lex_state = 75}, + [2421] = {.lex_state = 75}, + [2422] = {.lex_state = 75}, + [2423] = {.lex_state = 75}, + [2424] = {.lex_state = 35}, + [2425] = {.lex_state = 37}, + [2426] = {.lex_state = 75}, + [2427] = {.lex_state = 75}, + [2428] = {.lex_state = 75}, + [2429] = {.lex_state = 75}, + [2430] = {.lex_state = 37}, + [2431] = {.lex_state = 35}, + [2432] = {.lex_state = 75}, + [2433] = {.lex_state = 75}, + [2434] = {.lex_state = 37}, + [2435] = {.lex_state = 75}, + [2436] = {.lex_state = 75}, + [2437] = {.lex_state = 75}, + [2438] = {.lex_state = 75}, + [2439] = {.lex_state = 75}, + [2440] = {.lex_state = 75}, + [2441] = {.lex_state = 75}, + [2442] = {.lex_state = 75}, + [2443] = {.lex_state = 37}, + [2444] = {.lex_state = 75}, + [2445] = {.lex_state = 75}, + [2446] = {.lex_state = 75}, + [2447] = {.lex_state = 75}, + [2448] = {.lex_state = 75}, + [2449] = {.lex_state = 75}, + [2450] = {.lex_state = 75}, + [2451] = {.lex_state = 75}, + [2452] = {.lex_state = 75}, + [2453] = {.lex_state = 75}, + [2454] = {.lex_state = 75}, + [2455] = {.lex_state = 75}, + [2456] = {.lex_state = 75}, + [2457] = {.lex_state = 75}, + [2458] = {.lex_state = 75}, + [2459] = {.lex_state = 75}, + [2460] = {.lex_state = 75}, + [2461] = {.lex_state = 75}, + [2462] = {.lex_state = 75}, + [2463] = {.lex_state = 37}, + [2464] = {.lex_state = 75}, + [2465] = {.lex_state = 32}, + [2466] = {.lex_state = 32}, + [2467] = {.lex_state = 37}, + [2468] = {.lex_state = 37}, + [2469] = {.lex_state = 75}, + [2470] = {.lex_state = 37}, + [2471] = {.lex_state = 75}, + [2472] = {.lex_state = 75}, + [2473] = {.lex_state = 75}, + [2474] = {.lex_state = 37}, + [2475] = {.lex_state = 75}, + [2476] = {.lex_state = 75}, + [2477] = {.lex_state = 75}, + [2478] = {.lex_state = 37}, + [2479] = {.lex_state = 37}, + [2480] = {.lex_state = 75}, + [2481] = {.lex_state = 37}, + [2482] = {.lex_state = 37}, + [2483] = {.lex_state = 37}, + [2484] = {.lex_state = 5}, + [2485] = {.lex_state = 5}, + [2486] = {.lex_state = 5}, + [2487] = {.lex_state = 37}, + [2488] = {.lex_state = 77}, + [2489] = {.lex_state = 77}, + [2490] = {.lex_state = 37}, + [2491] = {.lex_state = 75}, + [2492] = {.lex_state = 75}, + [2493] = {.lex_state = 75}, + [2494] = {.lex_state = 75}, + [2495] = {.lex_state = 75}, + [2496] = {.lex_state = 75}, + [2497] = {.lex_state = 3}, + [2498] = {.lex_state = 75}, + [2499] = {.lex_state = 75}, + [2500] = {.lex_state = 77}, + [2501] = {.lex_state = 75}, + [2502] = {.lex_state = 37}, + [2503] = {.lex_state = 75}, + [2504] = {.lex_state = 77}, + [2505] = {.lex_state = 75}, + [2506] = {.lex_state = 77}, + [2507] = {.lex_state = 37}, + [2508] = {.lex_state = 37}, + [2509] = {.lex_state = 37}, + [2510] = {.lex_state = 77}, + [2511] = {.lex_state = 37}, + [2512] = {.lex_state = 77}, + [2513] = {.lex_state = 77}, + [2514] = {.lex_state = 77}, + [2515] = {.lex_state = 77}, + [2516] = {.lex_state = 77}, + [2517] = {.lex_state = 77}, + [2518] = {.lex_state = 75}, + [2519] = {.lex_state = 37}, + [2520] = {.lex_state = 37}, + [2521] = {.lex_state = 37}, + [2522] = {.lex_state = 37}, + [2523] = {.lex_state = 67}, + [2524] = {.lex_state = 37}, + [2525] = {.lex_state = 37}, + [2526] = {.lex_state = 77}, + [2527] = {.lex_state = 77}, + [2528] = {.lex_state = 37}, + [2529] = {.lex_state = 37}, + [2530] = {.lex_state = 37}, + [2531] = {.lex_state = 37}, + [2532] = {.lex_state = 37}, + [2533] = {.lex_state = 37}, + [2534] = {.lex_state = 37}, + [2535] = {.lex_state = 37}, + [2536] = {.lex_state = 37}, + [2537] = {.lex_state = 37}, + [2538] = {.lex_state = 37}, + [2539] = {.lex_state = 37}, + [2540] = {.lex_state = 75}, + [2541] = {.lex_state = 77}, + [2542] = {.lex_state = 75}, + [2543] = {.lex_state = 37}, + [2544] = {.lex_state = 37}, + [2545] = {.lex_state = 37}, + [2546] = {.lex_state = 37}, + [2547] = {.lex_state = 37}, + [2548] = {.lex_state = 37}, + [2549] = {.lex_state = 37}, + [2550] = {.lex_state = 37}, + [2551] = {.lex_state = 37}, + [2552] = {.lex_state = 37}, + [2553] = {.lex_state = 37}, + [2554] = {.lex_state = 37}, + [2555] = {.lex_state = 75}, + [2556] = {.lex_state = 37}, + [2557] = {.lex_state = 37}, + [2558] = {.lex_state = 75}, + [2559] = {.lex_state = 37}, + [2560] = {.lex_state = 37}, + [2561] = {.lex_state = 57}, + [2562] = {.lex_state = 37}, + [2563] = {.lex_state = 37}, + [2564] = {.lex_state = 37}, + [2565] = {.lex_state = 37}, + [2566] = {.lex_state = 37}, + [2567] = {.lex_state = 37}, + [2568] = {.lex_state = 57}, + [2569] = {.lex_state = 37}, + [2570] = {.lex_state = 37}, + [2571] = {.lex_state = 37}, + [2572] = {.lex_state = 37}, + [2573] = {.lex_state = 77}, + [2574] = {.lex_state = 37}, + [2575] = {.lex_state = 37}, + [2576] = {.lex_state = 77}, + [2577] = {.lex_state = 37}, + [2578] = {.lex_state = 37}, + [2579] = {.lex_state = 37}, + [2580] = {.lex_state = 37}, + [2581] = {.lex_state = 37}, + [2582] = {.lex_state = 37}, + [2583] = {.lex_state = 37}, + [2584] = {.lex_state = 37}, + [2585] = {.lex_state = 37}, + [2586] = {.lex_state = 37}, + [2587] = {.lex_state = 77}, + [2588] = {.lex_state = 37}, + [2589] = {.lex_state = 37}, + [2590] = {.lex_state = 75}, + [2591] = {.lex_state = 37}, + [2592] = {.lex_state = 75}, + [2593] = {.lex_state = 37}, + [2594] = {.lex_state = 37}, + [2595] = {.lex_state = 37}, + [2596] = {.lex_state = 37}, + [2597] = {.lex_state = 37}, + [2598] = {.lex_state = 37}, + [2599] = {.lex_state = 37}, + [2600] = {.lex_state = 75}, + [2601] = {.lex_state = 37}, + [2602] = {.lex_state = 37}, + [2603] = {.lex_state = 37}, + [2604] = {.lex_state = 75}, + [2605] = {.lex_state = 37}, + [2606] = {.lex_state = 75}, + [2607] = {.lex_state = 37}, + [2608] = {.lex_state = 37}, + [2609] = {.lex_state = 37}, + [2610] = {.lex_state = 37}, + [2611] = {.lex_state = 37}, + [2612] = {.lex_state = 37}, + [2613] = {.lex_state = 37}, + [2614] = {.lex_state = 75}, + [2615] = {.lex_state = 37}, + [2616] = {.lex_state = 75}, + [2617] = {.lex_state = 37}, + [2618] = {.lex_state = 75}, + [2619] = {.lex_state = 77}, + [2620] = {.lex_state = 77}, + [2621] = {.lex_state = 37}, + [2622] = {.lex_state = 77}, + [2623] = {.lex_state = 77}, + [2624] = {.lex_state = 37}, + [2625] = {.lex_state = 75}, + [2626] = {.lex_state = 37}, + [2627] = {.lex_state = 75}, + [2628] = {.lex_state = 37}, + [2629] = {.lex_state = 37}, + [2630] = {.lex_state = 37}, + [2631] = {.lex_state = 75}, + [2632] = {.lex_state = 37}, + [2633] = {.lex_state = 75}, + [2634] = {.lex_state = 37}, + [2635] = {.lex_state = 37}, + [2636] = {.lex_state = 37}, + [2637] = {.lex_state = 37}, + [2638] = {.lex_state = 37}, + [2639] = {.lex_state = 37}, + [2640] = {.lex_state = 37}, + [2641] = {.lex_state = 77}, + [2642] = {.lex_state = 37}, + [2643] = {.lex_state = 37}, + [2644] = {.lex_state = 75}, + [2645] = {.lex_state = 37}, + [2646] = {.lex_state = 37}, + [2647] = {.lex_state = 37}, + [2648] = {.lex_state = 67}, + [2649] = {.lex_state = 37}, + [2650] = {.lex_state = 75}, + [2651] = {.lex_state = 75}, + [2652] = {.lex_state = 75}, + [2653] = {.lex_state = 77}, + [2654] = {.lex_state = 75}, + [2655] = {.lex_state = 77}, + [2656] = {.lex_state = 75}, + [2657] = {.lex_state = 37}, + [2658] = {.lex_state = 37}, + [2659] = {.lex_state = 75}, + [2660] = {.lex_state = 75}, + [2661] = {.lex_state = 75}, + [2662] = {.lex_state = 75}, + [2663] = {.lex_state = 75}, + [2664] = {.lex_state = 75}, + [2665] = {.lex_state = 75}, + [2666] = {.lex_state = 75}, + [2667] = {.lex_state = 75}, + [2668] = {.lex_state = 75}, + [2669] = {.lex_state = 75}, + [2670] = {.lex_state = 75}, + [2671] = {.lex_state = 75}, + [2672] = {.lex_state = 75}, + [2673] = {.lex_state = 77}, + [2674] = {.lex_state = 79}, + [2675] = {.lex_state = 75}, + [2676] = {.lex_state = 75}, + [2677] = {.lex_state = 75}, + [2678] = {.lex_state = 75}, + [2679] = {.lex_state = 75}, + [2680] = {.lex_state = 77}, + [2681] = {.lex_state = 75}, + [2682] = {.lex_state = 75}, + [2683] = {.lex_state = 75}, + [2684] = {.lex_state = 77}, + [2685] = {.lex_state = 75}, + [2686] = {.lex_state = 77}, + [2687] = {.lex_state = 75}, + [2688] = {.lex_state = 75}, + [2689] = {.lex_state = 75}, + [2690] = {.lex_state = 75}, + [2691] = {.lex_state = 75}, + [2692] = {.lex_state = 77}, + [2693] = {.lex_state = 77}, + [2694] = {.lex_state = 77}, + [2695] = {.lex_state = 85}, + [2696] = {.lex_state = 77}, + [2697] = {.lex_state = 77}, + [2698] = {.lex_state = 75}, + [2699] = {.lex_state = 75}, + [2700] = {.lex_state = 75}, + [2701] = {.lex_state = 79}, + [2702] = {.lex_state = 77}, + [2703] = {.lex_state = 77}, + [2704] = {.lex_state = 75}, + [2705] = {.lex_state = 85}, + [2706] = {.lex_state = 75}, + [2707] = {.lex_state = 75}, + [2708] = {.lex_state = 77}, + [2709] = {.lex_state = 77}, + [2710] = {.lex_state = 77}, + [2711] = {.lex_state = 75}, + [2712] = {.lex_state = 75}, + [2713] = {.lex_state = 77}, + [2714] = {.lex_state = 75}, + [2715] = {.lex_state = 75}, + [2716] = {.lex_state = 77}, + [2717] = {.lex_state = 77}, + [2718] = {.lex_state = 77}, + [2719] = {.lex_state = 77}, + [2720] = {.lex_state = 77}, + [2721] = {.lex_state = 77}, + [2722] = {.lex_state = 77}, + [2723] = {.lex_state = 77}, + [2724] = {.lex_state = 77}, + [2725] = {.lex_state = 77}, + [2726] = {.lex_state = 77}, + [2727] = {.lex_state = 77}, + [2728] = {.lex_state = 77}, + [2729] = {.lex_state = 75}, + [2730] = {.lex_state = 75}, + [2731] = {.lex_state = 75}, + [2732] = {.lex_state = 77}, + [2733] = {.lex_state = 77}, + [2734] = {.lex_state = 75}, + [2735] = {.lex_state = 75}, + [2736] = {.lex_state = 77}, + [2737] = {.lex_state = 77}, + [2738] = {.lex_state = 77}, + [2739] = {.lex_state = 77}, + [2740] = {.lex_state = 77}, + [2741] = {.lex_state = 77}, + [2742] = {.lex_state = 77}, + [2743] = {.lex_state = 77}, + [2744] = {.lex_state = 77}, + [2745] = {.lex_state = 77}, + [2746] = {.lex_state = 77}, + [2747] = {.lex_state = 69}, + [2748] = {.lex_state = 85}, + [2749] = {.lex_state = 85}, + [2750] = {.lex_state = 77}, + [2751] = {.lex_state = 77}, + [2752] = {.lex_state = 77}, + [2753] = {.lex_state = 77}, + [2754] = {.lex_state = 77}, + [2755] = {.lex_state = 75}, + [2756] = {.lex_state = 75}, + [2757] = {.lex_state = 77}, + [2758] = {.lex_state = 75}, + [2759] = {.lex_state = 75}, + [2760] = {.lex_state = 77}, + [2761] = {.lex_state = 85}, + [2762] = {.lex_state = 77}, + [2763] = {.lex_state = 85}, + [2764] = {.lex_state = 77}, + [2765] = {.lex_state = 77}, + [2766] = {.lex_state = 77}, + [2767] = {.lex_state = 77}, + [2768] = {.lex_state = 77}, + [2769] = {.lex_state = 77}, + [2770] = {.lex_state = 75}, + [2771] = {.lex_state = 77}, + [2772] = {.lex_state = 77}, + [2773] = {.lex_state = 75}, + [2774] = {.lex_state = 77}, + [2775] = {.lex_state = 77}, + [2776] = {.lex_state = 77}, + [2777] = {.lex_state = 77}, + [2778] = {.lex_state = 77}, + [2779] = {.lex_state = 77}, + [2780] = {.lex_state = 77}, + [2781] = {.lex_state = 75}, + [2782] = {.lex_state = 77}, + [2783] = {.lex_state = 77}, + [2784] = {.lex_state = 75}, + [2785] = {.lex_state = 77}, + [2786] = {.lex_state = 77}, + [2787] = {.lex_state = 77}, + [2788] = {.lex_state = 85}, + [2789] = {.lex_state = 77}, + [2790] = {.lex_state = 77}, + [2791] = {.lex_state = 77}, + [2792] = {.lex_state = 77}, + [2793] = {.lex_state = 77}, + [2794] = {.lex_state = 77}, + [2795] = {.lex_state = 77}, + [2796] = {.lex_state = 77}, + [2797] = {.lex_state = 77}, + [2798] = {.lex_state = 77}, + [2799] = {.lex_state = 77}, + [2800] = {.lex_state = 77}, + [2801] = {.lex_state = 77}, + [2802] = {.lex_state = 77}, + [2803] = {.lex_state = 85}, + [2804] = {.lex_state = 75}, + [2805] = {.lex_state = 69}, + [2806] = {.lex_state = 75}, + [2807] = {.lex_state = 75}, + [2808] = {.lex_state = 75}, + [2809] = {.lex_state = 75}, + [2810] = {.lex_state = 75}, + [2811] = {.lex_state = 75}, + [2812] = {.lex_state = 75}, + [2813] = {.lex_state = 77}, + [2814] = {.lex_state = 79}, + [2815] = {.lex_state = 75}, + [2816] = {.lex_state = 85}, + [2817] = {.lex_state = 75}, + [2818] = {.lex_state = 75}, + [2819] = {.lex_state = 75}, + [2820] = {.lex_state = 75}, + [2821] = {.lex_state = 77}, + [2822] = {.lex_state = 77}, + [2823] = {.lex_state = 77}, + [2824] = {.lex_state = 77}, + [2825] = {.lex_state = 75}, + [2826] = {.lex_state = 77}, + [2827] = {.lex_state = 75}, + [2828] = {.lex_state = 75}, + [2829] = {.lex_state = 75}, + [2830] = {.lex_state = 75}, + [2831] = {.lex_state = 75}, + [2832] = {.lex_state = 79}, + [2833] = {.lex_state = 77}, + [2834] = {.lex_state = 77}, + [2835] = {.lex_state = 77}, + [2836] = {.lex_state = 77}, + [2837] = {.lex_state = 75}, + [2838] = {.lex_state = 77}, + [2839] = {.lex_state = 77}, + [2840] = {.lex_state = 77}, + [2841] = {.lex_state = 75}, + [2842] = {.lex_state = 77}, + [2843] = {.lex_state = 85}, + [2844] = {.lex_state = 77}, + [2845] = {.lex_state = 77}, + [2846] = {.lex_state = 77}, + [2847] = {.lex_state = 77}, + [2848] = {.lex_state = 77}, + [2849] = {.lex_state = 85}, + [2850] = {.lex_state = 85}, + [2851] = {.lex_state = 77}, + [2852] = {.lex_state = 77}, + [2853] = {.lex_state = 75}, + [2854] = {.lex_state = 85}, + [2855] = {.lex_state = 75}, + [2856] = {.lex_state = 77}, + [2857] = {.lex_state = 75}, + [2858] = {.lex_state = 75}, + [2859] = {.lex_state = 85}, + [2860] = {.lex_state = 75}, + [2861] = {.lex_state = 59}, + [2862] = {.lex_state = 59}, + [2863] = {.lex_state = 75}, + [2864] = {.lex_state = 75}, + [2865] = {.lex_state = 75}, + [2866] = {.lex_state = 75}, + [2867] = {.lex_state = 75}, + [2868] = {.lex_state = 75}, + [2869] = {.lex_state = 85}, + [2870] = {.lex_state = 75}, + [2871] = {.lex_state = 75}, + [2872] = {.lex_state = 75}, + [2873] = {.lex_state = 75}, + [2874] = {.lex_state = 77}, + [2875] = {.lex_state = 75}, + [2876] = {.lex_state = 75}, + [2877] = {.lex_state = 75}, + [2878] = {.lex_state = 85}, + [2879] = {.lex_state = 75}, + [2880] = {.lex_state = 75}, + [2881] = {.lex_state = 75}, + [2882] = {.lex_state = 75}, + [2883] = {.lex_state = 79}, + [2884] = {.lex_state = 75}, + [2885] = {.lex_state = 75}, + [2886] = {.lex_state = 83}, + [2887] = {.lex_state = 75}, + [2888] = {.lex_state = 75}, + [2889] = {.lex_state = 75}, + [2890] = {.lex_state = 79}, + [2891] = {.lex_state = 75}, + [2892] = {.lex_state = 75}, + [2893] = {.lex_state = 75}, + [2894] = {.lex_state = 75}, + [2895] = {.lex_state = 75}, + [2896] = {.lex_state = 75}, + [2897] = {.lex_state = 75}, + [2898] = {.lex_state = 75}, + [2899] = {.lex_state = 83}, + [2900] = {.lex_state = 83}, + [2901] = {.lex_state = 75}, + [2902] = {.lex_state = 83}, + [2903] = {.lex_state = 75}, + [2904] = {.lex_state = 75}, + [2905] = {.lex_state = 75}, + [2906] = {.lex_state = 75}, + [2907] = {.lex_state = 75}, + [2908] = {.lex_state = 75}, + [2909] = {.lex_state = 75}, + [2910] = {.lex_state = 75}, + [2911] = {.lex_state = 79}, + [2912] = {.lex_state = 85}, + [2913] = {.lex_state = 79}, + [2914] = {.lex_state = 79}, + [2915] = {.lex_state = 79}, + [2916] = {.lex_state = 79}, + [2917] = {.lex_state = 79}, + [2918] = {.lex_state = 75}, + [2919] = {.lex_state = 85}, + [2920] = {.lex_state = 79}, + [2921] = {.lex_state = 79}, + [2922] = {.lex_state = 79}, + [2923] = {.lex_state = 79}, + [2924] = {.lex_state = 75}, + [2925] = {.lex_state = 79}, + [2926] = {.lex_state = 79}, + [2927] = {.lex_state = 79}, + [2928] = {.lex_state = 75}, + [2929] = {.lex_state = 75}, + [2930] = {.lex_state = 75}, + [2931] = {.lex_state = 79}, + [2932] = {.lex_state = 79}, + [2933] = {.lex_state = 79}, + [2934] = {.lex_state = 79}, + [2935] = {.lex_state = 79}, + [2936] = {.lex_state = 75}, + [2937] = {.lex_state = 79}, + [2938] = {.lex_state = 79}, + [2939] = {.lex_state = 75}, + [2940] = {.lex_state = 75}, + [2941] = {.lex_state = 79}, + [2942] = {.lex_state = 75}, + [2943] = {.lex_state = 79}, + [2944] = {.lex_state = 5}, + [2945] = {.lex_state = 79}, + [2946] = {.lex_state = 5}, + [2947] = {.lex_state = 5}, + [2948] = {.lex_state = 79}, + [2949] = {.lex_state = 75}, + [2950] = {.lex_state = 75}, + [2951] = {.lex_state = 85}, + [2952] = {.lex_state = 79}, + [2953] = {.lex_state = 75}, + [2954] = {.lex_state = 79}, + [2955] = {.lex_state = 75}, + [2956] = {.lex_state = 79}, + [2957] = {.lex_state = 79}, + [2958] = {.lex_state = 85}, + [2959] = {.lex_state = 79}, + [2960] = {.lex_state = 75}, + [2961] = {.lex_state = 75}, + [2962] = {.lex_state = 75}, + [2963] = {.lex_state = 75}, + [2964] = {.lex_state = 75}, + [2965] = {.lex_state = 75}, + [2966] = {.lex_state = 75}, + [2967] = {.lex_state = 75}, + [2968] = {.lex_state = 75}, + [2969] = {.lex_state = 75}, + [2970] = {.lex_state = 75}, + [2971] = {.lex_state = 75}, + [2972] = {.lex_state = 75}, + [2973] = {.lex_state = 75}, + [2974] = {.lex_state = 75}, + [2975] = {.lex_state = 75}, + [2976] = {.lex_state = 75}, + [2977] = {.lex_state = 75}, + [2978] = {.lex_state = 75}, + [2979] = {.lex_state = 75}, + [2980] = {.lex_state = 75}, + [2981] = {.lex_state = 75}, + [2982] = {.lex_state = 75}, + [2983] = {.lex_state = 75}, + [2984] = {.lex_state = 75}, + [2985] = {.lex_state = 75}, + [2986] = {.lex_state = 75}, + [2987] = {.lex_state = 75}, + [2988] = {.lex_state = 75}, + [2989] = {.lex_state = 75}, + [2990] = {.lex_state = 75}, + [2991] = {.lex_state = 75}, + [2992] = {.lex_state = 75}, + [2993] = {.lex_state = 75}, + [2994] = {.lex_state = 75}, + [2995] = {.lex_state = 75}, + [2996] = {.lex_state = 75}, + [2997] = {.lex_state = 75}, + [2998] = {.lex_state = 75}, + [2999] = {.lex_state = 75}, + [3000] = {.lex_state = 75}, + [3001] = {.lex_state = 75}, + [3002] = {.lex_state = 75}, + [3003] = {.lex_state = 75}, + [3004] = {.lex_state = 75}, + [3005] = {.lex_state = 75}, + [3006] = {.lex_state = 75}, + [3007] = {.lex_state = 75}, + [3008] = {.lex_state = 75}, + [3009] = {.lex_state = 75}, + [3010] = {.lex_state = 75}, + [3011] = {.lex_state = 75}, + [3012] = {.lex_state = 75}, + [3013] = {.lex_state = 75}, + [3014] = {.lex_state = 75}, + [3015] = {.lex_state = 75}, + [3016] = {.lex_state = 75}, + [3017] = {.lex_state = 75}, + [3018] = {.lex_state = 75}, + [3019] = {.lex_state = 75}, + [3020] = {.lex_state = 75}, + [3021] = {.lex_state = 75}, + [3022] = {.lex_state = 75}, + [3023] = {.lex_state = 75}, + [3024] = {.lex_state = 75}, + [3025] = {.lex_state = 75}, + [3026] = {.lex_state = 75}, + [3027] = {.lex_state = 75}, + [3028] = {.lex_state = 75}, + [3029] = {.lex_state = 75}, + [3030] = {.lex_state = 75}, + [3031] = {.lex_state = 75}, + [3032] = {.lex_state = 75}, + [3033] = {.lex_state = 75}, + [3034] = {.lex_state = 75}, + [3035] = {.lex_state = 85}, + [3036] = {.lex_state = 85}, + [3037] = {.lex_state = 85}, + [3038] = {.lex_state = 85}, + [3039] = {.lex_state = 85}, + [3040] = {.lex_state = 85}, + [3041] = {.lex_state = 85}, + [3042] = {.lex_state = 85}, + [3043] = {.lex_state = 85}, + [3044] = {.lex_state = 85}, + [3045] = {.lex_state = 85}, + [3046] = {.lex_state = 85}, + [3047] = {.lex_state = 85}, + [3048] = {.lex_state = 85}, + [3049] = {.lex_state = 85}, + [3050] = {.lex_state = 85}, + [3051] = {.lex_state = 85}, + [3052] = {.lex_state = 85}, + [3053] = {.lex_state = 85}, + [3054] = {.lex_state = 85}, + [3055] = {.lex_state = 85}, + [3056] = {.lex_state = 85}, + [3057] = {.lex_state = 85}, + [3058] = {.lex_state = 85}, + [3059] = {.lex_state = 85}, + [3060] = {.lex_state = 85}, + [3061] = {.lex_state = 85}, + [3062] = {.lex_state = 85}, + [3063] = {.lex_state = 85}, + [3064] = {.lex_state = 85}, + [3065] = {.lex_state = 85}, + [3066] = {.lex_state = 85}, + [3067] = {.lex_state = 85}, + [3068] = {.lex_state = 85}, + [3069] = {.lex_state = 85}, + [3070] = {.lex_state = 85}, + [3071] = {.lex_state = 85}, + [3072] = {.lex_state = 85}, + [3073] = {.lex_state = 85}, + [3074] = {.lex_state = 85}, + [3075] = {.lex_state = 85}, + [3076] = {.lex_state = 85}, + [3077] = {.lex_state = 85}, + [3078] = {.lex_state = 85}, + [3079] = {.lex_state = 85}, + [3080] = {.lex_state = 85}, + [3081] = {.lex_state = 85}, + [3082] = {.lex_state = 85}, + [3083] = {.lex_state = 85}, + [3084] = {.lex_state = 85}, + [3085] = {.lex_state = 85}, + [3086] = {.lex_state = 85}, + [3087] = {.lex_state = 85}, + [3088] = {.lex_state = 85}, + [3089] = {.lex_state = 85}, + [3090] = {.lex_state = 85}, + [3091] = {.lex_state = 85}, + [3092] = {.lex_state = 85}, + [3093] = {.lex_state = 85}, + [3094] = {.lex_state = 85}, + [3095] = {.lex_state = 85}, + [3096] = {.lex_state = 85}, + [3097] = {.lex_state = 85}, + [3098] = {.lex_state = 85}, + [3099] = {.lex_state = 85}, + [3100] = {.lex_state = 85}, + [3101] = {.lex_state = 85}, + [3102] = {.lex_state = 85}, + [3103] = {.lex_state = 85}, + [3104] = {.lex_state = 85}, + [3105] = {.lex_state = 85}, + [3106] = {.lex_state = 85}, + [3107] = {.lex_state = 85}, + [3108] = {.lex_state = 85}, + [3109] = {.lex_state = 85}, + [3110] = {.lex_state = 85}, + [3111] = {.lex_state = 85}, + [3112] = {.lex_state = 85}, + [3113] = {.lex_state = 85}, + [3114] = {.lex_state = 85}, + [3115] = {.lex_state = 85}, + [3116] = {.lex_state = 85}, + [3117] = {.lex_state = 85}, + [3118] = {.lex_state = 85}, + [3119] = {.lex_state = 85}, + [3120] = {.lex_state = 85}, + [3121] = {.lex_state = 85}, + [3122] = {.lex_state = 85}, + [3123] = {.lex_state = 85}, + [3124] = {.lex_state = 85}, + [3125] = {.lex_state = 85}, + [3126] = {.lex_state = 85}, + [3127] = {.lex_state = 85}, + [3128] = {.lex_state = 85}, + [3129] = {.lex_state = 85}, + [3130] = {.lex_state = 85}, + [3131] = {.lex_state = 85}, + [3132] = {.lex_state = 85}, + [3133] = {.lex_state = 85}, + [3134] = {.lex_state = 85}, + [3135] = {.lex_state = 85}, + [3136] = {.lex_state = 85}, + [3137] = {.lex_state = 85}, + [3138] = {.lex_state = 85}, + [3139] = {.lex_state = 85}, + [3140] = {.lex_state = 85}, + [3141] = {.lex_state = 85}, + [3142] = {.lex_state = 85}, + [3143] = {.lex_state = 85}, + [3144] = {.lex_state = 85}, + [3145] = {.lex_state = 85}, + [3146] = {.lex_state = 85}, + [3147] = {.lex_state = 85}, + [3148] = {.lex_state = 85}, + [3149] = {.lex_state = 85}, + [3150] = {.lex_state = 85}, + [3151] = {.lex_state = 85}, + [3152] = {.lex_state = 85}, + [3153] = {.lex_state = 85}, + [3154] = {.lex_state = 85}, + [3155] = {.lex_state = 85}, + [3156] = {.lex_state = 85}, + [3157] = {.lex_state = 85}, + [3158] = {.lex_state = 85}, + [3159] = {.lex_state = 85}, + [3160] = {.lex_state = 85}, + [3161] = {.lex_state = 85}, + [3162] = {.lex_state = 85}, + [3163] = {.lex_state = 85}, + [3164] = {.lex_state = 85}, + [3165] = {.lex_state = 85}, + [3166] = {.lex_state = 85}, + [3167] = {.lex_state = 85}, + [3168] = {.lex_state = 85}, + [3169] = {.lex_state = 85}, + [3170] = {.lex_state = 85}, + [3171] = {.lex_state = 85}, + [3172] = {.lex_state = 85}, + [3173] = {.lex_state = 85}, + [3174] = {.lex_state = 85}, + [3175] = {.lex_state = 85}, + [3176] = {.lex_state = 85}, + [3177] = {.lex_state = 85}, + [3178] = {.lex_state = 85}, + [3179] = {.lex_state = 85}, + [3180] = {.lex_state = 85}, + [3181] = {.lex_state = 85}, + [3182] = {.lex_state = 85}, + [3183] = {.lex_state = 85}, + [3184] = {.lex_state = 85}, + [3185] = {.lex_state = 85}, + [3186] = {.lex_state = 85}, + [3187] = {.lex_state = 85}, + [3188] = {.lex_state = 85}, + [3189] = {.lex_state = 85}, + [3190] = {.lex_state = 85}, + [3191] = {.lex_state = 85}, + [3192] = {.lex_state = 85}, + [3193] = {.lex_state = 85}, + [3194] = {.lex_state = 85}, + [3195] = {.lex_state = 85}, + [3196] = {.lex_state = 85}, + [3197] = {.lex_state = 85}, + [3198] = {.lex_state = 85}, + [3199] = {.lex_state = 85}, + [3200] = {.lex_state = 85}, + [3201] = {.lex_state = 85}, + [3202] = {.lex_state = 85}, + [3203] = {.lex_state = 85}, + [3204] = {.lex_state = 85}, + [3205] = {.lex_state = 85}, + [3206] = {.lex_state = 85}, + [3207] = {.lex_state = 85}, + [3208] = {.lex_state = 85}, + [3209] = {.lex_state = 85}, + [3210] = {.lex_state = 85}, + [3211] = {.lex_state = 85}, + [3212] = {.lex_state = 85}, + [3213] = {.lex_state = 85}, + [3214] = {.lex_state = 85}, + [3215] = {.lex_state = 85}, + [3216] = {.lex_state = 85}, + [3217] = {.lex_state = 85}, + [3218] = {.lex_state = 85}, + [3219] = {.lex_state = 85}, + [3220] = {.lex_state = 85}, + [3221] = {.lex_state = 85}, + [3222] = {.lex_state = 85}, + [3223] = {.lex_state = 85}, + [3224] = {.lex_state = 85}, + [3225] = {.lex_state = 85}, + [3226] = {.lex_state = 85}, + [3227] = {.lex_state = 85}, + [3228] = {.lex_state = 85}, + [3229] = {.lex_state = 85}, + [3230] = {.lex_state = 85}, + [3231] = {.lex_state = 85}, + [3232] = {.lex_state = 85}, + [3233] = {.lex_state = 85}, + [3234] = {.lex_state = 85}, + [3235] = {.lex_state = 85}, + [3236] = {.lex_state = 85}, + [3237] = {.lex_state = 85}, + [3238] = {.lex_state = 85}, + [3239] = {.lex_state = 85}, + [3240] = {.lex_state = 85}, + [3241] = {.lex_state = 85}, + [3242] = {.lex_state = 85}, + [3243] = {.lex_state = 85}, + [3244] = {.lex_state = 85}, + [3245] = {.lex_state = 85}, + [3246] = {.lex_state = 85}, + [3247] = {.lex_state = 85}, + [3248] = {.lex_state = 85}, + [3249] = {.lex_state = 85}, + [3250] = {.lex_state = 85}, + [3251] = {.lex_state = 85}, + [3252] = {.lex_state = 85}, + [3253] = {.lex_state = 85}, + [3254] = {.lex_state = 85}, + [3255] = {.lex_state = 85}, + [3256] = {.lex_state = 85}, + [3257] = {.lex_state = 85}, + [3258] = {.lex_state = 85}, + [3259] = {.lex_state = 85}, + [3260] = {.lex_state = 85}, + [3261] = {.lex_state = 85}, + [3262] = {.lex_state = 85}, + [3263] = {.lex_state = 85}, + [3264] = {.lex_state = 85}, + [3265] = {.lex_state = 85}, + [3266] = {.lex_state = 85}, + [3267] = {.lex_state = 85}, + [3268] = {.lex_state = 85}, + [3269] = {.lex_state = 85}, + [3270] = {.lex_state = 85}, + [3271] = {.lex_state = 85}, + [3272] = {.lex_state = 85}, + [3273] = {.lex_state = 85}, + [3274] = {.lex_state = 85}, + [3275] = {.lex_state = 85}, + [3276] = {.lex_state = 85}, + [3277] = {.lex_state = 85}, + [3278] = {.lex_state = 85}, + [3279] = {.lex_state = 85}, + [3280] = {.lex_state = 85}, + [3281] = {.lex_state = 85}, + [3282] = {.lex_state = 85}, + [3283] = {.lex_state = 85}, + [3284] = {.lex_state = 85}, + [3285] = {.lex_state = 85}, + [3286] = {.lex_state = 85}, + [3287] = {.lex_state = 85}, + [3288] = {.lex_state = 85}, + [3289] = {.lex_state = 85}, + [3290] = {.lex_state = 85}, + [3291] = {.lex_state = 85}, + [3292] = {.lex_state = 85}, + [3293] = {.lex_state = 85}, + [3294] = {.lex_state = 85}, + [3295] = {.lex_state = 85}, + [3296] = {.lex_state = 85}, + [3297] = {.lex_state = 85}, + [3298] = {.lex_state = 85}, + [3299] = {.lex_state = 85}, + [3300] = {.lex_state = 85}, + [3301] = {.lex_state = 85}, + [3302] = {.lex_state = 85}, + [3303] = {.lex_state = 85}, + [3304] = {.lex_state = 85}, + [3305] = {.lex_state = 85}, + [3306] = {.lex_state = 85}, + [3307] = {.lex_state = 85}, + [3308] = {.lex_state = 85}, + [3309] = {.lex_state = 85}, + [3310] = {.lex_state = 85}, + [3311] = {.lex_state = 85}, + [3312] = {.lex_state = 85}, + [3313] = {.lex_state = 85}, + [3314] = {.lex_state = 85}, + [3315] = {.lex_state = 85}, + [3316] = {.lex_state = 85}, + [3317] = {.lex_state = 85}, + [3318] = {.lex_state = 85}, + [3319] = {.lex_state = 85}, + [3320] = {.lex_state = 85}, + [3321] = {.lex_state = 85}, + [3322] = {.lex_state = 85}, + [3323] = {.lex_state = 85}, + [3324] = {.lex_state = 85}, + [3325] = {.lex_state = 85}, + [3326] = {.lex_state = 85}, + [3327] = {.lex_state = 85}, + [3328] = {.lex_state = 85}, + [3329] = {.lex_state = 85}, + [3330] = {.lex_state = 85}, + [3331] = {.lex_state = 85}, + [3332] = {.lex_state = 85}, + [3333] = {.lex_state = 85}, + [3334] = {.lex_state = 85}, + [3335] = {.lex_state = 85}, + [3336] = {.lex_state = 85}, + [3337] = {.lex_state = 85}, + [3338] = {.lex_state = 85}, + [3339] = {.lex_state = 85}, + [3340] = {.lex_state = 85}, + [3341] = {.lex_state = 85}, + [3342] = {.lex_state = 85}, + [3343] = {.lex_state = 85}, + [3344] = {.lex_state = 85}, + [3345] = {.lex_state = 85}, + [3346] = {.lex_state = 85}, + [3347] = {.lex_state = 85}, + [3348] = {.lex_state = 85}, + [3349] = {.lex_state = 85}, + [3350] = {.lex_state = 85}, + [3351] = {.lex_state = 85}, + [3352] = {.lex_state = 89}, + [3353] = {.lex_state = 85}, + [3354] = {.lex_state = 85}, + [3355] = {.lex_state = 85}, + [3356] = {.lex_state = 89}, + [3357] = {.lex_state = 85}, + [3358] = {.lex_state = 87}, + [3359] = {.lex_state = 5}, + [3360] = {.lex_state = 5}, + [3361] = {.lex_state = 5}, + [3362] = {.lex_state = 5}, + [3363] = {.lex_state = 5}, + [3364] = {.lex_state = 192}, + [3365] = {.lex_state = 89}, + [3366] = {.lex_state = 85}, + [3367] = {.lex_state = 85}, + [3368] = {.lex_state = 86}, + [3369] = {.lex_state = 85}, + [3370] = {.lex_state = 86}, + [3371] = {.lex_state = 85}, + [3372] = {.lex_state = 86}, + [3373] = {.lex_state = 85}, + [3374] = {.lex_state = 6}, + [3375] = {.lex_state = 43}, + [3376] = {.lex_state = 43}, + [3377] = {.lex_state = 85}, + [3378] = {.lex_state = 43}, + [3379] = {.lex_state = 6}, + [3380] = {.lex_state = 85}, + [3381] = {.lex_state = 43}, + [3382] = {.lex_state = 43}, + [3383] = {.lex_state = 43}, + [3384] = {.lex_state = 43}, + [3385] = {.lex_state = 43}, + [3386] = {.lex_state = 43}, + [3387] = {.lex_state = 43}, + [3388] = {.lex_state = 43}, + [3389] = {.lex_state = 85}, + [3390] = {.lex_state = 43}, + [3391] = {.lex_state = 87}, + [3392] = {.lex_state = 87}, + [3393] = {.lex_state = 85}, + [3394] = {.lex_state = 87}, + [3395] = {.lex_state = 87}, + [3396] = {.lex_state = 87}, + [3397] = {.lex_state = 7}, + [3398] = {.lex_state = 87}, + [3399] = {.lex_state = 43}, + [3400] = {.lex_state = 87}, + [3401] = {.lex_state = 86}, + [3402] = {.lex_state = 87}, + [3403] = {.lex_state = 87}, + [3404] = {.lex_state = 87}, + [3405] = {.lex_state = 86}, + [3406] = {.lex_state = 87}, + [3407] = {.lex_state = 87}, + [3408] = {.lex_state = 87}, + [3409] = {.lex_state = 7}, + [3410] = {.lex_state = 87}, + [3411] = {.lex_state = 87}, + [3412] = {.lex_state = 87}, + [3413] = {.lex_state = 7}, + [3414] = {.lex_state = 43}, + [3415] = {.lex_state = 87}, + [3416] = {.lex_state = 6}, + [3417] = {.lex_state = 87}, + [3418] = {.lex_state = 43}, + [3419] = {.lex_state = 86}, + [3420] = {.lex_state = 86}, + [3421] = {.lex_state = 86}, + [3422] = {.lex_state = 87}, + [3423] = {.lex_state = 87}, + [3424] = {.lex_state = 87}, + [3425] = {.lex_state = 87}, + [3426] = {.lex_state = 87}, + [3427] = {.lex_state = 87}, + [3428] = {.lex_state = 87}, + [3429] = {.lex_state = 87}, + [3430] = {.lex_state = 86}, + [3431] = {.lex_state = 87}, + [3432] = {.lex_state = 87}, + [3433] = {.lex_state = 7}, + [3434] = {.lex_state = 86}, + [3435] = {.lex_state = 87}, + [3436] = {.lex_state = 43}, + [3437] = {.lex_state = 87}, + [3438] = {.lex_state = 87}, + [3439] = {.lex_state = 87}, + [3440] = {.lex_state = 86}, + [3441] = {.lex_state = 6}, + [3442] = {.lex_state = 86}, + [3443] = {.lex_state = 86}, + [3444] = {.lex_state = 6}, + [3445] = {.lex_state = 6}, + [3446] = {.lex_state = 6}, + [3447] = {.lex_state = 86}, + [3448] = {.lex_state = 86}, + [3449] = {.lex_state = 6}, + [3450] = {.lex_state = 6}, + [3451] = {.lex_state = 6}, + [3452] = {.lex_state = 6}, + [3453] = {.lex_state = 7}, + [3454] = {.lex_state = 6}, + [3455] = {.lex_state = 6}, + [3456] = {.lex_state = 6}, + [3457] = {.lex_state = 6}, + [3458] = {.lex_state = 6}, + [3459] = {.lex_state = 6}, + [3460] = {.lex_state = 6}, + [3461] = {.lex_state = 6}, + [3462] = {.lex_state = 6}, + [3463] = {.lex_state = 6}, + [3464] = {.lex_state = 6}, + [3465] = {.lex_state = 6}, + [3466] = {.lex_state = 6}, + [3467] = {.lex_state = 6}, + [3468] = {.lex_state = 6}, + [3469] = {.lex_state = 6}, + [3470] = {.lex_state = 6}, + [3471] = {.lex_state = 6}, + [3472] = {.lex_state = 6}, + [3473] = {.lex_state = 86}, + [3474] = {.lex_state = 7}, + [3475] = {.lex_state = 87}, + [3476] = {.lex_state = 87}, + [3477] = {.lex_state = 87}, + [3478] = {.lex_state = 6}, + [3479] = {.lex_state = 6}, + [3480] = {.lex_state = 83}, + [3481] = {.lex_state = 6}, + [3482] = {.lex_state = 83}, + [3483] = {.lex_state = 83}, + [3484] = {.lex_state = 83}, + [3485] = {.lex_state = 83}, + [3486] = {.lex_state = 83}, + [3487] = {.lex_state = 83}, + [3488] = {.lex_state = 83}, + [3489] = {.lex_state = 83}, + [3490] = {.lex_state = 87}, + [3491] = {.lex_state = 6}, + [3492] = {.lex_state = 83}, + [3493] = {.lex_state = 83}, + [3494] = {.lex_state = 83}, + [3495] = {.lex_state = 23}, + [3496] = {.lex_state = 6}, + [3497] = {.lex_state = 23}, + [3498] = {.lex_state = 23}, + [3499] = {.lex_state = 6}, + [3500] = {.lex_state = 6}, + [3501] = {.lex_state = 6}, + [3502] = {.lex_state = 23}, + [3503] = {.lex_state = 6}, + [3504] = {.lex_state = 6}, + [3505] = {.lex_state = 6}, + [3506] = {.lex_state = 6}, + [3507] = {.lex_state = 6}, + [3508] = {.lex_state = 6}, + [3509] = {.lex_state = 87}, + [3510] = {.lex_state = 6}, + [3511] = {.lex_state = 6}, + [3512] = {.lex_state = 83}, + [3513] = {.lex_state = 83}, + [3514] = {.lex_state = 87}, + [3515] = {.lex_state = 83}, + [3516] = {.lex_state = 87}, + [3517] = {.lex_state = 83}, + [3518] = {.lex_state = 83}, + [3519] = {.lex_state = 6}, + [3520] = {.lex_state = 83}, + [3521] = {.lex_state = 83}, + [3522] = {.lex_state = 83}, + [3523] = {.lex_state = 83}, + [3524] = {.lex_state = 83}, + [3525] = {.lex_state = 83}, + [3526] = {.lex_state = 83}, + [3527] = {.lex_state = 87}, + [3528] = {.lex_state = 83}, + [3529] = {.lex_state = 83}, + [3530] = {.lex_state = 83}, + [3531] = {.lex_state = 23}, + [3532] = {.lex_state = 23}, + [3533] = {.lex_state = 83}, + [3534] = {.lex_state = 83}, + [3535] = {.lex_state = 83}, + [3536] = {.lex_state = 83}, + [3537] = {.lex_state = 83}, + [3538] = {.lex_state = 87}, + [3539] = {.lex_state = 83}, + [3540] = {.lex_state = 83}, + [3541] = {.lex_state = 83}, + [3542] = {.lex_state = 87}, + [3543] = {.lex_state = 83}, + [3544] = {.lex_state = 87}, + [3545] = {.lex_state = 90}, + [3546] = {.lex_state = 90}, + [3547] = {.lex_state = 90}, + [3548] = {.lex_state = 97}, + [3549] = {.lex_state = 90}, + [3550] = {.lex_state = 87}, + [3551] = {.lex_state = 87}, + [3552] = {.lex_state = 43}, + [3553] = {.lex_state = 102}, + [3554] = {.lex_state = 97}, + [3555] = {.lex_state = 189}, + [3556] = {.lex_state = 90}, + [3557] = {.lex_state = 97}, + [3558] = {.lex_state = 90}, + [3559] = {.lex_state = 97}, + [3560] = {.lex_state = 90}, + [3561] = {.lex_state = 97}, + [3562] = {.lex_state = 90}, + [3563] = {.lex_state = 97}, + [3564] = {.lex_state = 97}, + [3565] = {.lex_state = 90}, + [3566] = {.lex_state = 90}, + [3567] = {.lex_state = 90}, + [3568] = {.lex_state = 97}, + [3569] = {.lex_state = 90}, + [3570] = {.lex_state = 97}, + [3571] = {.lex_state = 97}, + [3572] = {.lex_state = 90}, + [3573] = {.lex_state = 97}, + [3574] = {.lex_state = 90}, + [3575] = {.lex_state = 97}, + [3576] = {.lex_state = 90}, + [3577] = {.lex_state = 97}, + [3578] = {.lex_state = 90}, + [3579] = {.lex_state = 97}, + [3580] = {.lex_state = 90}, + [3581] = {.lex_state = 97}, + [3582] = {.lex_state = 90}, + [3583] = {.lex_state = 97}, + [3584] = {.lex_state = 102}, + [3585] = {.lex_state = 90}, + [3586] = {.lex_state = 97}, + [3587] = {.lex_state = 97}, + [3588] = {.lex_state = 97}, + [3589] = {.lex_state = 90}, + [3590] = {.lex_state = 90}, + [3591] = {.lex_state = 97}, + [3592] = {.lex_state = 90}, + [3593] = {.lex_state = 97}, + [3594] = {.lex_state = 189}, + [3595] = {.lex_state = 90}, + [3596] = {.lex_state = 90}, + [3597] = {.lex_state = 97}, + [3598] = {.lex_state = 97}, + [3599] = {.lex_state = 97}, + [3600] = {.lex_state = 90}, + [3601] = {.lex_state = 97}, + [3602] = {.lex_state = 90}, + [3603] = {.lex_state = 97}, + [3604] = {.lex_state = 97}, + [3605] = {.lex_state = 90}, + [3606] = {.lex_state = 90}, + [3607] = {.lex_state = 97}, + [3608] = {.lex_state = 90}, + [3609] = {.lex_state = 90}, + [3610] = {.lex_state = 90}, + [3611] = {.lex_state = 97}, + [3612] = {.lex_state = 90}, + [3613] = {.lex_state = 90}, + [3614] = {.lex_state = 97}, + [3615] = {.lex_state = 97}, + [3616] = {.lex_state = 90}, + [3617] = {.lex_state = 97}, + [3618] = {.lex_state = 90}, + [3619] = {.lex_state = 6}, + [3620] = {.lex_state = 97}, + [3621] = {.lex_state = 97}, + [3622] = {.lex_state = 97}, + [3623] = {.lex_state = 97}, + [3624] = {.lex_state = 189}, + [3625] = {.lex_state = 90}, + [3626] = {.lex_state = 97}, + [3627] = {.lex_state = 39}, + [3628] = {.lex_state = 189}, + [3629] = {.lex_state = 6}, + [3630] = {.lex_state = 90}, + [3631] = {.lex_state = 97}, + [3632] = {.lex_state = 90}, + [3633] = {.lex_state = 97}, + [3634] = {.lex_state = 90}, + [3635] = {.lex_state = 97}, + [3636] = {.lex_state = 90}, + [3637] = {.lex_state = 90}, + [3638] = {.lex_state = 97}, + [3639] = {.lex_state = 90}, + [3640] = {.lex_state = 97}, + [3641] = {.lex_state = 189}, + [3642] = {.lex_state = 97}, + [3643] = {.lex_state = 90}, + [3644] = {.lex_state = 97}, + [3645] = {.lex_state = 102}, + [3646] = {.lex_state = 97}, + [3647] = {.lex_state = 97}, + [3648] = {.lex_state = 90}, + [3649] = {.lex_state = 189}, + [3650] = {.lex_state = 97}, + [3651] = {.lex_state = 90}, + [3652] = {.lex_state = 90}, + [3653] = {.lex_state = 92}, + [3654] = {.lex_state = 189}, + [3655] = {.lex_state = 90}, + [3656] = {.lex_state = 90}, + [3657] = {.lex_state = 90}, + [3658] = {.lex_state = 97}, + [3659] = {.lex_state = 97}, + [3660] = {.lex_state = 189}, + [3661] = {.lex_state = 83}, + [3662] = {.lex_state = 202}, + [3663] = {.lex_state = 83}, + [3664] = {.lex_state = 83}, + [3665] = {.lex_state = 189}, + [3666] = {.lex_state = 202}, + [3667] = {.lex_state = 102}, + [3668] = {.lex_state = 83}, + [3669] = {.lex_state = 189}, + [3670] = {.lex_state = 83}, + [3671] = {.lex_state = 83}, + [3672] = {.lex_state = 83}, + [3673] = {.lex_state = 87}, + [3674] = {.lex_state = 202}, + [3675] = {.lex_state = 202}, + [3676] = {.lex_state = 202}, + [3677] = {.lex_state = 87}, + [3678] = {.lex_state = 189}, + [3679] = {.lex_state = 83}, + [3680] = {.lex_state = 202}, + [3681] = {.lex_state = 6}, + [3682] = {.lex_state = 87}, + [3683] = {.lex_state = 202}, + [3684] = {.lex_state = 189}, + [3685] = {.lex_state = 87}, + [3686] = {.lex_state = 189}, + [3687] = {.lex_state = 87}, + [3688] = {.lex_state = 202}, + [3689] = {.lex_state = 189}, + [3690] = {.lex_state = 87}, + [3691] = {.lex_state = 202}, + [3692] = {.lex_state = 6}, + [3693] = {.lex_state = 6}, + [3694] = {.lex_state = 102}, + [3695] = {.lex_state = 87}, + [3696] = {.lex_state = 87}, + [3697] = {.lex_state = 202}, + [3698] = {.lex_state = 71}, + [3699] = {.lex_state = 202}, + [3700] = {.lex_state = 189}, + [3701] = {.lex_state = 189}, + [3702] = {.lex_state = 87}, + [3703] = {.lex_state = 202}, + [3704] = {.lex_state = 87}, + [3705] = {.lex_state = 202}, + [3706] = {.lex_state = 87}, + [3707] = {.lex_state = 87}, + [3708] = {.lex_state = 71}, + [3709] = {.lex_state = 202}, + [3710] = {.lex_state = 92}, + [3711] = {.lex_state = 202}, + [3712] = {.lex_state = 202}, + [3713] = {.lex_state = 71}, + [3714] = {.lex_state = 87}, + [3715] = {.lex_state = 87}, + [3716] = {.lex_state = 87}, + [3717] = {.lex_state = 71}, + [3718] = {.lex_state = 202}, + [3719] = {.lex_state = 202}, + [3720] = {.lex_state = 189}, + [3721] = {.lex_state = 97}, + [3722] = {.lex_state = 97}, + [3723] = {.lex_state = 202}, + [3724] = {.lex_state = 87}, + [3725] = {.lex_state = 189}, + [3726] = {.lex_state = 202}, + [3727] = {.lex_state = 189}, + [3728] = {.lex_state = 87}, + [3729] = {.lex_state = 97}, + [3730] = {.lex_state = 87}, + [3731] = {.lex_state = 97}, + [3732] = {.lex_state = 202}, + [3733] = {.lex_state = 202}, + [3734] = {.lex_state = 71}, + [3735] = {.lex_state = 87}, + [3736] = {.lex_state = 87}, + [3737] = {.lex_state = 87}, + [3738] = {.lex_state = 189}, + [3739] = {.lex_state = 202}, + [3740] = {.lex_state = 87}, + [3741] = {.lex_state = 71}, + [3742] = {.lex_state = 202}, + [3743] = {.lex_state = 71}, + [3744] = {.lex_state = 189}, + [3745] = {.lex_state = 189}, + [3746] = {.lex_state = 189}, + [3747] = {.lex_state = 202}, + [3748] = {.lex_state = 87}, + [3749] = {.lex_state = 71}, + [3750] = {.lex_state = 202}, + [3751] = {.lex_state = 71}, + [3752] = {.lex_state = 87}, + [3753] = {.lex_state = 87}, + [3754] = {.lex_state = 202}, + [3755] = {.lex_state = 92}, + [3756] = {.lex_state = 202}, + [3757] = {.lex_state = 71}, + [3758] = {.lex_state = 83}, + [3759] = {.lex_state = 87}, + [3760] = {.lex_state = 202}, + [3761] = {.lex_state = 202}, + [3762] = {.lex_state = 71}, + [3763] = {.lex_state = 87}, + [3764] = {.lex_state = 202}, + [3765] = {.lex_state = 71}, + [3766] = {.lex_state = 87}, + [3767] = {.lex_state = 202}, + [3768] = {.lex_state = 90}, + [3769] = {.lex_state = 202}, + [3770] = {.lex_state = 90}, + [3771] = {.lex_state = 90}, + [3772] = {.lex_state = 87}, + [3773] = {.lex_state = 202}, + [3774] = {.lex_state = 202}, + [3775] = {.lex_state = 202}, + [3776] = {.lex_state = 87}, + [3777] = {.lex_state = 71}, + [3778] = {.lex_state = 71}, + [3779] = {.lex_state = 202}, + [3780] = {.lex_state = 202}, + [3781] = {.lex_state = 189}, + [3782] = {.lex_state = 71}, + [3783] = {.lex_state = 189}, + [3784] = {.lex_state = 71}, + [3785] = {.lex_state = 87}, + [3786] = {.lex_state = 90}, + [3787] = {.lex_state = 71}, + [3788] = {.lex_state = 87}, + [3789] = {.lex_state = 87}, + [3790] = {.lex_state = 202}, + [3791] = {.lex_state = 202}, + [3792] = {.lex_state = 87}, + [3793] = {.lex_state = 189}, + [3794] = {.lex_state = 189}, + [3795] = {.lex_state = 189}, + [3796] = {.lex_state = 87}, + [3797] = {.lex_state = 189}, + [3798] = {.lex_state = 189}, + [3799] = {.lex_state = 189}, + [3800] = {.lex_state = 202}, + [3801] = {.lex_state = 87}, + [3802] = {.lex_state = 71}, + [3803] = {.lex_state = 71}, + [3804] = {.lex_state = 202}, + [3805] = {.lex_state = 71}, + [3806] = {.lex_state = 202}, + [3807] = {.lex_state = 202}, + [3808] = {.lex_state = 202}, + [3809] = {.lex_state = 189}, + [3810] = {.lex_state = 202}, + [3811] = {.lex_state = 189}, + [3812] = {.lex_state = 202}, + [3813] = {.lex_state = 202}, + [3814] = {.lex_state = 202}, + [3815] = {.lex_state = 87}, + [3816] = {.lex_state = 202}, + [3817] = {.lex_state = 202}, + [3818] = {.lex_state = 202}, + [3819] = {.lex_state = 202}, + [3820] = {.lex_state = 202}, + [3821] = {.lex_state = 202}, + [3822] = {.lex_state = 202}, + [3823] = {.lex_state = 202}, + [3824] = {.lex_state = 202}, + [3825] = {.lex_state = 189}, + [3826] = {.lex_state = 87}, + [3827] = {.lex_state = 87}, + [3828] = {.lex_state = 189}, + [3829] = {.lex_state = 189}, + [3830] = {.lex_state = 71}, + [3831] = {.lex_state = 202}, + [3832] = {.lex_state = 87}, + [3833] = {.lex_state = 189}, + [3834] = {.lex_state = 189}, + [3835] = {.lex_state = 87}, + [3836] = {.lex_state = 71}, + [3837] = {.lex_state = 71}, + [3838] = {.lex_state = 189}, + [3839] = {.lex_state = 87}, + [3840] = {.lex_state = 87}, + [3841] = {.lex_state = 97}, + [3842] = {.lex_state = 90}, + [3843] = {.lex_state = 87}, + [3844] = {.lex_state = 202}, + [3845] = {.lex_state = 71}, + [3846] = {.lex_state = 202}, + [3847] = {.lex_state = 202}, + [3848] = {.lex_state = 83}, + [3849] = {.lex_state = 202}, + [3850] = {.lex_state = 202}, + [3851] = {.lex_state = 83}, + [3852] = {.lex_state = 87}, + [3853] = {.lex_state = 87}, + [3854] = {.lex_state = 189}, + [3855] = {.lex_state = 102}, + [3856] = {.lex_state = 87}, + [3857] = {.lex_state = 202}, + [3858] = {.lex_state = 87}, + [3859] = {.lex_state = 71}, + [3860] = {.lex_state = 71}, + [3861] = {.lex_state = 87}, + [3862] = {.lex_state = 202}, + [3863] = {.lex_state = 87}, + [3864] = {.lex_state = 71}, + [3865] = {.lex_state = 71}, + [3866] = {.lex_state = 71}, + [3867] = {.lex_state = 87}, + [3868] = {.lex_state = 71}, + [3869] = {.lex_state = 202}, + [3870] = {.lex_state = 202}, + [3871] = {.lex_state = 202}, + [3872] = {.lex_state = 87}, + [3873] = {.lex_state = 202}, + [3874] = {.lex_state = 202}, + [3875] = {.lex_state = 202}, + [3876] = {.lex_state = 202}, + [3877] = {.lex_state = 202}, + [3878] = {.lex_state = 202}, + [3879] = {.lex_state = 87}, + [3880] = {.lex_state = 87}, + [3881] = {.lex_state = 202}, + [3882] = {.lex_state = 202}, + [3883] = {.lex_state = 202}, + [3884] = {.lex_state = 98}, + [3885] = {.lex_state = 91}, + [3886] = {.lex_state = 98}, + [3887] = {.lex_state = 202}, + [3888] = {.lex_state = 87}, + [3889] = {.lex_state = 71}, + [3890] = {.lex_state = 87}, + [3891] = {.lex_state = 202}, + [3892] = {.lex_state = 87}, + [3893] = {.lex_state = 91}, + [3894] = {.lex_state = 98}, + [3895] = {.lex_state = 202}, + [3896] = {.lex_state = 87}, + [3897] = {.lex_state = 202}, + [3898] = {.lex_state = 91}, + [3899] = {.lex_state = 202}, + [3900] = {.lex_state = 98}, + [3901] = {.lex_state = 87}, + [3902] = {.lex_state = 202}, + [3903] = {.lex_state = 87}, + [3904] = {.lex_state = 202}, + [3905] = {.lex_state = 202}, + [3906] = {.lex_state = 91}, + [3907] = {.lex_state = 98}, + [3908] = {.lex_state = 202}, + [3909] = {.lex_state = 202}, + [3910] = {.lex_state = 202}, + [3911] = {.lex_state = 91}, + [3912] = {.lex_state = 87}, + [3913] = {.lex_state = 87}, + [3914] = {.lex_state = 202}, + [3915] = {.lex_state = 202}, + [3916] = {.lex_state = 202}, + [3917] = {.lex_state = 202}, + [3918] = {.lex_state = 91}, + [3919] = {.lex_state = 202}, + [3920] = {.lex_state = 98}, + [3921] = {.lex_state = 202}, + [3922] = {.lex_state = 202}, + [3923] = {.lex_state = 202}, + [3924] = {.lex_state = 202}, + [3925] = {.lex_state = 87}, + [3926] = {.lex_state = 91}, + [3927] = {.lex_state = 202}, + [3928] = {.lex_state = 98}, + [3929] = {.lex_state = 202}, + [3930] = {.lex_state = 202}, + [3931] = {.lex_state = 202}, + [3932] = {.lex_state = 202}, + [3933] = {.lex_state = 202}, + [3934] = {.lex_state = 87}, + [3935] = {.lex_state = 91}, + [3936] = {.lex_state = 98}, + [3937] = {.lex_state = 202}, + [3938] = {.lex_state = 202}, + [3939] = {.lex_state = 87}, + [3940] = {.lex_state = 202}, + [3941] = {.lex_state = 202}, + [3942] = {.lex_state = 202}, + [3943] = {.lex_state = 202}, + [3944] = {.lex_state = 202}, + [3945] = {.lex_state = 202}, + [3946] = {.lex_state = 202}, + [3947] = {.lex_state = 202}, + [3948] = {.lex_state = 202}, + [3949] = {.lex_state = 202}, + [3950] = {.lex_state = 202}, + [3951] = {.lex_state = 202}, + [3952] = {.lex_state = 91}, + [3953] = {.lex_state = 98}, + [3954] = {.lex_state = 83}, + [3955] = {.lex_state = 202}, + [3956] = {.lex_state = 202}, + [3957] = {.lex_state = 202}, + [3958] = {.lex_state = 202}, + [3959] = {.lex_state = 202}, + [3960] = {.lex_state = 202}, + [3961] = {.lex_state = 202}, + [3962] = {.lex_state = 87}, + [3963] = {.lex_state = 202}, + [3964] = {.lex_state = 202}, + [3965] = {.lex_state = 202}, + [3966] = {.lex_state = 202}, + [3967] = {.lex_state = 202}, + [3968] = {.lex_state = 202}, + [3969] = {.lex_state = 202}, + [3970] = {.lex_state = 202}, + [3971] = {.lex_state = 87}, + [3972] = {.lex_state = 91}, + [3973] = {.lex_state = 202}, + [3974] = {.lex_state = 202}, + [3975] = {.lex_state = 202}, + [3976] = {.lex_state = 202}, + [3977] = {.lex_state = 202}, + [3978] = {.lex_state = 98}, + [3979] = {.lex_state = 202}, + [3980] = {.lex_state = 202}, + [3981] = {.lex_state = 98}, + [3982] = {.lex_state = 202}, + [3983] = {.lex_state = 83}, + [3984] = {.lex_state = 91}, + [3985] = {.lex_state = 202}, + [3986] = {.lex_state = 83}, + [3987] = {.lex_state = 202}, + [3988] = {.lex_state = 202}, + [3989] = {.lex_state = 87}, + [3990] = {.lex_state = 202}, + [3991] = {.lex_state = 202}, + [3992] = {.lex_state = 91}, + [3993] = {.lex_state = 202}, + [3994] = {.lex_state = 202}, + [3995] = {.lex_state = 98}, + [3996] = {.lex_state = 202}, + [3997] = {.lex_state = 83}, + [3998] = {.lex_state = 91}, + [3999] = {.lex_state = 202}, + [4000] = {.lex_state = 87}, + [4001] = {.lex_state = 202}, + [4002] = {.lex_state = 98}, + [4003] = {.lex_state = 91}, + [4004] = {.lex_state = 202}, + [4005] = {.lex_state = 91}, + [4006] = {.lex_state = 98}, + [4007] = {.lex_state = 71}, + [4008] = {.lex_state = 98}, + [4009] = {.lex_state = 202}, + [4010] = {.lex_state = 202}, + [4011] = {.lex_state = 202}, + [4012] = {.lex_state = 202}, + [4013] = {.lex_state = 202}, + [4014] = {.lex_state = 202}, + [4015] = {.lex_state = 202}, + [4016] = {.lex_state = 202}, + [4017] = {.lex_state = 202}, + [4018] = {.lex_state = 202}, + [4019] = {.lex_state = 202}, + [4020] = {.lex_state = 91}, + [4021] = {.lex_state = 202}, + [4022] = {.lex_state = 98}, + [4023] = {.lex_state = 202}, + [4024] = {.lex_state = 202}, + [4025] = {.lex_state = 202}, + [4026] = {.lex_state = 202}, + [4027] = {.lex_state = 202}, + [4028] = {.lex_state = 202}, + [4029] = {.lex_state = 83}, + [4030] = {.lex_state = 202}, + [4031] = {.lex_state = 98}, + [4032] = {.lex_state = 98}, + [4033] = {.lex_state = 91}, + [4034] = {.lex_state = 91}, + [4035] = {.lex_state = 98}, + [4036] = {.lex_state = 202}, + [4037] = {.lex_state = 87}, + [4038] = {.lex_state = 202}, + [4039] = {.lex_state = 202}, + [4040] = {.lex_state = 98}, + [4041] = {.lex_state = 202}, + [4042] = {.lex_state = 202}, + [4043] = {.lex_state = 91}, + [4044] = {.lex_state = 91}, + [4045] = {.lex_state = 98}, + [4046] = {.lex_state = 202}, + [4047] = {.lex_state = 202}, + [4048] = {.lex_state = 202}, + [4049] = {.lex_state = 202}, + [4050] = {.lex_state = 202}, + [4051] = {.lex_state = 202}, + [4052] = {.lex_state = 202}, + [4053] = {.lex_state = 202}, + [4054] = {.lex_state = 202}, + [4055] = {.lex_state = 202}, + [4056] = {.lex_state = 202}, + [4057] = {.lex_state = 202}, + [4058] = {.lex_state = 202}, + [4059] = {.lex_state = 87}, + [4060] = {.lex_state = 202}, + [4061] = {.lex_state = 202}, + [4062] = {.lex_state = 202}, + [4063] = {.lex_state = 202}, + [4064] = {.lex_state = 202}, + [4065] = {.lex_state = 202}, + [4066] = {.lex_state = 202}, + [4067] = {.lex_state = 202}, + [4068] = {.lex_state = 98}, + [4069] = {.lex_state = 87}, + [4070] = {.lex_state = 91}, + [4071] = {.lex_state = 87}, + [4072] = {.lex_state = 202}, + [4073] = {.lex_state = 202}, + [4074] = {.lex_state = 202}, + [4075] = {.lex_state = 202}, + [4076] = {.lex_state = 83}, + [4077] = {.lex_state = 202}, + [4078] = {.lex_state = 202}, + [4079] = {.lex_state = 202}, + [4080] = {.lex_state = 202}, + [4081] = {.lex_state = 202}, + [4082] = {.lex_state = 202}, + [4083] = {.lex_state = 202}, + [4084] = {.lex_state = 202}, + [4085] = {.lex_state = 98}, + [4086] = {.lex_state = 202}, + [4087] = {.lex_state = 202}, + [4088] = {.lex_state = 87}, + [4089] = {.lex_state = 91}, + [4090] = {.lex_state = 98}, + [4091] = {.lex_state = 202}, + [4092] = {.lex_state = 91}, + [4093] = {.lex_state = 202}, + [4094] = {.lex_state = 202}, + [4095] = {.lex_state = 202}, + [4096] = {.lex_state = 202}, + [4097] = {.lex_state = 87}, + [4098] = {.lex_state = 202}, + [4099] = {.lex_state = 202}, + [4100] = {.lex_state = 202}, + [4101] = {.lex_state = 202}, + [4102] = {.lex_state = 202}, + [4103] = {.lex_state = 202}, + [4104] = {.lex_state = 71}, + [4105] = {.lex_state = 202}, + [4106] = {.lex_state = 202}, + [4107] = {.lex_state = 202}, + [4108] = {.lex_state = 91}, + [4109] = {.lex_state = 91}, + [4110] = {.lex_state = 98}, + [4111] = {.lex_state = 202}, + [4112] = {.lex_state = 202}, + [4113] = {.lex_state = 202}, + [4114] = {.lex_state = 202}, + [4115] = {.lex_state = 202}, + [4116] = {.lex_state = 202}, + [4117] = {.lex_state = 202}, + [4118] = {.lex_state = 202}, + [4119] = {.lex_state = 202}, + [4120] = {.lex_state = 202}, + [4121] = {.lex_state = 202}, + [4122] = {.lex_state = 87}, + [4123] = {.lex_state = 87}, + [4124] = {.lex_state = 202}, + [4125] = {.lex_state = 202}, + [4126] = {.lex_state = 202}, + [4127] = {.lex_state = 87}, + [4128] = {.lex_state = 202}, + [4129] = {.lex_state = 202}, + [4130] = {.lex_state = 202}, + [4131] = {.lex_state = 202}, + [4132] = {.lex_state = 202}, + [4133] = {.lex_state = 87}, + [4134] = {.lex_state = 202}, + [4135] = {.lex_state = 202}, + [4136] = {.lex_state = 91}, + [4137] = {.lex_state = 202}, + [4138] = {.lex_state = 202}, + [4139] = {.lex_state = 202}, + [4140] = {.lex_state = 202}, + [4141] = {.lex_state = 202}, + [4142] = {.lex_state = 98}, + [4143] = {.lex_state = 202}, + [4144] = {.lex_state = 202}, + [4145] = {.lex_state = 202}, + [4146] = {.lex_state = 202}, + [4147] = {.lex_state = 71}, + [4148] = {.lex_state = 202}, + [4149] = {.lex_state = 202}, + [4150] = {.lex_state = 202}, + [4151] = {.lex_state = 202}, + [4152] = {.lex_state = 202}, + [4153] = {.lex_state = 202}, + [4154] = {.lex_state = 202}, + [4155] = {.lex_state = 202}, + [4156] = {.lex_state = 87}, + [4157] = {.lex_state = 202}, + [4158] = {.lex_state = 87}, + [4159] = {.lex_state = 202}, + [4160] = {.lex_state = 202}, + [4161] = {.lex_state = 202}, + [4162] = {.lex_state = 202}, + [4163] = {.lex_state = 202}, + [4164] = {.lex_state = 202}, + [4165] = {.lex_state = 202}, + [4166] = {.lex_state = 87}, + [4167] = {.lex_state = 202}, + [4168] = {.lex_state = 202}, + [4169] = {.lex_state = 202}, + [4170] = {.lex_state = 202}, + [4171] = {.lex_state = 202}, + [4172] = {.lex_state = 202}, + [4173] = {.lex_state = 202}, + [4174] = {.lex_state = 202}, + [4175] = {.lex_state = 87}, + [4176] = {.lex_state = 202}, + [4177] = {.lex_state = 202}, + [4178] = {.lex_state = 87}, + [4179] = {.lex_state = 202}, + [4180] = {.lex_state = 87}, + [4181] = {.lex_state = 202}, + [4182] = {.lex_state = 202}, + [4183] = {.lex_state = 202}, + [4184] = {.lex_state = 202}, + [4185] = {.lex_state = 202}, + [4186] = {.lex_state = 202}, + [4187] = {.lex_state = 202}, + [4188] = {.lex_state = 202}, + [4189] = {.lex_state = 202}, + [4190] = {.lex_state = 202}, + [4191] = {.lex_state = 202}, + [4192] = {.lex_state = 202}, + [4193] = {.lex_state = 202}, + [4194] = {.lex_state = 202}, + [4195] = {.lex_state = 202}, + [4196] = {.lex_state = 202}, + [4197] = {.lex_state = 202}, + [4198] = {.lex_state = 202}, + [4199] = {.lex_state = 87}, + [4200] = {.lex_state = 87}, + [4201] = {.lex_state = 202}, + [4202] = {.lex_state = 202}, + [4203] = {.lex_state = 87}, + [4204] = {.lex_state = 202}, + [4205] = {.lex_state = 202}, + [4206] = {.lex_state = 87}, + [4207] = {.lex_state = 87}, + [4208] = {.lex_state = 202}, + [4209] = {.lex_state = 202}, + [4210] = {.lex_state = 87}, + [4211] = {.lex_state = 87}, + [4212] = {.lex_state = 202}, + [4213] = {.lex_state = 202}, + [4214] = {.lex_state = 202}, + [4215] = {.lex_state = 202}, + [4216] = {.lex_state = 202}, + [4217] = {.lex_state = 202}, + [4218] = {.lex_state = 202}, + [4219] = {.lex_state = 202}, + [4220] = {.lex_state = 87}, + [4221] = {.lex_state = 202}, + [4222] = {.lex_state = 202}, + [4223] = {.lex_state = 202}, + [4224] = {.lex_state = 202}, + [4225] = {.lex_state = 202}, + [4226] = {.lex_state = 202}, + [4227] = {.lex_state = 202}, + [4228] = {.lex_state = 202}, + [4229] = {.lex_state = 202}, + [4230] = {.lex_state = 202}, + [4231] = {.lex_state = 202}, + [4232] = {.lex_state = 202}, + [4233] = {.lex_state = 202}, + [4234] = {.lex_state = 202}, + [4235] = {.lex_state = 202}, + [4236] = {.lex_state = 202}, + [4237] = {.lex_state = 202}, + [4238] = {.lex_state = 202}, + [4239] = {.lex_state = 202}, + [4240] = {.lex_state = 202}, + [4241] = {.lex_state = 202}, + [4242] = {.lex_state = 202}, + [4243] = {.lex_state = 202}, + [4244] = {.lex_state = 87}, + [4245] = {.lex_state = 202}, + [4246] = {.lex_state = 202}, + [4247] = {.lex_state = 202}, + [4248] = {.lex_state = 202}, + [4249] = {.lex_state = 202}, + [4250] = {.lex_state = 202}, + [4251] = {.lex_state = 202}, + [4252] = {.lex_state = 202}, + [4253] = {.lex_state = 87}, + [4254] = {.lex_state = 202}, + [4255] = {.lex_state = 202}, + [4256] = {.lex_state = 202}, + [4257] = {.lex_state = 202}, + [4258] = {.lex_state = 202}, + [4259] = {.lex_state = 202}, + [4260] = {.lex_state = 71}, + [4261] = {.lex_state = 202}, + [4262] = {.lex_state = 202}, + [4263] = {.lex_state = 202}, + [4264] = {.lex_state = 202}, + [4265] = {.lex_state = 202}, + [4266] = {.lex_state = 202}, + [4267] = {.lex_state = 202}, + [4268] = {.lex_state = 202}, + [4269] = {.lex_state = 202}, + [4270] = {.lex_state = 202}, + [4271] = {.lex_state = 202}, + [4272] = {.lex_state = 202}, + [4273] = {.lex_state = 202}, + [4274] = {.lex_state = 202}, + [4275] = {.lex_state = 202}, + [4276] = {.lex_state = 202}, + [4277] = {.lex_state = 202}, + [4278] = {.lex_state = 202}, + [4279] = {.lex_state = 87}, + [4280] = {.lex_state = 87}, + [4281] = {.lex_state = 202}, + [4282] = {.lex_state = 87}, + [4283] = {.lex_state = 202}, + [4284] = {.lex_state = 202}, + [4285] = {.lex_state = 202}, + [4286] = {.lex_state = 202}, + [4287] = {.lex_state = 202}, + [4288] = {.lex_state = 87}, + [4289] = {.lex_state = 202}, + [4290] = {.lex_state = 202}, + [4291] = {.lex_state = 202}, + [4292] = {.lex_state = 202}, + [4293] = {.lex_state = 202}, + [4294] = {.lex_state = 202}, + [4295] = {.lex_state = 202}, + [4296] = {.lex_state = 202}, + [4297] = {.lex_state = 202}, + [4298] = {.lex_state = 202}, + [4299] = {.lex_state = 202}, + [4300] = {.lex_state = 202}, + [4301] = {.lex_state = 202}, + [4302] = {.lex_state = 202}, + [4303] = {.lex_state = 202}, + [4304] = {.lex_state = 202}, + [4305] = {.lex_state = 87}, + [4306] = {.lex_state = 202}, + [4307] = {.lex_state = 202}, + [4308] = {.lex_state = 202}, + [4309] = {.lex_state = 202}, + [4310] = {.lex_state = 87}, + [4311] = {.lex_state = 202}, + [4312] = {.lex_state = 202}, + [4313] = {.lex_state = 87}, + [4314] = {.lex_state = 202}, + [4315] = {.lex_state = 202}, + [4316] = {.lex_state = 202}, + [4317] = {.lex_state = 202}, + [4318] = {.lex_state = 202}, + [4319] = {.lex_state = 202}, + [4320] = {.lex_state = 202}, + [4321] = {.lex_state = 202}, + [4322] = {.lex_state = 202}, + [4323] = {.lex_state = 202}, + [4324] = {.lex_state = 202}, + [4325] = {.lex_state = 202}, + [4326] = {.lex_state = 202}, + [4327] = {.lex_state = 202}, + [4328] = {.lex_state = 202}, + [4329] = {.lex_state = 202}, + [4330] = {.lex_state = 202}, + [4331] = {.lex_state = 87}, + [4332] = {.lex_state = 202}, + [4333] = {.lex_state = 202}, + [4334] = {.lex_state = 202}, + [4335] = {.lex_state = 202}, + [4336] = {.lex_state = 202}, + [4337] = {.lex_state = 202}, + [4338] = {.lex_state = 202}, + [4339] = {.lex_state = 202}, + [4340] = {.lex_state = 87}, + [4341] = {.lex_state = 87}, + [4342] = {.lex_state = 202}, + [4343] = {.lex_state = 202}, + [4344] = {.lex_state = 202}, + [4345] = {.lex_state = 202}, + [4346] = {.lex_state = 87}, + [4347] = {.lex_state = 202}, + [4348] = {.lex_state = 202}, + [4349] = {.lex_state = 202}, + [4350] = {.lex_state = 87}, + [4351] = {.lex_state = 202}, + [4352] = {.lex_state = 87}, + [4353] = {.lex_state = 202}, + [4354] = {.lex_state = 202}, + [4355] = {.lex_state = 202}, + [4356] = {.lex_state = 202}, + [4357] = {.lex_state = 202}, + [4358] = {.lex_state = 202}, + [4359] = {.lex_state = 202}, + [4360] = {.lex_state = 87}, + [4361] = {.lex_state = 202}, + [4362] = {.lex_state = 202}, + [4363] = {.lex_state = 202}, + [4364] = {.lex_state = 202}, + [4365] = {.lex_state = 202}, + [4366] = {.lex_state = 202}, + [4367] = {.lex_state = 202}, + [4368] = {.lex_state = 202}, + [4369] = {.lex_state = 202}, + [4370] = {.lex_state = 202}, + [4371] = {.lex_state = 202}, + [4372] = {.lex_state = 202}, + [4373] = {.lex_state = 202}, + [4374] = {.lex_state = 202}, + [4375] = {.lex_state = 202}, + [4376] = {.lex_state = 202}, + [4377] = {.lex_state = 202}, + [4378] = {.lex_state = 87}, + [4379] = {.lex_state = 202}, + [4380] = {.lex_state = 202}, + [4381] = {.lex_state = 87}, + [4382] = {.lex_state = 202}, + [4383] = {.lex_state = 202}, + [4384] = {.lex_state = 202}, + [4385] = {.lex_state = 202}, + [4386] = {.lex_state = 202}, + [4387] = {.lex_state = 87}, + [4388] = {.lex_state = 202}, + [4389] = {.lex_state = 202}, + [4390] = {.lex_state = 202}, + [4391] = {.lex_state = 202}, + [4392] = {.lex_state = 202}, + [4393] = {.lex_state = 87}, + [4394] = {.lex_state = 202}, + [4395] = {.lex_state = 87}, + [4396] = {.lex_state = 202}, + [4397] = {.lex_state = 202}, + [4398] = {.lex_state = 202}, + [4399] = {.lex_state = 202}, + [4400] = {.lex_state = 87}, + [4401] = {.lex_state = 202}, + [4402] = {.lex_state = 202}, + [4403] = {.lex_state = 202}, + [4404] = {.lex_state = 202}, + [4405] = {.lex_state = 202}, + [4406] = {.lex_state = 202}, + [4407] = {.lex_state = 202}, + [4408] = {.lex_state = 202}, + [4409] = {.lex_state = 202}, + [4410] = {.lex_state = 87}, + [4411] = {.lex_state = 202}, + [4412] = {.lex_state = 202}, + [4413] = {.lex_state = 202}, + [4414] = {.lex_state = 87}, + [4415] = {.lex_state = 202}, + [4416] = {.lex_state = 202}, + [4417] = {.lex_state = 87}, + [4418] = {.lex_state = 71}, + [4419] = {.lex_state = 202}, + [4420] = {.lex_state = 202}, + [4421] = {.lex_state = 202}, + [4422] = {.lex_state = 202}, + [4423] = {.lex_state = 202}, + [4424] = {.lex_state = 202}, + [4425] = {.lex_state = 202}, + [4426] = {.lex_state = 202}, + [4427] = {.lex_state = 202}, + [4428] = {.lex_state = 202}, + [4429] = {.lex_state = 202}, + [4430] = {.lex_state = 87}, + [4431] = {.lex_state = 202}, + [4432] = {.lex_state = 202}, + [4433] = {.lex_state = 202}, + [4434] = {.lex_state = 202}, + [4435] = {.lex_state = 111}, + [4436] = {.lex_state = 202}, + [4437] = {.lex_state = 202}, + [4438] = {.lex_state = 202}, + [4439] = {.lex_state = 202}, + [4440] = {.lex_state = 202}, + [4441] = {.lex_state = 202}, + [4442] = {.lex_state = 202}, + [4443] = {.lex_state = 111}, + [4444] = {.lex_state = 202}, + [4445] = {.lex_state = 202}, + [4446] = {.lex_state = 202}, + [4447] = {.lex_state = 202}, + [4448] = {.lex_state = 202}, + [4449] = {.lex_state = 43}, + [4450] = {.lex_state = 202}, + [4451] = {.lex_state = 43}, + [4452] = {.lex_state = 202}, + [4453] = {.lex_state = 202}, + [4454] = {.lex_state = 111}, + [4455] = {.lex_state = 202}, + [4456] = {.lex_state = 202}, + [4457] = {.lex_state = 202}, + [4458] = {.lex_state = 202}, + [4459] = {.lex_state = 202}, + [4460] = {.lex_state = 43}, + [4461] = {.lex_state = 112}, + [4462] = {.lex_state = 43}, + [4463] = {.lex_state = 43}, + [4464] = {.lex_state = 202}, + [4465] = {.lex_state = 202}, + [4466] = {.lex_state = 202}, + [4467] = {.lex_state = 202}, + [4468] = {.lex_state = 202}, + [4469] = {.lex_state = 43}, + [4470] = {.lex_state = 43}, + [4471] = {.lex_state = 202}, + [4472] = {.lex_state = 202}, + [4473] = {.lex_state = 202}, + [4474] = {.lex_state = 202}, + [4475] = {.lex_state = 111}, + [4476] = {.lex_state = 87}, + [4477] = {.lex_state = 87}, + [4478] = {.lex_state = 87}, + [4479] = {.lex_state = 87}, + [4480] = {.lex_state = 202}, + [4481] = {.lex_state = 202}, + [4482] = {.lex_state = 111}, + [4483] = {.lex_state = 202}, + [4484] = {.lex_state = 202}, + [4485] = {.lex_state = 202}, + [4486] = {.lex_state = 202}, + [4487] = {.lex_state = 43}, + [4488] = {.lex_state = 202}, + [4489] = {.lex_state = 202}, + [4490] = {.lex_state = 202}, + [4491] = {.lex_state = 43}, + [4492] = {.lex_state = 202}, + [4493] = {.lex_state = 202}, + [4494] = {.lex_state = 202}, + [4495] = {.lex_state = 202}, + [4496] = {.lex_state = 111}, + [4497] = {.lex_state = 202}, + [4498] = {.lex_state = 202}, + [4499] = {.lex_state = 202}, + [4500] = {.lex_state = 202}, + [4501] = {.lex_state = 202}, + [4502] = {.lex_state = 202}, + [4503] = {.lex_state = 202}, + [4504] = {.lex_state = 202}, + [4505] = {.lex_state = 202}, + [4506] = {.lex_state = 202}, + [4507] = {.lex_state = 202}, + [4508] = {.lex_state = 202}, + [4509] = {.lex_state = 202}, + [4510] = {.lex_state = 202}, + [4511] = {.lex_state = 202}, + [4512] = {.lex_state = 43}, + [4513] = {.lex_state = 202}, + [4514] = {.lex_state = 202}, + [4515] = {.lex_state = 202}, + [4516] = {.lex_state = 202}, + [4517] = {.lex_state = 111}, + [4518] = {.lex_state = 202}, + [4519] = {.lex_state = 202}, + [4520] = {.lex_state = 87}, + [4521] = {.lex_state = 202}, + [4522] = {.lex_state = 202}, + [4523] = {.lex_state = 202}, + [4524] = {.lex_state = 202}, + [4525] = {.lex_state = 202}, + [4526] = {.lex_state = 202}, + [4527] = {.lex_state = 111}, + [4528] = {.lex_state = 202}, + [4529] = {.lex_state = 202}, + [4530] = {.lex_state = 202}, + [4531] = {.lex_state = 202}, + [4532] = {.lex_state = 87}, + [4533] = {.lex_state = 43}, + [4534] = {.lex_state = 43}, + [4535] = {.lex_state = 202}, + [4536] = {.lex_state = 202}, + [4537] = {.lex_state = 202}, + [4538] = {.lex_state = 111}, + [4539] = {.lex_state = 202}, + [4540] = {.lex_state = 202}, + [4541] = {.lex_state = 87}, + [4542] = {.lex_state = 202}, + [4543] = {.lex_state = 202}, + [4544] = {.lex_state = 202}, + [4545] = {.lex_state = 202}, + [4546] = {.lex_state = 202}, + [4547] = {.lex_state = 202}, + [4548] = {.lex_state = 202}, + [4549] = {.lex_state = 202}, + [4550] = {.lex_state = 202}, + [4551] = {.lex_state = 202}, + [4552] = {.lex_state = 202}, + [4553] = {.lex_state = 202}, + [4554] = {.lex_state = 43}, + [4555] = {.lex_state = 202}, + [4556] = {.lex_state = 202}, + [4557] = {.lex_state = 202}, + [4558] = {.lex_state = 202}, + [4559] = {.lex_state = 111}, + [4560] = {.lex_state = 202}, + [4561] = {.lex_state = 202}, + [4562] = {.lex_state = 202}, + [4563] = {.lex_state = 202}, + [4564] = {.lex_state = 87}, + [4565] = {.lex_state = 202}, + [4566] = {.lex_state = 202}, + [4567] = {.lex_state = 202}, + [4568] = {.lex_state = 202}, + [4569] = {.lex_state = 202}, + [4570] = {.lex_state = 202}, + [4571] = {.lex_state = 43}, + [4572] = {.lex_state = 202}, + [4573] = {.lex_state = 202}, + [4574] = {.lex_state = 202}, + [4575] = {.lex_state = 111}, + [4576] = {.lex_state = 202}, + [4577] = {.lex_state = 202}, + [4578] = {.lex_state = 43}, + [4579] = {.lex_state = 43}, + [4580] = {.lex_state = 111}, + [4581] = {.lex_state = 202}, + [4582] = {.lex_state = 202}, + [4583] = {.lex_state = 202}, + [4584] = {.lex_state = 202}, + [4585] = {.lex_state = 202}, + [4586] = {.lex_state = 202}, + [4587] = {.lex_state = 202}, + [4588] = {.lex_state = 202}, + [4589] = {.lex_state = 87}, + [4590] = {.lex_state = 202}, + [4591] = {.lex_state = 87}, + [4592] = {.lex_state = 87}, + [4593] = {.lex_state = 202}, + [4594] = {.lex_state = 87}, + [4595] = {.lex_state = 202}, + [4596] = {.lex_state = 202}, + [4597] = {.lex_state = 111}, + [4598] = {.lex_state = 87}, + [4599] = {.lex_state = 87}, + [4600] = {.lex_state = 87}, + [4601] = {.lex_state = 87}, + [4602] = {.lex_state = 202}, + [4603] = {.lex_state = 87}, + [4604] = {.lex_state = 202}, + [4605] = {.lex_state = 202}, + [4606] = {.lex_state = 202}, + [4607] = {.lex_state = 202}, + [4608] = {.lex_state = 202}, + [4609] = {.lex_state = 202}, + [4610] = {.lex_state = 202}, + [4611] = {.lex_state = 202}, + [4612] = {.lex_state = 202}, + [4613] = {.lex_state = 202}, + [4614] = {.lex_state = 202}, + [4615] = {.lex_state = 202}, + [4616] = {.lex_state = 202}, + [4617] = {.lex_state = 202}, + [4618] = {.lex_state = 202}, + [4619] = {.lex_state = 202}, + [4620] = {.lex_state = 202}, + [4621] = {.lex_state = 202}, + [4622] = {.lex_state = 202}, + [4623] = {.lex_state = 202}, + [4624] = {.lex_state = 202}, + [4625] = {.lex_state = 202}, + [4626] = {.lex_state = 202}, + [4627] = {.lex_state = 202}, + [4628] = {.lex_state = 202}, + [4629] = {.lex_state = 202}, + [4630] = {.lex_state = 202}, + [4631] = {.lex_state = 202}, + [4632] = {.lex_state = 202}, + [4633] = {.lex_state = 202}, + [4634] = {.lex_state = 71}, + [4635] = {.lex_state = 43}, + [4636] = {.lex_state = 87}, + [4637] = {.lex_state = 202}, + [4638] = {.lex_state = 202}, + [4639] = {.lex_state = 111}, + [4640] = {.lex_state = 87}, + [4641] = {.lex_state = 202}, + [4642] = {.lex_state = 202}, + [4643] = {.lex_state = 202}, + [4644] = {.lex_state = 202}, + [4645] = {.lex_state = 202}, + [4646] = {.lex_state = 202}, + [4647] = {.lex_state = 202}, + [4648] = {.lex_state = 202}, + [4649] = {.lex_state = 202}, + [4650] = {.lex_state = 43}, + [4651] = {.lex_state = 202}, + [4652] = {.lex_state = 202}, + [4653] = {.lex_state = 202}, + [4654] = {.lex_state = 43}, + [4655] = {.lex_state = 202}, + [4656] = {.lex_state = 202}, + [4657] = {.lex_state = 202}, + [4658] = {.lex_state = 202}, + [4659] = {.lex_state = 202}, + [4660] = {.lex_state = 202}, + [4661] = {.lex_state = 202}, + [4662] = {.lex_state = 202}, + [4663] = {.lex_state = 202}, + [4664] = {.lex_state = 202}, + [4665] = {.lex_state = 43}, + [4666] = {.lex_state = 202}, + [4667] = {.lex_state = 202}, + [4668] = {.lex_state = 202}, + [4669] = {.lex_state = 202}, + [4670] = {.lex_state = 202}, + [4671] = {.lex_state = 202}, + [4672] = {.lex_state = 202}, + [4673] = {.lex_state = 215}, + [4674] = {.lex_state = 202}, + [4675] = {.lex_state = 202}, + [4676] = {.lex_state = 202}, + [4677] = {.lex_state = 202}, + [4678] = {.lex_state = 202}, + [4679] = {.lex_state = 202}, + [4680] = {.lex_state = 202}, + [4681] = {.lex_state = 202}, + [4682] = {.lex_state = 202}, + [4683] = {.lex_state = 202}, + [4684] = {.lex_state = 202}, + [4685] = {.lex_state = 202}, + [4686] = {.lex_state = 202}, + [4687] = {.lex_state = 202}, + [4688] = {.lex_state = 202}, + [4689] = {.lex_state = 202}, + [4690] = {.lex_state = 202}, + [4691] = {.lex_state = 202}, + [4692] = {.lex_state = 202}, + [4693] = {.lex_state = 202}, + [4694] = {.lex_state = 202}, + [4695] = {.lex_state = 215}, + [4696] = {.lex_state = 202}, + [4697] = {.lex_state = 87}, + [4698] = {.lex_state = 202}, + [4699] = {.lex_state = 202}, + [4700] = {.lex_state = 202}, + [4701] = {.lex_state = 202}, + [4702] = {.lex_state = 202}, + [4703] = {.lex_state = 202}, + [4704] = {.lex_state = 202}, + [4705] = {.lex_state = 202}, + [4706] = {.lex_state = 202}, + [4707] = {.lex_state = 202}, + [4708] = {.lex_state = 202}, + [4709] = {.lex_state = 202}, + [4710] = {.lex_state = 202}, + [4711] = {.lex_state = 202}, + [4712] = {.lex_state = 202}, + [4713] = {.lex_state = 202}, + [4714] = {.lex_state = 202}, + [4715] = {.lex_state = 202}, + [4716] = {.lex_state = 202}, + [4717] = {.lex_state = 202}, + [4718] = {.lex_state = 43}, + [4719] = {.lex_state = 202}, + [4720] = {.lex_state = 202}, + [4721] = {.lex_state = 202}, + [4722] = {.lex_state = 87}, + [4723] = {.lex_state = 202}, + [4724] = {.lex_state = 112}, + [4725] = {.lex_state = 202}, + [4726] = {.lex_state = 202}, + [4727] = {.lex_state = 202}, + [4728] = {.lex_state = 202}, + [4729] = {.lex_state = 202}, + [4730] = {.lex_state = 202}, + [4731] = {.lex_state = 202}, + [4732] = {.lex_state = 202}, + [4733] = {.lex_state = 202}, + [4734] = {.lex_state = 202}, + [4735] = {.lex_state = 202}, + [4736] = {.lex_state = 202}, + [4737] = {.lex_state = 43}, + [4738] = {.lex_state = 202}, + [4739] = {.lex_state = 202}, + [4740] = {.lex_state = 202}, + [4741] = {.lex_state = 202}, + [4742] = {.lex_state = 202}, + [4743] = {.lex_state = 202}, + [4744] = {.lex_state = 202}, + [4745] = {.lex_state = 202}, + [4746] = {.lex_state = 87}, + [4747] = {.lex_state = 202}, + [4748] = {.lex_state = 87}, + [4749] = {.lex_state = 202}, + [4750] = {.lex_state = 202}, + [4751] = {.lex_state = 202}, + [4752] = {.lex_state = 87}, + [4753] = {.lex_state = 202}, + [4754] = {.lex_state = 202}, + [4755] = {.lex_state = 87}, + [4756] = {.lex_state = 202}, + [4757] = {.lex_state = 202}, + [4758] = {.lex_state = 202}, + [4759] = {.lex_state = 202}, + [4760] = {(TSStateId)(-1)}, + [4761] = {(TSStateId)(-1)}, + [4762] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [sym_line_comment] = STATE(0), + [sym_block_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_POUND_BANG] = ACTIONS(1), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [aux_sym_block_comment_token2] = ACTIONS(1), + [aux_sym_block_comment_token3] = ACTIONS(1), + [anon_sym_STAR_SLASH] = ACTIONS(1), [anon_sym_module] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -26160,10137 +19401,10203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4690), + [sym_source_file] = STATE(4707), [sym_shebang] = STATE(2), [sym_line_comment] = STATE(1), - [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(7), - [sym_import_declaration] = STATE(1621), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), + [sym_block_comment] = STATE(1), + [sym_module_clause] = STATE(4), + [sym_import_list] = STATE(9), + [sym_import_declaration] = STATE(1623), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), [sym_attributes] = STATE(3476), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_import_list_repeat1] = STATE(1560), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_import_list_repeat1] = STATE(1523), [aux_sym_attributes_repeat1] = STATE(3442), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_POUND_BANG] = ACTIONS(11), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_module] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(109), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(111), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [2] = { [sym_line_comment] = STATE(2), - [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1621), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), + [sym_block_comment] = STATE(2), + [sym_module_clause] = STATE(3), + [sym_import_list] = STATE(8), + [sym_import_declaration] = STATE(1623), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), [sym_attributes] = STATE(3476), - [sym_attribute] = STATE(3396), + [sym_attribute] = STATE(3416), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1560), + [aux_sym_import_list_repeat1] = STATE(1523), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_module] = ACTIONS(13), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [3] = { [sym_line_comment] = STATE(3), - [sym_import_list] = STATE(5), - [sym_import_declaration] = STATE(1621), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1560), + [sym_block_comment] = STATE(3), + [sym_import_list] = STATE(7), + [sym_import_declaration] = STATE(1623), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_import_list_repeat1] = STATE(1523), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [4] = { [sym_line_comment] = STATE(4), - [sym_import_list] = STATE(9), - [sym_import_declaration] = STATE(1621), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1560), + [sym_block_comment] = STATE(4), + [sym_import_list] = STATE(8), + [sym_import_declaration] = STATE(1623), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_import_list_repeat1] = STATE(1523), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(131), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [5] = { [sym_line_comment] = STATE(5), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(6), + [sym_block_comment] = STATE(5), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(10), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(131), + [ts_builtin_sym_end] = ACTIONS(135), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [6] = { [sym_line_comment] = STATE(6), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), + [sym_block_comment] = STATE(6), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), [aux_sym_source_file_repeat1] = STATE(10), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(137), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [7] = { [sym_line_comment] = STATE(7), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(12), + [sym_block_comment] = STATE(7), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(5), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(137), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [8] = { [sym_line_comment] = STATE(8), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(10), + [sym_block_comment] = STATE(8), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(6), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [9] = { [sym_line_comment] = STATE(9), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), - [aux_sym_source_file_repeat1] = STATE(11), + [sym_block_comment] = STATE(9), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), + [aux_sym_source_file_repeat1] = STATE(12), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [10] = { [sym_line_comment] = STATE(10), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), + [sym_block_comment] = STATE(10), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), [aux_sym_source_file_repeat1] = STATE(10), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym___global] = ACTIONS(152), - [anon_sym_type] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(164), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(170), - [anon_sym_pub] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(176), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_interface] = ACTIONS(182), - [anon_sym_QMARK] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(188), - [anon_sym_go] = ACTIONS(191), - [anon_sym_spawn] = ACTIONS(194), - [anon_sym_json_DOTdecode] = ACTIONS(197), - [anon_sym_LBRACK2] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(206), - [sym_none] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_nil] = ACTIONS(209), - [anon_sym_if] = ACTIONS(212), - [anon_sym_DOLLARif] = ACTIONS(215), - [anon_sym_match] = ACTIONS(218), - [anon_sym_select] = ACTIONS(221), - [anon_sym_lock] = ACTIONS(224), - [anon_sym_rlock] = ACTIONS(224), - [anon_sym_unsafe] = ACTIONS(227), - [anon_sym_sql] = ACTIONS(230), - [sym_int_literal] = ACTIONS(209), - [sym_float_literal] = ACTIONS(233), - [sym_rune_literal] = ACTIONS(233), - [sym_pseudo_compile_time_identifier] = ACTIONS(236), - [anon_sym_shared] = ACTIONS(239), - [anon_sym_map_LBRACK] = ACTIONS(242), - [anon_sym_chan] = ACTIONS(245), - [anon_sym_thread] = ACTIONS(248), - [anon_sym_atomic] = ACTIONS(251), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_defer] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(260), - [anon_sym_break] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(266), - [anon_sym_return] = ACTIONS(269), - [anon_sym_DOLLARfor] = ACTIONS(272), - [anon_sym_for] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(278), - [anon_sym_asm] = ACTIONS(281), - [anon_sym_AT_LBRACK] = ACTIONS(284), - [sym___double_quote] = ACTIONS(287), - [sym___single_quote] = ACTIONS(290), - [sym___c_double_quote] = ACTIONS(293), - [sym___c_single_quote] = ACTIONS(296), - [sym___r_double_quote] = ACTIONS(299), - [sym___r_single_quote] = ACTIONS(302), + [ts_builtin_sym_end] = ACTIONS(139), + [sym_identifier] = ACTIONS(141), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(144), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_const] = ACTIONS(150), + [anon_sym_LPAREN] = ACTIONS(153), + [anon_sym___global] = ACTIONS(156), + [anon_sym_type] = ACTIONS(159), + [anon_sym_fn] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_STAR] = ACTIONS(168), + [anon_sym_struct] = ACTIONS(171), + [anon_sym_union] = ACTIONS(174), + [anon_sym_pub] = ACTIONS(177), + [anon_sym_mut] = ACTIONS(180), + [anon_sym_enum] = ACTIONS(183), + [anon_sym_interface] = ACTIONS(186), + [anon_sym_QMARK] = ACTIONS(189), + [anon_sym_BANG] = ACTIONS(192), + [anon_sym_go] = ACTIONS(195), + [anon_sym_spawn] = ACTIONS(198), + [anon_sym_json_DOTdecode] = ACTIONS(201), + [anon_sym_LBRACK2] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(207), + [anon_sym_LT_DASH] = ACTIONS(210), + [sym_none] = ACTIONS(213), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_nil] = ACTIONS(213), + [anon_sym_if] = ACTIONS(216), + [anon_sym_DOLLARif] = ACTIONS(219), + [anon_sym_match] = ACTIONS(222), + [anon_sym_select] = ACTIONS(225), + [anon_sym_lock] = ACTIONS(228), + [anon_sym_rlock] = ACTIONS(228), + [anon_sym_unsafe] = ACTIONS(231), + [anon_sym_sql] = ACTIONS(234), + [sym_int_literal] = ACTIONS(213), + [sym_float_literal] = ACTIONS(237), + [sym_rune_literal] = ACTIONS(237), + [sym_pseudo_compile_time_identifier] = ACTIONS(240), + [anon_sym_shared] = ACTIONS(243), + [anon_sym_map_LBRACK] = ACTIONS(246), + [anon_sym_chan] = ACTIONS(249), + [anon_sym_thread] = ACTIONS(252), + [anon_sym_atomic] = ACTIONS(255), + [anon_sym_assert] = ACTIONS(258), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_goto] = ACTIONS(264), + [anon_sym_break] = ACTIONS(267), + [anon_sym_continue] = ACTIONS(270), + [anon_sym_return] = ACTIONS(273), + [anon_sym_DOLLARfor] = ACTIONS(276), + [anon_sym_for] = ACTIONS(279), + [anon_sym_POUND] = ACTIONS(282), + [anon_sym_asm] = ACTIONS(285), + [anon_sym_AT_LBRACK] = ACTIONS(288), + [sym___double_quote] = ACTIONS(291), + [sym___single_quote] = ACTIONS(294), + [sym___c_double_quote] = ACTIONS(297), + [sym___c_single_quote] = ACTIONS(300), + [sym___r_double_quote] = ACTIONS(303), + [sym___r_single_quote] = ACTIONS(306), }, [11] = { [sym_line_comment] = STATE(11), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), + [sym_block_comment] = STATE(11), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), [aux_sym_source_file_repeat1] = STATE(10), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [12] = { [sym_line_comment] = STATE(12), - [sym_const_declaration] = STATE(1583), - [sym_global_var_declaration] = STATE(1583), - [sym_type_declaration] = STATE(1583), - [sym_function_declaration] = STATE(1583), - [sym_static_method_declaration] = STATE(1583), - [sym_struct_declaration] = STATE(1583), - [sym_enum_declaration] = STATE(1583), - [sym_interface_declaration] = STATE(1583), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_visibility_modifiers] = STATE(3529), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1583), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_attributes] = STATE(3482), - [sym_attribute] = STATE(3396), + [sym_block_comment] = STATE(12), + [sym_const_declaration] = STATE(1520), + [sym_global_var_declaration] = STATE(1520), + [sym_type_declaration] = STATE(1520), + [sym_function_declaration] = STATE(1520), + [sym_static_method_declaration] = STATE(1520), + [sym_struct_declaration] = STATE(1520), + [sym_enum_declaration] = STATE(1520), + [sym_interface_declaration] = STATE(1520), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_visibility_modifiers] = STATE(3538), + [sym_mutability_modifiers] = STATE(527), + [sym_mutable_expression] = STATE(3387), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1520), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_attributes] = STATE(3477), + [sym_attribute] = STATE(3416), [aux_sym_source_file_repeat1] = STATE(10), [aux_sym_attributes_repeat1] = STATE(3442), - [ts_builtin_sym_end] = ACTIONS(131), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_const] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym___global] = ACTIONS(25), - [anon_sym_type] = ACTIONS(27), - [anon_sym_fn] = ACTIONS(29), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(35), - [anon_sym_union] = ACTIONS(37), - [anon_sym_pub] = ACTIONS(39), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(43), - [anon_sym_interface] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(57), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [anon_sym_AT_LBRACK] = ACTIONS(113), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym___global] = ACTIONS(27), + [anon_sym_type] = ACTIONS(29), + [anon_sym_fn] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(37), + [anon_sym_union] = ACTIONS(39), + [anon_sym_pub] = ACTIONS(41), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(45), + [anon_sym_interface] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(59), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [anon_sym_AT_LBRACK] = ACTIONS(115), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [13] = { [sym_line_comment] = STATE(13), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4701), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(13), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4464), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [14] = { [sym_line_comment] = STATE(14), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4570), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(14), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4638), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [15] = { [sym_line_comment] = STATE(15), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(15), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4500), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [16] = { [sym_line_comment] = STATE(16), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4698), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(16), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4540), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [17] = { [sym_line_comment] = STATE(17), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4543), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(17), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4632), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [18] = { [sym_line_comment] = STATE(18), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4672), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(18), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [19] = { [sym_line_comment] = STATE(19), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4622), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(19), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4632), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [20] = { [sym_line_comment] = STATE(20), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4552), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(20), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4632), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [21] = { [sym_line_comment] = STATE(21), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4672), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(21), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4681), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [22] = { [sym_line_comment] = STATE(22), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4557), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(22), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4686), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [23] = { [sym_line_comment] = STATE(23), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4714), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(23), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4581), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [24] = { [sym_line_comment] = STATE(24), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4684), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(24), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [25] = { [sym_line_comment] = STATE(25), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4698), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(25), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4568), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [26] = { [sym_line_comment] = STATE(26), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4552), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(26), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4686), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [27] = { [sym_line_comment] = STATE(27), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4684), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(27), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4568), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [28] = { [sym_line_comment] = STATE(28), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(28), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4674), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [29] = { [sym_line_comment] = STATE(29), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(29), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4562), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [30] = { [sym_line_comment] = STATE(30), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4560), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(30), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4581), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [31] = { [sym_line_comment] = STATE(31), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(31), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4681), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [32] = { [sym_line_comment] = STATE(32), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4557), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(32), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4464), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [33] = { [sym_line_comment] = STATE(33), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4622), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(33), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4464), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [34] = { [sym_line_comment] = STATE(34), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4701), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(34), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4588), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [35] = { [sym_line_comment] = STATE(35), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(35), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4568), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [36] = { [sym_line_comment] = STATE(36), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(36), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4540), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [37] = { [sym_line_comment] = STATE(37), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4552), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(37), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [38] = { [sym_line_comment] = STATE(38), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4626), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(38), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4632), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [39] = { [sym_line_comment] = STATE(39), - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4698), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(39), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4674), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(309), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [40] = { [sym_line_comment] = STATE(40), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4570), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(40), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4576), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [41] = { [sym_line_comment] = STATE(41), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4552), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(41), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(443), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [42] = { [sym_line_comment] = STATE(42), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4698), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(42), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4608), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [43] = { [sym_line_comment] = STATE(43), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4701), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(43), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4671), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [44] = { [sym_line_comment] = STATE(44), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4557), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(44), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4686), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [45] = { [sym_line_comment] = STATE(45), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4560), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(45), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4540), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [46] = { [sym_line_comment] = STATE(46), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4684), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(46), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4550), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [47] = { [sym_line_comment] = STATE(47), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4679), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(47), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4493), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [48] = { [sym_line_comment] = STATE(48), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4554), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(48), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4562), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [49] = { [sym_line_comment] = STATE(49), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4622), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(49), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4643), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [50] = { [sym_line_comment] = STATE(50), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(50), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4568), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [51] = { [sym_line_comment] = STATE(51), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4672), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(51), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4728), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [52] = { [sym_line_comment] = STATE(52), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4436), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(52), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4588), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [53] = { [sym_line_comment] = STATE(53), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4476), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(53), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4500), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [54] = { [sym_line_comment] = STATE(54), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4626), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(54), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4638), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [55] = { [sym_line_comment] = STATE(55), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4568), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(55), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4681), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [56] = { [sym_line_comment] = STATE(56), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4558), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(56), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4464), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [57] = { [sym_line_comment] = STATE(57), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4601), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(57), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4581), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [58] = { [sym_line_comment] = STATE(58), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4714), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(58), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4674), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [59] = { [sym_line_comment] = STATE(59), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement_list] = STATE(4543), - [sym__statement] = STATE(3678), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(59), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement_list] = STATE(4632), + [sym__statement] = STATE(3665), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4664), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4684), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [60] = { [sym_line_comment] = STATE(60), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(3781), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(60), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(3701), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4499), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4492), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(481), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [61] = { [sym_line_comment] = STATE(61), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(3781), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), + [sym_block_comment] = STATE(61), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(3701), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3752), - [sym_empty_labeled_statement] = STATE(4717), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(481), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_labeled_statement] = STATE(3828), + [sym_empty_labeled_statement] = STATE(4582), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(483), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [62] = { [sym_line_comment] = STATE(62), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(3740), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3752), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(62), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(3744), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(3828), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [63] = { [sym_line_comment] = STATE(63), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(3740), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3752), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(63), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(3701), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), + [sym_label_definition] = STATE(64), + [sym_labeled_statement] = STATE(3828), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [64] = { [sym_line_comment] = STATE(64), - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_strictly_expression_list] = STATE(1572), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(904), - [sym_mutable_expression] = STATE(3386), - [sym_expression_list] = STATE(3423), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(1536), - [sym_simple_statement] = STATE(1589), - [sym_assert_statement] = STATE(1589), - [sym_append_statement] = STATE(1589), - [sym_send_statement] = STATE(1589), - [sym_var_declaration] = STATE(1572), - [sym_assignment_statement] = STATE(1572), - [sym_block] = STATE(1589), - [sym_defer_statement] = STATE(1589), - [sym_goto_statement] = STATE(1589), - [sym_break_statement] = STATE(1589), - [sym_continue_statement] = STATE(1589), - [sym_return_statement] = STATE(1589), + [sym_block_comment] = STATE(64), + [sym__expression] = STATE(1653), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_strictly_expression_list] = STATE(3838), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(553), + [sym_mutable_expression] = STATE(3385), + [sym_expression_list] = STATE(3436), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(3744), + [sym_simple_statement] = STATE(3828), + [sym_assert_statement] = STATE(3828), + [sym_append_statement] = STATE(3828), + [sym_send_statement] = STATE(3828), + [sym_var_declaration] = STATE(3838), + [sym_assignment_statement] = STATE(3838), + [sym_block] = STATE(3828), + [sym_defer_statement] = STATE(3828), + [sym_goto_statement] = STATE(3828), + [sym_break_statement] = STATE(3828), + [sym_continue_statement] = STATE(3828), + [sym_return_statement] = STATE(3828), [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1589), - [sym_compile_time_for_statement] = STATE(1589), - [sym_for_statement] = STATE(1589), - [sym_hash_statement] = STATE(1589), - [sym_asm_statement] = STATE(1589), - [sym_identifier] = ACTIONS(9), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(93), - [anon_sym_defer] = ACTIONS(95), - [anon_sym_goto] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_return] = ACTIONS(103), - [anon_sym_DOLLARfor] = ACTIONS(105), - [anon_sym_for] = ACTIONS(107), - [anon_sym_POUND] = ACTIONS(129), - [anon_sym_asm] = ACTIONS(111), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_labeled_statement] = STATE(3828), + [sym_compile_time_for_statement] = STATE(3828), + [sym_for_statement] = STATE(3828), + [sym_hash_statement] = STATE(3828), + [sym_asm_statement] = STATE(3828), + [sym_identifier] = ACTIONS(439), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(313), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(361), + [anon_sym_defer] = ACTIONS(363), + [anon_sym_goto] = ACTIONS(365), + [anon_sym_break] = ACTIONS(367), + [anon_sym_continue] = ACTIONS(369), + [anon_sym_return] = ACTIONS(371), + [anon_sym_DOLLARfor] = ACTIONS(373), + [anon_sym_for] = ACTIONS(375), + [anon_sym_POUND] = ACTIONS(377), + [anon_sym_asm] = ACTIONS(379), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [65] = { [sym_line_comment] = STATE(65), - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_strictly_expression_list] = STATE(3703), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(748), + [sym_block_comment] = STATE(65), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_strictly_expression_list] = STATE(1521), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(527), [sym_mutable_expression] = STATE(3387), - [sym_expression_list] = STATE(3398), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__statement] = STATE(3781), - [sym_simple_statement] = STATE(3752), - [sym_assert_statement] = STATE(3752), - [sym_append_statement] = STATE(3752), - [sym_send_statement] = STATE(3752), - [sym_var_declaration] = STATE(3703), - [sym_assignment_statement] = STATE(3703), - [sym_block] = STATE(3752), - [sym_defer_statement] = STATE(3752), - [sym_goto_statement] = STATE(3752), - [sym_break_statement] = STATE(3752), - [sym_continue_statement] = STATE(3752), - [sym_return_statement] = STATE(3752), - [sym_label_definition] = STATE(63), - [sym_labeled_statement] = STATE(3752), - [sym_compile_time_for_statement] = STATE(3752), - [sym_for_statement] = STATE(3752), - [sym_hash_statement] = STATE(3752), - [sym_asm_statement] = STATE(3752), - [sym_identifier] = ACTIONS(437), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(311), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(359), - [anon_sym_defer] = ACTIONS(361), - [anon_sym_goto] = ACTIONS(363), - [anon_sym_break] = ACTIONS(365), - [anon_sym_continue] = ACTIONS(367), - [anon_sym_return] = ACTIONS(369), - [anon_sym_DOLLARfor] = ACTIONS(371), - [anon_sym_for] = ACTIONS(373), - [anon_sym_POUND] = ACTIONS(375), - [anon_sym_asm] = ACTIONS(377), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_expression_list] = STATE(3418), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__statement] = STATE(1535), + [sym_simple_statement] = STATE(1522), + [sym_assert_statement] = STATE(1522), + [sym_append_statement] = STATE(1522), + [sym_send_statement] = STATE(1522), + [sym_var_declaration] = STATE(1521), + [sym_assignment_statement] = STATE(1521), + [sym_block] = STATE(1522), + [sym_defer_statement] = STATE(1522), + [sym_goto_statement] = STATE(1522), + [sym_break_statement] = STATE(1522), + [sym_continue_statement] = STATE(1522), + [sym_return_statement] = STATE(1522), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1522), + [sym_compile_time_for_statement] = STATE(1522), + [sym_for_statement] = STATE(1522), + [sym_hash_statement] = STATE(1522), + [sym_asm_statement] = STATE(1522), + [sym_identifier] = ACTIONS(9), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(95), + [anon_sym_defer] = ACTIONS(97), + [anon_sym_goto] = ACTIONS(99), + [anon_sym_break] = ACTIONS(101), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_return] = ACTIONS(105), + [anon_sym_DOLLARfor] = ACTIONS(107), + [anon_sym_for] = ACTIONS(109), + [anon_sym_POUND] = ACTIONS(131), + [anon_sym_asm] = ACTIONS(113), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [66] = { [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(461), - [sym_mutable_expression] = STATE(1449), - [sym_expression_list] = STATE(1567), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(491), - [sym_identifier] = ACTIONS(493), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_CR] = ACTIONS(495), - [anon_sym_CR_LF] = ACTIONS(495), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(878), + [sym_mutable_expression] = STATE(1451), + [sym_expression_list] = STATE(1532), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(493), + [sym_identifier] = ACTIONS(495), + [anon_sym_LF] = ACTIONS(497), + [anon_sym_CR] = ACTIONS(497), + [anon_sym_CR_LF] = ACTIONS(497), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(501), [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_const] = ACTIONS(495), + [anon_sym_const] = ACTIONS(497), [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym___global] = ACTIONS(495), - [anon_sym_type] = ACTIONS(495), + [anon_sym___global] = ACTIONS(497), + [anon_sym_type] = ACTIONS(497), [anon_sym_fn] = ACTIONS(507), [anon_sym_PLUS] = ACTIONS(509), [anon_sym_DASH] = ACTIONS(509), [anon_sym_STAR] = ACTIONS(511), [anon_sym_struct] = ACTIONS(513), - [anon_sym_union] = ACTIONS(495), - [anon_sym_pub] = ACTIONS(495), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_enum] = ACTIONS(495), - [anon_sym_interface] = ACTIONS(495), + [anon_sym_union] = ACTIONS(497), + [anon_sym_pub] = ACTIONS(497), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_enum] = ACTIONS(497), + [anon_sym_interface] = ACTIONS(497), [anon_sym_QMARK] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(517), [anon_sym_go] = ACTIONS(519), @@ -36317,22 +29624,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(531), [sym_rune_literal] = ACTIONS(531), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(495), - [anon_sym_defer] = ACTIONS(495), - [anon_sym_goto] = ACTIONS(495), - [anon_sym_break] = ACTIONS(495), - [anon_sym_continue] = ACTIONS(495), - [anon_sym_return] = ACTIONS(495), - [anon_sym_DOLLARfor] = ACTIONS(495), - [anon_sym_for] = ACTIONS(495), - [anon_sym_POUND] = ACTIONS(495), - [anon_sym_asm] = ACTIONS(495), - [anon_sym_AT_LBRACK] = ACTIONS(495), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(497), + [anon_sym_defer] = ACTIONS(497), + [anon_sym_goto] = ACTIONS(497), + [anon_sym_break] = ACTIONS(497), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_return] = ACTIONS(497), + [anon_sym_DOLLARfor] = ACTIONS(497), + [anon_sym_for] = ACTIONS(497), + [anon_sym_POUND] = ACTIONS(497), + [anon_sym_asm] = ACTIONS(497), + [anon_sym_AT_LBRACK] = ACTIONS(497), [sym___double_quote] = ACTIONS(551), [sym___single_quote] = ACTIONS(553), [sym___c_double_quote] = ACTIONS(555), @@ -36342,33 +29649,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [67] = { [sym_line_comment] = STATE(67), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(67), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(395), + [sym_plain_type] = STATE(831), + [sym__plain_type_without_special] = STATE(453), + [sym_anon_struct_type] = STATE(448), + [sym_multi_return_type] = STATE(453), + [sym_result_type] = STATE(453), + [sym_option_type] = STATE(453), + [sym_qualified_type] = STATE(395), + [sym_fixed_array_type] = STATE(448), + [sym_array_type] = STATE(448), + [sym_pointer_type] = STATE(448), + [sym_wrong_pointer_type] = STATE(448), + [sym_map_type] = STATE(448), + [sym_channel_type] = STATE(448), + [sym_shared_type] = STATE(448), + [sym_thread_type] = STATE(448), + [sym_atomic_type] = STATE(448), + [sym_generic_type] = STATE(448), + [sym_function_type] = STATE(448), [ts_builtin_sym_end] = ACTIONS(563), [sym_identifier] = ACTIONS(565), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(567), @@ -36400,15 +29708,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(581), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(583), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -36452,11 +29760,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), [anon_sym_assert] = ACTIONS(567), [anon_sym_defer] = ACTIONS(567), [anon_sym_goto] = ACTIONS(567), @@ -36477,623 +29785,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [68] = { [sym_line_comment] = STATE(68), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(417), - [sym_plain_type] = STATE(803), - [sym__plain_type_without_special] = STATE(824), - [sym_anon_struct_type] = STATE(823), - [sym_multi_return_type] = STATE(824), - [sym_result_type] = STATE(824), - [sym_option_type] = STATE(824), - [sym_qualified_type] = STATE(417), - [sym_fixed_array_type] = STATE(823), - [sym_array_type] = STATE(823), - [sym_pointer_type] = STATE(823), - [sym_wrong_pointer_type] = STATE(823), - [sym_map_type] = STATE(823), - [sym_channel_type] = STATE(823), - [sym_shared_type] = STATE(823), - [sym_thread_type] = STATE(823), - [sym_atomic_type] = STATE(823), - [sym_generic_type] = STATE(823), - [sym_function_type] = STATE(823), - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), + [sym_block_comment] = STATE(68), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), + [sym___double_quote] = ACTIONS(597), + [sym___single_quote] = ACTIONS(597), + [sym___c_double_quote] = ACTIONS(597), + [sym___c_single_quote] = ACTIONS(597), + [sym___r_double_quote] = ACTIONS(597), + [sym___r_single_quote] = ACTIONS(597), }, [69] = { [sym_line_comment] = STATE(69), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(417), - [sym_plain_type] = STATE(702), - [sym__plain_type_without_special] = STATE(824), - [sym_anon_struct_type] = STATE(823), - [sym_multi_return_type] = STATE(824), - [sym_result_type] = STATE(824), - [sym_option_type] = STATE(824), - [sym_qualified_type] = STATE(417), - [sym_fixed_array_type] = STATE(823), - [sym_array_type] = STATE(823), - [sym_pointer_type] = STATE(823), - [sym_wrong_pointer_type] = STATE(823), - [sym_map_type] = STATE(823), - [sym_channel_type] = STATE(823), - [sym_shared_type] = STATE(823), - [sym_thread_type] = STATE(823), - [sym_atomic_type] = STATE(823), - [sym_generic_type] = STATE(823), - [sym_function_type] = STATE(823), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [sym_block_comment] = STATE(69), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(395), + [sym_plain_type] = STATE(954), + [sym__plain_type_without_special] = STATE(453), + [sym_anon_struct_type] = STATE(448), + [sym_multi_return_type] = STATE(453), + [sym_result_type] = STATE(453), + [sym_option_type] = STATE(453), + [sym_qualified_type] = STATE(395), + [sym_fixed_array_type] = STATE(448), + [sym_array_type] = STATE(448), + [sym_pointer_type] = STATE(448), + [sym_wrong_pointer_type] = STATE(448), + [sym_map_type] = STATE(448), + [sym_channel_type] = STATE(448), + [sym_shared_type] = STATE(448), + [sym_thread_type] = STATE(448), + [sym_atomic_type] = STATE(448), + [sym_generic_type] = STATE(448), + [sym_function_type] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), + [sym___double_quote] = ACTIONS(601), + [sym___single_quote] = ACTIONS(601), + [sym___c_double_quote] = ACTIONS(601), + [sym___c_single_quote] = ACTIONS(601), + [sym___r_double_quote] = ACTIONS(601), + [sym___r_single_quote] = ACTIONS(601), }, [70] = { [sym_line_comment] = STATE(70), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [sym_block_comment] = STATE(70), + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(395), + [sym_plain_type] = STATE(839), + [sym__plain_type_without_special] = STATE(453), + [sym_anon_struct_type] = STATE(448), + [sym_multi_return_type] = STATE(453), + [sym_result_type] = STATE(453), + [sym_option_type] = STATE(453), + [sym_qualified_type] = STATE(395), + [sym_fixed_array_type] = STATE(448), + [sym_array_type] = STATE(448), + [sym_pointer_type] = STATE(448), + [sym_wrong_pointer_type] = STATE(448), + [sym_map_type] = STATE(448), + [sym_channel_type] = STATE(448), + [sym_shared_type] = STATE(448), + [sym_thread_type] = STATE(448), + [sym_atomic_type] = STATE(448), + [sym_generic_type] = STATE(448), + [sym_function_type] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(565), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(575), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(579), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(581), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(583), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(585), + [anon_sym_map_LBRACK] = ACTIONS(587), + [anon_sym_chan] = ACTIONS(589), + [anon_sym_thread] = ACTIONS(591), + [anon_sym_atomic] = ACTIONS(593), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + [sym___double_quote] = ACTIONS(605), + [sym___single_quote] = ACTIONS(605), + [sym___c_double_quote] = ACTIONS(605), + [sym___c_single_quote] = ACTIONS(605), + [sym___r_double_quote] = ACTIONS(605), + [sym___r_single_quote] = ACTIONS(605), }, [71] = { [sym_line_comment] = STATE(71), - [sym_reference_expression] = STATE(4471), - [sym_type_reference_expression] = STATE(417), - [sym_plain_type] = STATE(684), - [sym__plain_type_without_special] = STATE(824), - [sym_anon_struct_type] = STATE(823), - [sym_multi_return_type] = STATE(824), - [sym_result_type] = STATE(824), - [sym_option_type] = STATE(824), - [sym_qualified_type] = STATE(417), - [sym_fixed_array_type] = STATE(823), - [sym_array_type] = STATE(823), - [sym_pointer_type] = STATE(823), - [sym_wrong_pointer_type] = STATE(823), - [sym_map_type] = STATE(823), - [sym_channel_type] = STATE(823), - [sym_shared_type] = STATE(823), - [sym_thread_type] = STATE(823), - [sym_atomic_type] = STATE(823), - [sym_generic_type] = STATE(823), - [sym_function_type] = STATE(823), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(587), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(597), - [anon_sym_union] = ACTIONS(627), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_LT_DASH] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_LT_LT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(607), - [anon_sym_map_LBRACK] = ACTIONS(609), - [anon_sym_chan] = ACTIONS(611), - [anon_sym_thread] = ACTIONS(613), - [anon_sym_atomic] = ACTIONS(615), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_defer] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_DOLLARfor] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_asm] = ACTIONS(627), - [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), + [sym_block_comment] = STATE(71), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym___global] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_interface] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(621), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_goto] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_asm] = ACTIONS(611), + [anon_sym_AT_LBRACK] = ACTIONS(611), + [sym___double_quote] = ACTIONS(611), + [sym___single_quote] = ACTIONS(611), + [sym___c_double_quote] = ACTIONS(611), + [sym___c_single_quote] = ACTIONS(611), + [sym___r_double_quote] = ACTIONS(611), + [sym___r_single_quote] = ACTIONS(611), }, [72] = { [sym_line_comment] = STATE(72), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4747), - [sym_short_element_list] = STATE(4746), + [sym_block_comment] = STATE(72), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4471), + [sym_short_element_list] = STATE(4472), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37107,7 +30420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37133,11 +30446,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37147,83 +30460,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [73] = { [sym_line_comment] = STATE(73), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4452), - [sym_short_element_list] = STATE(4437), + [sym_block_comment] = STATE(73), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4754), + [sym_short_element_list] = STATE(4738), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37237,7 +30551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37263,11 +30577,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37277,83 +30591,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [74] = { [sym_line_comment] = STATE(74), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4705), - [sym_short_element_list] = STATE(4703), + [sym_block_comment] = STATE(74), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4668), + [sym_short_element_list] = STATE(4675), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37367,7 +30682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37393,11 +30708,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37407,83 +30722,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [75] = { [sym_line_comment] = STATE(75), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4716), - [sym_short_element_list] = STATE(4718), + [sym_block_comment] = STATE(75), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4726), + [sym_short_element_list] = STATE(4729), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37497,7 +30813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37523,11 +30839,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37537,83 +30853,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [76] = { [sym_line_comment] = STATE(76), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4665), - [sym_short_element_list] = STATE(4663), + [sym_block_comment] = STATE(76), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4563), + [sym_short_element_list] = STATE(4561), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37627,7 +30944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37653,11 +30970,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37667,83 +30984,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [77] = { [sym_line_comment] = STATE(77), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4456), - [sym_short_element_list] = STATE(4457), + [sym_block_comment] = STATE(77), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4551), + [sym_short_element_list] = STATE(4552), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37757,7 +31075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37783,11 +31101,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37797,83 +31115,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [78] = { [sym_line_comment] = STATE(78), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4521), - [sym_short_element_list] = STATE(4520), + [sym_block_comment] = STATE(78), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4595), + [sym_short_element_list] = STATE(4602), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -37887,7 +31206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -37913,11 +31232,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -37927,83 +31246,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [79] = { [sym_line_comment] = STATE(79), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4588), - [sym_short_element_list] = STATE(4587), + [sym_block_comment] = STATE(79), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4627), + [sym_short_element_list] = STATE(4626), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38017,7 +31337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38043,11 +31363,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38057,83 +31377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [80] = { [sym_line_comment] = STATE(80), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4514), - [sym_short_element_list] = STATE(4516), + [sym_block_comment] = STATE(80), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4503), + [sym_short_element_list] = STATE(4502), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38147,7 +31468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38173,11 +31494,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38187,83 +31508,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [81] = { [sym_line_comment] = STATE(81), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4579), - [sym_short_element_list] = STATE(4582), + [sym_block_comment] = STATE(81), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4678), + [sym_short_element_list] = STATE(4691), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38277,7 +31599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38303,11 +31625,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38317,83 +31639,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [82] = { [sym_line_comment] = STATE(82), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4660), - [sym_short_element_list] = STATE(4659), + [sym_block_comment] = STATE(82), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4524), + [sym_short_element_list] = STATE(4519), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38407,7 +31730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38433,11 +31756,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38447,83 +31770,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [83] = { [sym_line_comment] = STATE(83), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4636), - [sym_short_element_list] = STATE(4641), + [sym_block_comment] = STATE(83), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4669), + [sym_short_element_list] = STATE(4667), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38537,7 +31861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38563,11 +31887,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38577,83 +31901,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [84] = { [sym_line_comment] = STATE(84), - [sym_struct_field_scope] = STATE(3507), - [sym_struct_field_declaration] = STATE(3507), - [sym__struct_field_definition] = STATE(3510), - [sym_embedded_definition] = STATE(3502), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4621), - [sym_short_element_list] = STATE(4620), + [sym_block_comment] = STATE(84), + [sym_struct_field_scope] = STATE(3496), + [sym_struct_field_declaration] = STATE(3496), + [sym__struct_field_definition] = STATE(3499), + [sym_embedded_definition] = STATE(3500), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4712), + [sym_short_element_list] = STATE(4711), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1270), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1260), [sym_type_reference_expression] = STATE(3453), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), [sym_qualified_type] = STATE(3453), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(3486), - [sym_function_type] = STATE(2469), - [aux_sym__struct_body_repeat1] = STATE(3414), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(3478), + [sym_function_type] = STATE(2387), + [aux_sym__struct_body_repeat1] = STATE(3429), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), [sym_identifier] = ACTIONS(629), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(635), @@ -38667,7 +31992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(649), [anon_sym_pub] = ACTIONS(651), [anon_sym_mut] = ACTIONS(653), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -38693,11 +32018,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -38707,83 +32032,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [85] = { [sym_line_comment] = STATE(85), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(140), + [sym_block_comment] = STATE(85), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4730), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(707), @@ -38793,8 +32119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -38821,11 +32147,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -38835,83 +32161,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [86] = { [sym_line_comment] = STATE(86), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4744), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(126), + [sym_block_comment] = STATE(86), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4556), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(767), @@ -38921,8 +32248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -38949,11 +32276,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -38963,83 +32290,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [87] = { [sym_line_comment] = STATE(87), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4656), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(118), + [sym_block_comment] = STATE(87), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4556), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(769), @@ -39049,8 +32377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39077,11 +32405,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39091,83 +32419,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [88] = { [sym_line_comment] = STATE(88), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4426), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(141), + [sym_block_comment] = STATE(88), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4518), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(137), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(771), @@ -39177,8 +32506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39205,11 +32534,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39219,83 +32548,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [89] = { [sym_line_comment] = STATE(89), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4617), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(129), + [sym_block_comment] = STATE(89), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4680), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(130), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(773), @@ -39305,8 +32635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39333,11 +32663,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39347,83 +32677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [90] = { [sym_line_comment] = STATE(90), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(117), + [sym_block_comment] = STATE(90), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4556), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(775), @@ -39433,8 +32764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39461,11 +32792,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39475,83 +32806,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [91] = { [sym_line_comment] = STATE(91), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(140), + [sym_block_comment] = STATE(91), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4703), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(112), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(777), @@ -39561,8 +32893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39589,11 +32921,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39603,83 +32935,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [92] = { [sym_line_comment] = STATE(92), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4591), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(112), + [sym_block_comment] = STATE(92), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(135), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(779), @@ -39689,8 +33022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39717,11 +33050,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39731,83 +33064,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [93] = { [sym_line_comment] = STATE(93), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(140), + [sym_block_comment] = STATE(93), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4457), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(121), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(781), @@ -39817,8 +33151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39845,11 +33179,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39859,94 +33193,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [94] = { [sym_line_comment] = STATE(94), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4591), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(112), + [sym_block_comment] = STATE(94), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(136), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(783), + [anon_sym_RBRACE] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -39973,11 +33308,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -39987,94 +33322,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [95] = { [sym_line_comment] = STATE(95), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4523), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(127), + [sym_block_comment] = STATE(95), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4480), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(124), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(785), + [anon_sym_RBRACE] = ACTIONS(783), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40101,11 +33437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40115,94 +33451,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [96] = { [sym_line_comment] = STATE(96), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4617), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(129), + [sym_block_comment] = STATE(96), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4703), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(112), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(785), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40229,11 +33566,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40243,83 +33580,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [97] = { [sym_line_comment] = STATE(97), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4617), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(129), + [sym_block_comment] = STATE(97), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4556), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(139), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(787), @@ -40329,8 +33667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40357,11 +33695,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40371,83 +33709,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [98] = { [sym_line_comment] = STATE(98), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4584), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(125), + [sym_block_comment] = STATE(98), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4518), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(137), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(789), @@ -40457,8 +33796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40485,11 +33824,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40499,94 +33838,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [99] = { [sym_line_comment] = STATE(99), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(140), + [sym_block_comment] = STATE(99), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(136), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(791), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40613,11 +33953,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40627,94 +33967,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [100] = { [sym_line_comment] = STATE(100), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4700), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(147), + [sym_block_comment] = STATE(100), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4680), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(130), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(791), + [anon_sym_RBRACE] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40741,11 +34082,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40755,94 +34096,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [101] = { [sym_line_comment] = STATE(101), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4478), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(123), + [sym_block_comment] = STATE(101), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4546), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(119), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40869,11 +34211,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -40883,94 +34225,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [102] = { [sym_line_comment] = STATE(102), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4523), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), + [sym_block_comment] = STATE(102), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4734), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), [aux_sym_select_expression_repeat1] = STATE(127), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(797), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -40997,11 +34340,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41011,94 +34354,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [103] = { [sym_line_comment] = STATE(103), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4426), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(141), + [sym_block_comment] = STATE(103), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4666), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(136), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), - [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(787), [anon_sym_LPAREN] = ACTIONS(709), [anon_sym_fn] = ACTIONS(711), [anon_sym_PLUS] = ACTIONS(713), [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -41125,11 +34469,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41139,83 +34483,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [104] = { [sym_line_comment] = STATE(104), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(117), + [sym_block_comment] = STATE(104), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4696), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(142), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(799), @@ -41225,8 +34570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -41253,11 +34598,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41267,83 +34612,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [105] = { [sym_line_comment] = STATE(105), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4720), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(121), + [sym_block_comment] = STATE(105), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4609), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(110), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(801), @@ -41353,8 +34699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -41381,11 +34727,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41395,83 +34741,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [106] = { [sym_line_comment] = STATE(106), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(145), + [sym_block_comment] = STATE(106), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4696), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(142), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(803), @@ -41481,8 +34828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -41509,11 +34856,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41523,83 +34870,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [107] = { [sym_line_comment] = STATE(107), - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [aux_sym_select_expression_repeat1] = STATE(145), + [sym_block_comment] = STATE(107), + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [aux_sym_select_expression_repeat1] = STATE(135), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(805), @@ -41609,8 +34957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -41637,11 +34985,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -41651,83 +34999,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [108] = { [sym_line_comment] = STATE(108), - [sym__expression] = STATE(1689), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), - [sym_mutable_expression] = STATE(3385), - [sym_expression_list] = STATE(3421), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4580), - [sym_var_declaration] = STATE(4189), - [sym_var_definition_list] = STATE(4583), - [sym_var_definition] = STATE(4099), - [sym_assignment_statement] = STATE(4189), - [sym_block] = STATE(3722), - [sym_range_clause] = STATE(4376), - [sym_for_clause] = STATE(4376), + [sym_block_comment] = STATE(108), + [sym__expression] = STATE(1681), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), + [sym_mutable_expression] = STATE(3388), + [sym_expression_list] = STATE(3414), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4631), + [sym_var_declaration] = STATE(4304), + [sym_var_definition_list] = STATE(4634), + [sym_var_definition] = STATE(4104), + [sym_assignment_statement] = STATE(4304), + [sym_block] = STATE(1533), + [sym_range_clause] = STATE(4118), + [sym_for_clause] = STATE(4118), [sym_identifier] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_DOT] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(813), @@ -41738,7 +35087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), [anon_sym_mut] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -41764,11 +35113,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -41778,83 +35127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [109] = { [sym_line_comment] = STATE(109), - [sym__expression] = STATE(1682), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), - [sym_mutable_expression] = STATE(3385), - [sym_expression_list] = STATE(3421), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4580), - [sym_var_declaration] = STATE(4189), - [sym_var_definition_list] = STATE(4583), - [sym_var_definition] = STATE(4099), - [sym_assignment_statement] = STATE(4189), - [sym_block] = STATE(1565), - [sym_range_clause] = STATE(4123), - [sym_for_clause] = STATE(4123), + [sym_block_comment] = STATE(109), + [sym__expression] = STATE(1689), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), + [sym_mutable_expression] = STATE(3388), + [sym_expression_list] = STATE(3414), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4631), + [sym_var_declaration] = STATE(4304), + [sym_var_definition_list] = STATE(4634), + [sym_var_definition] = STATE(4104), + [sym_assignment_statement] = STATE(4304), + [sym_block] = STATE(3794), + [sym_range_clause] = STATE(4281), + [sym_for_clause] = STATE(4281), [sym_identifier] = ACTIONS(807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_SEMI] = ACTIONS(809), [anon_sym_DOT] = ACTIONS(811), [anon_sym_LBRACE] = ACTIONS(873), @@ -41865,7 +35215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), [anon_sym_mut] = ACTIONS(825), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -41891,11 +35241,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -41905,81 +35255,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [110] = { [sym_line_comment] = STATE(110), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4542), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(110), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4633), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(875), @@ -41989,8 +35340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42017,11 +35368,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42031,81 +35382,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [111] = { [sym_line_comment] = STATE(111), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4724), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(135), + [sym_block_comment] = STATE(111), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4656), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(140), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(877), @@ -42115,8 +35467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42143,11 +35495,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42157,81 +35509,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [112] = { [sym_line_comment] = STATE(112), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4460), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(112), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4689), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(879), @@ -42241,8 +35594,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42269,11 +35622,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42283,81 +35636,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [113] = { [sym_line_comment] = STATE(113), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4461), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(115), + [sym_block_comment] = STATE(113), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4510), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(881), @@ -42367,8 +35721,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42395,11 +35749,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42409,81 +35763,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [114] = { [sym_line_comment] = STATE(114), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4637), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(132), + [sym_block_comment] = STATE(114), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4625), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(116), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(883), @@ -42493,8 +35848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42521,11 +35876,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42535,81 +35890,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [115] = { [sym_line_comment] = STATE(115), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4469), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(115), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4584), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(885), @@ -42619,8 +35975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42647,11 +36003,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42661,81 +36017,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [116] = { [sym_line_comment] = STATE(116), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4628), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(133), + [sym_block_comment] = STATE(116), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4655), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(887), @@ -42745,8 +36102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42773,11 +36130,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42787,81 +36144,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [117] = { [sym_line_comment] = STATE(117), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4639), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(117), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4505), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(118), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(889), @@ -42871,8 +36229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -42899,11 +36257,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -42913,81 +36271,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [118] = { [sym_line_comment] = STATE(118), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4629), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(118), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4499), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(891), @@ -42997,8 +36356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43025,11 +36384,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43039,81 +36398,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [119] = { [sym_line_comment] = STATE(119), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4750), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(119), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4616), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(893), @@ -43123,8 +36483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43151,11 +36511,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43165,81 +36525,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [120] = { [sym_line_comment] = STATE(120), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4749), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(119), + [sym_block_comment] = STATE(120), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4543), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(133), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(895), @@ -43249,8 +36610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43277,11 +36638,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43291,81 +36652,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [121] = { [sym_line_comment] = STATE(121), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4710), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(121), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4542), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(897), @@ -43375,8 +36737,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43403,11 +36765,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43417,81 +36779,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [122] = { [sym_line_comment] = STATE(122), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4689), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(134), + [sym_block_comment] = STATE(122), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4605), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(115), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(899), @@ -43501,8 +36864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43529,11 +36892,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43543,81 +36906,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [123] = { [sym_line_comment] = STATE(123), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4632), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(123), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4468), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(113), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(901), @@ -43627,8 +36991,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43655,11 +37019,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43669,81 +37033,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [124] = { [sym_line_comment] = STATE(124), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4574), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(130), + [sym_block_comment] = STATE(124), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4504), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(903), @@ -43753,8 +37118,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43781,11 +37146,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43795,81 +37160,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [125] = { [sym_line_comment] = STATE(125), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4575), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(125), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4733), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(905), @@ -43879,8 +37245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -43907,11 +37273,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -43921,81 +37287,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [126] = { [sym_line_comment] = STATE(126), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4725), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(126), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4685), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(907), @@ -44005,8 +37372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44033,11 +37400,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44047,81 +37414,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [127] = { [sym_line_comment] = STATE(127), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4537), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(127), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4607), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(909), @@ -44131,8 +37499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44159,11 +37527,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44173,81 +37541,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [128] = { [sym_line_comment] = STATE(128), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4540), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(110), + [sym_block_comment] = STATE(128), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4440), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(911), @@ -44257,8 +37626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44285,11 +37654,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44299,81 +37668,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [129] = { [sym_line_comment] = STATE(129), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4609), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(129), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4628), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(134), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(913), @@ -44383,8 +37753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44411,11 +37781,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44425,81 +37795,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [130] = { [sym_line_comment] = STATE(130), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4573), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(130), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4651), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(915), @@ -44509,8 +37880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44537,11 +37908,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44551,81 +37922,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [131] = { [sym_line_comment] = STATE(131), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4678), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(131), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4615), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(138), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(917), @@ -44635,8 +38007,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44663,11 +38035,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44677,81 +38049,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [132] = { [sym_line_comment] = STATE(132), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4634), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(132), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4753), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(125), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(919), @@ -44761,8 +38134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44789,11 +38162,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44803,81 +38176,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [133] = { [sym_line_comment] = STATE(133), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4624), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(133), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4647), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(921), @@ -44887,8 +38261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -44915,11 +38289,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -44929,81 +38303,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [134] = { [sym_line_comment] = STATE(134), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4680), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(134), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4756), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(923), @@ -45013,8 +38388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45041,11 +38416,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45055,81 +38430,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [135] = { [sym_line_comment] = STATE(135), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4721), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(135), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4506), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(925), @@ -45139,8 +38515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45167,11 +38543,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45181,81 +38557,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [136] = { [sym_line_comment] = STATE(136), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4606), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(136), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4657), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(927), @@ -45265,8 +38642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45293,11 +38670,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45307,81 +38684,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [137] = { [sym_line_comment] = STATE(137), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4676), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(131), + [sym_block_comment] = STATE(137), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4438), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(929), @@ -45391,8 +38769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45419,11 +38797,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45433,81 +38811,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [138] = { [sym_line_comment] = STATE(138), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4688), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(138), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4611), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(931), @@ -45517,8 +38896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45545,11 +38924,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45559,81 +38938,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [139] = { [sym_line_comment] = STATE(139), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4691), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(138), + [sym_block_comment] = STATE(139), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4587), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(933), @@ -45643,8 +39023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45671,11 +39051,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45685,81 +39065,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [140] = { [sym_line_comment] = STATE(140), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4481), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(140), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4653), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(935), @@ -45769,8 +39150,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45797,11 +39178,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45811,81 +39192,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [141] = { [sym_line_comment] = STATE(141), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4675), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(141), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4593), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(143), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(937), @@ -45895,8 +39277,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -45923,11 +39305,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -45937,81 +39319,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [142] = { [sym_line_comment] = STATE(142), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4479), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(144), + [sym_block_comment] = STATE(142), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4590), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(939), @@ -46021,8 +39404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46049,11 +39432,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46063,81 +39446,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [143] = { [sym_line_comment] = STATE(143), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4607), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(143), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4596), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(941), @@ -46147,8 +39531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46175,11 +39559,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46189,81 +39573,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [144] = { [sym_line_comment] = STATE(144), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4470), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(149), + [sym_block_comment] = STATE(144), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4687), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(126), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(943), @@ -46273,8 +39658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46301,11 +39686,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46315,81 +39700,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [145] = { [sym_line_comment] = STATE(145), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4603), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(145), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4749), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(945), @@ -46399,8 +39785,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46427,11 +39813,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46441,81 +39827,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [146] = { [sym_line_comment] = STATE(146), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4555), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(136), + [sym_block_comment] = STATE(146), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4446), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(128), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(947), @@ -46525,8 +39912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46553,11 +39940,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46567,81 +39954,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [147] = { [sym_line_comment] = STATE(147), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(147), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4758), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(949), @@ -46651,8 +40039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46679,11 +40067,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46693,81 +40081,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [148] = { [sym_line_comment] = STATE(148), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_select_else_arn_clause] = STATE(4608), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), - [aux_sym_select_expression_repeat1] = STATE(143), + [sym_block_comment] = STATE(148), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_select_else_arn_clause] = STATE(4757), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), + [aux_sym_select_expression_repeat1] = STATE(145), [sym_identifier] = ACTIONS(701), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(703), [anon_sym_LBRACE] = ACTIONS(705), [anon_sym_RBRACE] = ACTIONS(951), @@ -46777,8 +40166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(713), [anon_sym_STAR] = ACTIONS(715), [anon_sym_struct] = ACTIONS(717), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(719), [anon_sym_go] = ACTIONS(721), [anon_sym_spawn] = ACTIONS(723), @@ -46805,11 +40194,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(751), [sym_rune_literal] = ACTIONS(751), [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(755), [sym___single_quote] = ACTIONS(757), [sym___c_double_quote] = ACTIONS(759), @@ -46819,80 +40208,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [149] = { [sym_line_comment] = STATE(149), - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(1951), - [sym__expression_with_blocks] = STATE(2911), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2949), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2949), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2949), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2949), - [sym_compile_time_if_expression] = STATE(2949), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2949), - [sym_select_expression] = STATE(2949), - [sym_select_arm] = STATE(2197), - [sym_select_arm_statement] = STATE(4319), - [sym_select_var_declaration] = STATE(4477), - [sym_lock_expression] = STATE(2949), - [sym_unsafe_expression] = STATE(2949), - [sym_sql_expression] = STATE(2949), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(491), - [sym_mutable_identifier] = STATE(3947), - [sym_identifier_list] = STATE(4480), - [sym_expression_without_blocks_list] = STATE(3394), - [sym_plain_type] = STATE(4409), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_send_statement] = STATE(4477), + [sym_block_comment] = STATE(149), + [sym__expression] = STATE(2832), + [sym__expression_without_blocks] = STATE(1958), + [sym__expression_with_blocks] = STATE(2934), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2933), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2933), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2933), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2933), + [sym_compile_time_if_expression] = STATE(2933), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2933), + [sym_select_expression] = STATE(2933), + [sym_select_arm] = STATE(2189), + [sym_select_arm_statement] = STATE(4426), + [sym_select_var_declaration] = STATE(4459), + [sym_lock_expression] = STATE(2933), + [sym_unsafe_expression] = STATE(2933), + [sym_sql_expression] = STATE(2933), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(456), + [sym_mutable_identifier] = STATE(3883), + [sym_identifier_list] = STATE(4455), + [sym_expression_without_blocks_list] = STATE(3390), + [sym_plain_type] = STATE(4273), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_send_statement] = STATE(4459), [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(953), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(956), [anon_sym_LBRACE] = ACTIONS(959), [anon_sym_RBRACE] = ACTIONS(962), @@ -46944,215 +40334,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [150] = { [sym_line_comment] = STATE(150), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4459), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), + [sym_block_comment] = STATE(150), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4445), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(194), [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [151] = { - [sym_line_comment] = STATE(151), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4666), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -47178,11 +40445,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -47190,93 +40457,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4690), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, [152] = { [sym_line_comment] = STATE(152), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4697), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(152), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4741), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1145), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -47302,11 +40695,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -47316,339 +40709,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [153] = { [sym_line_comment] = STATE(153), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4640), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [sym_block_comment] = STATE(153), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4630), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1147), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [154] = { [sym_line_comment] = STATE(154), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4610), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1149), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [155] = { - [sym_line_comment] = STATE(155), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4495), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(154), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4688), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [aux_sym_argument_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1151), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -47674,11 +40945,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -47686,93 +40957,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4612), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, [156] = { [sym_line_comment] = STATE(156), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4650), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(156), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4508), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1153), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -47798,11 +41195,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -47812,215 +41209,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [157] = { [sym_line_comment] = STATE(157), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4748), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [sym_block_comment] = STATE(157), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4745), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [158] = { [sym_line_comment] = STATE(158), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4654), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(158), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4750), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [159] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4613), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1159), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -48046,11 +41570,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -48058,341 +41582,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [159] = { - [sym_line_comment] = STATE(159), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4693), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, [160] = { [sym_line_comment] = STATE(160), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4602), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), + [sym_block_comment] = STATE(160), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4586), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [161] = { [sym_line_comment] = STATE(161), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4734), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(194), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(161), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4458), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [162] = { + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4759), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [163] = { + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4501), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [164] = { + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4486), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1163), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -48418,11 +42195,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -48430,341 +42207,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [162] = { - [sym_line_comment] = STATE(162), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4625), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [165] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4617), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, - [163] = { - [sym_line_comment] = STATE(163), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4576), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [166] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4525), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, - [164] = { - [sym_line_comment] = STATE(164), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4531), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [167] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4544), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -48790,11 +42570,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -48802,217 +42582,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [165] = { - [sym_line_comment] = STATE(165), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4673), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), + [168] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4662), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(200), [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [166] = { - [sym_line_comment] = STATE(166), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4427), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -49038,11 +42695,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -49050,93 +42707,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [167] = { - [sym_line_comment] = STATE(167), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4614), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [169] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4708), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1179), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -49162,11 +42820,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -49174,341 +42832,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [168] = { - [sym_line_comment] = STATE(168), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4631), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [169] = { - [sym_line_comment] = STATE(169), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4482), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, [170] = { [sym_line_comment] = STATE(170), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4489), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(170), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4700), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -49534,11 +42945,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -49548,215 +42959,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [171] = { [sym_line_comment] = STATE(171), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4536), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), + [sym_block_comment] = STATE(171), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4720), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(193), [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [172] = { - [sym_line_comment] = STATE(172), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4505), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -49782,11 +43070,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -49794,217 +43082,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [173] = { - [sym_line_comment] = STATE(173), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arms] = STATE(4726), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(185), + [172] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_short_lambda] = STATE(4566), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1187), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [174] = { - [sym_line_comment] = STATE(174), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_short_lambda] = STATE(4740), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1141), + [anon_sym_RPAREN] = ACTIONS(1185), + [anon_sym_PIPE] = ACTIONS(1075), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50030,11 +43195,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50042,80 +43207,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4437), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [174] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arms] = STATE(4658), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, [175] = { [sym_line_comment] = STATE(175), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4595), - [sym_short_element_list] = STATE(4597), + [sym_block_comment] = STATE(175), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4698), + [sym_short_element_list] = STATE(4679), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(1191), @@ -50126,8 +43542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50153,11 +43569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50167,81 +43583,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [176] = { [sym_line_comment] = STATE(176), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4544), - [sym_short_element_list] = STATE(4535), + [sym_block_comment] = STATE(176), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2881), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2904), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4699), + [sym_attribute_expression] = STATE(4087), + [sym_if_attribute] = STATE(4145), + [sym__plain_attribute] = STATE(4145), + [sym_literal_attribute] = STATE(4144), + [sym_value_attribute] = STATE(4091), + [sym_key_value_attribute] = STATE(4144), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1235), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4621), + [sym_short_element_list] = STATE(4620), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_RBRACE] = ACTIONS(1257), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50249,8 +43790,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50276,11 +43817,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50288,83 +43829,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [177] = { - [sym_line_comment] = STATE(177), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4497), - [sym_short_element_list] = STATE(4496), + [178] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4714), + [sym_short_element_list] = STATE(4716), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1259), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50372,8 +43914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50399,11 +43941,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50411,83 +43953,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [178] = { - [sym_line_comment] = STATE(178), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4733), - [sym_short_element_list] = STATE(4729), + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1261), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_RBRACE] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_fn] = ACTIONS(1275), + [anon_sym_PLUS] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_mut] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1293), + [anon_sym_go] = ACTIONS(1296), + [anon_sym_spawn] = ACTIONS(1299), + [anon_sym_json_DOTdecode] = ACTIONS(1302), + [anon_sym_LBRACK2] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1278), + [anon_sym_CARET] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_LT_DASH] = ACTIONS(1311), + [sym_none] = ACTIONS(1314), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [sym_nil] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1317), + [anon_sym_else] = ACTIONS(1320), + [anon_sym_DOLLARif] = ACTIONS(1323), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_select] = ACTIONS(1329), + [anon_sym_lock] = ACTIONS(1332), + [anon_sym_rlock] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1335), + [anon_sym_sql] = ACTIONS(1338), + [sym_int_literal] = ACTIONS(1314), + [sym_float_literal] = ACTIONS(1341), + [sym_rune_literal] = ACTIONS(1341), + [sym_pseudo_compile_time_identifier] = ACTIONS(1344), + [anon_sym_shared] = ACTIONS(1347), + [anon_sym_map_LBRACK] = ACTIONS(1350), + [anon_sym_chan] = ACTIONS(1353), + [anon_sym_thread] = ACTIONS(1356), + [anon_sym_atomic] = ACTIONS(1359), + [sym___double_quote] = ACTIONS(1362), + [sym___single_quote] = ACTIONS(1365), + [sym___c_double_quote] = ACTIONS(1368), + [sym___c_single_quote] = ACTIONS(1371), + [sym___r_double_quote] = ACTIONS(1374), + [sym___r_single_quote] = ACTIONS(1377), + }, + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4694), + [sym_short_element_list] = STATE(4692), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1380), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50495,8 +44162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50522,11 +44189,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50534,206 +44201,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [179] = { - [sym_line_comment] = STATE(179), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1202), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1210), - [anon_sym_fn] = ACTIONS(1213), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), - [anon_sym_STAR] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1222), - [anon_sym_mut] = ACTIONS(1225), - [anon_sym_QMARK] = ACTIONS(1228), - [anon_sym_BANG] = ACTIONS(1231), - [anon_sym_go] = ACTIONS(1234), - [anon_sym_spawn] = ACTIONS(1237), - [anon_sym_json_DOTdecode] = ACTIONS(1240), - [anon_sym_LBRACK2] = ACTIONS(1243), - [anon_sym_TILDE] = ACTIONS(1216), - [anon_sym_CARET] = ACTIONS(1216), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_LT_DASH] = ACTIONS(1249), - [sym_none] = ACTIONS(1252), - [sym_true] = ACTIONS(1252), - [sym_false] = ACTIONS(1252), - [sym_nil] = ACTIONS(1252), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_DOLLARif] = ACTIONS(1261), - [anon_sym_match] = ACTIONS(1264), - [anon_sym_select] = ACTIONS(1267), - [anon_sym_lock] = ACTIONS(1270), - [anon_sym_rlock] = ACTIONS(1270), - [anon_sym_unsafe] = ACTIONS(1273), - [anon_sym_sql] = ACTIONS(1276), - [sym_int_literal] = ACTIONS(1252), - [sym_float_literal] = ACTIONS(1279), - [sym_rune_literal] = ACTIONS(1279), - [sym_pseudo_compile_time_identifier] = ACTIONS(1282), - [anon_sym_shared] = ACTIONS(1285), - [anon_sym_map_LBRACK] = ACTIONS(1288), - [anon_sym_chan] = ACTIONS(1291), - [anon_sym_thread] = ACTIONS(1294), - [anon_sym_atomic] = ACTIONS(1297), - [sym___double_quote] = ACTIONS(1300), - [sym___single_quote] = ACTIONS(1303), - [sym___c_double_quote] = ACTIONS(1306), - [sym___c_single_quote] = ACTIONS(1309), - [sym___r_double_quote] = ACTIONS(1312), - [sym___r_single_quote] = ACTIONS(1315), - }, - [180] = { - [sym_line_comment] = STATE(180), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4578), - [sym_short_element_list] = STATE(4577), + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4660), + [sym_short_element_list] = STATE(4659), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1318), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50741,8 +44286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50768,11 +44313,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50780,83 +44325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [181] = { - [sym_line_comment] = STATE(181), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4648), - [sym_short_element_list] = STATE(4645), + [182] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4450), + [sym_short_element_list] = STATE(4441), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1384), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50864,8 +44410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -50891,11 +44437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -50903,83 +44449,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [182] = { - [sym_line_comment] = STATE(182), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4612), - [sym_short_element_list] = STATE(4611), + [183] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4569), + [sym_short_element_list] = STATE(4570), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1322), + [anon_sym_RBRACE] = ACTIONS(1386), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -50987,8 +44534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51014,11 +44561,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51026,83 +44573,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [183] = { - [sym_line_comment] = STATE(183), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4455), - [sym_short_element_list] = STATE(4458), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4646), + [sym_short_element_list] = STATE(4676), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1388), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -51110,8 +44658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51137,11 +44685,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51149,83 +44697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [184] = { - [sym_line_comment] = STATE(184), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4533), - [sym_short_element_list] = STATE(4534), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4622), + [sym_short_element_list] = STATE(4624), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1326), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -51233,8 +44782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51260,11 +44809,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51272,206 +44821,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [185] = { - [sym_line_comment] = STATE(185), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2661), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arm] = STATE(2183), - [sym_match_expression_list] = STATE(4248), - [sym_match_arm_type] = STATE(4010), - [sym_match_else_arm_clause] = STATE(2183), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4002), - [aux_sym_match_arms_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, [186] = { [sym_line_comment] = STATE(186), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4669), - [sym_short_element_list] = STATE(4670), + [sym_block_comment] = STATE(186), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4523), + [sym_short_element_list] = STATE(4522), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1392), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -51479,8 +44906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51506,11 +44933,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51520,81 +44947,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [187] = { [sym_line_comment] = STATE(187), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4743), - [sym_short_element_list] = STATE(4745), + [sym_block_comment] = STATE(187), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4705), + [sym_short_element_list] = STATE(4706), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1394), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -51602,8 +45030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51629,11 +45057,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51643,81 +45071,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [188] = { [sym_line_comment] = STATE(188), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4695), - [sym_short_element_list] = STATE(4694), + [sym_block_comment] = STATE(188), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4489), + [sym_short_element_list] = STATE(4481), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_RBRACE] = ACTIONS(1396), [anon_sym_LPAREN] = ACTIONS(637), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), @@ -51725,8 +45154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51752,11 +45181,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -51766,201 +45195,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [189] = { [sym_line_comment] = STATE(189), - [sym__expression] = STATE(2669), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2823), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2900), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4647), - [sym_attribute_expression] = STATE(4061), - [sym_if_attribute] = STATE(4166), - [sym__plain_attribute] = STATE(4166), - [sym_literal_attribute] = STATE(4162), - [sym_value_attribute] = STATE(4070), - [sym_key_value_attribute] = STATE(4162), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1368), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1378), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(189), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2686), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arm] = STATE(2188), + [sym_match_expression_list] = STATE(4286), + [sym_match_arm_type] = STATE(3979), + [sym_match_else_arm_clause] = STATE(2188), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(3987), + [aux_sym_match_arms_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1115), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [190] = { [sym_line_comment] = STATE(190), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_element_list] = STATE(4644), - [sym_short_element_list] = STATE(4642), + [sym_block_comment] = STATE(190), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_element_list] = STATE(4490), + [sym_short_element_list] = STATE(4497), [sym_keyed_element] = STATE(3503), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1209), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1189), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), [sym_spread_expression] = STATE(3503), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_element_list_repeat1] = STATE(3538), - [aux_sym_short_element_list_repeat1] = STATE(370), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_element_list_repeat1] = STATE(3527), + [aux_sym_short_element_list_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_RBRACE] = ACTIONS(1400), @@ -51971,8 +45402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(645), [anon_sym_DOT_DOT_DOT] = ACTIONS(647), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -51998,11 +45429,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52012,79 +45443,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [191] = { [sym_line_comment] = STATE(191), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1397), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1428), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_attribute_expression] = STATE(4061), - [sym_if_attribute] = STATE(4166), - [sym__plain_attribute] = STATE(4166), - [sym_literal_attribute] = STATE(4162), - [sym_value_attribute] = STATE(4070), - [sym_key_value_attribute] = STATE(4162), - [aux_sym__array_repeat1] = STATE(366), + [sym_block_comment] = STATE(191), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1429), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_attribute_expression] = STATE(4087), + [sym_if_attribute] = STATE(4145), + [sym__plain_attribute] = STATE(4145), + [sym_literal_attribute] = STATE(4144), + [sym_value_attribute] = STATE(4091), + [sym_key_value_attribute] = STATE(4144), + [aux_sym__array_repeat1] = STATE(356), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -52094,8 +45526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1414), [anon_sym_RBRACK] = ACTIONS(1416), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -52121,11 +45553,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -52135,77 +45567,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [192] = { [sym_line_comment] = STATE(192), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(192), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -52214,10 +45647,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52243,11 +45676,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52257,211 +45690,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [193] = { [sym_line_comment] = STATE(193), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1470), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1493), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_mut] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1505), - [anon_sym_go] = ACTIONS(1508), - [anon_sym_spawn] = ACTIONS(1511), - [anon_sym_json_DOTdecode] = ACTIONS(1514), - [anon_sym_LBRACK2] = ACTIONS(1517), - [anon_sym_TILDE] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_LT_DASH] = ACTIONS(1523), - [sym_none] = ACTIONS(1526), - [sym_true] = ACTIONS(1526), - [sym_false] = ACTIONS(1526), - [sym_nil] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_DOLLARif] = ACTIONS(1532), - [anon_sym_match] = ACTIONS(1535), - [anon_sym_select] = ACTIONS(1538), - [anon_sym_lock] = ACTIONS(1541), - [anon_sym_rlock] = ACTIONS(1541), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_sql] = ACTIONS(1547), - [sym_int_literal] = ACTIONS(1526), - [sym_float_literal] = ACTIONS(1550), - [sym_rune_literal] = ACTIONS(1550), - [sym_pseudo_compile_time_identifier] = ACTIONS(1553), - [anon_sym_shared] = ACTIONS(1556), - [anon_sym_map_LBRACK] = ACTIONS(1559), - [anon_sym_chan] = ACTIONS(1562), - [anon_sym_thread] = ACTIONS(1565), - [anon_sym_atomic] = ACTIONS(1568), - [sym___double_quote] = ACTIONS(1571), - [sym___single_quote] = ACTIONS(1574), - [sym___c_double_quote] = ACTIONS(1577), - [sym___c_single_quote] = ACTIONS(1580), - [sym___r_double_quote] = ACTIONS(1583), - [sym___r_single_quote] = ACTIONS(1586), - }, - [194] = { - [sym_line_comment] = STATE(194), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(193), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1470), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52487,11 +45799,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52499,91 +45811,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [195] = { - [sym_line_comment] = STATE(195), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [194] = { + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1591), + [anon_sym_RPAREN] = ACTIONS(1472), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52609,11 +45922,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52621,91 +45934,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [196] = { - [sym_line_comment] = STATE(196), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [195] = { + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(1474), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52731,11 +46045,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52743,91 +46057,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [197] = { - [sym_line_comment] = STATE(197), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [196] = { + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_RPAREN] = ACTIONS(1476), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52853,11 +46168,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52865,91 +46180,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [198] = { - [sym_line_comment] = STATE(198), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [197] = { + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1478), [anon_sym_fn] = ACTIONS(641), [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -52975,11 +46291,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -52987,79 +46303,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [198] = { + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1489), + [anon_sym_RPAREN] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_mut] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_go] = ACTIONS(1518), + [anon_sym_spawn] = ACTIONS(1521), + [anon_sym_json_DOTdecode] = ACTIONS(1524), + [anon_sym_LBRACK2] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_LT_DASH] = ACTIONS(1533), + [sym_none] = ACTIONS(1536), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_nil] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1539), + [anon_sym_DOLLARif] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_select] = ACTIONS(1548), + [anon_sym_lock] = ACTIONS(1551), + [anon_sym_rlock] = ACTIONS(1551), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_sql] = ACTIONS(1557), + [sym_int_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1560), + [sym_rune_literal] = ACTIONS(1560), + [sym_pseudo_compile_time_identifier] = ACTIONS(1563), + [anon_sym_shared] = ACTIONS(1566), + [anon_sym_map_LBRACK] = ACTIONS(1569), + [anon_sym_chan] = ACTIONS(1572), + [anon_sym_thread] = ACTIONS(1575), + [anon_sym_atomic] = ACTIONS(1578), + [sym___double_quote] = ACTIONS(1581), + [sym___single_quote] = ACTIONS(1584), + [sym___c_double_quote] = ACTIONS(1587), + [sym___c_single_quote] = ACTIONS(1590), + [sym___r_double_quote] = ACTIONS(1593), + [sym___r_single_quote] = ACTIONS(1596), + }, [199] = { [sym_line_comment] = STATE(199), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(199), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53068,10 +46508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53097,11 +46537,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53111,77 +46551,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [200] = { [sym_line_comment] = STATE(200), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(200), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53190,10 +46631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53219,11 +46660,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53233,77 +46674,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [201] = { [sym_line_comment] = STATE(201), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(201), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53312,10 +46754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53341,11 +46783,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53355,77 +46797,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [202] = { [sym_line_comment] = STATE(202), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(202), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53434,10 +46877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53463,11 +46906,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53477,77 +46920,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [203] = { [sym_line_comment] = STATE(203), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(203), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53556,10 +47000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53585,11 +47029,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53599,77 +47043,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [204] = { [sym_line_comment] = STATE(204), - [sym__expression] = STATE(1154), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_argument] = STATE(1950), - [sym_type_initializer] = STATE(1190), - [sym_keyed_element] = STATE(1955), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1196), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_spread_expression] = STATE(1955), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(857), - [sym_mutable_expression] = STATE(1955), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(204), + [sym__expression] = STATE(1158), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_argument] = STATE(1957), + [sym_type_initializer] = STATE(1230), + [sym_keyed_element] = STATE(1954), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1172), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_spread_expression] = STATE(1954), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(779), + [sym_mutable_expression] = STATE(1954), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -53678,10 +47123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(643), [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1077), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -53707,11 +47152,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -53721,88 +47166,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [205] = { [sym_line_comment] = STATE(205), - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), - [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3408), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4677), - [sym_var_declaration] = STATE(4189), - [sym_assignment_statement] = STATE(4189), + [sym_block_comment] = STATE(205), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(3649), + [sym_expression_list] = STATE(3795), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1611), + [anon_sym_LF] = ACTIONS(497), + [anon_sym_CR] = ACTIONS(497), + [anon_sym_CR_LF] = ACTIONS(497), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_RBRACE] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(1617), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(1633), + [anon_sym_LBRACK2] = ACTIONS(1635), + [anon_sym_TILDE] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1637), + [anon_sym_LT_DASH] = ACTIONS(1639), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(1641), + [sym_rune_literal] = ACTIONS(1641), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1659), + [sym___single_quote] = ACTIONS(1661), + [sym___c_double_quote] = ACTIONS(1663), + [sym___c_single_quote] = ACTIONS(1665), + [sym___r_double_quote] = ACTIONS(1667), + [sym___r_single_quote] = ACTIONS(1669), + }, + [206] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_const] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym___global] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_union] = ACTIONS(611), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_enum] = ACTIONS(611), + [anon_sym_interface] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(1671), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_assert] = ACTIONS(611), + [anon_sym_defer] = ACTIONS(611), + [anon_sym_goto] = ACTIONS(611), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(611), + [anon_sym_return] = ACTIONS(611), + [anon_sym_DOLLARfor] = ACTIONS(611), + [anon_sym_for] = ACTIONS(611), + [anon_sym_POUND] = ACTIONS(611), + [anon_sym_asm] = ACTIONS(611), + [anon_sym_AT_LBRACK] = ACTIONS(611), + [sym___double_quote] = ACTIONS(611), + [sym___single_quote] = ACTIONS(611), + [sym___c_double_quote] = ACTIONS(611), + [sym___c_single_quote] = ACTIONS(611), + [sym___r_double_quote] = ACTIONS(611), + [sym___r_single_quote] = ACTIONS(611), + }, + [207] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3399), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4713), + [sym_var_declaration] = STATE(4304), + [sym_assignment_statement] = STATE(4304), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1675), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -53828,11 +47518,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -53840,332 +47530,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [206] = { - [sym_line_comment] = STATE(206), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(563), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_const] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym___global] = ACTIONS(567), - [anon_sym_type] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_union] = ACTIONS(567), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_enum] = ACTIONS(567), - [anon_sym_interface] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1615), - [anon_sym_go] = ACTIONS(567), - [anon_sym_spawn] = ACTIONS(567), - [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_TILDE] = ACTIONS(567), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_DASH] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [sym_none] = ACTIONS(567), - [sym_true] = ACTIONS(567), - [sym_false] = ACTIONS(567), - [sym_nil] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_if] = ACTIONS(567), - [anon_sym_DOLLARif] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_match] = ACTIONS(567), - [anon_sym_select] = ACTIONS(567), - [anon_sym_lock] = ACTIONS(567), - [anon_sym_rlock] = ACTIONS(567), - [anon_sym_unsafe] = ACTIONS(567), - [anon_sym_sql] = ACTIONS(567), - [sym_int_literal] = ACTIONS(567), - [sym_float_literal] = ACTIONS(567), - [sym_rune_literal] = ACTIONS(567), - [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_assert] = ACTIONS(567), - [anon_sym_defer] = ACTIONS(567), - [anon_sym_goto] = ACTIONS(567), - [anon_sym_break] = ACTIONS(567), - [anon_sym_continue] = ACTIONS(567), - [anon_sym_return] = ACTIONS(567), - [anon_sym_DOLLARfor] = ACTIONS(567), - [anon_sym_for] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_asm] = ACTIONS(567), - [anon_sym_AT_LBRACK] = ACTIONS(567), - [sym___double_quote] = ACTIONS(567), - [sym___single_quote] = ACTIONS(567), - [sym___c_double_quote] = ACTIONS(567), - [sym___c_single_quote] = ACTIONS(567), - [sym___r_double_quote] = ACTIONS(567), - [sym___r_single_quote] = ACTIONS(567), - }, - [207] = { - [sym_line_comment] = STATE(207), - [sym_reference_expression] = STATE(4441), - [sym_type_reference_expression] = STATE(1016), - [sym_plain_type] = STATE(1030), - [sym__plain_type_without_special] = STATE(1068), - [sym_anon_struct_type] = STATE(1067), - [sym_multi_return_type] = STATE(1068), - [sym_result_type] = STATE(1068), - [sym_option_type] = STATE(1068), - [sym_qualified_type] = STATE(1016), - [sym_fixed_array_type] = STATE(1067), - [sym_array_type] = STATE(1067), - [sym_pointer_type] = STATE(1067), - [sym_wrong_pointer_type] = STATE(1067), - [sym_map_type] = STATE(1067), - [sym_channel_type] = STATE(1067), - [sym_shared_type] = STATE(1067), - [sym_thread_type] = STATE(1067), - [sym_atomic_type] = STATE(1067), - [sym_generic_type] = STATE(1067), - [sym_function_type] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(617), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), - }, [208] = { [sym_line_comment] = STATE(208), - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), + [sym_block_comment] = STATE(208), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3408), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4627), - [sym_var_declaration] = STATE(4189), - [sym_assignment_statement] = STATE(4189), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_expression_list] = STATE(3399), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4648), + [sym_var_declaration] = STATE(4304), + [sym_assignment_statement] = STATE(4304), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_LBRACE] = ACTIONS(1677), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -54191,11 +47640,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -54205,88 +47654,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [209] = { [sym_line_comment] = STATE(209), - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), + [sym_block_comment] = STATE(209), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3408), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4541), - [sym_var_declaration] = STATE(4189), - [sym_assignment_statement] = STATE(4189), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_expression_list] = STATE(3399), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4507), + [sym_var_declaration] = STATE(4304), + [sym_assignment_statement] = STATE(4304), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1647), + [anon_sym_LBRACE] = ACTIONS(1679), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -54312,11 +47762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -54326,88 +47776,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [210] = { [sym_line_comment] = STATE(210), - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_strictly_expression_list] = STATE(4189), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), - [sym_mutable_expression] = STATE(3383), - [sym_expression_list] = STATE(3408), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_simple_statement] = STATE(4667), - [sym_var_declaration] = STATE(4189), - [sym_assignment_statement] = STATE(4189), - [sym_identifier] = ACTIONS(1611), + [sym_block_comment] = STATE(210), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym___global] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_interface] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), + [anon_sym_assert] = ACTIONS(597), + [anon_sym_defer] = ACTIONS(597), + [anon_sym_goto] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_DOLLARfor] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_POUND] = ACTIONS(597), + [anon_sym_asm] = ACTIONS(597), + [anon_sym_AT_LBRACK] = ACTIONS(597), + [sym___double_quote] = ACTIONS(597), + [sym___single_quote] = ACTIONS(597), + [sym___c_double_quote] = ACTIONS(597), + [sym___c_single_quote] = ACTIONS(597), + [sym___r_double_quote] = ACTIONS(597), + [sym___r_single_quote] = ACTIONS(597), + }, + [211] = { + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym__expression] = STATE(1816), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_strictly_expression_list] = STATE(4304), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), + [sym_mutable_expression] = STATE(3383), + [sym_expression_list] = STATE(3399), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_simple_statement] = STATE(4649), + [sym_var_declaration] = STATE(4304), + [sym_assignment_statement] = STATE(4304), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1649), + [anon_sym_LBRACE] = ACTIONS(1681), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -54433,11 +48006,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -54445,578 +48018,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [211] = { - [sym_line_comment] = STATE(211), - [sym_reference_expression] = STATE(4441), - [sym_type_reference_expression] = STATE(1016), - [sym_plain_type] = STATE(1025), - [sym__plain_type_without_special] = STATE(1068), - [sym_anon_struct_type] = STATE(1067), - [sym_multi_return_type] = STATE(1068), - [sym_result_type] = STATE(1068), - [sym_option_type] = STATE(1068), - [sym_qualified_type] = STATE(1016), - [sym_fixed_array_type] = STATE(1067), - [sym_array_type] = STATE(1067), - [sym_pointer_type] = STATE(1067), - [sym_wrong_pointer_type] = STATE(1067), - [sym_map_type] = STATE(1067), - [sym_channel_type] = STATE(1067), - [sym_shared_type] = STATE(1067), - [sym_thread_type] = STATE(1067), - [sym_atomic_type] = STATE(1067), - [sym_generic_type] = STATE(1067), - [sym_function_type] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(625), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(627), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_interface] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_LT_DASH] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_defer] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_DOLLARfor] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_asm] = ACTIONS(627), - [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), - }, [212] = { [sym_line_comment] = STATE(212), - [sym__expression] = STATE(2343), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(911), - [sym_mutable_expression] = STATE(3643), - [sym_expression_list] = STATE(3720), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_LF] = ACTIONS(495), - [anon_sym_CR] = ACTIONS(495), - [anon_sym_CR_LF] = ACTIONS(495), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(495), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1663), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(1673), - [anon_sym_LBRACK2] = ACTIONS(1675), - [anon_sym_TILDE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1661), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_LT_DASH] = ACTIONS(1679), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(1681), - [sym_rune_literal] = ACTIONS(1681), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1699), - [sym___single_quote] = ACTIONS(1701), - [sym___c_double_quote] = ACTIONS(1703), - [sym___c_single_quote] = ACTIONS(1705), - [sym___r_double_quote] = ACTIONS(1707), - [sym___r_single_quote] = ACTIONS(1709), + [sym_block_comment] = STATE(212), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1069), + [sym__plain_type_without_special] = STATE(1051), + [sym_anon_struct_type] = STATE(1052), + [sym_multi_return_type] = STATE(1051), + [sym_result_type] = STATE(1051), + [sym_option_type] = STATE(1051), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1052), + [sym_array_type] = STATE(1052), + [sym_pointer_type] = STATE(1052), + [sym_wrong_pointer_type] = STATE(1052), + [sym_map_type] = STATE(1052), + [sym_channel_type] = STATE(1052), + [sym_shared_type] = STATE(1052), + [sym_thread_type] = STATE(1052), + [sym_atomic_type] = STATE(1052), + [sym_generic_type] = STATE(1052), + [sym_function_type] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(603), + [sym_identifier] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(1701), + [anon_sym_map_LBRACK] = ACTIONS(1703), + [anon_sym_chan] = ACTIONS(1705), + [anon_sym_thread] = ACTIONS(1707), + [anon_sym_atomic] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + [sym___double_quote] = ACTIONS(605), + [sym___single_quote] = ACTIONS(605), + [sym___c_double_quote] = ACTIONS(605), + [sym___c_single_quote] = ACTIONS(605), + [sym___r_double_quote] = ACTIONS(605), + [sym___r_single_quote] = ACTIONS(605), }, [213] = { [sym_line_comment] = STATE(213), - [sym_reference_expression] = STATE(4441), - [sym_type_reference_expression] = STATE(1016), - [sym_plain_type] = STATE(1057), - [sym__plain_type_without_special] = STATE(1068), - [sym_anon_struct_type] = STATE(1067), - [sym_multi_return_type] = STATE(1068), - [sym_result_type] = STATE(1068), - [sym_option_type] = STATE(1068), - [sym_qualified_type] = STATE(1016), - [sym_fixed_array_type] = STATE(1067), - [sym_array_type] = STATE(1067), - [sym_pointer_type] = STATE(1067), - [sym_wrong_pointer_type] = STATE(1067), - [sym_map_type] = STATE(1067), - [sym_channel_type] = STATE(1067), - [sym_shared_type] = STATE(1067), - [sym_thread_type] = STATE(1067), - [sym_atomic_type] = STATE(1067), - [sym_generic_type] = STATE(1067), - [sym_function_type] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(585), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [sym_block_comment] = STATE(213), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1060), + [sym__plain_type_without_special] = STATE(1051), + [sym_anon_struct_type] = STATE(1052), + [sym_multi_return_type] = STATE(1051), + [sym_result_type] = STATE(1051), + [sym_option_type] = STATE(1051), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1052), + [sym_array_type] = STATE(1052), + [sym_pointer_type] = STATE(1052), + [sym_wrong_pointer_type] = STATE(1052), + [sym_map_type] = STATE(1052), + [sym_channel_type] = STATE(1052), + [sym_shared_type] = STATE(1052), + [sym_thread_type] = STATE(1052), + [sym_atomic_type] = STATE(1052), + [sym_generic_type] = STATE(1052), + [sym_function_type] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(1701), + [anon_sym_map_LBRACK] = ACTIONS(1703), + [anon_sym_chan] = ACTIONS(1705), + [anon_sym_thread] = ACTIONS(1707), + [anon_sym_atomic] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), + [sym___double_quote] = ACTIONS(601), + [sym___single_quote] = ACTIONS(601), + [sym___c_double_quote] = ACTIONS(601), + [sym___c_single_quote] = ACTIONS(601), + [sym___r_double_quote] = ACTIONS(601), + [sym___r_single_quote] = ACTIONS(601), }, [214] = { [sym_line_comment] = STATE(214), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [ts_builtin_sym_end] = ACTIONS(621), - [sym_identifier] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_const] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym___global] = ACTIONS(623), - [anon_sym_type] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_union] = ACTIONS(623), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_enum] = ACTIONS(623), - [anon_sym_interface] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [anon_sym_assert] = ACTIONS(623), - [anon_sym_defer] = ACTIONS(623), - [anon_sym_goto] = ACTIONS(623), - [anon_sym_break] = ACTIONS(623), - [anon_sym_continue] = ACTIONS(623), - [anon_sym_return] = ACTIONS(623), - [anon_sym_DOLLARfor] = ACTIONS(623), - [anon_sym_for] = ACTIONS(623), - [anon_sym_POUND] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(623), - [anon_sym_AT_LBRACK] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [sym_block_comment] = STATE(214), + [sym_reference_expression] = STATE(4449), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1075), + [sym__plain_type_without_special] = STATE(1051), + [sym_anon_struct_type] = STATE(1052), + [sym_multi_return_type] = STATE(1051), + [sym_result_type] = STATE(1051), + [sym_option_type] = STATE(1051), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1052), + [sym_array_type] = STATE(1052), + [sym_pointer_type] = STATE(1052), + [sym_wrong_pointer_type] = STATE(1052), + [sym_map_type] = STATE(1052), + [sym_channel_type] = STATE(1052), + [sym_shared_type] = STATE(1052), + [sym_thread_type] = STATE(1052), + [sym_atomic_type] = STATE(1052), + [sym_generic_type] = STATE(1052), + [sym_function_type] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(563), + [sym_identifier] = ACTIONS(1683), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(1689), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(1693), + [anon_sym_BANG] = ACTIONS(1695), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), + [anon_sym_LBRACK2] = ACTIONS(1697), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(1699), + [anon_sym_LT_DASH] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(1701), + [anon_sym_map_LBRACK] = ACTIONS(1703), + [anon_sym_chan] = ACTIONS(1705), + [anon_sym_thread] = ACTIONS(1707), + [anon_sym_atomic] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), + [sym___double_quote] = ACTIONS(567), + [sym___single_quote] = ACTIONS(567), + [sym___c_double_quote] = ACTIONS(567), + [sym___c_single_quote] = ACTIONS(567), + [sym___r_double_quote] = ACTIONS(567), + [sym___r_single_quote] = ACTIONS(567), }, [215] = { [sym_line_comment] = STATE(215), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [aux_sym_strictly_expression_list_repeat1] = STATE(1446), + [sym_block_comment] = STATE(215), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [aux_sym_strictly_expression_list_repeat1] = STATE(3381), [ts_builtin_sym_end] = ACTIONS(1711), [sym_identifier] = ACTIONS(1713), [anon_sym_LF] = ACTIONS(1713), [anon_sym_CR] = ACTIONS(1713), [anon_sym_CR_LF] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(1715), [anon_sym_as] = ACTIONS(1717), [anon_sym_LBRACE] = ACTIONS(1713), [anon_sym_COMMA] = ACTIONS(1719), [anon_sym_const] = ACTIONS(1713), [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1719), + [anon_sym_EQ] = ACTIONS(1723), [anon_sym___global] = ACTIONS(1713), [anon_sym_type] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1725), [anon_sym_fn] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), [anon_sym_struct] = ACTIONS(1713), [anon_sym_union] = ACTIONS(1713), [anon_sym_pub] = ACTIONS(1713), [anon_sym_mut] = ACTIONS(1713), [anon_sym_enum] = ACTIONS(1713), [anon_sym_interface] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), [anon_sym_go] = ACTIONS(1713), [anon_sym_spawn] = ACTIONS(1713), [anon_sym_json_DOTdecode] = ACTIONS(1713), - [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_LBRACK2] = ACTIONS(1741), [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1713), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1743), + [anon_sym_LT_LT] = ACTIONS(1745), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), [sym_none] = ACTIONS(1713), [sym_true] = ACTIONS(1713), [sym_false] = ACTIONS(1713), [sym_nil] = ACTIONS(1713), [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), [anon_sym_if] = ACTIONS(1713), [anon_sym_DOLLARif] = ACTIONS(1713), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), [anon_sym_match] = ACTIONS(1713), [anon_sym_select] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1719), - [anon_sym_SLASH_EQ] = ACTIONS(1719), - [anon_sym_PERCENT_EQ] = ACTIONS(1719), - [anon_sym_LT_LT_EQ] = ACTIONS(1719), - [anon_sym_GT_GT_EQ] = ACTIONS(1719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1719), - [anon_sym_AMP_EQ] = ACTIONS(1719), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1719), - [anon_sym_PLUS_EQ] = ACTIONS(1719), - [anon_sym_DASH_EQ] = ACTIONS(1719), - [anon_sym_PIPE_EQ] = ACTIONS(1719), - [anon_sym_CARET_EQ] = ACTIONS(1719), - [anon_sym_COLON_EQ] = ACTIONS(1719), + [anon_sym_STAR_EQ] = ACTIONS(1723), + [anon_sym_SLASH_EQ] = ACTIONS(1723), + [anon_sym_PERCENT_EQ] = ACTIONS(1723), + [anon_sym_LT_LT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_AMP_EQ] = ACTIONS(1723), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1723), + [anon_sym_PLUS_EQ] = ACTIONS(1723), + [anon_sym_DASH_EQ] = ACTIONS(1723), + [anon_sym_PIPE_EQ] = ACTIONS(1723), + [anon_sym_CARET_EQ] = ACTIONS(1723), + [anon_sym_COLON_EQ] = ACTIONS(1723), [anon_sym_lock] = ACTIONS(1713), [anon_sym_rlock] = ACTIONS(1713), [anon_sym_unsafe] = ACTIONS(1713), @@ -55050,1296 +48506,1426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [216] = { [sym_line_comment] = STATE(216), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [aux_sym_strictly_expression_list_repeat1] = STATE(3382), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(216), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [aux_sym_strictly_expression_list_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_CR] = ACTIONS(1763), + [anon_sym_CR_LF] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(1715), [anon_sym_as] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1763), [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1761), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_pub] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1763), + [anon_sym_spawn] = ACTIONS(1763), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), [anon_sym_LT_DASH] = ACTIONS(1763), - [anon_sym_LT_LT] = ACTIONS(1765), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(1763), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_nil] = ACTIONS(1763), [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1761), - [anon_sym_SLASH_EQ] = ACTIONS(1761), - [anon_sym_PERCENT_EQ] = ACTIONS(1761), - [anon_sym_LT_LT_EQ] = ACTIONS(1761), - [anon_sym_GT_GT_EQ] = ACTIONS(1761), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1761), - [anon_sym_AMP_EQ] = ACTIONS(1761), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1761), - [anon_sym_PLUS_EQ] = ACTIONS(1761), - [anon_sym_DASH_EQ] = ACTIONS(1761), - [anon_sym_PIPE_EQ] = ACTIONS(1761), - [anon_sym_CARET_EQ] = ACTIONS(1761), - [anon_sym_COLON_EQ] = ACTIONS(1761), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_DOLLARif] = ACTIONS(1763), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_select] = ACTIONS(1763), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1763), + [anon_sym_rlock] = ACTIONS(1763), + [anon_sym_unsafe] = ACTIONS(1763), + [anon_sym_sql] = ACTIONS(1763), + [sym_int_literal] = ACTIONS(1763), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1763), + [anon_sym_shared] = ACTIONS(1763), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1763), + [anon_sym_thread] = ACTIONS(1763), + [anon_sym_atomic] = ACTIONS(1763), + [anon_sym_assert] = ACTIONS(1763), + [anon_sym_defer] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_DOLLARfor] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_asm] = ACTIONS(1763), + [anon_sym_AT_LBRACK] = ACTIONS(1763), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), }, [217] = { [sym_line_comment] = STATE(217), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1769), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [sym_block_comment] = STATE(217), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(248), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1767), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_STAR_EQ] = ACTIONS(1769), - [anon_sym_SLASH_EQ] = ACTIONS(1769), - [anon_sym_PERCENT_EQ] = ACTIONS(1769), - [anon_sym_LT_LT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1769), - [anon_sym_AMP_EQ] = ACTIONS(1769), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1769), - [anon_sym_PLUS_EQ] = ACTIONS(1769), - [anon_sym_DASH_EQ] = ACTIONS(1769), - [anon_sym_PIPE_EQ] = ACTIONS(1769), - [anon_sym_CARET_EQ] = ACTIONS(1769), - [anon_sym_COLON_EQ] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [218] = { [sym_line_comment] = STATE(218), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4206), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2398), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1773), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(218), + [sym__expression] = STATE(2452), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4141), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [219] = { [sym_line_comment] = STATE(219), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4206), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2398), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(219), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [220] = { [sym_line_comment] = STATE(220), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4403), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1350), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(220), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [221] = { [sym_line_comment] = STATE(221), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4172), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1268), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(221), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [222] = { [sym_line_comment] = STATE(222), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_CR] = ACTIONS(1807), - [anon_sym_CR_LF] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym___global] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_pub] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_STAR_EQ] = ACTIONS(1807), - [anon_sym_SLASH_EQ] = ACTIONS(1807), - [anon_sym_PERCENT_EQ] = ACTIONS(1807), - [anon_sym_LT_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_GT_EQ] = ACTIONS(1807), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1807), - [anon_sym_AMP_EQ] = ACTIONS(1807), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1807), - [anon_sym_PLUS_EQ] = ACTIONS(1807), - [anon_sym_DASH_EQ] = ACTIONS(1807), - [anon_sym_PIPE_EQ] = ACTIONS(1807), - [anon_sym_CARET_EQ] = ACTIONS(1807), - [anon_sym_COLON_EQ] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [anon_sym_assert] = ACTIONS(1807), - [anon_sym_defer] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_DOLLARfor] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_asm] = ACTIONS(1807), - [anon_sym_AT_LBRACK] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), + [sym_block_comment] = STATE(222), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(249), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [223] = { [sym_line_comment] = STATE(223), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4299), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1059), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(223), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4134), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1105), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [224] = { [sym_line_comment] = STATE(224), - [sym__expression] = STATE(2352), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2688), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4195), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(224), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4170), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [225] = { [sym_line_comment] = STATE(225), - [sym__expression] = STATE(2464), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4398), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(225), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [226] = { + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4398), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1221), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [226] = { - [sym_line_comment] = STATE(226), - [sym__expression] = STATE(1296), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym___rcbr] = STATE(3748), - [aux_sym_string_interpolation_repeat1] = STATE(281), + [227] = { + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym__expression] = STATE(1362), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym___rcbr] = STATE(3771), + [aux_sym_string_interpolation_repeat1] = STATE(317), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1809), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -56347,5446 +49933,6207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [227] = { - [sym_line_comment] = STATE(227), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_LF] = ACTIONS(1837), - [anon_sym_CR] = ACTIONS(1837), - [anon_sym_CR_LF] = ACTIONS(1837), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1837), - [anon_sym___global] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_pub] = ACTIONS(1837), - [anon_sym_mut] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1837), - [anon_sym_spawn] = ACTIONS(1837), - [anon_sym_json_DOTdecode] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_LT_DASH] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1837), - [anon_sym_AMP_CARET] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [sym_none] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_nil] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_DOLLARif] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1837), - [anon_sym_BANGis] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_BANGin] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_select] = ACTIONS(1837), - [anon_sym_STAR_EQ] = ACTIONS(1837), - [anon_sym_SLASH_EQ] = ACTIONS(1837), - [anon_sym_PERCENT_EQ] = ACTIONS(1837), - [anon_sym_LT_LT_EQ] = ACTIONS(1837), - [anon_sym_GT_GT_EQ] = ACTIONS(1837), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1837), - [anon_sym_AMP_EQ] = ACTIONS(1837), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1837), - [anon_sym_PLUS_EQ] = ACTIONS(1837), - [anon_sym_DASH_EQ] = ACTIONS(1837), - [anon_sym_PIPE_EQ] = ACTIONS(1837), - [anon_sym_CARET_EQ] = ACTIONS(1837), - [anon_sym_COLON_EQ] = ACTIONS(1837), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_sql] = ACTIONS(1837), - [sym_int_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1837), - [sym_rune_literal] = ACTIONS(1837), - [sym_pseudo_compile_time_identifier] = ACTIONS(1837), - [anon_sym_shared] = ACTIONS(1837), - [anon_sym_map_LBRACK] = ACTIONS(1837), - [anon_sym_chan] = ACTIONS(1837), - [anon_sym_thread] = ACTIONS(1837), - [anon_sym_atomic] = ACTIONS(1837), - [anon_sym_assert] = ACTIONS(1837), - [anon_sym_defer] = ACTIONS(1837), - [anon_sym_goto] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_DOLLARfor] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1837), - [anon_sym_asm] = ACTIONS(1837), - [anon_sym_AT_LBRACK] = ACTIONS(1837), - [sym___double_quote] = ACTIONS(1837), - [sym___single_quote] = ACTIONS(1837), - [sym___c_double_quote] = ACTIONS(1837), - [sym___c_single_quote] = ACTIONS(1837), - [sym___r_double_quote] = ACTIONS(1837), - [sym___r_single_quote] = ACTIONS(1837), - }, [228] = { [sym_line_comment] = STATE(228), - [sym__expression] = STATE(2355), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4114), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(228), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4345), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1749), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [229] = { [sym_line_comment] = STATE(229), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_CR] = ACTIONS(1841), - [anon_sym_CR_LF] = ACTIONS(1841), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1841), - [anon_sym___global] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1841), - [anon_sym_spawn] = ACTIONS(1841), - [anon_sym_json_DOTdecode] = ACTIONS(1841), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_nil] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_DOLLARif] = ACTIONS(1841), - [anon_sym_is] = ACTIONS(1843), - [anon_sym_BANGis] = ACTIONS(1845), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_select] = ACTIONS(1841), - [anon_sym_STAR_EQ] = ACTIONS(1841), - [anon_sym_SLASH_EQ] = ACTIONS(1841), - [anon_sym_PERCENT_EQ] = ACTIONS(1841), - [anon_sym_LT_LT_EQ] = ACTIONS(1841), - [anon_sym_GT_GT_EQ] = ACTIONS(1841), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1841), - [anon_sym_AMP_EQ] = ACTIONS(1841), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1841), - [anon_sym_PLUS_EQ] = ACTIONS(1841), - [anon_sym_DASH_EQ] = ACTIONS(1841), - [anon_sym_PIPE_EQ] = ACTIONS(1841), - [anon_sym_CARET_EQ] = ACTIONS(1841), - [anon_sym_COLON_EQ] = ACTIONS(1841), - [anon_sym_lock] = ACTIONS(1841), - [anon_sym_rlock] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_sql] = ACTIONS(1841), - [sym_int_literal] = ACTIONS(1841), - [sym_float_literal] = ACTIONS(1841), - [sym_rune_literal] = ACTIONS(1841), - [sym_pseudo_compile_time_identifier] = ACTIONS(1841), - [anon_sym_shared] = ACTIONS(1841), - [anon_sym_map_LBRACK] = ACTIONS(1841), - [anon_sym_chan] = ACTIONS(1841), - [anon_sym_thread] = ACTIONS(1841), - [anon_sym_atomic] = ACTIONS(1841), - [anon_sym_assert] = ACTIONS(1841), - [anon_sym_defer] = ACTIONS(1841), - [anon_sym_goto] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_DOLLARfor] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_asm] = ACTIONS(1841), - [anon_sym_AT_LBRACK] = ACTIONS(1841), - [sym___double_quote] = ACTIONS(1841), - [sym___single_quote] = ACTIONS(1841), - [sym___c_double_quote] = ACTIONS(1841), - [sym___c_single_quote] = ACTIONS(1841), - [sym___r_double_quote] = ACTIONS(1841), - [sym___r_single_quote] = ACTIONS(1841), + [sym_block_comment] = STATE(229), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [230] = { [sym_line_comment] = STATE(230), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4155), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1901), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(230), + [sym__expression] = STATE(2429), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4320), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [231] = { [sym_line_comment] = STATE(231), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4393), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1769), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(231), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4119), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2091), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [232] = { [sym_line_comment] = STATE(232), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4169), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2013), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(232), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4274), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1909), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [233] = { [sym_line_comment] = STATE(233), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4258), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2589), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(233), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [234] = { + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym__expression] = STATE(1296), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym___rcbr] = STATE(3768), + [aux_sym_string_interpolation_repeat1] = STATE(227), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [235] = { + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [236] = { + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [237] = { + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [238] = { + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(240), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [239] = { + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4171), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [234] = { - [sym_line_comment] = STATE(234), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), + [240] = { + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [235] = { - [sym_line_comment] = STATE(235), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [236] = { - [sym_line_comment] = STATE(236), - [sym__expression] = STATE(2412), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2688), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4404), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [241] = { + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym__expression] = STATE(2375), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2678), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4170), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [237] = { - [sym_line_comment] = STATE(237), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), + [242] = { + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(283), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [243] = { + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [238] = { - [sym_line_comment] = STATE(238), - [sym__expression] = STATE(2373), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4246), - [sym_identifier] = ACTIONS(1771), + [244] = { + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [245] = { + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4227), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2710), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [239] = { - [sym_line_comment] = STATE(239), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(234), - [sym_identifier] = ACTIONS(1336), + [246] = { + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_CR] = ACTIONS(1865), + [anon_sym_CR_LF] = ACTIONS(1865), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1865), + [anon_sym_DASH] = ACTIONS(1865), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1865), + [anon_sym_LT_DASH] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + [sym_rune_literal] = ACTIONS(1865), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1865), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [anon_sym_assert] = ACTIONS(1865), + [anon_sym_defer] = ACTIONS(1865), + [anon_sym_goto] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_DOLLARfor] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_asm] = ACTIONS(1865), + [anon_sym_AT_LBRACK] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1865), + [sym___single_quote] = ACTIONS(1865), + [sym___c_double_quote] = ACTIONS(1865), + [sym___c_single_quote] = ACTIONS(1865), + [sym___r_double_quote] = ACTIONS(1865), + [sym___r_single_quote] = ACTIONS(1865), }, - [240] = { - [sym_line_comment] = STATE(240), - [sym__expression] = STATE(1295), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym___rcbr] = STATE(3801), - [aux_sym_string_interpolation_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1402), + [247] = { + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [248] = { + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [249] = { + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [250] = { + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, - [241] = { - [sym_line_comment] = STATE(241), - [sym__expression] = STATE(2368), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4145), - [sym_identifier] = ACTIONS(1771), + [251] = { + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [252] = { + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym__expression] = STATE(2477), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4401), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [242] = { - [sym_line_comment] = STATE(242), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4266), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2276), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [253] = { + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4225), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2911), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [243] = { - [sym_line_comment] = STATE(243), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(246), - [sym_identifier] = ACTIONS(1336), + [254] = { + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [244] = { - [sym_line_comment] = STATE(244), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_CR] = ACTIONS(1871), - [anon_sym_CR_LF] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1871), - [anon_sym___global] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_pub] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1871), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_STAR_EQ] = ACTIONS(1871), - [anon_sym_SLASH_EQ] = ACTIONS(1871), - [anon_sym_PERCENT_EQ] = ACTIONS(1871), - [anon_sym_LT_LT_EQ] = ACTIONS(1871), - [anon_sym_GT_GT_EQ] = ACTIONS(1871), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1871), - [anon_sym_AMP_EQ] = ACTIONS(1871), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1871), - [anon_sym_PLUS_EQ] = ACTIONS(1871), - [anon_sym_DASH_EQ] = ACTIONS(1871), - [anon_sym_PIPE_EQ] = ACTIONS(1871), - [anon_sym_CARET_EQ] = ACTIONS(1871), - [anon_sym_COLON_EQ] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), - [sym_rune_literal] = ACTIONS(1871), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1871), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [anon_sym_assert] = ACTIONS(1871), - [anon_sym_defer] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_DOLLARfor] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_asm] = ACTIONS(1871), - [anon_sym_AT_LBRACK] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1871), - [sym___single_quote] = ACTIONS(1871), - [sym___c_double_quote] = ACTIONS(1871), - [sym___c_single_quote] = ACTIONS(1871), - [sym___r_double_quote] = ACTIONS(1871), - [sym___r_single_quote] = ACTIONS(1871), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_STAR_EQ] = ACTIONS(1877), + [anon_sym_SLASH_EQ] = ACTIONS(1877), + [anon_sym_PERCENT_EQ] = ACTIONS(1877), + [anon_sym_LT_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1877), + [anon_sym_AMP_EQ] = ACTIONS(1877), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1877), + [anon_sym_PLUS_EQ] = ACTIONS(1877), + [anon_sym_DASH_EQ] = ACTIONS(1877), + [anon_sym_PIPE_EQ] = ACTIONS(1877), + [anon_sym_CARET_EQ] = ACTIONS(1877), + [anon_sym_COLON_EQ] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1877), + [sym___single_quote] = ACTIONS(1877), + [sym___c_double_quote] = ACTIONS(1877), + [sym___c_single_quote] = ACTIONS(1877), + [sym___r_double_quote] = ACTIONS(1877), + [sym___r_single_quote] = ACTIONS(1877), }, - [245] = { - [sym_line_comment] = STATE(245), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4264), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2956), - [sym_identifier] = ACTIONS(1771), + [255] = { + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [256] = { + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [257] = { + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(236), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [258] = { + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4298), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [246] = { - [sym_line_comment] = STATE(246), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [247] = { - [sym_line_comment] = STATE(247), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4242), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2802), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [259] = { + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym__expression] = STATE(2417), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4242), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [248] = { - [sym_line_comment] = STATE(248), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4130), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(766), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [260] = { + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4298), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [249] = { - [sym_line_comment] = STATE(249), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4258), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2589), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [261] = { + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym__expression] = STATE(2391), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4233), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [250] = { - [sym_line_comment] = STATE(250), - [sym__expression] = STATE(2352), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4195), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [262] = { + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym__expression] = STATE(2395), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4129), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [251] = { - [sym_line_comment] = STATE(251), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [252] = { - [sym_line_comment] = STATE(252), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [263] = { + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4227), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2710), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [253] = { - [sym_line_comment] = STATE(253), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [264] = { + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(247), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [254] = { - [sym_line_comment] = STATE(254), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4206), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2398), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1891), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [265] = { + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4298), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [255] = { - [sym_line_comment] = STATE(255), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4242), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2802), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [266] = { + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [267] = { + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [268] = { + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4241), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2017), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [256] = { - [sym_line_comment] = STATE(256), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4266), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2276), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1895), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [269] = { + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym__expression] = STATE(2418), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4176), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [257] = { - [sym_line_comment] = STATE(257), - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [270] = { + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym__expression] = STATE(2423), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_var_declaration] = STATE(4301), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [258] = { - [sym_line_comment] = STATE(258), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1899), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_STAR_EQ] = ACTIONS(1899), - [anon_sym_SLASH_EQ] = ACTIONS(1899), - [anon_sym_PERCENT_EQ] = ACTIONS(1899), - [anon_sym_LT_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1899), - [anon_sym_AMP_EQ] = ACTIONS(1899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1899), - [anon_sym_PLUS_EQ] = ACTIONS(1899), - [anon_sym_DASH_EQ] = ACTIONS(1899), - [anon_sym_PIPE_EQ] = ACTIONS(1899), - [anon_sym_CARET_EQ] = ACTIONS(1899), - [anon_sym_COLON_EQ] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), - }, - [259] = { - [sym_line_comment] = STATE(259), - [sym__expression] = STATE(1378), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym___rcbr] = STATE(3813), - [aux_sym_string_interpolation_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, - [260] = { - [sym_line_comment] = STATE(260), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [261] = { - [sym_line_comment] = STATE(261), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), + [271] = { + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), [anon_sym_RBRACE] = ACTIONS(1903), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [262] = { - [sym_line_comment] = STATE(262), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [272] = { + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4227), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2710), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [263] = { - [sym_line_comment] = STATE(263), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [273] = { + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4349), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2265), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [264] = { - [sym_line_comment] = STATE(264), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_LT_EQ] = ACTIONS(1727), - [anon_sym_GT_EQ] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [274] = { + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4131), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2602), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [265] = { - [sym_line_comment] = STATE(265), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_LF] = ACTIONS(1911), - [anon_sym_CR] = ACTIONS(1911), - [anon_sym_CR_LF] = ACTIONS(1911), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [275] = { + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1911), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1911), - [anon_sym_PLUS] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1911), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_pub] = ACTIONS(1911), - [anon_sym_mut] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_interface] = ACTIONS(1911), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1911), - [anon_sym_spawn] = ACTIONS(1911), - [anon_sym_json_DOTdecode] = ACTIONS(1911), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1911), - [anon_sym_CARET] = ACTIONS(1911), - [anon_sym_AMP] = ACTIONS(1911), - [anon_sym_LT_DASH] = ACTIONS(1911), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1911), - [sym_true] = ACTIONS(1911), - [sym_false] = ACTIONS(1911), - [sym_nil] = ACTIONS(1911), + [anon_sym_EQ] = ACTIONS(1913), + [anon_sym___global] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_interface] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_DOLLARif] = ACTIONS(1911), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_select] = ACTIONS(1911), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1911), - [anon_sym_rlock] = ACTIONS(1911), - [anon_sym_unsafe] = ACTIONS(1911), - [anon_sym_sql] = ACTIONS(1911), - [sym_int_literal] = ACTIONS(1911), - [sym_float_literal] = ACTIONS(1911), - [sym_rune_literal] = ACTIONS(1911), - [sym_pseudo_compile_time_identifier] = ACTIONS(1911), - [anon_sym_shared] = ACTIONS(1911), - [anon_sym_map_LBRACK] = ACTIONS(1911), - [anon_sym_chan] = ACTIONS(1911), - [anon_sym_thread] = ACTIONS(1911), - [anon_sym_atomic] = ACTIONS(1911), - [anon_sym_assert] = ACTIONS(1911), - [anon_sym_defer] = ACTIONS(1911), - [anon_sym_goto] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_DOLLARfor] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_POUND] = ACTIONS(1911), - [anon_sym_asm] = ACTIONS(1911), - [anon_sym_AT_LBRACK] = ACTIONS(1911), - [sym___double_quote] = ACTIONS(1911), - [sym___single_quote] = ACTIONS(1911), - [sym___c_double_quote] = ACTIONS(1911), - [sym___c_single_quote] = ACTIONS(1911), - [sym___r_double_quote] = ACTIONS(1911), - [sym___r_single_quote] = ACTIONS(1911), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_STAR_EQ] = ACTIONS(1913), + [anon_sym_SLASH_EQ] = ACTIONS(1913), + [anon_sym_PERCENT_EQ] = ACTIONS(1913), + [anon_sym_LT_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_GT_EQ] = ACTIONS(1913), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1913), + [anon_sym_AMP_EQ] = ACTIONS(1913), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1913), + [anon_sym_PLUS_EQ] = ACTIONS(1913), + [anon_sym_DASH_EQ] = ACTIONS(1913), + [anon_sym_PIPE_EQ] = ACTIONS(1913), + [anon_sym_CARET_EQ] = ACTIONS(1913), + [anon_sym_COLON_EQ] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [anon_sym_assert] = ACTIONS(1913), + [anon_sym_defer] = ACTIONS(1913), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_DOLLARfor] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_asm] = ACTIONS(1913), + [anon_sym_AT_LBRACK] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), }, - [266] = { - [sym_line_comment] = STATE(266), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(284), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [267] = { - [sym_line_comment] = STATE(267), - [sym__expression] = STATE(2452), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4353), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [276] = { + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4241), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2017), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [277] = { + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4134), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1105), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [268] = { - [sym_line_comment] = STATE(268), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1915), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [269] = { - [sym_line_comment] = STATE(269), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4206), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2398), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [278] = { + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4171), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(1354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [270] = { - [sym_line_comment] = STATE(270), - [sym__expression] = STATE(2356), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4174), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [279] = { + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4298), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2354), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [271] = { - [sym_line_comment] = STATE(271), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(272), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1919), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [272] = { - [sym_line_comment] = STATE(272), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [273] = { - [sym_line_comment] = STATE(273), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), + [280] = { + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_LF] = ACTIONS(1925), [anon_sym_CR] = ACTIONS(1925), [anon_sym_CR_LF] = ACTIONS(1925), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(1715), [anon_sym_as] = ACTIONS(1925), [anon_sym_LBRACE] = ACTIONS(1925), @@ -61809,7 +56156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1925), [anon_sym_LT_EQ] = ACTIONS(1925), [anon_sym_GT_EQ] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), [anon_sym_struct] = ACTIONS(1925), [anon_sym_union] = ACTIONS(1925), [anon_sym_pub] = ACTIONS(1925), @@ -61818,12 +56165,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1925), [anon_sym_PLUS_PLUS] = ACTIONS(1925), [anon_sym_DASH_DASH] = ACTIONS(1925), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), [anon_sym_go] = ACTIONS(1925), [anon_sym_spawn] = ACTIONS(1925), [anon_sym_json_DOTdecode] = ACTIONS(1925), - [anon_sym_LBRACK2] = ACTIONS(1739), + [anon_sym_LBRACK2] = ACTIONS(1741), [anon_sym_TILDE] = ACTIONS(1925), [anon_sym_CARET] = ACTIONS(1925), [anon_sym_AMP] = ACTIONS(1925), @@ -61840,7 +56187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1925), [sym_nil] = ACTIONS(1925), [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), [anon_sym_if] = ACTIONS(1925), [anon_sym_DOLLARif] = ACTIONS(1925), [anon_sym_is] = ACTIONS(1925), @@ -61893,943 +56240,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1925), [sym___r_single_quote] = ACTIONS(1925), }, - [274] = { - [sym_line_comment] = STATE(274), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4112), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2037), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [281] = { + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym__expression] = STATE(1297), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym___rcbr] = STATE(3729), + [aux_sym_string_interpolation_repeat1] = STATE(288), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [282] = { + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym__expression] = STATE(2427), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4351), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [275] = { - [sym_line_comment] = STATE(275), - [sym__expression] = STATE(2412), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4404), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [283] = { + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [284] = { + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym__expression] = STATE(2455), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4236), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [276] = { - [sym_line_comment] = STATE(276), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [277] = { - [sym_line_comment] = STATE(277), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [278] = { - [sym_line_comment] = STATE(278), - [sym__expression] = STATE(2376), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4247), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [285] = { + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym__expression] = STATE(2423), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2678), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4301), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [279] = { - [sym_line_comment] = STATE(279), - [sym_type_parameters] = STATE(4249), - [sym_argument_list] = STATE(673), - [sym_or_block] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1715), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_EQ] = ACTIONS(1889), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1725), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1725), - [anon_sym_GT_GT] = ACTIONS(1725), - [anon_sym_GT_GT_GT] = ACTIONS(1725), - [anon_sym_AMP_CARET] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(1715), - [anon_sym_POUND_LBRACK] = ACTIONS(1739), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_STAR_EQ] = ACTIONS(1889), - [anon_sym_SLASH_EQ] = ACTIONS(1889), - [anon_sym_PERCENT_EQ] = ACTIONS(1889), - [anon_sym_LT_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1889), - [anon_sym_AMP_EQ] = ACTIONS(1889), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1889), - [anon_sym_PLUS_EQ] = ACTIONS(1889), - [anon_sym_DASH_EQ] = ACTIONS(1889), - [anon_sym_PIPE_EQ] = ACTIONS(1889), - [anon_sym_CARET_EQ] = ACTIONS(1889), - [anon_sym_COLON_EQ] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [280] = { - [sym_line_comment] = STATE(280), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4403), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1350), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [286] = { + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym__expression] = STATE(2411), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4116), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [281] = { - [sym_line_comment] = STATE(281), - [sym__expression] = STATE(1378), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym___rcbr] = STATE(3846), - [aux_sym_string_interpolation_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1402), + [287] = { + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1933), + [anon_sym___global] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_interface] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_STAR_EQ] = ACTIONS(1933), + [anon_sym_SLASH_EQ] = ACTIONS(1933), + [anon_sym_PERCENT_EQ] = ACTIONS(1933), + [anon_sym_LT_LT_EQ] = ACTIONS(1933), + [anon_sym_GT_GT_EQ] = ACTIONS(1933), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1933), + [anon_sym_AMP_EQ] = ACTIONS(1933), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1933), + [anon_sym_PLUS_EQ] = ACTIONS(1933), + [anon_sym_DASH_EQ] = ACTIONS(1933), + [anon_sym_PIPE_EQ] = ACTIONS(1933), + [anon_sym_CARET_EQ] = ACTIONS(1933), + [anon_sym_COLON_EQ] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_defer] = ACTIONS(1933), + [anon_sym_goto] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_DOLLARfor] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_asm] = ACTIONS(1933), + [anon_sym_AT_LBRACK] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), + }, + [288] = { + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym__expression] = STATE(1362), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym___rcbr] = STATE(3722), + [aux_sym_string_interpolation_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1927), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -62837,2081 +57192,1738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [282] = { - [sym_line_comment] = STATE(282), - [sym__expression] = STATE(2423), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4150), - [sym_identifier] = ACTIONS(1771), + [289] = { + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1935), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1949), + [anon_sym_PLUS] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1955), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_QMARK] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1967), + [anon_sym_go] = ACTIONS(1970), + [anon_sym_spawn] = ACTIONS(1973), + [anon_sym_json_DOTdecode] = ACTIONS(1976), + [anon_sym_LBRACK2] = ACTIONS(1979), + [anon_sym_TILDE] = ACTIONS(1952), + [anon_sym_CARET] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(1985), + [sym_none] = ACTIONS(1988), + [sym_true] = ACTIONS(1988), + [sym_false] = ACTIONS(1988), + [sym_nil] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_DOLLARif] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_select] = ACTIONS(2000), + [anon_sym_lock] = ACTIONS(2003), + [anon_sym_rlock] = ACTIONS(2003), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_sql] = ACTIONS(2009), + [sym_int_literal] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(2012), + [sym_rune_literal] = ACTIONS(2012), + [sym_pseudo_compile_time_identifier] = ACTIONS(2015), + [anon_sym_shared] = ACTIONS(2018), + [anon_sym_map_LBRACK] = ACTIONS(2021), + [anon_sym_chan] = ACTIONS(2024), + [anon_sym_thread] = ACTIONS(2027), + [anon_sym_atomic] = ACTIONS(2030), + [sym___double_quote] = ACTIONS(2033), + [sym___single_quote] = ACTIONS(2036), + [sym___c_double_quote] = ACTIONS(2039), + [sym___c_single_quote] = ACTIONS(2042), + [sym___r_double_quote] = ACTIONS(2045), + [sym___r_single_quote] = ACTIONS(2048), + }, + [290] = { + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [291] = { + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [292] = { + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(2055), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(2057), + [anon_sym_BANGis] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_STAR_EQ] = ACTIONS(2055), + [anon_sym_SLASH_EQ] = ACTIONS(2055), + [anon_sym_PERCENT_EQ] = ACTIONS(2055), + [anon_sym_LT_LT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2055), + [anon_sym_AMP_EQ] = ACTIONS(2055), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2055), + [anon_sym_PLUS_EQ] = ACTIONS(2055), + [anon_sym_DASH_EQ] = ACTIONS(2055), + [anon_sym_PIPE_EQ] = ACTIONS(2055), + [anon_sym_CARET_EQ] = ACTIONS(2055), + [anon_sym_COLON_EQ] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), + [sym___double_quote] = ACTIONS(2055), + [sym___single_quote] = ACTIONS(2055), + [sym___c_double_quote] = ACTIONS(2055), + [sym___c_single_quote] = ACTIONS(2055), + [sym___r_double_quote] = ACTIONS(2055), + [sym___r_single_quote] = ACTIONS(2055), + }, + [293] = { + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4131), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2602), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [283] = { - [sym_line_comment] = STATE(283), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4169), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2013), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [294] = { + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4132), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(872), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [284] = { - [sym_line_comment] = STATE(284), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [285] = { - [sym_line_comment] = STATE(285), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [286] = { - [sym_line_comment] = STATE(286), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(293), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [287] = { - [sym_line_comment] = STATE(287), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1939), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1953), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_STAR] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1962), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1971), - [anon_sym_go] = ACTIONS(1974), - [anon_sym_spawn] = ACTIONS(1977), - [anon_sym_json_DOTdecode] = ACTIONS(1980), - [anon_sym_LBRACK2] = ACTIONS(1983), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_LT_DASH] = ACTIONS(1989), - [sym_none] = ACTIONS(1992), - [sym_true] = ACTIONS(1992), - [sym_false] = ACTIONS(1992), - [sym_nil] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_DOLLARif] = ACTIONS(1998), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_select] = ACTIONS(2004), - [anon_sym_lock] = ACTIONS(2007), - [anon_sym_rlock] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2010), - [anon_sym_sql] = ACTIONS(2013), - [sym_int_literal] = ACTIONS(1992), - [sym_float_literal] = ACTIONS(2016), - [sym_rune_literal] = ACTIONS(2016), - [sym_pseudo_compile_time_identifier] = ACTIONS(2019), - [anon_sym_shared] = ACTIONS(2022), - [anon_sym_map_LBRACK] = ACTIONS(2025), - [anon_sym_chan] = ACTIONS(2028), - [anon_sym_thread] = ACTIONS(2031), - [anon_sym_atomic] = ACTIONS(2034), - [sym___double_quote] = ACTIONS(2037), - [sym___single_quote] = ACTIONS(2040), - [sym___c_double_quote] = ACTIONS(2043), - [sym___c_single_quote] = ACTIONS(2046), - [sym___r_double_quote] = ACTIONS(2049), - [sym___r_single_quote] = ACTIONS(2052), - }, - [288] = { - [sym_line_comment] = STATE(288), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [289] = { - [sym_line_comment] = STATE(289), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [290] = { - [sym_line_comment] = STATE(290), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [291] = { - [sym_line_comment] = STATE(291), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4242), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(2802), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [295] = { + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4349), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_block] = STATE(2265), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [292] = { - [sym_line_comment] = STATE(292), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4299), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_block] = STATE(1059), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [296] = { + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym__expression] = STATE(2857), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_map_keyed_element] = STATE(2040), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_map_init_expression_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [297] = { + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym__expression] = STATE(2441), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(4093), + [sym_expression_list] = STATE(4644), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_var_declaration] = STATE(4347), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [293] = { - [sym_line_comment] = STATE(293), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), + [298] = { + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_type_parameters] = STATE(4154), + [sym_argument_list] = STATE(717), + [sym_or_block] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_CR] = ACTIONS(2071), + [anon_sym_CR_LF] = ACTIONS(2071), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1717), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym___global] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(1725), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_PERCENT] = ACTIONS(1727), + [anon_sym_LT] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT_EQ] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1731), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_interface] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(1733), + [anon_sym_DASH_DASH] = ACTIONS(1735), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_BANG] = ACTIONS(1739), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2071), + [anon_sym_LBRACK2] = ACTIONS(1741), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(1725), + [anon_sym_AMP] = ACTIONS(1727), + [anon_sym_LT_DASH] = ACTIONS(2071), + [anon_sym_LT_LT] = ACTIONS(1727), + [anon_sym_GT_GT] = ACTIONS(1727), + [anon_sym_GT_GT_GT] = ACTIONS(1727), + [anon_sym_AMP_CARET] = ACTIONS(1727), + [anon_sym_AMP_AMP] = ACTIONS(1747), + [anon_sym_PIPE_PIPE] = ACTIONS(1749), + [anon_sym_or] = ACTIONS(1751), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), + [anon_sym_QMARK_DOT] = ACTIONS(1715), + [anon_sym_POUND_LBRACK] = ACTIONS(1741), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), + [anon_sym_is] = ACTIONS(1753), + [anon_sym_BANGis] = ACTIONS(1755), + [anon_sym_in] = ACTIONS(1757), + [anon_sym_BANGin] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_STAR_EQ] = ACTIONS(2071), + [anon_sym_SLASH_EQ] = ACTIONS(2071), + [anon_sym_PERCENT_EQ] = ACTIONS(2071), + [anon_sym_LT_LT_EQ] = ACTIONS(2071), + [anon_sym_GT_GT_EQ] = ACTIONS(2071), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2071), + [anon_sym_AMP_EQ] = ACTIONS(2071), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2071), + [anon_sym_PLUS_EQ] = ACTIONS(2071), + [anon_sym_DASH_EQ] = ACTIONS(2071), + [anon_sym_PIPE_EQ] = ACTIONS(2071), + [anon_sym_CARET_EQ] = ACTIONS(2071), + [anon_sym_COLON_EQ] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), + [sym_rune_literal] = ACTIONS(2071), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2071), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [anon_sym_assert] = ACTIONS(2071), + [anon_sym_defer] = ACTIONS(2071), + [anon_sym_goto] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_DOLLARfor] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_asm] = ACTIONS(2071), + [anon_sym_AT_LBRACK] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2071), + [sym___single_quote] = ACTIONS(2071), + [sym___c_double_quote] = ACTIONS(2071), + [sym___c_single_quote] = ACTIONS(2071), + [sym___r_double_quote] = ACTIONS(2071), + [sym___r_single_quote] = ACTIONS(2071), }, - [294] = { - [sym_line_comment] = STATE(294), - [sym__expression] = STATE(2354), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4366), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [299] = { + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4709), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [300] = { + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4413), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [295] = { - [sym_line_comment] = STATE(295), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(261), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [296] = { - [sym_line_comment] = STATE(296), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [301] = { + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, - [297] = { - [sym_line_comment] = STATE(297), - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(4077), - [sym_expression_list] = STATE(4604), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_var_declaration] = STATE(4176), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [302] = { + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4406), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [298] = { - [sym_line_comment] = STATE(298), - [sym__expression] = STATE(2723), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_map_keyed_element] = STATE(2036), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_map_init_expression_repeat1] = STATE(289), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [299] = { - [sym_line_comment] = STATE(299), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(348), + [303] = { + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(342), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -64919,10 +58931,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_RBRACK] = ACTIONS(2075), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -64936,23 +58948,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -64960,543 +58972,2200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [300] = { - [sym_line_comment] = STATE(300), - [sym__expression] = STATE(2671), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4500), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [304] = { + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4537), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [301] = { - [sym_line_comment] = STATE(301), - [sym__expression] = STATE(2655), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4737), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [305] = { + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4558), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [302] = { - [sym_line_comment] = STATE(302), - [sym__expression] = STATE(2655), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4737), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [306] = { + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4558), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [303] = { - [sym_line_comment] = STATE(303), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4450), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), + [307] = { + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4574), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [304] = { - [sym_line_comment] = STATE(304), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(348), + [308] = { + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4558), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [309] = { + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [310] = { + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym__expression] = STATE(2555), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(581), + [sym_mutable_expression] = STATE(3881), + [sym_expression_list] = STATE(4413), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [311] = { + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4537), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [312] = { + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4453), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [313] = { + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4516), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [314] = { + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4434), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [315] = { + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(3649), + [sym_expression_list] = STATE(3725), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [316] = { + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4439), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [317] = { + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym__expression] = STATE(1362), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_string_interpolation_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(2165), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2188), + [anon_sym_mut] = ACTIONS(2191), + [anon_sym_QMARK] = ACTIONS(2194), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_go] = ACTIONS(2200), + [anon_sym_spawn] = ACTIONS(2203), + [anon_sym_json_DOTdecode] = ACTIONS(2206), + [anon_sym_LBRACK2] = ACTIONS(2209), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_CARET] = ACTIONS(2182), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_LT_DASH] = ACTIONS(2215), + [sym_none] = ACTIONS(2218), + [sym_true] = ACTIONS(2218), + [sym_false] = ACTIONS(2218), + [sym_nil] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_DOLLARif] = ACTIONS(2224), + [anon_sym_match] = ACTIONS(2227), + [anon_sym_select] = ACTIONS(2230), + [anon_sym_lock] = ACTIONS(2233), + [anon_sym_rlock] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2236), + [anon_sym_sql] = ACTIONS(2239), + [sym_int_literal] = ACTIONS(2218), + [sym_float_literal] = ACTIONS(2242), + [sym_rune_literal] = ACTIONS(2242), + [sym_pseudo_compile_time_identifier] = ACTIONS(2245), + [anon_sym_shared] = ACTIONS(2248), + [anon_sym_map_LBRACK] = ACTIONS(2251), + [anon_sym_chan] = ACTIONS(2254), + [anon_sym_thread] = ACTIONS(2257), + [anon_sym_atomic] = ACTIONS(2260), + [sym___double_quote] = ACTIONS(2263), + [sym___single_quote] = ACTIONS(2266), + [sym___c_double_quote] = ACTIONS(2269), + [sym___c_single_quote] = ACTIONS(2272), + [sym___r_double_quote] = ACTIONS(2275), + [sym___r_single_quote] = ACTIONS(2278), + }, + [318] = { + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym__expression] = STATE(2344), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(3649), + [sym_expression_list] = STATE(3727), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [319] = { + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4495), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [320] = { + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [321] = { + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4641), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [322] = { + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(323), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -65504,10 +61173,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2085), + [anon_sym_RBRACK] = ACTIONS(2287), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -65521,23 +61190,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -65545,75 +61214,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [305] = { - [sym_line_comment] = STATE(305), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [323] = { + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -65621,10 +61291,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2087), + [anon_sym_RBRACK] = ACTIONS(2289), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -65638,23 +61308,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -65662,426 +61332,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [306] = { - [sym_line_comment] = STATE(306), - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4738), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [307] = { - [sym_line_comment] = STATE(307), - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4738), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [308] = { - [sym_line_comment] = STATE(308), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(480), - [sym_mutable_expression] = STATE(3982), - [sym_expression_list] = STATE(4291), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [309] = { - [sym_line_comment] = STATE(309), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [324] = { + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(342), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -66089,10 +61409,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2111), + [anon_sym_RBRACK] = ACTIONS(2291), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -66106,23 +61426,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), + [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -66130,192 +61450,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [310] = { - [sym_line_comment] = STATE(310), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4529), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [325] = { + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4693), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [311] = { - [sym_line_comment] = STATE(311), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(383), + [326] = { + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(381), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -66323,10 +61645,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2115), + [anon_sym_RBRACK] = ACTIONS(2301), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -66340,23 +61662,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -66364,309 +61686,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [312] = { - [sym_line_comment] = STATE(312), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4450), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [313] = { - [sym_line_comment] = STATE(313), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4273), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [327] = { + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym__expression] = STATE(2652), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4693), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [314] = { - [sym_line_comment] = STATE(314), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(305), + [328] = { + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(369), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -66674,10 +61881,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2119), + [anon_sym_RBRACK] = ACTIONS(2303), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -66691,23 +61898,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -66715,192 +61922,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [315] = { - [sym_line_comment] = STATE(315), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4550), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [329] = { + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4661), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [330] = { + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4434), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [316] = { - [sym_line_comment] = STATE(316), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [331] = { + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4661), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [332] = { + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4528), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [333] = { + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(385), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -66908,10 +62471,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2309), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -66925,23 +62488,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), + [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -66949,192 +62512,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [317] = { - [sym_line_comment] = STATE(317), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4550), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [334] = { + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym__expression] = STATE(2684), + [sym__expression_without_blocks] = STATE(2874), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_match_arm_type] = STATE(4322), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(3985), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(4323), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(1121), + [anon_sym_lock] = ACTIONS(1123), + [anon_sym_rlock] = ACTIONS(1123), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [335] = { + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [318] = { - [sym_line_comment] = STATE(318), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [336] = { + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [337] = { + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -67142,10 +62943,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2313), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -67159,23 +62960,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -67183,426 +62984,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [319] = { - [sym_line_comment] = STATE(319), - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4668), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [338] = { + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4704), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [320] = { - [sym_line_comment] = STATE(320), - [sym__expression] = STATE(2676), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4668), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [339] = { + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4704), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [321] = { - [sym_line_comment] = STATE(321), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4440), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [340] = { + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [322] = { - [sym_line_comment] = STATE(322), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(377), + [341] = { + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -67610,10 +63415,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2131), + [anon_sym_RBRACK] = ACTIONS(2315), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -67627,23 +63432,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1450), + [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -67651,192 +63456,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [323] = { - [sym_line_comment] = STATE(323), - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4653), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [324] = { - [sym_line_comment] = STATE(324), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(318), + [342] = { + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -67844,10 +63533,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2133), + [anon_sym_RBRACK] = ACTIONS(2317), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -67861,23 +63550,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1450), + [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -67885,75 +63574,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [325] = { - [sym_line_comment] = STATE(325), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [343] = { + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4699), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [344] = { + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4699), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [345] = { + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(337), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -67961,10 +63887,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_RBRACK] = ACTIONS(2319), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -67978,23 +63904,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), + [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -68002,309 +63928,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [326] = { - [sym_line_comment] = STATE(326), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4566), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [327] = { - [sym_line_comment] = STATE(327), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4550), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [328] = { - [sym_line_comment] = STATE(328), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(378), + [346] = { + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -68312,10 +64005,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2141), + [anon_sym_RBRACK] = ACTIONS(2321), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -68329,23 +64022,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1450), + [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -68353,894 +64046,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [329] = { - [sym_line_comment] = STATE(329), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4529), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [330] = { - [sym_line_comment] = STATE(330), - [sym__expression] = STATE(2687), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4594), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [331] = { - [sym_line_comment] = STATE(331), - [sym__expression] = STATE(2687), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4594), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [332] = { - [sym_line_comment] = STATE(332), - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(461), - [sym_mutable_expression] = STATE(1449), - [sym_expression_list] = STATE(1602), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [333] = { - [sym_line_comment] = STATE(333), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4464), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [334] = { - [sym_line_comment] = STATE(334), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4445), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [347] = { + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4474), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [335] = { - [sym_line_comment] = STATE(335), - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(461), - [sym_mutable_expression] = STATE(1449), - [sym_expression_list] = STATE(1558), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [348] = { + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_short_element_list_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(2325), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2331), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_fn] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_struct] = ACTIONS(2348), + [anon_sym_mut] = ACTIONS(2351), + [anon_sym_QMARK] = ACTIONS(2354), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_go] = ACTIONS(2360), + [anon_sym_spawn] = ACTIONS(2363), + [anon_sym_json_DOTdecode] = ACTIONS(2366), + [anon_sym_LBRACK2] = ACTIONS(2369), + [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2372), + [anon_sym_LT_DASH] = ACTIONS(2375), + [sym_none] = ACTIONS(2378), + [sym_true] = ACTIONS(2378), + [sym_false] = ACTIONS(2378), + [sym_nil] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_DOLLARif] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_select] = ACTIONS(2390), + [anon_sym_lock] = ACTIONS(2393), + [anon_sym_rlock] = ACTIONS(2393), + [anon_sym_unsafe] = ACTIONS(2396), + [anon_sym_sql] = ACTIONS(2399), + [sym_int_literal] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2402), + [sym_rune_literal] = ACTIONS(2402), + [sym_pseudo_compile_time_identifier] = ACTIONS(2405), + [anon_sym_shared] = ACTIONS(2408), + [anon_sym_map_LBRACK] = ACTIONS(2411), + [anon_sym_chan] = ACTIONS(2414), + [anon_sym_thread] = ACTIONS(2417), + [anon_sym_atomic] = ACTIONS(2420), + [sym___double_quote] = ACTIONS(2423), + [sym___single_quote] = ACTIONS(2426), + [sym___c_double_quote] = ACTIONS(2429), + [sym___c_single_quote] = ACTIONS(2432), + [sym___r_double_quote] = ACTIONS(2435), + [sym___r_single_quote] = ACTIONS(2438), }, - [336] = { - [sym_line_comment] = STATE(336), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(325), + [349] = { + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(353), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -69248,10 +64359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2181), + [anon_sym_RBRACK] = ACTIONS(2441), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -69265,23 +64376,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -69289,75 +64400,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [337] = { - [sym_line_comment] = STATE(337), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(384), + [350] = { + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(878), + [sym_mutable_expression] = STATE(1451), + [sym_expression_list] = STATE(1552), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [351] = { + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(346), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -69365,10 +64595,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2183), + [anon_sym_RBRACK] = ACTIONS(2475), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -69382,23 +64612,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -69406,1245 +64636,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [338] = { - [sym_line_comment] = STATE(338), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_short_element_list_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2196), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2208), - [anon_sym_mut] = ACTIONS(2211), - [anon_sym_QMARK] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2223), - [anon_sym_json_DOTdecode] = ACTIONS(2226), - [anon_sym_LBRACK2] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_LT_DASH] = ACTIONS(2235), - [sym_none] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_nil] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_DOLLARif] = ACTIONS(2244), - [anon_sym_match] = ACTIONS(2247), - [anon_sym_select] = ACTIONS(2250), - [anon_sym_lock] = ACTIONS(2253), - [anon_sym_rlock] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2256), - [anon_sym_sql] = ACTIONS(2259), - [sym_int_literal] = ACTIONS(2238), - [sym_float_literal] = ACTIONS(2262), - [sym_rune_literal] = ACTIONS(2262), - [sym_pseudo_compile_time_identifier] = ACTIONS(2265), - [anon_sym_shared] = ACTIONS(2268), - [anon_sym_map_LBRACK] = ACTIONS(2271), - [anon_sym_chan] = ACTIONS(2274), - [anon_sym_thread] = ACTIONS(2277), - [anon_sym_atomic] = ACTIONS(2280), - [sym___double_quote] = ACTIONS(2283), - [sym___single_quote] = ACTIONS(2286), - [sym___c_double_quote] = ACTIONS(2289), - [sym___c_single_quote] = ACTIONS(2292), - [sym___r_double_quote] = ACTIONS(2295), - [sym___r_single_quote] = ACTIONS(2298), - }, - [339] = { - [sym_line_comment] = STATE(339), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4445), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [340] = { - [sym_line_comment] = STATE(340), - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4532), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [341] = { - [sym_line_comment] = STATE(341), - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4532), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [342] = { - [sym_line_comment] = STATE(342), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4291), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [343] = { - [sym_line_comment] = STATE(343), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4464), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2303), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [344] = { - [sym_line_comment] = STATE(344), - [sym__expression] = STATE(2682), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4696), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [345] = { - [sym_line_comment] = STATE(345), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4508), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [346] = { - [sym_line_comment] = STATE(346), - [sym__expression] = STATE(2682), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4696), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [347] = { - [sym_line_comment] = STATE(347), - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(480), - [sym_mutable_expression] = STATE(3982), - [sym_expression_list] = STATE(4273), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [352] = { + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(878), + [sym_mutable_expression] = STATE(1451), + [sym_expression_list] = STATE(1551), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [348] = { - [sym_line_comment] = STATE(348), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [353] = { + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -70652,10 +64831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2307), + [anon_sym_RBRACK] = ACTIONS(2477), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -70669,23 +64848,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -70693,75 +64872,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [349] = { - [sym_line_comment] = STATE(349), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1402), + [354] = { + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_else_branch] = STATE(623), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_LF] = ACTIONS(2481), + [anon_sym_CR] = ACTIONS(2481), + [anon_sym_CR_LF] = ACTIONS(2481), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_EQ] = ACTIONS(2481), + [anon_sym___global] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_QMARK] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2481), + [anon_sym_json_DOTdecode] = ACTIONS(2481), + [anon_sym_LBRACK2] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_LT_DASH] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_GT_GT] = ACTIONS(2481), + [anon_sym_GT_GT_GT] = ACTIONS(2481), + [anon_sym_AMP_CARET] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_or] = ACTIONS(2481), + [sym_none] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_nil] = ACTIONS(2481), + [anon_sym_QMARK_DOT] = ACTIONS(2481), + [anon_sym_POUND_LBRACK] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_DOLLARif] = ACTIONS(2481), + [anon_sym_is] = ACTIONS(2481), + [anon_sym_BANGis] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [anon_sym_BANGin] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_select] = ACTIONS(2481), + [anon_sym_STAR_EQ] = ACTIONS(2481), + [anon_sym_SLASH_EQ] = ACTIONS(2481), + [anon_sym_PERCENT_EQ] = ACTIONS(2481), + [anon_sym_LT_LT_EQ] = ACTIONS(2481), + [anon_sym_GT_GT_EQ] = ACTIONS(2481), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2481), + [anon_sym_AMP_EQ] = ACTIONS(2481), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2481), + [anon_sym_PLUS_EQ] = ACTIONS(2481), + [anon_sym_DASH_EQ] = ACTIONS(2481), + [anon_sym_PIPE_EQ] = ACTIONS(2481), + [anon_sym_CARET_EQ] = ACTIONS(2481), + [anon_sym_COLON_EQ] = ACTIONS(2481), + [anon_sym_lock] = ACTIONS(2481), + [anon_sym_rlock] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_sql] = ACTIONS(2481), + [sym_int_literal] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + [sym_rune_literal] = ACTIONS(2481), + [sym_pseudo_compile_time_identifier] = ACTIONS(2481), + [anon_sym_shared] = ACTIONS(2481), + [anon_sym_map_LBRACK] = ACTIONS(2481), + [anon_sym_chan] = ACTIONS(2481), + [anon_sym_thread] = ACTIONS(2481), + [anon_sym_atomic] = ACTIONS(2481), + [anon_sym_assert] = ACTIONS(2481), + [anon_sym_defer] = ACTIONS(2481), + [anon_sym_goto] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_DOLLARfor] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_asm] = ACTIONS(2481), + [anon_sym_AT_LBRACK] = ACTIONS(2481), + [sym___double_quote] = ACTIONS(2481), + [sym___single_quote] = ACTIONS(2481), + [sym___c_double_quote] = ACTIONS(2481), + [sym___c_single_quote] = ACTIONS(2481), + [sym___r_double_quote] = ACTIONS(2481), + [sym___r_single_quote] = ACTIONS(2481), + }, + [355] = { + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -70769,10 +65067,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2485), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -70786,23 +65084,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -70810,777 +65108,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [350] = { - [sym_line_comment] = STATE(350), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4440), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2311), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [351] = { - [sym_line_comment] = STATE(351), - [sym__expression] = STATE(1378), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_string_interpolation_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_fn] = ACTIONS(2327), - [anon_sym_PLUS] = ACTIONS(2330), - [anon_sym_DASH] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_mut] = ACTIONS(2339), - [anon_sym_QMARK] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_go] = ACTIONS(2348), - [anon_sym_spawn] = ACTIONS(2351), - [anon_sym_json_DOTdecode] = ACTIONS(2354), - [anon_sym_LBRACK2] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_LT_DASH] = ACTIONS(2363), - [sym_none] = ACTIONS(2366), - [sym_true] = ACTIONS(2366), - [sym_false] = ACTIONS(2366), - [sym_nil] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_DOLLARif] = ACTIONS(2372), - [anon_sym_match] = ACTIONS(2375), - [anon_sym_select] = ACTIONS(2378), - [anon_sym_lock] = ACTIONS(2381), - [anon_sym_rlock] = ACTIONS(2381), - [anon_sym_unsafe] = ACTIONS(2384), - [anon_sym_sql] = ACTIONS(2387), - [sym_int_literal] = ACTIONS(2366), - [sym_float_literal] = ACTIONS(2390), - [sym_rune_literal] = ACTIONS(2390), - [sym_pseudo_compile_time_identifier] = ACTIONS(2393), - [anon_sym_shared] = ACTIONS(2396), - [anon_sym_map_LBRACK] = ACTIONS(2399), - [anon_sym_chan] = ACTIONS(2402), - [anon_sym_thread] = ACTIONS(2405), - [anon_sym_atomic] = ACTIONS(2408), - [sym___double_quote] = ACTIONS(2411), - [sym___single_quote] = ACTIONS(2414), - [sym___c_double_quote] = ACTIONS(2417), - [sym___c_single_quote] = ACTIONS(2420), - [sym___r_double_quote] = ACTIONS(2423), - [sym___r_single_quote] = ACTIONS(2426), - }, - [352] = { - [sym_line_comment] = STATE(352), - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4653), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [353] = { - [sym_line_comment] = STATE(353), - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4454), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [354] = { - [sym_line_comment] = STATE(354), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4466), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [355] = { - [sym_line_comment] = STATE(355), - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4454), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [356] = { [sym_line_comment] = STATE(356), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(366), + [sym_block_comment] = STATE(356), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -71588,10 +65185,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1416), + [anon_sym_RBRACK] = ACTIONS(2487), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -71605,23 +65202,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1450), + [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -71631,424 +65228,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [357] = { [sym_line_comment] = STATE(357), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4432), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(357), + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [358] = { [sym_line_comment] = STATE(358), - [sym__expression] = STATE(2669), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4647), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(358), + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4744), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [359] = { [sym_line_comment] = STATE(359), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4432), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(359), + [sym_else_branch] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_EQ] = ACTIONS(2491), + [anon_sym___global] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_interface] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(2483), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_STAR_EQ] = ACTIONS(2491), + [anon_sym_SLASH_EQ] = ACTIONS(2491), + [anon_sym_PERCENT_EQ] = ACTIONS(2491), + [anon_sym_LT_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_GT_EQ] = ACTIONS(2491), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2491), + [anon_sym_AMP_EQ] = ACTIONS(2491), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2491), + [anon_sym_PLUS_EQ] = ACTIONS(2491), + [anon_sym_DASH_EQ] = ACTIONS(2491), + [anon_sym_PIPE_EQ] = ACTIONS(2491), + [anon_sym_CARET_EQ] = ACTIONS(2491), + [anon_sym_COLON_EQ] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [anon_sym_assert] = ACTIONS(2491), + [anon_sym_defer] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_DOLLARfor] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_asm] = ACTIONS(2491), + [anon_sym_AT_LBRACK] = ACTIONS(2491), + [sym___double_quote] = ACTIONS(2491), + [sym___single_quote] = ACTIONS(2491), + [sym___c_double_quote] = ACTIONS(2491), + [sym___c_single_quote] = ACTIONS(2491), + [sym___r_double_quote] = ACTIONS(2491), + [sym___r_single_quote] = ACTIONS(2491), }, [360] = { [sym_line_comment] = STATE(360), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(349), + [sym_block_comment] = STATE(360), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(2493), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2508), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_RBRACK] = ACTIONS(2514), + [anon_sym_struct] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2519), + [anon_sym_QMARK] = ACTIONS(2522), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_go] = ACTIONS(2528), + [anon_sym_spawn] = ACTIONS(2531), + [anon_sym_json_DOTdecode] = ACTIONS(2534), + [anon_sym_LBRACK2] = ACTIONS(2537), + [anon_sym_TILDE] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2508), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_LT_DASH] = ACTIONS(2543), + [sym_none] = ACTIONS(2546), + [sym_true] = ACTIONS(2546), + [sym_false] = ACTIONS(2546), + [sym_nil] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_DOLLARif] = ACTIONS(2552), + [anon_sym_match] = ACTIONS(2555), + [anon_sym_select] = ACTIONS(2558), + [anon_sym_lock] = ACTIONS(2561), + [anon_sym_rlock] = ACTIONS(2561), + [anon_sym_unsafe] = ACTIONS(2564), + [anon_sym_sql] = ACTIONS(2567), + [sym_int_literal] = ACTIONS(2546), + [sym_float_literal] = ACTIONS(2570), + [sym_rune_literal] = ACTIONS(2570), + [sym_pseudo_compile_time_identifier] = ACTIONS(2573), + [anon_sym_shared] = ACTIONS(2576), + [anon_sym_map_LBRACK] = ACTIONS(2579), + [anon_sym_chan] = ACTIONS(2582), + [anon_sym_thread] = ACTIONS(2585), + [anon_sym_atomic] = ACTIONS(2588), + [sym___double_quote] = ACTIONS(2591), + [sym___single_quote] = ACTIONS(2594), + [sym___c_double_quote] = ACTIONS(2597), + [sym___c_single_quote] = ACTIONS(2600), + [sym___r_double_quote] = ACTIONS(2603), + [sym___r_single_quote] = ACTIONS(2606), + }, + [361] = { + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(341), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -72056,10 +65775,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2435), + [anon_sym_RBRACK] = ACTIONS(2609), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -72073,23 +65792,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -72097,660 +65816,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [361] = { - [sym_line_comment] = STATE(361), - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2778), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_match_arm_type] = STATE(4213), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4003), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4214), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(1113), - [anon_sym_lock] = ACTIONS(1115), - [anon_sym_rlock] = ACTIONS(1115), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, [362] = { [sym_line_comment] = STATE(362), - [sym__expression] = STATE(2669), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4647), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(362), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4442), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [363] = { [sym_line_comment] = STATE(363), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [364] = { - [sym_line_comment] = STATE(364), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4487), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(363), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4453), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [364] = { + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [365] = { [sym_line_comment] = STATE(365), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4512), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [366] = { - [sym_line_comment] = STATE(366), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [sym_block_comment] = STATE(365), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(301), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -72758,10 +66247,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2455), + [anon_sym_RBRACK] = ACTIONS(2613), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -72775,23 +66264,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), + [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -72799,309 +66288,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, + [366] = { + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4467), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, [367] = { [sym_line_comment] = STATE(367), - [sym__expression] = STATE(2677), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4613), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(367), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4442), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [368] = { [sym_line_comment] = STATE(368), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(368), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [369] = { [sym_line_comment] = STATE(369), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(316), + [sym_block_comment] = STATE(369), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -73109,10 +66719,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2457), + [anon_sym_RBRACK] = ACTIONS(2619), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -73126,23 +66736,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1450), + [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -73152,424 +66762,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [370] = { [sym_line_comment] = STATE(370), - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym_short_element_list_repeat1] = STATE(338), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(370), + [sym__expression] = STATE(2671), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4567), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [371] = { [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym__expression] = STATE(2671), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4500), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4567), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [372] = { [sym_line_comment] = STATE(372), - [sym__expression] = STATE(2677), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4613), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(372), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4498), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [373] = { [sym_line_comment] = STATE(373), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(309), + [sym_block_comment] = STATE(373), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(356), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -73577,10 +67191,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_RBRACK] = ACTIONS(1416), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -73594,23 +67208,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -73620,73 +67234,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [374] = { [sym_line_comment] = STATE(374), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(348), + [sym_block_comment] = STATE(374), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4618), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [375] = { + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4618), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [376] = { + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4498), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [377] = { + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(342), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -73694,10 +67663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2463), + [anon_sym_RBRACK] = ACTIONS(2621), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -73711,23 +67680,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -73735,426 +67704,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [375] = { - [sym_line_comment] = STATE(375), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4464), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym__expression] = STATE(1163), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym_short_element_list_repeat1] = STATE(348), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, - [376] = { - [sym_line_comment] = STATE(376), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4464), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4467), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [377] = { - [sym_line_comment] = STATE(377), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2469), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4488), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [378] = { - [sym_line_comment] = STATE(378), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -74162,10 +68135,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2471), + [anon_sym_RBRACK] = ACTIONS(2627), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -74179,23 +68152,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -74203,543 +68176,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4501), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_else_branch] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_EQ] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_STAR_EQ] = ACTIONS(2475), - [anon_sym_SLASH_EQ] = ACTIONS(2475), - [anon_sym_PERCENT_EQ] = ACTIONS(2475), - [anon_sym_LT_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_GT_EQ] = ACTIONS(2475), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2475), - [anon_sym_AMP_EQ] = ACTIONS(2475), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2475), - [anon_sym_PLUS_EQ] = ACTIONS(2475), - [anon_sym_DASH_EQ] = ACTIONS(2475), - [anon_sym_PIPE_EQ] = ACTIONS(2475), - [anon_sym_CARET_EQ] = ACTIONS(2475), - [anon_sym_COLON_EQ] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), - }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_else_branch] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2481), - [anon_sym_LF] = ACTIONS(2481), - [anon_sym_CR] = ACTIONS(2481), - [anon_sym_CR_LF] = ACTIONS(2481), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_EQ] = ACTIONS(2481), - [anon_sym___global] = ACTIONS(2481), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2481), - [anon_sym_pub] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_QMARK] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2481), - [anon_sym_json_DOTdecode] = ACTIONS(2481), - [anon_sym_LBRACK2] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_LT_DASH] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_GT_GT] = ACTIONS(2481), - [anon_sym_GT_GT_GT] = ACTIONS(2481), - [anon_sym_AMP_CARET] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2481), - [sym_none] = ACTIONS(2481), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_nil] = ACTIONS(2481), - [anon_sym_QMARK_DOT] = ACTIONS(2481), - [anon_sym_POUND_LBRACK] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_DOLLARif] = ACTIONS(2481), - [anon_sym_is] = ACTIONS(2481), - [anon_sym_BANGis] = ACTIONS(2481), - [anon_sym_in] = ACTIONS(2481), - [anon_sym_BANGin] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_select] = ACTIONS(2481), - [anon_sym_STAR_EQ] = ACTIONS(2481), - [anon_sym_SLASH_EQ] = ACTIONS(2481), - [anon_sym_PERCENT_EQ] = ACTIONS(2481), - [anon_sym_LT_LT_EQ] = ACTIONS(2481), - [anon_sym_GT_GT_EQ] = ACTIONS(2481), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2481), - [anon_sym_AMP_EQ] = ACTIONS(2481), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2481), - [anon_sym_PLUS_EQ] = ACTIONS(2481), - [anon_sym_DASH_EQ] = ACTIONS(2481), - [anon_sym_PIPE_EQ] = ACTIONS(2481), - [anon_sym_CARET_EQ] = ACTIONS(2481), - [anon_sym_COLON_EQ] = ACTIONS(2481), - [anon_sym_lock] = ACTIONS(2481), - [anon_sym_rlock] = ACTIONS(2481), - [anon_sym_unsafe] = ACTIONS(2481), - [anon_sym_sql] = ACTIONS(2481), - [sym_int_literal] = ACTIONS(2481), - [sym_float_literal] = ACTIONS(2481), - [sym_rune_literal] = ACTIONS(2481), - [sym_pseudo_compile_time_identifier] = ACTIONS(2481), - [anon_sym_shared] = ACTIONS(2481), - [anon_sym_map_LBRACK] = ACTIONS(2481), - [anon_sym_chan] = ACTIONS(2481), - [anon_sym_thread] = ACTIONS(2481), - [anon_sym_atomic] = ACTIONS(2481), - [anon_sym_assert] = ACTIONS(2481), - [anon_sym_defer] = ACTIONS(2481), - [anon_sym_goto] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_DOLLARfor] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2481), - [anon_sym_asm] = ACTIONS(2481), - [anon_sym_AT_LBRACK] = ACTIONS(2481), - [sym___double_quote] = ACTIONS(2481), - [sym___single_quote] = ACTIONS(2481), - [sym___c_double_quote] = ACTIONS(2481), - [sym___c_single_quote] = ACTIONS(2481), - [sym___r_double_quote] = ACTIONS(2481), - [sym___r_single_quote] = ACTIONS(2481), - }, [382] = { [sym_line_comment] = STATE(382), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), - [sym_identifier] = ACTIONS(2483), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_fn] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_RBRACK] = ACTIONS(2504), - [anon_sym_struct] = ACTIONS(2506), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_go] = ACTIONS(2518), - [anon_sym_spawn] = ACTIONS(2521), - [anon_sym_json_DOTdecode] = ACTIONS(2524), - [anon_sym_LBRACK2] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2498), - [anon_sym_CARET] = ACTIONS(2498), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_LT_DASH] = ACTIONS(2533), - [sym_none] = ACTIONS(2536), - [sym_true] = ACTIONS(2536), - [sym_false] = ACTIONS(2536), - [sym_nil] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_DOLLARif] = ACTIONS(2542), - [anon_sym_match] = ACTIONS(2545), - [anon_sym_select] = ACTIONS(2548), - [anon_sym_lock] = ACTIONS(2551), - [anon_sym_rlock] = ACTIONS(2551), - [anon_sym_unsafe] = ACTIONS(2554), - [anon_sym_sql] = ACTIONS(2557), - [sym_int_literal] = ACTIONS(2536), - [sym_float_literal] = ACTIONS(2560), - [sym_rune_literal] = ACTIONS(2560), - [sym_pseudo_compile_time_identifier] = ACTIONS(2563), - [anon_sym_shared] = ACTIONS(2566), - [anon_sym_map_LBRACK] = ACTIONS(2569), - [anon_sym_chan] = ACTIONS(2572), - [anon_sym_thread] = ACTIONS(2575), - [anon_sym_atomic] = ACTIONS(2578), - [sym___double_quote] = ACTIONS(2581), - [sym___single_quote] = ACTIONS(2584), - [sym___c_double_quote] = ACTIONS(2587), - [sym___c_single_quote] = ACTIONS(2590), - [sym___r_double_quote] = ACTIONS(2593), - [sym___r_single_quote] = ACTIONS(2596), + [sym_block_comment] = STATE(382), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4483), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [383] = { [sym_line_comment] = STATE(383), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [sym_block_comment] = STATE(383), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(323), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -74747,10 +68371,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2599), + [anon_sym_RBRACK] = ACTIONS(2631), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -74764,23 +68388,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), + [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -74790,73 +68414,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [384] = { [sym_line_comment] = STATE(384), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(382), + [sym_block_comment] = STATE(384), + [sym__expression] = STATE(2558), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3988), + [sym_expression_list] = STATE(4439), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(360), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -74864,10 +68607,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1412), [anon_sym_DASH] = ACTIONS(1412), [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(2601), + [anon_sym_RBRACK] = ACTIONS(2635), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -74881,23 +68624,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -74905,543 +68648,430 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [385] = { - [sym_line_comment] = STATE(385), - [sym__expression] = STATE(2343), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(911), - [sym_mutable_expression] = STATE(3643), - [sym_expression_list] = STATE(3805), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, [386] = { [sym_line_comment] = STATE(386), - [sym__expression] = STATE(2343), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(911), - [sym_mutable_expression] = STATE(3643), - [sym_expression_list] = STATE(3806), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(386), + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4488), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [387] = { [sym_line_comment] = STATE(387), - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3685), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_range] = STATE(4501), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(1386), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(387), + [sym__expression] = STATE(2555), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(581), + [sym_mutable_expression] = STATE(3881), + [sym_expression_list] = STATE(4406), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [388] = { [sym_line_comment] = STATE(388), - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3990), - [sym_expression_list] = STATE(4598), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(388), + [sym__expression] = STATE(2682), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3662), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_range] = STATE(4709), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(1243), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [389] = { [sym_line_comment] = STATE(389), - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1437), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1433), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [aux_sym__array_repeat1] = STATE(378), + [sym_block_comment] = STATE(389), + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1439), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1432), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [aux_sym__array_repeat1] = STATE(355), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), @@ -75451,8 +69081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1414), [anon_sym_RBRACK] = ACTIONS(2637), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1420), [anon_sym_go] = ACTIONS(1422), [anon_sym_spawn] = ACTIONS(1424), @@ -75466,23 +69096,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), [anon_sym_select] = ACTIONS(1442), [anon_sym_lock] = ACTIONS(1444), [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -75492,2412 +69122,4422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [390] = { [sym_line_comment] = STATE(390), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3026), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3007), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), + [sym_block_comment] = STATE(390), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3016), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2961), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), [sym_int_literal] = ACTIONS(2641), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [391] = { [sym_line_comment] = STATE(391), - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(911), - [sym_mutable_expression] = STATE(3684), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(391), + [sym__expression] = STATE(1951), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(959), + [sym_mutable_expression] = STATE(3376), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [392] = { [sym_line_comment] = STATE(392), - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4600), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_STAR_EQ] = ACTIONS(2669), + [anon_sym_SLASH_EQ] = ACTIONS(2669), + [anon_sym_PERCENT_EQ] = ACTIONS(2669), + [anon_sym_LT_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_AMP_EQ] = ACTIONS(2669), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), + [anon_sym_PLUS_EQ] = ACTIONS(2669), + [anon_sym_DASH_EQ] = ACTIONS(2669), + [anon_sym_PIPE_EQ] = ACTIONS(2669), + [anon_sym_CARET_EQ] = ACTIONS(2669), + [anon_sym_COLON_EQ] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), }, [393] = { [sym_line_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_EQ] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_STAR_EQ] = ACTIONS(2663), - [anon_sym_SLASH_EQ] = ACTIONS(2663), - [anon_sym_PERCENT_EQ] = ACTIONS(2663), - [anon_sym_LT_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_AMP_EQ] = ACTIONS(2663), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2663), - [anon_sym_PLUS_EQ] = ACTIONS(2663), - [anon_sym_DASH_EQ] = ACTIONS(2663), - [anon_sym_PIPE_EQ] = ACTIONS(2663), - [anon_sym_CARET_EQ] = ACTIONS(2663), - [anon_sym_COLON_EQ] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym_block_comment] = STATE(393), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2968), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2972), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2673), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [394] = { [sym_line_comment] = STATE(394), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(957), - [sym_mutable_expression] = STATE(1134), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(394), + [sym__expression] = STATE(2704), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4456), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [395] = { [sym_line_comment] = STATE(395), - [sym__expression] = STATE(2722), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4465), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(395), + [sym_type_parameters] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_STAR_EQ] = ACTIONS(2695), + [anon_sym_SLASH_EQ] = ACTIONS(2695), + [anon_sym_PERCENT_EQ] = ACTIONS(2695), + [anon_sym_LT_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_GT_EQ] = ACTIONS(2695), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2695), + [anon_sym_AMP_EQ] = ACTIONS(2695), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2695), + [anon_sym_PLUS_EQ] = ACTIONS(2695), + [anon_sym_DASH_EQ] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(2695), + [anon_sym_CARET_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), }, [396] = { [sym_line_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_EQ] = ACTIONS(2671), - [anon_sym___global] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_interface] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_STAR_EQ] = ACTIONS(2671), - [anon_sym_SLASH_EQ] = ACTIONS(2671), - [anon_sym_PERCENT_EQ] = ACTIONS(2671), - [anon_sym_LT_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_AMP_EQ] = ACTIONS(2671), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2671), - [anon_sym_PLUS_EQ] = ACTIONS(2671), - [anon_sym_DASH_EQ] = ACTIONS(2671), - [anon_sym_PIPE_EQ] = ACTIONS(2671), - [anon_sym_CARET_EQ] = ACTIONS(2671), - [anon_sym_COLON_EQ] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [anon_sym_assert] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_DOLLARfor] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym_AT_LBRACK] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym_block_comment] = STATE(396), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3003), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3000), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [397] = { [sym_line_comment] = STATE(397), - [sym__expression] = STATE(2714), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4486), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [sym_block_comment] = STATE(397), + [sym__expression] = STATE(2731), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4465), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [398] = { [sym_line_comment] = STATE(398), - [sym__expression] = STATE(2680), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(960), - [sym_mutable_expression] = STATE(3378), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_DOLLARelse] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2703), + [anon_sym_SLASH_EQ] = ACTIONS(2703), + [anon_sym_PERCENT_EQ] = ACTIONS(2703), + [anon_sym_LT_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_AMP_EQ] = ACTIONS(2703), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2703), + [anon_sym_PLUS_EQ] = ACTIONS(2703), + [anon_sym_DASH_EQ] = ACTIONS(2703), + [anon_sym_PIPE_EQ] = ACTIONS(2703), + [anon_sym_CARET_EQ] = ACTIONS(2703), + [anon_sym_COLON_EQ] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [399] = { [sym_line_comment] = STATE(399), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3005), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2996), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2683), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(399), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(581), + [sym_mutable_expression] = STATE(3376), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [400] = { [sym_line_comment] = STATE(400), - [sym__expression] = STATE(2746), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4444), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(400), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3026), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3025), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [401] = { [sym_line_comment] = STATE(401), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(648), - [sym_mutable_expression] = STATE(3378), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(401), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4466), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [402] = { [sym_line_comment] = STATE(402), - [sym__expression] = STATE(2751), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4449), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(402), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2987), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2992), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [403] = { [sym_line_comment] = STATE(403), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3010), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3008), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2687), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(403), + [sym__expression] = STATE(2860), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4573), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [404] = { [sym_line_comment] = STATE(404), - [sym__expression] = STATE(2711), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4507), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(404), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [405] = { [sym_line_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_EQ] = ACTIONS(2691), - [anon_sym___global] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_interface] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_DOLLARelse] = ACTIONS(2693), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2691), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_COLON_EQ] = ACTIONS(2691), + [sym_block_comment] = STATE(405), + [sym__expression] = STATE(2759), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4452), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), [anon_sym_lock] = ACTIONS(2691), [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [anon_sym_assert] = ACTIONS(2691), - [anon_sym_defer] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_DOLLARfor] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_POUND] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym_AT_LBRACK] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [406] = { [sym_line_comment] = STATE(406), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2975), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2976), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2697), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(406), + [sym__expression] = STATE(2425), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(471), + [sym_mutable_expression] = STATE(3684), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [407] = { [sym_line_comment] = STATE(407), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3025), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3028), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(407), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2965), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2966), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [408] = { [sym_line_comment] = STATE(408), - [sym__expression] = STATE(2773), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4439), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(408), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3013), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3012), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [409] = { [sym_line_comment] = STATE(409), - [sym__expression] = STATE(2710), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4528), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(409), + [sym__expression] = STATE(2604), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(874), + [sym_mutable_expression] = STATE(3376), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [410] = { [sym_line_comment] = STATE(410), - [sym__expression] = STATE(1808), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(778), - [sym_mutable_expression] = STATE(3377), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(410), + [sym__expression] = STATE(2806), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4473), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [411] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [sym__expression] = STATE(2815), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4494), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [412] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(878), + [sym_mutable_expression] = STATE(1499), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [413] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_DOLLARelse] = ACTIONS(2729), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2727), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_COLON_EQ] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [414] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2976), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2978), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2731), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2733), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [415] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(961), + [sym_mutable_expression] = STATE(1134), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, + [416] = { + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [sym__expression] = STATE(2699), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4484), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [417] = { + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [sym__expression] = STATE(2841), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [418] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [sym__expression] = STATE(2828), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4536), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [419] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2975), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2977), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3006), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3007), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2747), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [421] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_LF] = ACTIONS(2751), + [anon_sym_CR] = ACTIONS(2751), + [anon_sym_CR_LF] = ACTIONS(2751), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_as] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_COMMA] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2751), + [anon_sym___global] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_fn] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_pub] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_interface] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_QMARK] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_go] = ACTIONS(2751), + [anon_sym_spawn] = ACTIONS(2751), + [anon_sym_json_DOTdecode] = ACTIONS(2751), + [anon_sym_LBRACK2] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_LT_DASH] = ACTIONS(2751), + [anon_sym_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_AMP_CARET] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_or] = ACTIONS(2751), + [sym_none] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_nil] = ACTIONS(2751), + [anon_sym_QMARK_DOT] = ACTIONS(2751), + [anon_sym_POUND_LBRACK] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_DOLLARif] = ACTIONS(2751), + [anon_sym_DOLLARelse] = ACTIONS(2753), + [anon_sym_is] = ACTIONS(2751), + [anon_sym_BANGis] = ACTIONS(2751), + [anon_sym_in] = ACTIONS(2751), + [anon_sym_BANGin] = ACTIONS(2751), + [anon_sym_match] = ACTIONS(2751), + [anon_sym_select] = ACTIONS(2751), + [anon_sym_STAR_EQ] = ACTIONS(2751), + [anon_sym_SLASH_EQ] = ACTIONS(2751), + [anon_sym_PERCENT_EQ] = ACTIONS(2751), + [anon_sym_LT_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_GT_EQ] = ACTIONS(2751), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2751), + [anon_sym_AMP_EQ] = ACTIONS(2751), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2751), + [anon_sym_PLUS_EQ] = ACTIONS(2751), + [anon_sym_DASH_EQ] = ACTIONS(2751), + [anon_sym_PIPE_EQ] = ACTIONS(2751), + [anon_sym_CARET_EQ] = ACTIONS(2751), + [anon_sym_COLON_EQ] = ACTIONS(2751), + [anon_sym_lock] = ACTIONS(2751), + [anon_sym_rlock] = ACTIONS(2751), + [anon_sym_unsafe] = ACTIONS(2751), + [anon_sym_sql] = ACTIONS(2751), + [sym_int_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), + [sym_rune_literal] = ACTIONS(2751), + [sym_pseudo_compile_time_identifier] = ACTIONS(2751), + [anon_sym_shared] = ACTIONS(2751), + [anon_sym_map_LBRACK] = ACTIONS(2751), + [anon_sym_chan] = ACTIONS(2751), + [anon_sym_thread] = ACTIONS(2751), + [anon_sym_atomic] = ACTIONS(2751), + [anon_sym_assert] = ACTIONS(2751), + [anon_sym_defer] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_DOLLARfor] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_asm] = ACTIONS(2751), + [anon_sym_AT_LBRACK] = ACTIONS(2751), + [sym___double_quote] = ACTIONS(2751), + [sym___single_quote] = ACTIONS(2751), + [sym___c_double_quote] = ACTIONS(2751), + [sym___c_single_quote] = ACTIONS(2751), + [sym___r_double_quote] = ACTIONS(2751), + [sym___r_single_quote] = ACTIONS(2751), + }, + [422] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(547), + [sym_mutable_expression] = STATE(3378), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), + }, + [423] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3004), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3009), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2755), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2757), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [424] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym__expression] = STATE(2812), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4557), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [425] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(2701), [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2759), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2759), + [anon_sym_SLASH_EQ] = ACTIONS(2759), + [anon_sym_PERCENT_EQ] = ACTIONS(2759), + [anon_sym_LT_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_GT_EQ] = ACTIONS(2759), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2759), + [anon_sym_AMP_EQ] = ACTIONS(2759), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2759), + [anon_sym_PLUS_EQ] = ACTIONS(2759), + [anon_sym_DASH_EQ] = ACTIONS(2759), + [anon_sym_PIPE_EQ] = ACTIONS(2759), + [anon_sym_CARET_EQ] = ACTIONS(2759), + [anon_sym_COLON_EQ] = ACTIONS(2759), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), + }, + [426] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2982), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2983), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2763), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2765), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [427] = { + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [sym__expression] = STATE(1817), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(952), + [sym_mutable_expression] = STATE(3375), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -77905,20 +73545,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -77926,2279 +73566,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [411] = { - [sym_line_comment] = STATE(411), - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4430), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [412] = { - [sym_line_comment] = STATE(412), - [sym__expression] = STATE(2696), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4549), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [413] = { - [sym_line_comment] = STATE(413), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3002), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3003), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [414] = { - [sym_line_comment] = STATE(414), - [sym__expression] = STATE(2704), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4565), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [415] = { - [sym_line_comment] = STATE(415), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2987), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3011), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2733), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [416] = { - [sym_line_comment] = STATE(416), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3009), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2988), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [417] = { - [sym_line_comment] = STATE(417), - [sym_type_parameters] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_STAR_EQ] = ACTIONS(2741), - [anon_sym_SLASH_EQ] = ACTIONS(2741), - [anon_sym_PERCENT_EQ] = ACTIONS(2741), - [anon_sym_LT_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_AMP_EQ] = ACTIONS(2741), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2741), - [anon_sym_PLUS_EQ] = ACTIONS(2741), - [anon_sym_DASH_EQ] = ACTIONS(2741), - [anon_sym_PIPE_EQ] = ACTIONS(2741), - [anon_sym_CARET_EQ] = ACTIONS(2741), - [anon_sym_COLON_EQ] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), - }, - [418] = { - [sym_line_comment] = STATE(418), - [sym__expression] = STATE(2879), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [419] = { - [sym_line_comment] = STATE(419), - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [420] = { - [sym_line_comment] = STATE(420), - [sym__expression] = STATE(2604), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(480), - [sym_mutable_expression] = STATE(3378), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [421] = { - [sym_line_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_DOLLARelse] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2747), - [anon_sym_SLASH_EQ] = ACTIONS(2747), - [anon_sym_PERCENT_EQ] = ACTIONS(2747), - [anon_sym_LT_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_AMP_EQ] = ACTIONS(2747), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2747), - [anon_sym_PLUS_EQ] = ACTIONS(2747), - [anon_sym_DASH_EQ] = ACTIONS(2747), - [anon_sym_PIPE_EQ] = ACTIONS(2747), - [anon_sym_CARET_EQ] = ACTIONS(2747), - [anon_sym_COLON_EQ] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), - }, - [422] = { - [sym_line_comment] = STATE(422), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2969), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2970), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2749), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2751), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [423] = { - [sym_line_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2747), - [anon_sym_SLASH_EQ] = ACTIONS(2747), - [anon_sym_PERCENT_EQ] = ACTIONS(2747), - [anon_sym_LT_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_AMP_EQ] = ACTIONS(2747), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2747), - [anon_sym_PLUS_EQ] = ACTIONS(2747), - [anon_sym_DASH_EQ] = ACTIONS(2747), - [anon_sym_PIPE_EQ] = ACTIONS(2747), - [anon_sym_CARET_EQ] = ACTIONS(2747), - [anon_sym_COLON_EQ] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), - }, - [424] = { - [sym_line_comment] = STATE(424), - [sym__expression] = STATE(2775), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [425] = { - [sym_line_comment] = STATE(425), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2991), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3024), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [426] = { - [sym_line_comment] = STATE(426), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2965), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2962), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [427] = { - [sym_line_comment] = STATE(427), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2994), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3013), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2765), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [428] = { [sym_line_comment] = STATE(428), - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(461), - [sym_mutable_expression] = STATE(1497), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [sym_block_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2703), + [anon_sym_SLASH_EQ] = ACTIONS(2703), + [anon_sym_PERCENT_EQ] = ACTIONS(2703), + [anon_sym_LT_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_AMP_EQ] = ACTIONS(2703), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2703), + [anon_sym_PLUS_EQ] = ACTIONS(2703), + [anon_sym_DASH_EQ] = ACTIONS(2703), + [anon_sym_PIPE_EQ] = ACTIONS(2703), + [anon_sym_CARET_EQ] = ACTIONS(2703), + [anon_sym_COLON_EQ] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [429] = { [sym_line_comment] = STATE(429), - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym__definite_range] = STATE(4649), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), + [sym_block_comment] = STATE(429), + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2894), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_expression_without_blocks_list] = STATE(4645), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [430] = { + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2894), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_expression_without_blocks_list] = STATE(4432), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [431] = { + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [sym__expression] = STATE(2541), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym__definite_range] = STATE(4545), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), [anon_sym_PLUS] = ACTIONS(2767), [anon_sym_DASH] = ACTIONS(2767), [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(2771), [anon_sym_go] = ACTIONS(2773), [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), [anon_sym_TILDE] = ACTIONS(2767), [anon_sym_CARET] = ACTIONS(2767), [anon_sym_AMP] = ACTIONS(2777), [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), [anon_sym_select] = ACTIONS(2781), [anon_sym_lock] = ACTIONS(2783), [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, - [430] = { - [sym_line_comment] = STATE(430), - [sym__expression] = STATE(1664), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(811), + [432] = { + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [sym__expression] = STATE(1666), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(797), [sym_mutable_expression] = STATE(3364), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(2787), [anon_sym_LBRACE] = ACTIONS(2789), [anon_sym_LPAREN] = ACTIONS(2791), @@ -80207,8 +74112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2795), [anon_sym_STAR] = ACTIONS(2797), [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(2801), [anon_sym_go] = ACTIONS(2803), [anon_sym_spawn] = ACTIONS(2805), @@ -80234,11 +74139,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2831), [sym_rune_literal] = ACTIONS(2831), [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(2835), [sym___single_quote] = ACTIONS(2837), [sym___c_double_quote] = ACTIONS(2839), @@ -80246,5973 +74151,4631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2843), [sym___r_single_quote] = ACTIONS(2845), }, - [431] = { - [sym_line_comment] = STATE(431), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3000), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3012), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2849), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [432] = { - [sym_line_comment] = STATE(432), - [sym__expression] = STATE(1800), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(773), - [sym_mutable_expression] = STATE(3374), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, [433] = { [sym_line_comment] = STATE(433), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2968), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2967), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2851), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2853), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(433), + [sym__expression] = STATE(2837), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [434] = { [sym_line_comment] = STATE(434), - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(434), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2984), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2988), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [435] = { [sym_line_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_EQ] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_DOLLARelse] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_STAR_EQ] = ACTIONS(2663), - [anon_sym_SLASH_EQ] = ACTIONS(2663), - [anon_sym_PERCENT_EQ] = ACTIONS(2663), - [anon_sym_LT_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2663), - [anon_sym_AMP_EQ] = ACTIONS(2663), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2663), - [anon_sym_PLUS_EQ] = ACTIONS(2663), - [anon_sym_DASH_EQ] = ACTIONS(2663), - [anon_sym_PIPE_EQ] = ACTIONS(2663), - [anon_sym_CARET_EQ] = ACTIONS(2663), - [anon_sym_COLON_EQ] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym_block_comment] = STATE(435), + [sym__expression] = STATE(2868), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [436] = { [sym_line_comment] = STATE(436), - [sym__expression] = STATE(2840), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(436), + [sym__expression] = STATE(2670), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(941), + [sym_mutable_expression] = STATE(3376), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [437] = { [sym_line_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_LF] = ACTIONS(2861), - [anon_sym_CR] = ACTIONS(2861), - [anon_sym_CR_LF] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2861), - [anon_sym_as] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_EQ] = ACTIONS(2861), - [anon_sym___global] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_PERCENT] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_GT] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_pub] = ACTIONS(2861), - [anon_sym_mut] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), - [anon_sym_interface] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_go] = ACTIONS(2861), - [anon_sym_spawn] = ACTIONS(2861), - [anon_sym_json_DOTdecode] = ACTIONS(2861), - [anon_sym_LBRACK2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_CARET] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT_DASH] = ACTIONS(2861), - [anon_sym_LT_LT] = ACTIONS(2861), - [anon_sym_GT_GT] = ACTIONS(2861), - [anon_sym_GT_GT_GT] = ACTIONS(2861), - [anon_sym_AMP_CARET] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [sym_none] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_nil] = ACTIONS(2861), - [anon_sym_QMARK_DOT] = ACTIONS(2861), - [anon_sym_POUND_LBRACK] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_DOLLARif] = ACTIONS(2861), - [anon_sym_DOLLARelse] = ACTIONS(2863), - [anon_sym_is] = ACTIONS(2861), - [anon_sym_BANGis] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_BANGin] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_select] = ACTIONS(2861), - [anon_sym_STAR_EQ] = ACTIONS(2861), - [anon_sym_SLASH_EQ] = ACTIONS(2861), - [anon_sym_PERCENT_EQ] = ACTIONS(2861), - [anon_sym_LT_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_GT_EQ] = ACTIONS(2861), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2861), - [anon_sym_AMP_EQ] = ACTIONS(2861), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2861), - [anon_sym_PLUS_EQ] = ACTIONS(2861), - [anon_sym_DASH_EQ] = ACTIONS(2861), - [anon_sym_PIPE_EQ] = ACTIONS(2861), - [anon_sym_CARET_EQ] = ACTIONS(2861), - [anon_sym_COLON_EQ] = ACTIONS(2861), - [anon_sym_lock] = ACTIONS(2861), - [anon_sym_rlock] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_sql] = ACTIONS(2861), - [sym_int_literal] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(2861), - [sym_rune_literal] = ACTIONS(2861), - [sym_pseudo_compile_time_identifier] = ACTIONS(2861), - [anon_sym_shared] = ACTIONS(2861), - [anon_sym_map_LBRACK] = ACTIONS(2861), - [anon_sym_chan] = ACTIONS(2861), - [anon_sym_thread] = ACTIONS(2861), - [anon_sym_atomic] = ACTIONS(2861), - [anon_sym_assert] = ACTIONS(2861), - [anon_sym_defer] = ACTIONS(2861), - [anon_sym_goto] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_DOLLARfor] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_asm] = ACTIONS(2861), - [anon_sym_AT_LBRACK] = ACTIONS(2861), - [sym___double_quote] = ACTIONS(2861), - [sym___single_quote] = ACTIONS(2861), - [sym___c_double_quote] = ACTIONS(2861), - [sym___c_single_quote] = ACTIONS(2861), - [sym___r_double_quote] = ACTIONS(2861), - [sym___r_single_quote] = ACTIONS(2861), + [sym_block_comment] = STATE(437), + [sym__expression] = STATE(2870), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4642), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [438] = { [sym_line_comment] = STATE(438), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(438), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2985), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2971), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2857), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [439] = { [sym_line_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2869), - [anon_sym_PERCENT_EQ] = ACTIONS(2869), - [anon_sym_LT_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_AMP_EQ] = ACTIONS(2869), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2869), - [anon_sym_PLUS_EQ] = ACTIONS(2869), - [anon_sym_DASH_EQ] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(439), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2989), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(2861), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [440] = { [sym_line_comment] = STATE(440), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2998), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2964), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(2875), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(440), + [sym__expression] = STATE(2758), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [441] = { [sym_line_comment] = STATE(441), - [sym__expression] = STATE(2887), - [sym__expression_without_blocks] = STATE(2884), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_expression_without_blocks_list] = STATE(4685), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym___global] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_COLON] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_STAR_EQ] = ACTIONS(2867), + [anon_sym_SLASH_EQ] = ACTIONS(2867), + [anon_sym_PERCENT_EQ] = ACTIONS(2867), + [anon_sym_LT_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_AMP_EQ] = ACTIONS(2867), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2867), + [anon_sym_PLUS_EQ] = ACTIONS(2867), + [anon_sym_DASH_EQ] = ACTIONS(2867), + [anon_sym_PIPE_EQ] = ACTIONS(2867), + [anon_sym_CARET_EQ] = ACTIONS(2867), + [anon_sym_COLON_EQ] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_defer] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_DOLLARfor] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym_AT_LBRACK] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [442] = { [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(890), - [sym_mutable_expression] = STATE(4513), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4515), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [443] = { [sym_line_comment] = STATE(443), - [sym__expression] = STATE(2887), - [sym__expression_without_blocks] = STATE(2884), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_expression_without_blocks_list] = STATE(4681), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_DOLLARelse] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_STAR_EQ] = ACTIONS(2669), + [anon_sym_SLASH_EQ] = ACTIONS(2669), + [anon_sym_PERCENT_EQ] = ACTIONS(2669), + [anon_sym_LT_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), + [anon_sym_AMP_EQ] = ACTIONS(2669), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), + [anon_sym_PLUS_EQ] = ACTIONS(2669), + [anon_sym_DASH_EQ] = ACTIONS(2669), + [anon_sym_PIPE_EQ] = ACTIONS(2669), + [anon_sym_CARET_EQ] = ACTIONS(2669), + [anon_sym_COLON_EQ] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), }, [444] = { [sym_line_comment] = STATE(444), - [sym__expression] = STATE(1953), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(920), - [sym_mutable_expression] = STATE(3378), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_block_comment] = STATE(444), + [sym__expression] = STATE(2827), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(498), + [sym_mutable_expression] = STATE(4529), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [445] = { [sym_line_comment] = STATE(445), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2984), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2983), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), + [sym_block_comment] = STATE(445), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3022), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3030), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), [sym_int_literal] = ACTIONS(2879), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [446] = { [sym_line_comment] = STATE(446), - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(446), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [447] = { [sym_line_comment] = STATE(447), - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(447), + [sym__expression] = STATE(255), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [448] = { [sym_line_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_EQ] = ACTIONS(2883), - [anon_sym___global] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_pub] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_interface] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_STAR_EQ] = ACTIONS(2883), - [anon_sym_SLASH_EQ] = ACTIONS(2883), - [anon_sym_PERCENT_EQ] = ACTIONS(2883), - [anon_sym_LT_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_GT_EQ] = ACTIONS(2883), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2883), - [anon_sym_AMP_EQ] = ACTIONS(2883), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2883), - [anon_sym_PLUS_EQ] = ACTIONS(2883), - [anon_sym_DASH_EQ] = ACTIONS(2883), - [anon_sym_PIPE_EQ] = ACTIONS(2883), - [anon_sym_CARET_EQ] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [anon_sym_assert] = ACTIONS(2883), - [anon_sym_defer] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_DOLLARfor] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym_AT_LBRACK] = ACTIONS(2883), - [sym___double_quote] = ACTIONS(2883), - [sym___single_quote] = ACTIONS(2883), - [sym___c_double_quote] = ACTIONS(2883), - [sym___c_single_quote] = ACTIONS(2883), - [sym___r_double_quote] = ACTIONS(2883), - [sym___r_single_quote] = ACTIONS(2883), + [sym_block_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_EQ] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_STAR_EQ] = ACTIONS(2695), + [anon_sym_SLASH_EQ] = ACTIONS(2695), + [anon_sym_PERCENT_EQ] = ACTIONS(2695), + [anon_sym_LT_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_GT_EQ] = ACTIONS(2695), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2695), + [anon_sym_AMP_EQ] = ACTIONS(2695), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2695), + [anon_sym_PLUS_EQ] = ACTIONS(2695), + [anon_sym_DASH_EQ] = ACTIONS(2695), + [anon_sym_PIPE_EQ] = ACTIONS(2695), + [anon_sym_CARET_EQ] = ACTIONS(2695), + [anon_sym_COLON_EQ] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), }, [449] = { [sym_line_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_EQ] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_STAR_EQ] = ACTIONS(2887), - [anon_sym_SLASH_EQ] = ACTIONS(2887), - [anon_sym_PERCENT_EQ] = ACTIONS(2887), - [anon_sym_LT_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2887), - [anon_sym_AMP_EQ] = ACTIONS(2887), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2887), - [anon_sym_PLUS_EQ] = ACTIONS(2887), - [anon_sym_DASH_EQ] = ACTIONS(2887), - [anon_sym_PIPE_EQ] = ACTIONS(2887), - [anon_sym_CARET_EQ] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), - [sym___double_quote] = ACTIONS(2887), - [sym___single_quote] = ACTIONS(2887), - [sym___c_double_quote] = ACTIONS(2887), - [sym___c_single_quote] = ACTIONS(2887), - [sym___r_double_quote] = ACTIONS(2887), - [sym___r_single_quote] = ACTIONS(2887), + [sym_block_comment] = STATE(449), + [sym__expression] = STATE(2676), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [450] = { [sym_line_comment] = STATE(450), - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(450), + [sym__expression] = STATE(1005), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [451] = { [sym_line_comment] = STATE(451), - [sym__expression] = STATE(2562), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2901), + [anon_sym_LF] = ACTIONS(2901), + [anon_sym_CR] = ACTIONS(2901), + [anon_sym_CR_LF] = ACTIONS(2901), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2901), + [anon_sym_as] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_EQ] = ACTIONS(2901), + [anon_sym___global] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_fn] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PERCENT] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_pub] = ACTIONS(2901), + [anon_sym_mut] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2901), + [anon_sym_spawn] = ACTIONS(2901), + [anon_sym_json_DOTdecode] = ACTIONS(2901), + [anon_sym_LBRACK2] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_LT_DASH] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2901), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2901), + [anon_sym_AMP_CARET] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_PIPE_PIPE] = ACTIONS(2901), + [anon_sym_or] = ACTIONS(2901), + [sym_none] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_nil] = ACTIONS(2901), + [anon_sym_QMARK_DOT] = ACTIONS(2901), + [anon_sym_POUND_LBRACK] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_DOLLARif] = ACTIONS(2901), + [anon_sym_is] = ACTIONS(2901), + [anon_sym_BANGis] = ACTIONS(2901), + [anon_sym_in] = ACTIONS(2901), + [anon_sym_BANGin] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_select] = ACTIONS(2901), + [anon_sym_STAR_EQ] = ACTIONS(2901), + [anon_sym_SLASH_EQ] = ACTIONS(2901), + [anon_sym_PERCENT_EQ] = ACTIONS(2901), + [anon_sym_LT_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2901), + [anon_sym_AMP_EQ] = ACTIONS(2901), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2901), + [anon_sym_PLUS_EQ] = ACTIONS(2901), + [anon_sym_DASH_EQ] = ACTIONS(2901), + [anon_sym_PIPE_EQ] = ACTIONS(2901), + [anon_sym_CARET_EQ] = ACTIONS(2901), + [anon_sym_COLON_EQ] = ACTIONS(2901), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2901), + [anon_sym_sql] = ACTIONS(2901), + [sym_int_literal] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2901), + [sym_rune_literal] = ACTIONS(2901), + [sym_pseudo_compile_time_identifier] = ACTIONS(2901), + [anon_sym_shared] = ACTIONS(2901), + [anon_sym_map_LBRACK] = ACTIONS(2901), + [anon_sym_chan] = ACTIONS(2901), + [anon_sym_thread] = ACTIONS(2901), + [anon_sym_atomic] = ACTIONS(2901), + [anon_sym_assert] = ACTIONS(2901), + [anon_sym_defer] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_DOLLARfor] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym_AT_LBRACK] = ACTIONS(2901), + [sym___double_quote] = ACTIONS(2901), + [sym___single_quote] = ACTIONS(2901), + [sym___c_double_quote] = ACTIONS(2901), + [sym___c_single_quote] = ACTIONS(2901), + [sym___r_double_quote] = ACTIONS(2901), + [sym___r_single_quote] = ACTIONS(2901), }, [452] = { [sym_line_comment] = STATE(452), - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_CR] = ACTIONS(2905), + [anon_sym_CR_LF] = ACTIONS(2905), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2905), + [anon_sym_as] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_COMMA] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym___global] = ACTIONS(2905), + [anon_sym_type] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_fn] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_pub] = ACTIONS(2905), + [anon_sym_mut] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_go] = ACTIONS(2905), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(2905), + [anon_sym_LBRACK2] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_CARET] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_or] = ACTIONS(2905), + [sym_none] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_nil] = ACTIONS(2905), + [anon_sym_QMARK_DOT] = ACTIONS(2905), + [anon_sym_POUND_LBRACK] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_DOLLARif] = ACTIONS(2905), + [anon_sym_is] = ACTIONS(2905), + [anon_sym_BANGis] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_BANGin] = ACTIONS(2905), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_select] = ACTIONS(2905), + [anon_sym_STAR_EQ] = ACTIONS(2905), + [anon_sym_SLASH_EQ] = ACTIONS(2905), + [anon_sym_PERCENT_EQ] = ACTIONS(2905), + [anon_sym_LT_LT_EQ] = ACTIONS(2905), + [anon_sym_GT_GT_EQ] = ACTIONS(2905), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2905), + [anon_sym_AMP_EQ] = ACTIONS(2905), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2905), + [anon_sym_PLUS_EQ] = ACTIONS(2905), + [anon_sym_DASH_EQ] = ACTIONS(2905), + [anon_sym_PIPE_EQ] = ACTIONS(2905), + [anon_sym_CARET_EQ] = ACTIONS(2905), + [anon_sym_COLON_EQ] = ACTIONS(2905), + [anon_sym_lock] = ACTIONS(2905), + [anon_sym_rlock] = ACTIONS(2905), + [anon_sym_unsafe] = ACTIONS(2905), + [anon_sym_sql] = ACTIONS(2905), + [sym_int_literal] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2905), + [sym_rune_literal] = ACTIONS(2905), + [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_shared] = ACTIONS(2905), + [anon_sym_map_LBRACK] = ACTIONS(2905), + [anon_sym_chan] = ACTIONS(2905), + [anon_sym_thread] = ACTIONS(2905), + [anon_sym_atomic] = ACTIONS(2905), + [anon_sym_assert] = ACTIONS(2905), + [anon_sym_defer] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_DOLLARfor] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym_AT_LBRACK] = ACTIONS(2905), + [sym___double_quote] = ACTIONS(2905), + [sym___single_quote] = ACTIONS(2905), + [sym___c_double_quote] = ACTIONS(2905), + [sym___c_single_quote] = ACTIONS(2905), + [sym___r_double_quote] = ACTIONS(2905), + [sym___r_single_quote] = ACTIONS(2905), }, [453] = { [sym_line_comment] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_EQ] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_STAR_EQ] = ACTIONS(2891), - [anon_sym_SLASH_EQ] = ACTIONS(2891), - [anon_sym_PERCENT_EQ] = ACTIONS(2891), - [anon_sym_LT_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_AMP_EQ] = ACTIONS(2891), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), - [anon_sym_PLUS_EQ] = ACTIONS(2891), - [anon_sym_DASH_EQ] = ACTIONS(2891), - [anon_sym_PIPE_EQ] = ACTIONS(2891), - [anon_sym_CARET_EQ] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [sym_pseudo_compile_time_identifier] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), + [sym_block_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2909), + [anon_sym_LF] = ACTIONS(2909), + [anon_sym_CR] = ACTIONS(2909), + [anon_sym_CR_LF] = ACTIONS(2909), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2909), + [anon_sym_as] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_COMMA] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym___global] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_fn] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PERCENT] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_EQ_EQ] = ACTIONS(2909), + [anon_sym_BANG_EQ] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_pub] = ACTIONS(2909), + [anon_sym_mut] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2909), + [anon_sym_json_DOTdecode] = ACTIONS(2909), + [anon_sym_LBRACK2] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2909), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2909), + [anon_sym_AMP_CARET] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_PIPE_PIPE] = ACTIONS(2909), + [anon_sym_or] = ACTIONS(2909), + [sym_none] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_nil] = ACTIONS(2909), + [anon_sym_QMARK_DOT] = ACTIONS(2909), + [anon_sym_POUND_LBRACK] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_DOLLARif] = ACTIONS(2909), + [anon_sym_is] = ACTIONS(2909), + [anon_sym_BANGis] = ACTIONS(2909), + [anon_sym_in] = ACTIONS(2909), + [anon_sym_BANGin] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_select] = ACTIONS(2909), + [anon_sym_STAR_EQ] = ACTIONS(2909), + [anon_sym_SLASH_EQ] = ACTIONS(2909), + [anon_sym_PERCENT_EQ] = ACTIONS(2909), + [anon_sym_LT_LT_EQ] = ACTIONS(2909), + [anon_sym_GT_GT_EQ] = ACTIONS(2909), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2909), + [anon_sym_AMP_EQ] = ACTIONS(2909), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2909), + [anon_sym_PLUS_EQ] = ACTIONS(2909), + [anon_sym_DASH_EQ] = ACTIONS(2909), + [anon_sym_PIPE_EQ] = ACTIONS(2909), + [anon_sym_CARET_EQ] = ACTIONS(2909), + [anon_sym_COLON_EQ] = ACTIONS(2909), + [anon_sym_lock] = ACTIONS(2909), + [anon_sym_rlock] = ACTIONS(2909), + [anon_sym_unsafe] = ACTIONS(2909), + [anon_sym_sql] = ACTIONS(2909), + [sym_int_literal] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), + [sym_rune_literal] = ACTIONS(2909), + [sym_pseudo_compile_time_identifier] = ACTIONS(2909), + [anon_sym_shared] = ACTIONS(2909), + [anon_sym_map_LBRACK] = ACTIONS(2909), + [anon_sym_chan] = ACTIONS(2909), + [anon_sym_thread] = ACTIONS(2909), + [anon_sym_atomic] = ACTIONS(2909), + [anon_sym_assert] = ACTIONS(2909), + [anon_sym_defer] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_DOLLARfor] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym_AT_LBRACK] = ACTIONS(2909), + [sym___double_quote] = ACTIONS(2909), + [sym___single_quote] = ACTIONS(2909), + [sym___c_double_quote] = ACTIONS(2909), + [sym___c_single_quote] = ACTIONS(2909), + [sym___r_double_quote] = ACTIONS(2909), + [sym___r_single_quote] = ACTIONS(2909), }, [454] = { [sym_line_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_STAR_EQ] = ACTIONS(2895), - [anon_sym_SLASH_EQ] = ACTIONS(2895), - [anon_sym_PERCENT_EQ] = ACTIONS(2895), - [anon_sym_LT_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_AMP_EQ] = ACTIONS(2895), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2895), - [anon_sym_PLUS_EQ] = ACTIONS(2895), - [anon_sym_DASH_EQ] = ACTIONS(2895), - [anon_sym_PIPE_EQ] = ACTIONS(2895), - [anon_sym_CARET_EQ] = ACTIONS(2895), - [anon_sym_COLON_EQ] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [sym_pseudo_compile_time_identifier] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), + [sym_block_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_CR] = ACTIONS(2913), + [anon_sym_CR_LF] = ACTIONS(2913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2913), + [anon_sym_as] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_EQ] = ACTIONS(2913), + [anon_sym___global] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_fn] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PERCENT] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_pub] = ACTIONS(2913), + [anon_sym_mut] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_go] = ACTIONS(2913), + [anon_sym_spawn] = ACTIONS(2913), + [anon_sym_json_DOTdecode] = ACTIONS(2913), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2913), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_CARET] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_or] = ACTIONS(2913), + [sym_none] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_nil] = ACTIONS(2913), + [anon_sym_QMARK_DOT] = ACTIONS(2913), + [anon_sym_POUND_LBRACK] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_DOLLARif] = ACTIONS(2913), + [anon_sym_is] = ACTIONS(2913), + [anon_sym_BANGis] = ACTIONS(2913), + [anon_sym_in] = ACTIONS(2913), + [anon_sym_BANGin] = ACTIONS(2913), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_select] = ACTIONS(2913), + [anon_sym_STAR_EQ] = ACTIONS(2913), + [anon_sym_SLASH_EQ] = ACTIONS(2913), + [anon_sym_PERCENT_EQ] = ACTIONS(2913), + [anon_sym_LT_LT_EQ] = ACTIONS(2913), + [anon_sym_GT_GT_EQ] = ACTIONS(2913), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2913), + [anon_sym_AMP_EQ] = ACTIONS(2913), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2913), + [anon_sym_PLUS_EQ] = ACTIONS(2913), + [anon_sym_DASH_EQ] = ACTIONS(2913), + [anon_sym_PIPE_EQ] = ACTIONS(2913), + [anon_sym_CARET_EQ] = ACTIONS(2913), + [anon_sym_COLON_EQ] = ACTIONS(2913), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2913), + [anon_sym_sql] = ACTIONS(2913), + [sym_int_literal] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2913), + [sym_rune_literal] = ACTIONS(2913), + [sym_pseudo_compile_time_identifier] = ACTIONS(2913), + [anon_sym_shared] = ACTIONS(2913), + [anon_sym_map_LBRACK] = ACTIONS(2913), + [anon_sym_chan] = ACTIONS(2913), + [anon_sym_thread] = ACTIONS(2913), + [anon_sym_atomic] = ACTIONS(2913), + [anon_sym_assert] = ACTIONS(2913), + [anon_sym_defer] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_DOLLARfor] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym_AT_LBRACK] = ACTIONS(2913), + [sym___double_quote] = ACTIONS(2913), + [sym___single_quote] = ACTIONS(2913), + [sym___c_double_quote] = ACTIONS(2913), + [sym___c_single_quote] = ACTIONS(2913), + [sym___r_double_quote] = ACTIONS(2913), + [sym___r_single_quote] = ACTIONS(2913), }, [455] = { [sym_line_comment] = STATE(455), - [sym__expression] = STATE(2296), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), + [sym_block_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LF] = ACTIONS(2917), + [anon_sym_CR] = ACTIONS(2917), + [anon_sym_CR_LF] = ACTIONS(2917), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(2917), + [anon_sym___global] = ACTIONS(2917), + [anon_sym_type] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2917), + [anon_sym_BANG_EQ] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_pub] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_interface] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [anon_sym_json_DOTdecode] = ACTIONS(2917), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2917), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2917), + [anon_sym_AMP_CARET] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_PIPE_PIPE] = ACTIONS(2917), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2917), + [anon_sym_POUND_LBRACK] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_STAR_EQ] = ACTIONS(2917), + [anon_sym_SLASH_EQ] = ACTIONS(2917), + [anon_sym_PERCENT_EQ] = ACTIONS(2917), + [anon_sym_LT_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_GT_EQ] = ACTIONS(2917), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2917), + [anon_sym_AMP_EQ] = ACTIONS(2917), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2917), + [anon_sym_PLUS_EQ] = ACTIONS(2917), + [anon_sym_DASH_EQ] = ACTIONS(2917), + [anon_sym_PIPE_EQ] = ACTIONS(2917), + [anon_sym_CARET_EQ] = ACTIONS(2917), + [anon_sym_COLON_EQ] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), + [sym_rune_literal] = ACTIONS(2917), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2917), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + [anon_sym_assert] = ACTIONS(2917), + [anon_sym_defer] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_DOLLARfor] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym_AT_LBRACK] = ACTIONS(2917), + [sym___double_quote] = ACTIONS(2917), + [sym___single_quote] = ACTIONS(2917), + [sym___c_double_quote] = ACTIONS(2917), + [sym___c_single_quote] = ACTIONS(2917), + [sym___r_double_quote] = ACTIONS(2917), + [sym___r_single_quote] = ACTIONS(2917), }, [456] = { [sym_line_comment] = STATE(456), - [sym__expression] = STATE(1317), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(456), + [sym__expression] = STATE(2898), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2919), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [457] = { [sym_line_comment] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_EQ] = ACTIONS(2961), - [anon_sym___global] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_STAR_EQ] = ACTIONS(2961), - [anon_sym_SLASH_EQ] = ACTIONS(2961), - [anon_sym_PERCENT_EQ] = ACTIONS(2961), - [anon_sym_LT_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_GT_EQ] = ACTIONS(2961), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2961), - [anon_sym_AMP_EQ] = ACTIONS(2961), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2961), - [anon_sym_PLUS_EQ] = ACTIONS(2961), - [anon_sym_DASH_EQ] = ACTIONS(2961), - [anon_sym_PIPE_EQ] = ACTIONS(2961), - [anon_sym_CARET_EQ] = ACTIONS(2961), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym_AT_LBRACK] = ACTIONS(2961), - [sym___double_quote] = ACTIONS(2961), - [sym___single_quote] = ACTIONS(2961), - [sym___c_double_quote] = ACTIONS(2961), - [sym___c_single_quote] = ACTIONS(2961), - [sym___r_double_quote] = ACTIONS(2961), - [sym___r_single_quote] = ACTIONS(2961), + [sym_block_comment] = STATE(457), + [sym__expression] = STATE(2781), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [458] = { [sym_line_comment] = STATE(458), - [sym__expression] = STATE(2572), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(458), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2962), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2963), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [459] = { [sym_line_comment] = STATE(459), - [sym__expression] = STATE(1292), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), + [sym_block_comment] = STATE(459), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LF] = ACTIONS(2923), + [anon_sym_CR] = ACTIONS(2923), + [anon_sym_CR_LF] = ACTIONS(2923), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2923), + [anon_sym_as] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(2923), + [anon_sym___global] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_pub] = ACTIONS(2923), + [anon_sym_mut] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_interface] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_go] = ACTIONS(2923), + [anon_sym_spawn] = ACTIONS(2923), + [anon_sym_json_DOTdecode] = ACTIONS(2923), + [anon_sym_LBRACK2] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_LT_DASH] = ACTIONS(2923), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_or] = ACTIONS(2923), + [sym_none] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_nil] = ACTIONS(2923), + [anon_sym_QMARK_DOT] = ACTIONS(2923), + [anon_sym_POUND_LBRACK] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_DOLLARif] = ACTIONS(2923), + [anon_sym_is] = ACTIONS(2923), + [anon_sym_BANGis] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2923), + [anon_sym_BANGin] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_select] = ACTIONS(2923), + [anon_sym_STAR_EQ] = ACTIONS(2923), + [anon_sym_SLASH_EQ] = ACTIONS(2923), + [anon_sym_PERCENT_EQ] = ACTIONS(2923), + [anon_sym_LT_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_GT_EQ] = ACTIONS(2923), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2923), + [anon_sym_AMP_EQ] = ACTIONS(2923), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2923), + [anon_sym_PLUS_EQ] = ACTIONS(2923), + [anon_sym_DASH_EQ] = ACTIONS(2923), + [anon_sym_PIPE_EQ] = ACTIONS(2923), + [anon_sym_CARET_EQ] = ACTIONS(2923), + [anon_sym_COLON_EQ] = ACTIONS(2923), + [anon_sym_lock] = ACTIONS(2923), + [anon_sym_rlock] = ACTIONS(2923), + [anon_sym_unsafe] = ACTIONS(2923), + [anon_sym_sql] = ACTIONS(2923), + [sym_int_literal] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), + [sym_rune_literal] = ACTIONS(2923), + [sym_pseudo_compile_time_identifier] = ACTIONS(2923), + [anon_sym_shared] = ACTIONS(2923), + [anon_sym_map_LBRACK] = ACTIONS(2923), + [anon_sym_chan] = ACTIONS(2923), + [anon_sym_thread] = ACTIONS(2923), + [anon_sym_atomic] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_defer] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_DOLLARfor] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym_AT_LBRACK] = ACTIONS(2923), + [sym___double_quote] = ACTIONS(2923), + [sym___single_quote] = ACTIONS(2923), + [sym___c_double_quote] = ACTIONS(2923), + [sym___c_single_quote] = ACTIONS(2923), + [sym___r_double_quote] = ACTIONS(2923), + [sym___r_single_quote] = ACTIONS(2923), }, [460] = { [sym_line_comment] = STATE(460), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2989), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2990), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(460), + [sym__expression] = STATE(2661), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [461] = { [sym_line_comment] = STATE(461), - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [sym_block_comment] = STATE(461), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LF] = ACTIONS(2927), + [anon_sym_CR] = ACTIONS(2927), + [anon_sym_CR_LF] = ACTIONS(2927), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2927), + [anon_sym_as] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(2927), + [anon_sym___global] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_pub] = ACTIONS(2927), + [anon_sym_mut] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_interface] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2927), + [anon_sym_json_DOTdecode] = ACTIONS(2927), + [anon_sym_LBRACK2] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_LT_DASH] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2927), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_or] = ACTIONS(2927), + [sym_none] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_nil] = ACTIONS(2927), + [anon_sym_QMARK_DOT] = ACTIONS(2927), + [anon_sym_POUND_LBRACK] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_DOLLARif] = ACTIONS(2927), + [anon_sym_is] = ACTIONS(2927), + [anon_sym_BANGis] = ACTIONS(2927), + [anon_sym_in] = ACTIONS(2927), + [anon_sym_BANGin] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_select] = ACTIONS(2927), + [anon_sym_STAR_EQ] = ACTIONS(2927), + [anon_sym_SLASH_EQ] = ACTIONS(2927), + [anon_sym_PERCENT_EQ] = ACTIONS(2927), + [anon_sym_LT_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2927), + [anon_sym_AMP_EQ] = ACTIONS(2927), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2927), + [anon_sym_PLUS_EQ] = ACTIONS(2927), + [anon_sym_DASH_EQ] = ACTIONS(2927), + [anon_sym_PIPE_EQ] = ACTIONS(2927), + [anon_sym_CARET_EQ] = ACTIONS(2927), + [anon_sym_COLON_EQ] = ACTIONS(2927), + [anon_sym_lock] = ACTIONS(2927), + [anon_sym_rlock] = ACTIONS(2927), + [anon_sym_unsafe] = ACTIONS(2927), + [anon_sym_sql] = ACTIONS(2927), + [sym_int_literal] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2927), + [sym_rune_literal] = ACTIONS(2927), + [sym_pseudo_compile_time_identifier] = ACTIONS(2927), + [anon_sym_shared] = ACTIONS(2927), + [anon_sym_map_LBRACK] = ACTIONS(2927), + [anon_sym_chan] = ACTIONS(2927), + [anon_sym_thread] = ACTIONS(2927), + [anon_sym_atomic] = ACTIONS(2927), + [anon_sym_assert] = ACTIONS(2927), + [anon_sym_defer] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_DOLLARfor] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym_AT_LBRACK] = ACTIONS(2927), + [sym___double_quote] = ACTIONS(2927), + [sym___single_quote] = ACTIONS(2927), + [sym___c_double_quote] = ACTIONS(2927), + [sym___c_single_quote] = ACTIONS(2927), + [sym___r_double_quote] = ACTIONS(2927), + [sym___r_single_quote] = ACTIONS(2927), }, [462] = { [sym_line_comment] = STATE(462), - [sym__expression] = STATE(1313), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), + [sym_block_comment] = STATE(462), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LF] = ACTIONS(2931), + [anon_sym_CR] = ACTIONS(2931), + [anon_sym_CR_LF] = ACTIONS(2931), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2931), + [anon_sym_as] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_COMMA] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_EQ] = ACTIONS(2931), + [anon_sym___global] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_pub] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_interface] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_QMARK] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_go] = ACTIONS(2931), + [anon_sym_spawn] = ACTIONS(2931), + [anon_sym_json_DOTdecode] = ACTIONS(2931), + [anon_sym_LBRACK2] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2931), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2931), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_or] = ACTIONS(2931), + [sym_none] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_nil] = ACTIONS(2931), + [anon_sym_QMARK_DOT] = ACTIONS(2931), + [anon_sym_POUND_LBRACK] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_DOLLARif] = ACTIONS(2931), + [anon_sym_is] = ACTIONS(2931), + [anon_sym_BANGis] = ACTIONS(2931), + [anon_sym_in] = ACTIONS(2931), + [anon_sym_BANGin] = ACTIONS(2931), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_select] = ACTIONS(2931), + [anon_sym_STAR_EQ] = ACTIONS(2931), + [anon_sym_SLASH_EQ] = ACTIONS(2931), + [anon_sym_PERCENT_EQ] = ACTIONS(2931), + [anon_sym_LT_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_GT_EQ] = ACTIONS(2931), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), + [anon_sym_AMP_EQ] = ACTIONS(2931), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), + [anon_sym_PLUS_EQ] = ACTIONS(2931), + [anon_sym_DASH_EQ] = ACTIONS(2931), + [anon_sym_PIPE_EQ] = ACTIONS(2931), + [anon_sym_CARET_EQ] = ACTIONS(2931), + [anon_sym_COLON_EQ] = ACTIONS(2931), + [anon_sym_lock] = ACTIONS(2931), + [anon_sym_rlock] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2931), + [anon_sym_sql] = ACTIONS(2931), + [sym_int_literal] = ACTIONS(2931), + [sym_float_literal] = ACTIONS(2931), + [sym_rune_literal] = ACTIONS(2931), + [sym_pseudo_compile_time_identifier] = ACTIONS(2931), + [anon_sym_shared] = ACTIONS(2931), + [anon_sym_map_LBRACK] = ACTIONS(2931), + [anon_sym_chan] = ACTIONS(2931), + [anon_sym_thread] = ACTIONS(2931), + [anon_sym_atomic] = ACTIONS(2931), + [anon_sym_assert] = ACTIONS(2931), + [anon_sym_defer] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_DOLLARfor] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_asm] = ACTIONS(2931), + [anon_sym_AT_LBRACK] = ACTIONS(2931), + [sym___double_quote] = ACTIONS(2931), + [sym___single_quote] = ACTIONS(2931), + [sym___c_double_quote] = ACTIONS(2931), + [sym___c_single_quote] = ACTIONS(2931), + [sym___r_double_quote] = ACTIONS(2931), + [sym___r_single_quote] = ACTIONS(2931), }, [463] = { [sym_line_comment] = STATE(463), - [sym__expression] = STATE(1300), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, - [464] = { - [sym_line_comment] = STATE(464), - [sym__expression] = STATE(2553), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [465] = { - [sym_line_comment] = STATE(465), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_EQ] = ACTIONS(2965), - [anon_sym___global] = ACTIONS(2965), - [anon_sym_type] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_pub] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_interface] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_STAR_EQ] = ACTIONS(2965), - [anon_sym_SLASH_EQ] = ACTIONS(2965), - [anon_sym_PERCENT_EQ] = ACTIONS(2965), - [anon_sym_LT_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2965), - [anon_sym_AMP_EQ] = ACTIONS(2965), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2965), - [anon_sym_PLUS_EQ] = ACTIONS(2965), - [anon_sym_DASH_EQ] = ACTIONS(2965), - [anon_sym_PIPE_EQ] = ACTIONS(2965), - [anon_sym_CARET_EQ] = ACTIONS(2965), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym_AT_LBRACK] = ACTIONS(2965), - [sym___double_quote] = ACTIONS(2965), - [sym___single_quote] = ACTIONS(2965), - [sym___c_double_quote] = ACTIONS(2965), - [sym___c_single_quote] = ACTIONS(2965), - [sym___r_double_quote] = ACTIONS(2965), - [sym___r_single_quote] = ACTIONS(2965), - }, - [466] = { - [sym_line_comment] = STATE(466), - [sym__expression] = STATE(2549), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [467] = { - [sym_line_comment] = STATE(467), - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [anon_sym_pub] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_STAR_EQ] = ACTIONS(2970), - [anon_sym_SLASH_EQ] = ACTIONS(2970), - [anon_sym_PERCENT_EQ] = ACTIONS(2970), - [anon_sym_LT_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_AMP_EQ] = ACTIONS(2970), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2970), - [anon_sym_PLUS_EQ] = ACTIONS(2970), - [anon_sym_DASH_EQ] = ACTIONS(2970), - [anon_sym_PIPE_EQ] = ACTIONS(2970), - [anon_sym_CARET_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [sym_pseudo_compile_time_identifier] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_defer] = ACTIONS(2970), - [anon_sym_goto] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_DOLLARfor] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_asm] = ACTIONS(2970), - [anon_sym_AT_LBRACK] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), - }, - [468] = { - [sym_line_comment] = STATE(468), - [ts_builtin_sym_end] = ACTIONS(2973), - [sym_identifier] = ACTIONS(2976), - [anon_sym_LF] = ACTIONS(2976), - [anon_sym_CR] = ACTIONS(2976), - [anon_sym_CR_LF] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_const] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2976), - [anon_sym___global] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2976), - [anon_sym_union] = ACTIONS(2976), - [anon_sym_pub] = ACTIONS(2976), - [anon_sym_mut] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2976), - [anon_sym_interface] = ACTIONS(2976), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(2976), - [anon_sym_spawn] = ACTIONS(2976), - [anon_sym_json_DOTdecode] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(2976), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_nil] = ACTIONS(2976), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_DOLLARif] = ACTIONS(2976), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_select] = ACTIONS(2976), - [anon_sym_STAR_EQ] = ACTIONS(2976), - [anon_sym_SLASH_EQ] = ACTIONS(2976), - [anon_sym_PERCENT_EQ] = ACTIONS(2976), - [anon_sym_LT_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_GT_EQ] = ACTIONS(2976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2976), - [anon_sym_AMP_EQ] = ACTIONS(2976), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2976), - [anon_sym_PLUS_EQ] = ACTIONS(2976), - [anon_sym_DASH_EQ] = ACTIONS(2976), - [anon_sym_PIPE_EQ] = ACTIONS(2976), - [anon_sym_CARET_EQ] = ACTIONS(2976), - [anon_sym_COLON_EQ] = ACTIONS(2976), - [anon_sym_lock] = ACTIONS(2976), - [anon_sym_rlock] = ACTIONS(2976), - [anon_sym_unsafe] = ACTIONS(2976), - [anon_sym_sql] = ACTIONS(2976), - [sym_int_literal] = ACTIONS(2976), - [sym_float_literal] = ACTIONS(2976), - [sym_rune_literal] = ACTIONS(2976), - [sym_pseudo_compile_time_identifier] = ACTIONS(2976), - [anon_sym_shared] = ACTIONS(2976), - [anon_sym_map_LBRACK] = ACTIONS(2976), - [anon_sym_chan] = ACTIONS(2976), - [anon_sym_thread] = ACTIONS(2976), - [anon_sym_atomic] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_defer] = ACTIONS(2976), - [anon_sym_goto] = ACTIONS(2976), - [anon_sym_break] = ACTIONS(2976), - [anon_sym_continue] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_DOLLARfor] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_asm] = ACTIONS(2976), - [anon_sym_AT_LBRACK] = ACTIONS(2976), - [sym___double_quote] = ACTIONS(2976), - [sym___single_quote] = ACTIONS(2976), - [sym___c_double_quote] = ACTIONS(2976), - [sym___c_single_quote] = ACTIONS(2976), - [sym___r_double_quote] = ACTIONS(2976), - [sym___r_single_quote] = ACTIONS(2976), - }, - [469] = { - [sym_line_comment] = STATE(469), - [sym__expression] = STATE(2748), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [470] = { - [sym_line_comment] = STATE(470), - [sym__expression] = STATE(2471), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [471] = { - [sym_line_comment] = STATE(471), - [sym__expression] = STATE(1807), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [472] = { - [sym_line_comment] = STATE(472), - [sym__expression] = STATE(1301), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, - [473] = { - [sym_line_comment] = STATE(473), - [sym__expression] = STATE(1806), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [474] = { - [sym_line_comment] = STATE(474), - [sym__expression] = STATE(1805), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [475] = { - [sym_line_comment] = STATE(475), - [sym__expression] = STATE(1803), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), + [sym_block_comment] = STATE(463), + [sym__expression] = STATE(1917), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), [sym_if_expression] = STATE(2026), [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), [sym_match_expression] = STATE(2026), [sym_select_expression] = STATE(2026), [sym_lock_expression] = STATE(2026), [sym_unsafe_expression] = STATE(2026), [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [476] = { - [sym_line_comment] = STATE(476), - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3007), - [anon_sym_LF] = ACTIONS(3007), - [anon_sym_CR] = ACTIONS(3007), - [anon_sym_CR_LF] = ACTIONS(3007), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(3007), - [anon_sym___global] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_fn] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3007), - [anon_sym_GT] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_pub] = ACTIONS(3007), - [anon_sym_mut] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_interface] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_go] = ACTIONS(3007), - [anon_sym_spawn] = ACTIONS(3007), - [anon_sym_json_DOTdecode] = ACTIONS(3007), - [anon_sym_LBRACK2] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_GT_GT_GT] = ACTIONS(3007), - [anon_sym_AMP_CARET] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_or] = ACTIONS(3007), - [sym_none] = ACTIONS(3007), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_nil] = ACTIONS(3007), - [anon_sym_QMARK_DOT] = ACTIONS(3007), - [anon_sym_POUND_LBRACK] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_DOLLARif] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_in] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_select] = ACTIONS(3007), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_COLON_EQ] = ACTIONS(3007), - [anon_sym_lock] = ACTIONS(3007), - [anon_sym_rlock] = ACTIONS(3007), - [anon_sym_unsafe] = ACTIONS(3007), - [anon_sym_sql] = ACTIONS(3007), - [sym_int_literal] = ACTIONS(3007), - [sym_float_literal] = ACTIONS(3007), - [sym_rune_literal] = ACTIONS(3007), - [sym_pseudo_compile_time_identifier] = ACTIONS(3007), - [anon_sym_shared] = ACTIONS(3007), - [anon_sym_map_LBRACK] = ACTIONS(3007), - [anon_sym_chan] = ACTIONS(3007), - [anon_sym_thread] = ACTIONS(3007), - [anon_sym_atomic] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_defer] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_DOLLARfor] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym_AT_LBRACK] = ACTIONS(3007), - [sym___double_quote] = ACTIONS(3007), - [sym___single_quote] = ACTIONS(3007), - [sym___c_double_quote] = ACTIONS(3007), - [sym___c_single_quote] = ACTIONS(3007), - [sym___r_double_quote] = ACTIONS(3007), - [sym___r_single_quote] = ACTIONS(3007), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, - [477] = { - [sym_line_comment] = STATE(477), - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3011), - [anon_sym_CR] = ACTIONS(3011), - [anon_sym_CR_LF] = ACTIONS(3011), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(3011), - [anon_sym___global] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_STAR_EQ] = ACTIONS(3011), - [anon_sym_SLASH_EQ] = ACTIONS(3011), - [anon_sym_PERCENT_EQ] = ACTIONS(3011), - [anon_sym_LT_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3011), - [anon_sym_AMP_EQ] = ACTIONS(3011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3011), - [anon_sym_PLUS_EQ] = ACTIONS(3011), - [anon_sym_DASH_EQ] = ACTIONS(3011), - [anon_sym_PIPE_EQ] = ACTIONS(3011), - [anon_sym_CARET_EQ] = ACTIONS(3011), - [anon_sym_COLON_EQ] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [sym_pseudo_compile_time_identifier] = ACTIONS(3011), - [anon_sym_shared] = ACTIONS(3011), - [anon_sym_map_LBRACK] = ACTIONS(3011), - [anon_sym_chan] = ACTIONS(3011), - [anon_sym_thread] = ACTIONS(3011), - [anon_sym_atomic] = ACTIONS(3011), - [anon_sym_assert] = ACTIONS(3011), - [anon_sym_defer] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_DOLLARfor] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_POUND] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym_AT_LBRACK] = ACTIONS(3011), - [sym___double_quote] = ACTIONS(3011), - [sym___single_quote] = ACTIONS(3011), - [sym___c_double_quote] = ACTIONS(3011), - [sym___c_single_quote] = ACTIONS(3011), - [sym___r_double_quote] = ACTIONS(3011), - [sym___r_single_quote] = ACTIONS(3011), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym__expression] = STATE(2368), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, - [478] = { - [sym_line_comment] = STATE(478), - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(3015), - [anon_sym___global] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_pub] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_STAR_EQ] = ACTIONS(3015), - [anon_sym_SLASH_EQ] = ACTIONS(3015), - [anon_sym_PERCENT_EQ] = ACTIONS(3015), - [anon_sym_LT_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_GT_EQ] = ACTIONS(3015), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3015), - [anon_sym_AMP_EQ] = ACTIONS(3015), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3015), - [anon_sym_PLUS_EQ] = ACTIONS(3015), - [anon_sym_DASH_EQ] = ACTIONS(3015), - [anon_sym_PIPE_EQ] = ACTIONS(3015), - [anon_sym_CARET_EQ] = ACTIONS(3015), - [anon_sym_COLON_EQ] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), - [anon_sym_assert] = ACTIONS(3015), - [anon_sym_defer] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_DOLLARfor] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_POUND] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym_AT_LBRACK] = ACTIONS(3015), - [sym___double_quote] = ACTIONS(3015), - [sym___single_quote] = ACTIONS(3015), - [sym___c_double_quote] = ACTIONS(3015), - [sym___c_single_quote] = ACTIONS(3015), - [sym___r_double_quote] = ACTIONS(3015), - [sym___r_single_quote] = ACTIONS(3015), + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LF] = ACTIONS(2935), + [anon_sym_CR] = ACTIONS(2935), + [anon_sym_CR_LF] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_EQ] = ACTIONS(2935), + [anon_sym___global] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [anon_sym_pub] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_interface] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_STAR_EQ] = ACTIONS(2935), + [anon_sym_SLASH_EQ] = ACTIONS(2935), + [anon_sym_PERCENT_EQ] = ACTIONS(2935), + [anon_sym_LT_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_GT_EQ] = ACTIONS(2935), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2935), + [anon_sym_AMP_EQ] = ACTIONS(2935), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2935), + [anon_sym_PLUS_EQ] = ACTIONS(2935), + [anon_sym_DASH_EQ] = ACTIONS(2935), + [anon_sym_PIPE_EQ] = ACTIONS(2935), + [anon_sym_CARET_EQ] = ACTIONS(2935), + [anon_sym_COLON_EQ] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + [anon_sym_assert] = ACTIONS(2935), + [anon_sym_defer] = ACTIONS(2935), + [anon_sym_goto] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_DOLLARfor] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_asm] = ACTIONS(2935), + [anon_sym_AT_LBRACK] = ACTIONS(2935), + [sym___double_quote] = ACTIONS(2935), + [sym___single_quote] = ACTIONS(2935), + [sym___c_double_quote] = ACTIONS(2935), + [sym___c_single_quote] = ACTIONS(2935), + [sym___r_double_quote] = ACTIONS(2935), + [sym___r_single_quote] = ACTIONS(2935), }, - [479] = { - [sym_line_comment] = STATE(479), - [sym__expression] = STATE(1802), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), [sym_if_expression] = STATE(2026), [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), [sym_match_expression] = STATE(2026), [sym_select_expression] = STATE(2026), [sym_lock_expression] = STATE(2026), [sym_unsafe_expression] = STATE(2026), [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4262), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, - [480] = { - [sym_line_comment] = STATE(480), - [sym__expression] = STATE(2657), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, - [481] = { - [sym_line_comment] = STATE(481), - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3019), - [anon_sym___global] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_pub] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_interface] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_STAR_EQ] = ACTIONS(3019), - [anon_sym_SLASH_EQ] = ACTIONS(3019), - [anon_sym_PERCENT_EQ] = ACTIONS(3019), - [anon_sym_LT_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_GT_EQ] = ACTIONS(3019), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3019), - [anon_sym_AMP_EQ] = ACTIONS(3019), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3019), - [anon_sym_PLUS_EQ] = ACTIONS(3019), - [anon_sym_DASH_EQ] = ACTIONS(3019), - [anon_sym_PIPE_EQ] = ACTIONS(3019), - [anon_sym_CARET_EQ] = ACTIONS(3019), - [anon_sym_COLON_EQ] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_defer] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_DOLLARfor] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym_AT_LBRACK] = ACTIONS(3019), - [sym___double_quote] = ACTIONS(3019), - [sym___single_quote] = ACTIONS(3019), - [sym___c_double_quote] = ACTIONS(3019), - [sym___c_single_quote] = ACTIONS(3019), - [sym___r_double_quote] = ACTIONS(3019), - [sym___r_single_quote] = ACTIONS(3019), + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym__expression] = STATE(2734), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [482] = { - [sym_line_comment] = STATE(482), - [sym__expression] = STATE(997), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), + }, + [470] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [ts_builtin_sym_end] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2943), + [anon_sym_LF] = ACTIONS(2943), + [anon_sym_CR] = ACTIONS(2943), + [anon_sym_CR_LF] = ACTIONS(2943), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2943), + [anon_sym_as] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_COMMA] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_EQ] = ACTIONS(2943), + [anon_sym___global] = ACTIONS(2943), + [anon_sym_type] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2943), + [anon_sym_fn] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_pub] = ACTIONS(2943), + [anon_sym_mut] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_interface] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_go] = ACTIONS(2943), + [anon_sym_spawn] = ACTIONS(2943), + [anon_sym_json_DOTdecode] = ACTIONS(2943), + [anon_sym_LBRACK2] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2943), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2943), + [anon_sym_GT_GT_GT] = ACTIONS(2943), + [anon_sym_AMP_CARET] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2943), + [anon_sym_or] = ACTIONS(2943), + [sym_none] = ACTIONS(2943), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [sym_nil] = ACTIONS(2943), + [anon_sym_QMARK_DOT] = ACTIONS(2943), + [anon_sym_POUND_LBRACK] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_DOLLARif] = ACTIONS(2943), + [anon_sym_is] = ACTIONS(2943), + [anon_sym_BANGis] = ACTIONS(2943), + [anon_sym_in] = ACTIONS(2943), + [anon_sym_BANGin] = ACTIONS(2943), + [anon_sym_match] = ACTIONS(2943), + [anon_sym_select] = ACTIONS(2943), + [anon_sym_STAR_EQ] = ACTIONS(2943), + [anon_sym_SLASH_EQ] = ACTIONS(2943), + [anon_sym_PERCENT_EQ] = ACTIONS(2943), + [anon_sym_LT_LT_EQ] = ACTIONS(2943), + [anon_sym_GT_GT_EQ] = ACTIONS(2943), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2943), + [anon_sym_AMP_EQ] = ACTIONS(2943), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2943), + [anon_sym_PLUS_EQ] = ACTIONS(2943), + [anon_sym_DASH_EQ] = ACTIONS(2943), + [anon_sym_PIPE_EQ] = ACTIONS(2943), + [anon_sym_CARET_EQ] = ACTIONS(2943), + [anon_sym_COLON_EQ] = ACTIONS(2943), + [anon_sym_lock] = ACTIONS(2943), + [anon_sym_rlock] = ACTIONS(2943), + [anon_sym_unsafe] = ACTIONS(2943), + [anon_sym_sql] = ACTIONS(2943), + [sym_int_literal] = ACTIONS(2943), + [sym_float_literal] = ACTIONS(2943), + [sym_rune_literal] = ACTIONS(2943), + [sym_pseudo_compile_time_identifier] = ACTIONS(2943), + [anon_sym_shared] = ACTIONS(2943), + [anon_sym_map_LBRACK] = ACTIONS(2943), + [anon_sym_chan] = ACTIONS(2943), + [anon_sym_thread] = ACTIONS(2943), + [anon_sym_atomic] = ACTIONS(2943), + [anon_sym_assert] = ACTIONS(2943), + [anon_sym_defer] = ACTIONS(2943), + [anon_sym_goto] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_DOLLARfor] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym_AT_LBRACK] = ACTIONS(2943), + [sym___double_quote] = ACTIONS(2943), + [sym___single_quote] = ACTIONS(2943), + [sym___c_double_quote] = ACTIONS(2943), + [sym___c_single_quote] = ACTIONS(2943), + [sym___r_double_quote] = ACTIONS(2943), + [sym___r_single_quote] = ACTIONS(2943), + }, + [471] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [sym__expression] = STATE(2443), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [472] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -86220,919 +78783,2087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym__expression] = STATE(2735), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym__expression] = STATE(2706), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [475] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [476] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym__expression] = STATE(2511), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [477] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym__expression] = STATE(2863), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [478] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2981), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2980), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [479] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [sym__expression] = STATE(2714), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [480] = { + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [sym__expression] = STATE(2357), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [481] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2973), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2974), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [482] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_CR] = ACTIONS(2971), + [anon_sym_CR_LF] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2971), + [anon_sym___global] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_interface] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_STAR_EQ] = ACTIONS(2971), + [anon_sym_SLASH_EQ] = ACTIONS(2971), + [anon_sym_PERCENT_EQ] = ACTIONS(2971), + [anon_sym_LT_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_GT_EQ] = ACTIONS(2971), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2971), + [anon_sym_AMP_EQ] = ACTIONS(2971), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2971), + [anon_sym_PLUS_EQ] = ACTIONS(2971), + [anon_sym_DASH_EQ] = ACTIONS(2971), + [anon_sym_PIPE_EQ] = ACTIONS(2971), + [anon_sym_CARET_EQ] = ACTIONS(2971), + [anon_sym_COLON_EQ] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_defer] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_DOLLARfor] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym_AT_LBRACK] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2971), + [sym___single_quote] = ACTIONS(2971), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2971), + [sym___r_double_quote] = ACTIONS(2971), + [sym___r_single_quote] = ACTIONS(2971), }, [483] = { [sym_line_comment] = STATE(483), - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_LT_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_AMP_EQ] = ACTIONS(3041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_PIPE_EQ] = ACTIONS(3041), - [anon_sym_CARET_EQ] = ACTIONS(3041), - [anon_sym_COLON_EQ] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [sym_block_comment] = STATE(483), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2975), + [anon_sym_CR] = ACTIONS(2975), + [anon_sym_CR_LF] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_as] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(2975), + [anon_sym___global] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_pub] = ACTIONS(2975), + [anon_sym_mut] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_interface] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_go] = ACTIONS(2975), + [anon_sym_spawn] = ACTIONS(2975), + [anon_sym_json_DOTdecode] = ACTIONS(2975), + [anon_sym_LBRACK2] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_LT_DASH] = ACTIONS(2975), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2975), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_or] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_nil] = ACTIONS(2975), + [anon_sym_QMARK_DOT] = ACTIONS(2975), + [anon_sym_POUND_LBRACK] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_DOLLARif] = ACTIONS(2975), + [anon_sym_is] = ACTIONS(2975), + [anon_sym_BANGis] = ACTIONS(2975), + [anon_sym_in] = ACTIONS(2975), + [anon_sym_BANGin] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_select] = ACTIONS(2975), + [anon_sym_STAR_EQ] = ACTIONS(2975), + [anon_sym_SLASH_EQ] = ACTIONS(2975), + [anon_sym_PERCENT_EQ] = ACTIONS(2975), + [anon_sym_LT_LT_EQ] = ACTIONS(2975), + [anon_sym_GT_GT_EQ] = ACTIONS(2975), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2975), + [anon_sym_AMP_EQ] = ACTIONS(2975), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2975), + [anon_sym_PLUS_EQ] = ACTIONS(2975), + [anon_sym_DASH_EQ] = ACTIONS(2975), + [anon_sym_PIPE_EQ] = ACTIONS(2975), + [anon_sym_CARET_EQ] = ACTIONS(2975), + [anon_sym_COLON_EQ] = ACTIONS(2975), + [anon_sym_lock] = ACTIONS(2975), + [anon_sym_rlock] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_sql] = ACTIONS(2975), + [sym_int_literal] = ACTIONS(2975), + [sym_float_literal] = ACTIONS(2975), + [sym_rune_literal] = ACTIONS(2975), + [sym_pseudo_compile_time_identifier] = ACTIONS(2975), + [anon_sym_shared] = ACTIONS(2975), + [anon_sym_map_LBRACK] = ACTIONS(2975), + [anon_sym_chan] = ACTIONS(2975), + [anon_sym_thread] = ACTIONS(2975), + [anon_sym_atomic] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_defer] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_DOLLARfor] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym_AT_LBRACK] = ACTIONS(2975), + [sym___double_quote] = ACTIONS(2975), + [sym___single_quote] = ACTIONS(2975), + [sym___c_double_quote] = ACTIONS(2975), + [sym___c_single_quote] = ACTIONS(2975), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2975), }, [484] = { [sym_line_comment] = STATE(484), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [sym_block_comment] = STATE(484), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym___global] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_pub] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_STAR_EQ] = ACTIONS(2981), + [anon_sym_SLASH_EQ] = ACTIONS(2981), + [anon_sym_PERCENT_EQ] = ACTIONS(2981), + [anon_sym_LT_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_GT_EQ] = ACTIONS(2981), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2981), + [anon_sym_AMP_EQ] = ACTIONS(2981), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2981), + [anon_sym_PLUS_EQ] = ACTIONS(2981), + [anon_sym_DASH_EQ] = ACTIONS(2981), + [anon_sym_PIPE_EQ] = ACTIONS(2981), + [anon_sym_CARET_EQ] = ACTIONS(2981), + [anon_sym_COLON_EQ] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym_AT_LBRACK] = ACTIONS(2981), + [sym___double_quote] = ACTIONS(2981), + [sym___single_quote] = ACTIONS(2981), + [sym___c_double_quote] = ACTIONS(2981), + [sym___c_single_quote] = ACTIONS(2981), + [sym___r_double_quote] = ACTIONS(2981), + [sym___r_single_quote] = ACTIONS(2981), }, [485] = { [sym_line_comment] = STATE(485), - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_LT_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_AMP_EQ] = ACTIONS(3045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_PIPE_EQ] = ACTIONS(3045), - [anon_sym_CARET_EQ] = ACTIONS(3045), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [sym_pseudo_compile_time_identifier] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [sym_block_comment] = STATE(485), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_COLON_EQ] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), }, [486] = { [sym_line_comment] = STATE(486), - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(486), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_STAR_EQ] = ACTIONS(2989), + [anon_sym_SLASH_EQ] = ACTIONS(2989), + [anon_sym_PERCENT_EQ] = ACTIONS(2989), + [anon_sym_LT_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_AMP_EQ] = ACTIONS(2989), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), + [anon_sym_PLUS_EQ] = ACTIONS(2989), + [anon_sym_DASH_EQ] = ACTIONS(2989), + [anon_sym_PIPE_EQ] = ACTIONS(2989), + [anon_sym_CARET_EQ] = ACTIONS(2989), + [anon_sym_COLON_EQ] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym_AT_LBRACK] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), }, [487] = { [sym_line_comment] = STATE(487), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4314), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(487), + [sym__expression] = STATE(2864), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [488] = { [sym_line_comment] = STATE(488), - [sym__expression] = STATE(2693), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(488), + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [489] = { [sym_line_comment] = STATE(489), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4304), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [sym_block_comment] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2993), + [anon_sym___global] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_STAR_EQ] = ACTIONS(2993), + [anon_sym_SLASH_EQ] = ACTIONS(2993), + [anon_sym_PERCENT_EQ] = ACTIONS(2993), + [anon_sym_LT_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_AMP_EQ] = ACTIONS(2993), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), + [anon_sym_PLUS_EQ] = ACTIONS(2993), + [anon_sym_DASH_EQ] = ACTIONS(2993), + [anon_sym_PIPE_EQ] = ACTIONS(2993), + [anon_sym_CARET_EQ] = ACTIONS(2993), + [anon_sym_COLON_EQ] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym_AT_LBRACK] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), }, [490] = { [sym_line_comment] = STATE(490), - [sym__expression] = STATE(999), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(490), + [sym__expression] = STATE(985), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -87140,9870 +80871,9724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [491] = { [sym_line_comment] = STATE(491), - [sym__expression] = STATE(2888), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3047), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(491), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [492] = { [sym_line_comment] = STATE(492), - [sym__expression] = STATE(996), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(492), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [493] = { [sym_line_comment] = STATE(493), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4302), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(493), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [494] = { [sym_line_comment] = STATE(494), - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(494), + [sym__expression] = STATE(2644), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [495] = { [sym_line_comment] = STATE(495), - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(495), + [sym__expression] = STATE(2346), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [496] = { [sym_line_comment] = STATE(496), - [sym__expression] = STATE(1799), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(496), + [sym__expression] = STATE(2631), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [497] = { [sym_line_comment] = STATE(497), - [sym__expression] = STATE(1302), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), + [sym_block_comment] = STATE(497), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_LT_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_AMP_EQ] = ACTIONS(2997), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_PIPE_EQ] = ACTIONS(2997), + [anon_sym_CARET_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), }, [498] = { [sym_line_comment] = STATE(498), - [sym__expression] = STATE(2340), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(498), + [sym__expression] = STATE(2729), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [499] = { [sym_line_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_EQ] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_STAR_EQ] = ACTIONS(3051), - [anon_sym_SLASH_EQ] = ACTIONS(3051), - [anon_sym_PERCENT_EQ] = ACTIONS(3051), - [anon_sym_LT_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3051), - [anon_sym_AMP_EQ] = ACTIONS(3051), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3051), - [anon_sym_PLUS_EQ] = ACTIONS(3051), - [anon_sym_DASH_EQ] = ACTIONS(3051), - [anon_sym_PIPE_EQ] = ACTIONS(3051), - [anon_sym_CARET_EQ] = ACTIONS(3051), - [anon_sym_COLON_EQ] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), - [sym___double_quote] = ACTIONS(3051), - [sym___single_quote] = ACTIONS(3051), - [sym___c_double_quote] = ACTIONS(3051), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3051), - [sym___r_single_quote] = ACTIONS(3051), + [sym_block_comment] = STATE(499), + [sym__expression] = STATE(2654), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [500] = { [sym_line_comment] = STATE(500), - [sym__expression] = STATE(1303), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(500), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [501] = { [sym_line_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_identifier] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_CR] = ACTIONS(3055), - [anon_sym_CR_LF] = ACTIONS(3055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_EQ] = ACTIONS(3055), - [anon_sym___global] = ACTIONS(3055), - [anon_sym_type] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_pub] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_interface] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_STAR_EQ] = ACTIONS(3055), - [anon_sym_SLASH_EQ] = ACTIONS(3055), - [anon_sym_PERCENT_EQ] = ACTIONS(3055), - [anon_sym_LT_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_GT_EQ] = ACTIONS(3055), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3055), - [anon_sym_AMP_EQ] = ACTIONS(3055), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3055), - [anon_sym_PLUS_EQ] = ACTIONS(3055), - [anon_sym_DASH_EQ] = ACTIONS(3055), - [anon_sym_PIPE_EQ] = ACTIONS(3055), - [anon_sym_CARET_EQ] = ACTIONS(3055), - [anon_sym_COLON_EQ] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [anon_sym_assert] = ACTIONS(3055), - [anon_sym_defer] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_DOLLARfor] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_POUND] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym_AT_LBRACK] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), + [sym_block_comment] = STATE(501), + [sym__expression] = STATE(2810), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [502] = { [sym_line_comment] = STATE(502), - [sym__expression] = STATE(2472), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_STAR_EQ] = ACTIONS(3001), + [anon_sym_SLASH_EQ] = ACTIONS(3001), + [anon_sym_PERCENT_EQ] = ACTIONS(3001), + [anon_sym_LT_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_AMP_EQ] = ACTIONS(3001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), + [anon_sym_PLUS_EQ] = ACTIONS(3001), + [anon_sym_DASH_EQ] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3001), + [anon_sym_CARET_EQ] = ACTIONS(3001), + [anon_sym_COLON_EQ] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), }, [503] = { [sym_line_comment] = STATE(503), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(503), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3015), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3014), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [504] = { [sym_line_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_LT_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_AMP_EQ] = ACTIONS(3077), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3077), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_PIPE_EQ] = ACTIONS(3077), - [anon_sym_CARET_EQ] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [sym_pseudo_compile_time_identifier] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), + [sym_block_comment] = STATE(504), + [sym__expression] = STATE(2858), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [505] = { [sym_line_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_LT_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_AMP_EQ] = ACTIONS(3081), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_PIPE_EQ] = ACTIONS(3081), - [anon_sym_CARET_EQ] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [sym_pseudo_compile_time_identifier] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [sym_block_comment] = STATE(505), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_STAR_EQ] = ACTIONS(3005), + [anon_sym_SLASH_EQ] = ACTIONS(3005), + [anon_sym_PERCENT_EQ] = ACTIONS(3005), + [anon_sym_LT_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_AMP_EQ] = ACTIONS(3005), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), + [anon_sym_PLUS_EQ] = ACTIONS(3005), + [anon_sym_DASH_EQ] = ACTIONS(3005), + [anon_sym_PIPE_EQ] = ACTIONS(3005), + [anon_sym_CARET_EQ] = ACTIONS(3005), + [anon_sym_COLON_EQ] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), }, [506] = { [sym_line_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_LT_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_AMP_EQ] = ACTIONS(3087), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_PIPE_EQ] = ACTIONS(3087), - [anon_sym_CARET_EQ] = ACTIONS(3087), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [sym_block_comment] = STATE(506), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [507] = { [sym_line_comment] = STATE(507), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(507), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3009), + [anon_sym___global] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3009), + [anon_sym_SLASH_EQ] = ACTIONS(3009), + [anon_sym_PERCENT_EQ] = ACTIONS(3009), + [anon_sym_LT_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_AMP_EQ] = ACTIONS(3009), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_PIPE_EQ] = ACTIONS(3009), + [anon_sym_CARET_EQ] = ACTIONS(3009), + [anon_sym_COLON_EQ] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_defer] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_DOLLARfor] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym_AT_LBRACK] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), }, [508] = { [sym_line_comment] = STATE(508), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4241), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(508), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_STAR_EQ] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3013), + [anon_sym_PERCENT_EQ] = ACTIONS(3013), + [anon_sym_LT_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_AMP_EQ] = ACTIONS(3013), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3013), + [anon_sym_PLUS_EQ] = ACTIONS(3013), + [anon_sym_DASH_EQ] = ACTIONS(3013), + [anon_sym_PIPE_EQ] = ACTIONS(3013), + [anon_sym_CARET_EQ] = ACTIONS(3013), + [anon_sym_COLON_EQ] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [509] = { [sym_line_comment] = STATE(509), - [sym__expression] = STATE(2360), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(509), + [sym__expression] = STATE(1918), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [510] = { [sym_line_comment] = STATE(510), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4013), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(510), + [sym__expression] = STATE(1153), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [511] = { [sym_line_comment] = STATE(511), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(511), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_STAR_EQ] = ACTIONS(3020), + [anon_sym_SLASH_EQ] = ACTIONS(3020), + [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_LT_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_AMP_EQ] = ACTIONS(3020), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3020), + [anon_sym_DASH_EQ] = ACTIONS(3020), + [anon_sym_PIPE_EQ] = ACTIONS(3020), + [anon_sym_CARET_EQ] = ACTIONS(3020), + [anon_sym_COLON_EQ] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [512] = { [sym_line_comment] = STATE(512), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4006), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(512), + [sym__expression] = STATE(2498), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [513] = { [sym_line_comment] = STATE(513), - [sym__expression] = STATE(2351), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(513), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_EQ] = ACTIONS(3024), + [anon_sym___global] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_STAR_EQ] = ACTIONS(3024), + [anon_sym_SLASH_EQ] = ACTIONS(3024), + [anon_sym_PERCENT_EQ] = ACTIONS(3024), + [anon_sym_LT_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3024), + [anon_sym_AMP_EQ] = ACTIONS(3024), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3024), + [anon_sym_PLUS_EQ] = ACTIONS(3024), + [anon_sym_DASH_EQ] = ACTIONS(3024), + [anon_sym_PIPE_EQ] = ACTIONS(3024), + [anon_sym_CARET_EQ] = ACTIONS(3024), + [anon_sym_COLON_EQ] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [sym_pseudo_compile_time_identifier] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_defer] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_DOLLARfor] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym_AT_LBRACK] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), }, [514] = { [sym_line_comment] = STATE(514), - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(514), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [515] = { [sym_line_comment] = STATE(515), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(515), + [sym__expression] = STATE(2887), + [sym__expression_without_blocks] = STATE(2955), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [516] = { [sym_line_comment] = STATE(516), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4013), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(516), + [sym__expression] = STATE(1659), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [517] = { [sym_line_comment] = STATE(517), - [sym__expression] = STATE(2346), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(517), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2990), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2991), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [518] = { [sym_line_comment] = STATE(518), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4006), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1071), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(1085), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1089), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(518), + [sym__expression] = STATE(2668), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [519] = { [sym_line_comment] = STATE(519), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(519), + [sym__expression] = STATE(2707), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [520] = { [sym_line_comment] = STATE(520), - [sym__expression] = STATE(2202), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(520), + [sym__expression] = STATE(2712), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [521] = { [sym_line_comment] = STATE(521), - [sym__expression] = STATE(2771), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [sym_block_comment] = STATE(521), + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3029), + [anon_sym_type] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_union] = ACTIONS(3029), + [anon_sym_pub] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_STAR_EQ] = ACTIONS(3029), + [anon_sym_SLASH_EQ] = ACTIONS(3029), + [anon_sym_PERCENT_EQ] = ACTIONS(3029), + [anon_sym_LT_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_AMP_EQ] = ACTIONS(3029), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), + [anon_sym_PLUS_EQ] = ACTIONS(3029), + [anon_sym_DASH_EQ] = ACTIONS(3029), + [anon_sym_PIPE_EQ] = ACTIONS(3029), + [anon_sym_CARET_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + [anon_sym_assert] = ACTIONS(3029), + [anon_sym_defer] = ACTIONS(3029), + [anon_sym_goto] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_DOLLARfor] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_asm] = ACTIONS(3029), + [anon_sym_AT_LBRACK] = ACTIONS(3029), + [sym___double_quote] = ACTIONS(3029), + [sym___single_quote] = ACTIONS(3029), + [sym___c_double_quote] = ACTIONS(3029), + [sym___c_single_quote] = ACTIONS(3029), + [sym___r_double_quote] = ACTIONS(3029), + [sym___r_single_quote] = ACTIONS(3029), }, [522] = { [sym_line_comment] = STATE(522), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4356), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [523] = { - [sym_line_comment] = STATE(523), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4357), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [524] = { - [sym_line_comment] = STATE(524), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4361), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [525] = { - [sym_line_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3109), - [anon_sym_PERCENT_EQ] = ACTIONS(3109), - [anon_sym_LT_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_AMP_EQ] = ACTIONS(3109), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3109), - [anon_sym_DASH_EQ] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [sym_pseudo_compile_time_identifier] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [526] = { - [sym_line_comment] = STATE(526), - [sym__expression] = STATE(2179), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(522), + [sym__expression] = STATE(2672), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3035), + [anon_sym___global] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_pub] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_interface] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_STAR_EQ] = ACTIONS(3035), + [anon_sym_SLASH_EQ] = ACTIONS(3035), + [anon_sym_PERCENT_EQ] = ACTIONS(3035), + [anon_sym_LT_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_AMP_EQ] = ACTIONS(3035), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3035), + [anon_sym_PLUS_EQ] = ACTIONS(3035), + [anon_sym_DASH_EQ] = ACTIONS(3035), + [anon_sym_PIPE_EQ] = ACTIONS(3035), + [anon_sym_CARET_EQ] = ACTIONS(3035), + [anon_sym_COLON_EQ] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_defer] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_DOLLARfor] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym_AT_LBRACK] = ACTIONS(3035), + [sym___double_quote] = ACTIONS(3035), + [sym___single_quote] = ACTIONS(3035), + [sym___c_double_quote] = ACTIONS(3035), + [sym___c_single_quote] = ACTIONS(3035), + [sym___r_double_quote] = ACTIONS(3035), + [sym___r_single_quote] = ACTIONS(3035), + }, + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2999), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3001), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), + [sym__expression] = STATE(2817), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(3040), + [anon_sym___global] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_STAR_EQ] = ACTIONS(3040), + [anon_sym_SLASH_EQ] = ACTIONS(3040), + [anon_sym_PERCENT_EQ] = ACTIONS(3040), + [anon_sym_LT_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_GT_EQ] = ACTIONS(3040), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3040), + [anon_sym_AMP_EQ] = ACTIONS(3040), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3040), + [anon_sym_PLUS_EQ] = ACTIONS(3040), + [anon_sym_DASH_EQ] = ACTIONS(3040), + [anon_sym_PIPE_EQ] = ACTIONS(3040), + [anon_sym_CARET_EQ] = ACTIONS(3040), + [anon_sym_COLON_EQ] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [sym_pseudo_compile_time_identifier] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [anon_sym_assert] = ACTIONS(3040), + [anon_sym_defer] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_DOLLARfor] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym_AT_LBRACK] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, [527] = { [sym_line_comment] = STATE(527), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4361), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(527), + [sym__expression] = STATE(1959), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [528] = { [sym_line_comment] = STATE(528), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4357), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(528), + [sym__expression] = STATE(2347), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [529] = { [sym_line_comment] = STATE(529), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4356), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(529), + [sym__expression] = STATE(2829), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [530] = { [sym_line_comment] = STATE(530), - [sym__expression] = STATE(1684), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), + [sym_block_comment] = STATE(530), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_STAR_EQ] = ACTIONS(3044), + [anon_sym_SLASH_EQ] = ACTIONS(3044), + [anon_sym_PERCENT_EQ] = ACTIONS(3044), + [anon_sym_LT_LT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3044), + [anon_sym_AMP_EQ] = ACTIONS(3044), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3044), + [anon_sym_PLUS_EQ] = ACTIONS(3044), + [anon_sym_DASH_EQ] = ACTIONS(3044), + [anon_sym_PIPE_EQ] = ACTIONS(3044), + [anon_sym_CARET_EQ] = ACTIONS(3044), + [anon_sym_COLON_EQ] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [531] = { [sym_line_comment] = STATE(531), - [sym__expression] = STATE(1701), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(531), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [532] = { [sym_line_comment] = STATE(532), - [sym__expression] = STATE(2481), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(532), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3002), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3005), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [533] = { [sym_line_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3119), - [anon_sym_LF] = ACTIONS(3119), - [anon_sym_CR] = ACTIONS(3119), - [anon_sym_CR_LF] = ACTIONS(3119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_as] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_EQ] = ACTIONS(3119), - [anon_sym___global] = ACTIONS(3119), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3119), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3119), - [anon_sym_GT] = ACTIONS(3119), - [anon_sym_EQ_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_pub] = ACTIONS(3119), - [anon_sym_mut] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_go] = ACTIONS(3119), - [anon_sym_spawn] = ACTIONS(3119), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3119), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_GT_GT_GT] = ACTIONS(3119), - [anon_sym_AMP_CARET] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(3119), - [anon_sym_or] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_nil] = ACTIONS(3119), - [anon_sym_QMARK_DOT] = ACTIONS(3119), - [anon_sym_POUND_LBRACK] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_DOLLARif] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_BANGis] = ACTIONS(3119), - [anon_sym_in] = ACTIONS(3119), - [anon_sym_BANGin] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_STAR_EQ] = ACTIONS(3119), - [anon_sym_SLASH_EQ] = ACTIONS(3119), - [anon_sym_PERCENT_EQ] = ACTIONS(3119), - [anon_sym_LT_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_GT_EQ] = ACTIONS(3119), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3119), - [anon_sym_AMP_EQ] = ACTIONS(3119), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3119), - [anon_sym_PLUS_EQ] = ACTIONS(3119), - [anon_sym_DASH_EQ] = ACTIONS(3119), - [anon_sym_PIPE_EQ] = ACTIONS(3119), - [anon_sym_CARET_EQ] = ACTIONS(3119), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_rlock] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_sql] = ACTIONS(3119), - [sym_int_literal] = ACTIONS(3119), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [sym_pseudo_compile_time_identifier] = ACTIONS(3119), - [anon_sym_shared] = ACTIONS(3119), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3119), - [anon_sym_thread] = ACTIONS(3119), - [anon_sym_atomic] = ACTIONS(3119), - [anon_sym_assert] = ACTIONS(3119), - [anon_sym_defer] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_DOLLARfor] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_POUND] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym_AT_LBRACK] = ACTIONS(3119), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), + [sym_block_comment] = STATE(533), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [534] = { [sym_line_comment] = STATE(534), - [sym__expression] = STATE(1683), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4139), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(534), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [535] = { [sym_line_comment] = STATE(535), - [sym__expression] = STATE(2517), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(535), + [sym__expression] = STATE(2669), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [536] = { [sym_line_comment] = STATE(536), - [sym__expression] = STATE(2516), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(536), + [sym__expression] = STATE(2831), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [537] = { [sym_line_comment] = STATE(537), - [sym__expression] = STATE(1683), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4137), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(537), + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [538] = { [sym_line_comment] = STATE(538), - [sym__expression] = STATE(1683), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4111), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(538), + [sym__expression] = STATE(2770), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [539] = { [sym_line_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_identifier] = ACTIONS(3123), - [anon_sym_LF] = ACTIONS(3123), - [anon_sym_CR] = ACTIONS(3123), - [anon_sym_CR_LF] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_as] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_EQ] = ACTIONS(3123), - [anon_sym___global] = ACTIONS(3123), - [anon_sym_type] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_fn] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_pub] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_interface] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_go] = ACTIONS(3123), - [anon_sym_spawn] = ACTIONS(3123), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_nil] = ACTIONS(3123), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_DOLLARif] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_LT_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_GT_EQ] = ACTIONS(3123), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3123), - [anon_sym_AMP_EQ] = ACTIONS(3123), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3123), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_PIPE_EQ] = ACTIONS(3123), - [anon_sym_CARET_EQ] = ACTIONS(3123), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_sql] = ACTIONS(3123), - [sym_int_literal] = ACTIONS(3123), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [sym_pseudo_compile_time_identifier] = ACTIONS(3123), - [anon_sym_shared] = ACTIONS(3123), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3123), - [anon_sym_thread] = ACTIONS(3123), - [anon_sym_atomic] = ACTIONS(3123), - [anon_sym_assert] = ACTIONS(3123), - [anon_sym_defer] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_DOLLARfor] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_POUND] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym_AT_LBRACK] = ACTIONS(3123), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), + [sym_block_comment] = STATE(539), + [sym__expression] = STATE(2496), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [540] = { [sym_line_comment] = STATE(540), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(540), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4355), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [541] = { [sym_line_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3127), - [anon_sym_CR] = ACTIONS(3127), - [anon_sym_CR_LF] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_as] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_EQ] = ACTIONS(3127), - [anon_sym___global] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_pub] = ACTIONS(3127), - [anon_sym_mut] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_interface] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3127), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_nil] = ACTIONS(3127), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_DOLLARif] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_LT_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_GT_EQ] = ACTIONS(3127), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3127), - [anon_sym_AMP_EQ] = ACTIONS(3127), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3127), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_PIPE_EQ] = ACTIONS(3127), - [anon_sym_CARET_EQ] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_rlock] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_sql] = ACTIONS(3127), - [sym_int_literal] = ACTIONS(3127), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [sym_pseudo_compile_time_identifier] = ACTIONS(3127), - [anon_sym_shared] = ACTIONS(3127), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3127), - [anon_sym_thread] = ACTIONS(3127), - [anon_sym_atomic] = ACTIONS(3127), - [anon_sym_assert] = ACTIONS(3127), - [anon_sym_defer] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_DOLLARfor] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym_AT_LBRACK] = ACTIONS(3127), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), + [sym_block_comment] = STATE(541), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LF] = ACTIONS(3116), + [anon_sym_CR] = ACTIONS(3116), + [anon_sym_CR_LF] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3116), + [anon_sym___global] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_pub] = ACTIONS(3116), + [anon_sym_mut] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3116), + [anon_sym_spawn] = ACTIONS(3116), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_nil] = ACTIONS(3116), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_DOLLARif] = ACTIONS(3116), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_select] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_COLON_EQ] = ACTIONS(3116), + [anon_sym_lock] = ACTIONS(3116), + [anon_sym_rlock] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_sql] = ACTIONS(3116), + [sym_int_literal] = ACTIONS(3116), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [sym_pseudo_compile_time_identifier] = ACTIONS(3116), + [anon_sym_shared] = ACTIONS(3116), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3116), + [anon_sym_thread] = ACTIONS(3116), + [anon_sym_atomic] = ACTIONS(3116), + [anon_sym_assert] = ACTIONS(3116), + [anon_sym_defer] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_DOLLARfor] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym_AT_LBRACK] = ACTIONS(3116), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, [542] = { [sym_line_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3131), - [anon_sym_LF] = ACTIONS(3131), - [anon_sym_CR] = ACTIONS(3131), - [anon_sym_CR_LF] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_EQ] = ACTIONS(3131), - [anon_sym___global] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_fn] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_pub] = ACTIONS(3131), - [anon_sym_mut] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_go] = ACTIONS(3131), - [anon_sym_spawn] = ACTIONS(3131), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_nil] = ACTIONS(3131), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_DOLLARif] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3131), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_LT_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_GT_EQ] = ACTIONS(3131), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3131), - [anon_sym_AMP_EQ] = ACTIONS(3131), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3131), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_PIPE_EQ] = ACTIONS(3131), - [anon_sym_CARET_EQ] = ACTIONS(3131), - [anon_sym_COLON_EQ] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_rlock] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_sql] = ACTIONS(3131), - [sym_int_literal] = ACTIONS(3131), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3131), - [anon_sym_shared] = ACTIONS(3131), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3131), - [anon_sym_thread] = ACTIONS(3131), - [anon_sym_atomic] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_defer] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_DOLLARfor] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym_AT_LBRACK] = ACTIONS(3131), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), + [sym_block_comment] = STATE(542), + [sym__expression] = STATE(2512), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [543] = { [sym_line_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_EQ] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_LT_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_GT_EQ] = ACTIONS(3135), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3135), - [anon_sym_AMP_EQ] = ACTIONS(3135), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3135), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_PIPE_EQ] = ACTIONS(3135), - [anon_sym_CARET_EQ] = ACTIONS(3135), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(543), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [544] = { [sym_line_comment] = STATE(544), - [sym__expression] = STATE(2697), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(544), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4367), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [545] = { [sym_line_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LF] = ACTIONS(3139), - [anon_sym_CR] = ACTIONS(3139), - [anon_sym_CR_LF] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_EQ] = ACTIONS(3139), - [anon_sym___global] = ACTIONS(3139), - [anon_sym_type] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_fn] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3139), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_pub] = ACTIONS(3139), - [anon_sym_mut] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_go] = ACTIONS(3139), - [anon_sym_spawn] = ACTIONS(3139), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_nil] = ACTIONS(3139), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_DOLLARif] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_LT_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_GT_EQ] = ACTIONS(3139), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3139), - [anon_sym_AMP_EQ] = ACTIONS(3139), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3139), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_PIPE_EQ] = ACTIONS(3139), - [anon_sym_CARET_EQ] = ACTIONS(3139), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_rlock] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_sql] = ACTIONS(3139), - [sym_int_literal] = ACTIONS(3139), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [sym_pseudo_compile_time_identifier] = ACTIONS(3139), - [anon_sym_shared] = ACTIONS(3139), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3139), - [anon_sym_thread] = ACTIONS(3139), - [anon_sym_atomic] = ACTIONS(3139), - [anon_sym_assert] = ACTIONS(3139), - [anon_sym_defer] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_DOLLARfor] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_POUND] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym_AT_LBRACK] = ACTIONS(3139), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [sym_block_comment] = STATE(545), + [sym__expression] = STATE(2176), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [546] = { [sym_line_comment] = STATE(546), - [sym__expression] = STATE(2686), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(546), + [sym__expression] = STATE(2234), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [547] = { [sym_line_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(3143), - [anon_sym___global] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_pub] = ACTIONS(3143), - [anon_sym_mut] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3143), - [anon_sym_spawn] = ACTIONS(3143), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_nil] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_DOLLARif] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_LT_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_AMP_EQ] = ACTIONS(3143), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3143), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_PIPE_EQ] = ACTIONS(3143), - [anon_sym_CARET_EQ] = ACTIONS(3143), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_rlock] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_sql] = ACTIONS(3143), - [sym_int_literal] = ACTIONS(3143), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [sym_pseudo_compile_time_identifier] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - [anon_sym_assert] = ACTIONS(3143), - [anon_sym_defer] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_DOLLARfor] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym_AT_LBRACK] = ACTIONS(3143), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), + [sym_block_comment] = STATE(547), + [sym__expression] = STATE(1827), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [548] = { [sym_line_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym___global] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_pub] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_LT_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_AMP_EQ] = ACTIONS(3147), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3147), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_PIPE_EQ] = ACTIONS(3147), - [anon_sym_CARET_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [sym_pseudo_compile_time_identifier] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_DOLLARfor] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_POUND] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym_AT_LBRACK] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), + [sym_block_comment] = STATE(548), + [sym__expression] = STATE(2207), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [549] = { [sym_line_comment] = STATE(549), - [sym__expression] = STATE(2179), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), + [sym_block_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_CR] = ACTIONS(3120), + [anon_sym_CR_LF] = ACTIONS(3120), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3120), + [anon_sym___global] = ACTIONS(3120), + [anon_sym_type] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_pub] = ACTIONS(3120), + [anon_sym_mut] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_interface] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3120), + [anon_sym_spawn] = ACTIONS(3120), + [anon_sym_json_DOTdecode] = ACTIONS(3120), + [anon_sym_LBRACK2] = ACTIONS(3120), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_or] = ACTIONS(3120), + [sym_none] = ACTIONS(3120), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [sym_nil] = ACTIONS(3120), + [anon_sym_QMARK_DOT] = ACTIONS(3120), + [anon_sym_POUND_LBRACK] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_DOLLARif] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3120), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_in] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_select] = ACTIONS(3120), + [anon_sym_STAR_EQ] = ACTIONS(3120), + [anon_sym_SLASH_EQ] = ACTIONS(3120), + [anon_sym_PERCENT_EQ] = ACTIONS(3120), + [anon_sym_LT_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_GT_EQ] = ACTIONS(3120), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3120), + [anon_sym_AMP_EQ] = ACTIONS(3120), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3120), + [anon_sym_PLUS_EQ] = ACTIONS(3120), + [anon_sym_DASH_EQ] = ACTIONS(3120), + [anon_sym_PIPE_EQ] = ACTIONS(3120), + [anon_sym_CARET_EQ] = ACTIONS(3120), + [anon_sym_COLON_EQ] = ACTIONS(3120), + [anon_sym_lock] = ACTIONS(3120), + [anon_sym_rlock] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_sql] = ACTIONS(3120), + [sym_int_literal] = ACTIONS(3120), + [sym_float_literal] = ACTIONS(3120), + [sym_rune_literal] = ACTIONS(3120), + [sym_pseudo_compile_time_identifier] = ACTIONS(3120), + [anon_sym_shared] = ACTIONS(3120), + [anon_sym_map_LBRACK] = ACTIONS(3120), + [anon_sym_chan] = ACTIONS(3120), + [anon_sym_thread] = ACTIONS(3120), + [anon_sym_atomic] = ACTIONS(3120), + [anon_sym_assert] = ACTIONS(3120), + [anon_sym_defer] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_DOLLARfor] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym_AT_LBRACK] = ACTIONS(3120), + [sym___double_quote] = ACTIONS(3120), + [sym___single_quote] = ACTIONS(3120), + [sym___c_double_quote] = ACTIONS(3120), + [sym___c_single_quote] = ACTIONS(3120), + [sym___r_double_quote] = ACTIONS(3120), + [sym___r_single_quote] = ACTIONS(3120), }, [550] = { [sym_line_comment] = STATE(550), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(550), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4269), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [551] = { [sym_line_comment] = STATE(551), - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(551), + [sym__expression] = STATE(1143), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [552] = { [sym_line_comment] = STATE(552), - [sym__expression] = STATE(2323), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(552), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [553] = { [sym_line_comment] = STATE(553), - [sym__expression] = STATE(1699), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(553), + [sym__expression] = STATE(1952), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [554] = { [sym_line_comment] = STATE(554), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(554), + [sym__expression] = STATE(2509), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [555] = { [sym_line_comment] = STATE(555), - [sym__expression] = STATE(2176), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(555), + [sym__expression] = STATE(2346), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [556] = { [sym_line_comment] = STATE(556), - [sym__expression] = STATE(2715), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(556), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4168), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [557] = { [sym_line_comment] = STATE(557), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3021), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3020), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(557), + [sym__expression] = STATE(2358), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [558] = { [sym_line_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_EQ] = ACTIONS(3151), - [anon_sym___global] = ACTIONS(3151), - [anon_sym_type] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_pub] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_STAR_EQ] = ACTIONS(3151), - [anon_sym_SLASH_EQ] = ACTIONS(3151), - [anon_sym_PERCENT_EQ] = ACTIONS(3151), - [anon_sym_LT_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_GT_EQ] = ACTIONS(3151), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3151), - [anon_sym_AMP_EQ] = ACTIONS(3151), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3151), - [anon_sym_PLUS_EQ] = ACTIONS(3151), - [anon_sym_DASH_EQ] = ACTIONS(3151), - [anon_sym_PIPE_EQ] = ACTIONS(3151), - [anon_sym_CARET_EQ] = ACTIONS(3151), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [sym_pseudo_compile_time_identifier] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [anon_sym_assert] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_DOLLARfor] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym_AT_LBRACK] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [sym_block_comment] = STATE(558), + [sym__expression] = STATE(2377), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [559] = { [sym_line_comment] = STATE(559), - [sym__expression] = STATE(2750), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(559), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4128), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [560] = { [sym_line_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_EQ] = ACTIONS(3155), - [anon_sym___global] = ACTIONS(3155), - [anon_sym_type] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_pub] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_STAR_EQ] = ACTIONS(3155), - [anon_sym_SLASH_EQ] = ACTIONS(3155), - [anon_sym_PERCENT_EQ] = ACTIONS(3155), - [anon_sym_LT_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_GT_EQ] = ACTIONS(3155), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3155), - [anon_sym_AMP_EQ] = ACTIONS(3155), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3155), - [anon_sym_PLUS_EQ] = ACTIONS(3155), - [anon_sym_DASH_EQ] = ACTIONS(3155), - [anon_sym_PIPE_EQ] = ACTIONS(3155), - [anon_sym_CARET_EQ] = ACTIONS(3155), - [anon_sym_COLON_EQ] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [sym_pseudo_compile_time_identifier] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [anon_sym_assert] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_DOLLARfor] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_POUND] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym_AT_LBRACK] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), + [sym_block_comment] = STATE(560), + [sym__expression] = STATE(2513), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [561] = { [sym_line_comment] = STATE(561), - [sym__expression] = STATE(1676), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(561), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4249), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [562] = { [sym_line_comment] = STATE(562), - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4368), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(562), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [563] = { [sym_line_comment] = STATE(563), - [sym__expression] = STATE(1678), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(563), + [sym__expression] = STATE(2324), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [564] = { [sym_line_comment] = STATE(564), - [sym__expression] = STATE(1679), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(564), + [sym__expression] = STATE(2514), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [565] = { [sym_line_comment] = STATE(565), - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4372), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(565), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [566] = { [sym_line_comment] = STATE(566), - [sym__expression] = STATE(1703), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(566), + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [567] = { [sym_line_comment] = STATE(567), - [sym__expression] = STATE(1696), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(567), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [568] = { [sym_line_comment] = STATE(568), - [sym__expression] = STATE(1706), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(568), + [sym__expression] = STATE(1002), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [569] = { [sym_line_comment] = STATE(569), - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4383), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(569), + [sym__expression] = STATE(1003), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [570] = { [sym_line_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym___global] = ACTIONS(3159), - [anon_sym_type] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_pub] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_STAR_EQ] = ACTIONS(3159), - [anon_sym_SLASH_EQ] = ACTIONS(3159), - [anon_sym_PERCENT_EQ] = ACTIONS(3159), - [anon_sym_LT_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_GT_EQ] = ACTIONS(3159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3159), - [anon_sym_AMP_EQ] = ACTIONS(3159), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3159), - [anon_sym_PLUS_EQ] = ACTIONS(3159), - [anon_sym_DASH_EQ] = ACTIONS(3159), - [anon_sym_PIPE_EQ] = ACTIONS(3159), - [anon_sym_CARET_EQ] = ACTIONS(3159), - [anon_sym_COLON_EQ] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [sym_pseudo_compile_time_identifier] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [anon_sym_assert] = ACTIONS(3159), - [anon_sym_defer] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_DOLLARfor] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_POUND] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym_AT_LBRACK] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [sym_block_comment] = STATE(570), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4151), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [571] = { [sym_line_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym___global] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_pub] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_STAR_EQ] = ACTIONS(3163), - [anon_sym_SLASH_EQ] = ACTIONS(3163), - [anon_sym_PERCENT_EQ] = ACTIONS(3163), - [anon_sym_LT_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_GT_EQ] = ACTIONS(3163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3163), - [anon_sym_AMP_EQ] = ACTIONS(3163), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3163), - [anon_sym_PLUS_EQ] = ACTIONS(3163), - [anon_sym_DASH_EQ] = ACTIONS(3163), - [anon_sym_PIPE_EQ] = ACTIONS(3163), - [anon_sym_CARET_EQ] = ACTIONS(3163), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [sym_pseudo_compile_time_identifier] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [anon_sym_assert] = ACTIONS(3163), - [anon_sym_defer] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_DOLLARfor] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym_AT_LBRACK] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), + [sym_block_comment] = STATE(571), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4223), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [572] = { [sym_line_comment] = STATE(572), - [sym__expression] = STATE(1683), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_go] = ACTIONS(2803), - [anon_sym_spawn] = ACTIONS(2805), - [anon_sym_json_DOTdecode] = ACTIONS(2807), - [anon_sym_LBRACK2] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_CARET] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_LT_DASH] = ACTIONS(2813), - [sym_none] = ACTIONS(2815), - [sym_true] = ACTIONS(2815), - [sym_false] = ACTIONS(2815), - [sym_nil] = ACTIONS(2815), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_DOLLARif] = ACTIONS(2819), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_select] = ACTIONS(2823), - [anon_sym_lock] = ACTIONS(2825), - [anon_sym_rlock] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2827), - [anon_sym_sql] = ACTIONS(2829), - [sym_int_literal] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2831), - [sym_rune_literal] = ACTIONS(2831), - [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2835), - [sym___single_quote] = ACTIONS(2837), - [sym___c_double_quote] = ACTIONS(2839), - [sym___c_single_quote] = ACTIONS(2841), - [sym___r_double_quote] = ACTIONS(2843), - [sym___r_single_quote] = ACTIONS(2845), + [sym_block_comment] = STATE(572), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [573] = { [sym_line_comment] = STATE(573), - [sym__expression] = STATE(2679), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3142), + [anon_sym_LF] = ACTIONS(3142), + [anon_sym_CR] = ACTIONS(3142), + [anon_sym_CR_LF] = ACTIONS(3142), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_EQ] = ACTIONS(3142), + [anon_sym___global] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_fn] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PERCENT] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3142), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_pub] = ACTIONS(3142), + [anon_sym_mut] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_go] = ACTIONS(3142), + [anon_sym_spawn] = ACTIONS(3142), + [anon_sym_json_DOTdecode] = ACTIONS(3142), + [anon_sym_LBRACK2] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_LT_DASH] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3142), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3142), + [anon_sym_AMP_CARET] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3142), + [sym_none] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nil] = ACTIONS(3142), + [anon_sym_QMARK_DOT] = ACTIONS(3142), + [anon_sym_POUND_LBRACK] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_DOLLARif] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3142), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_match] = ACTIONS(3142), + [anon_sym_select] = ACTIONS(3142), + [anon_sym_STAR_EQ] = ACTIONS(3142), + [anon_sym_SLASH_EQ] = ACTIONS(3142), + [anon_sym_PERCENT_EQ] = ACTIONS(3142), + [anon_sym_LT_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_GT_EQ] = ACTIONS(3142), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3142), + [anon_sym_AMP_EQ] = ACTIONS(3142), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3142), + [anon_sym_PLUS_EQ] = ACTIONS(3142), + [anon_sym_DASH_EQ] = ACTIONS(3142), + [anon_sym_PIPE_EQ] = ACTIONS(3142), + [anon_sym_CARET_EQ] = ACTIONS(3142), + [anon_sym_COLON_EQ] = ACTIONS(3142), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(3142), + [anon_sym_sql] = ACTIONS(3142), + [sym_int_literal] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3142), + [sym_rune_literal] = ACTIONS(3142), + [sym_pseudo_compile_time_identifier] = ACTIONS(3142), + [anon_sym_shared] = ACTIONS(3142), + [anon_sym_map_LBRACK] = ACTIONS(3142), + [anon_sym_chan] = ACTIONS(3142), + [anon_sym_thread] = ACTIONS(3142), + [anon_sym_atomic] = ACTIONS(3142), + [anon_sym_assert] = ACTIONS(3142), + [anon_sym_defer] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_DOLLARfor] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3142), + [anon_sym_asm] = ACTIONS(3142), + [anon_sym_AT_LBRACK] = ACTIONS(3142), + [sym___double_quote] = ACTIONS(3142), + [sym___single_quote] = ACTIONS(3142), + [sym___c_double_quote] = ACTIONS(3142), + [sym___c_single_quote] = ACTIONS(3142), + [sym___r_double_quote] = ACTIONS(3142), + [sym___r_single_quote] = ACTIONS(3142), }, [574] = { [sym_line_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(3167), - [anon_sym___global] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_union] = ACTIONS(3167), - [anon_sym_pub] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(3167), - [anon_sym_SLASH_EQ] = ACTIONS(3167), - [anon_sym_PERCENT_EQ] = ACTIONS(3167), - [anon_sym_LT_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_GT_EQ] = ACTIONS(3167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3167), - [anon_sym_AMP_EQ] = ACTIONS(3167), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3167), - [anon_sym_PLUS_EQ] = ACTIONS(3167), - [anon_sym_DASH_EQ] = ACTIONS(3167), - [anon_sym_PIPE_EQ] = ACTIONS(3167), - [anon_sym_CARET_EQ] = ACTIONS(3167), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_DOLLARfor] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_POUND] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym_AT_LBRACK] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), - }, - [575] = { - [sym_line_comment] = STATE(575), - [sym__expression] = STATE(2473), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [576] = { - [sym_line_comment] = STATE(576), - [sym__expression] = STATE(1146), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(574), + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -97012,8 +90597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -97039,11 +90624,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -97051,189 +90636,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [sym__expression] = STATE(2495), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [sym__expression] = STATE(2494), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, [577] = { [sym_line_comment] = STATE(577), - [sym__expression] = STATE(2330), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [578] = { - [sym_line_comment] = STATE(578), - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(577), + [sym__expression] = STATE(1148), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -97242,8 +90945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -97269,11 +90972,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -97281,1109 +90984,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3146), + [anon_sym_LF] = ACTIONS(3146), + [anon_sym_CR] = ACTIONS(3146), + [anon_sym_CR_LF] = ACTIONS(3146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_EQ] = ACTIONS(3146), + [anon_sym___global] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_fn] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PERCENT] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_pub] = ACTIONS(3146), + [anon_sym_mut] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_go] = ACTIONS(3146), + [anon_sym_spawn] = ACTIONS(3146), + [anon_sym_json_DOTdecode] = ACTIONS(3146), + [anon_sym_LBRACK2] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT_DASH] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3146), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3146), + [anon_sym_AMP_CARET] = ACTIONS(3146), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_or] = ACTIONS(3146), + [sym_none] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_nil] = ACTIONS(3146), + [anon_sym_QMARK_DOT] = ACTIONS(3146), + [anon_sym_POUND_LBRACK] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_DOLLARif] = ACTIONS(3146), + [anon_sym_is] = ACTIONS(3146), + [anon_sym_BANGis] = ACTIONS(3146), + [anon_sym_in] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3146), + [anon_sym_match] = ACTIONS(3146), + [anon_sym_select] = ACTIONS(3146), + [anon_sym_STAR_EQ] = ACTIONS(3146), + [anon_sym_SLASH_EQ] = ACTIONS(3146), + [anon_sym_PERCENT_EQ] = ACTIONS(3146), + [anon_sym_LT_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_GT_EQ] = ACTIONS(3146), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3146), + [anon_sym_AMP_EQ] = ACTIONS(3146), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3146), + [anon_sym_PLUS_EQ] = ACTIONS(3146), + [anon_sym_DASH_EQ] = ACTIONS(3146), + [anon_sym_PIPE_EQ] = ACTIONS(3146), + [anon_sym_CARET_EQ] = ACTIONS(3146), + [anon_sym_COLON_EQ] = ACTIONS(3146), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(3146), + [anon_sym_sql] = ACTIONS(3146), + [sym_int_literal] = ACTIONS(3146), + [sym_float_literal] = ACTIONS(3146), + [sym_rune_literal] = ACTIONS(3146), + [sym_pseudo_compile_time_identifier] = ACTIONS(3146), + [anon_sym_shared] = ACTIONS(3146), + [anon_sym_map_LBRACK] = ACTIONS(3146), + [anon_sym_chan] = ACTIONS(3146), + [anon_sym_thread] = ACTIONS(3146), + [anon_sym_atomic] = ACTIONS(3146), + [anon_sym_assert] = ACTIONS(3146), + [anon_sym_defer] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_DOLLARfor] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_POUND] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym_AT_LBRACK] = ACTIONS(3146), + [sym___double_quote] = ACTIONS(3146), + [sym___single_quote] = ACTIONS(3146), + [sym___c_double_quote] = ACTIONS(3146), + [sym___c_single_quote] = ACTIONS(3146), + [sym___r_double_quote] = ACTIONS(3146), + [sym___r_single_quote] = ACTIONS(3146), + }, [579] = { [sym_line_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_EQ] = ACTIONS(3171), - [anon_sym___global] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_pub] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_STAR_EQ] = ACTIONS(3171), - [anon_sym_SLASH_EQ] = ACTIONS(3171), - [anon_sym_PERCENT_EQ] = ACTIONS(3171), - [anon_sym_LT_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_GT_EQ] = ACTIONS(3171), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3171), - [anon_sym_AMP_EQ] = ACTIONS(3171), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3171), - [anon_sym_PLUS_EQ] = ACTIONS(3171), - [anon_sym_DASH_EQ] = ACTIONS(3171), - [anon_sym_PIPE_EQ] = ACTIONS(3171), - [anon_sym_CARET_EQ] = ACTIONS(3171), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [sym_pseudo_compile_time_identifier] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [anon_sym_assert] = ACTIONS(3171), - [anon_sym_defer] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_DOLLARfor] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym_AT_LBRACK] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), + [sym_block_comment] = STATE(579), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LF] = ACTIONS(3150), + [anon_sym_CR] = ACTIONS(3150), + [anon_sym_CR_LF] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3150), + [anon_sym_as] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_EQ] = ACTIONS(3150), + [anon_sym___global] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PERCENT] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_EQ_EQ] = ACTIONS(3150), + [anon_sym_BANG_EQ] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_pub] = ACTIONS(3150), + [anon_sym_mut] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_QMARK] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3150), + [anon_sym_json_DOTdecode] = ACTIONS(3150), + [anon_sym_LBRACK2] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_LT_DASH] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3150), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3150), + [anon_sym_AMP_CARET] = ACTIONS(3150), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_PIPE_PIPE] = ACTIONS(3150), + [anon_sym_or] = ACTIONS(3150), + [sym_none] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_nil] = ACTIONS(3150), + [anon_sym_QMARK_DOT] = ACTIONS(3150), + [anon_sym_POUND_LBRACK] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_DOLLARif] = ACTIONS(3150), + [anon_sym_is] = ACTIONS(3150), + [anon_sym_BANGis] = ACTIONS(3150), + [anon_sym_in] = ACTIONS(3150), + [anon_sym_BANGin] = ACTIONS(3150), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_STAR_EQ] = ACTIONS(3150), + [anon_sym_SLASH_EQ] = ACTIONS(3150), + [anon_sym_PERCENT_EQ] = ACTIONS(3150), + [anon_sym_LT_LT_EQ] = ACTIONS(3150), + [anon_sym_GT_GT_EQ] = ACTIONS(3150), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3150), + [anon_sym_AMP_EQ] = ACTIONS(3150), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3150), + [anon_sym_PLUS_EQ] = ACTIONS(3150), + [anon_sym_DASH_EQ] = ACTIONS(3150), + [anon_sym_PIPE_EQ] = ACTIONS(3150), + [anon_sym_CARET_EQ] = ACTIONS(3150), + [anon_sym_COLON_EQ] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_rlock] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_sql] = ACTIONS(3150), + [sym_int_literal] = ACTIONS(3150), + [sym_float_literal] = ACTIONS(3150), + [sym_rune_literal] = ACTIONS(3150), + [sym_pseudo_compile_time_identifier] = ACTIONS(3150), + [anon_sym_shared] = ACTIONS(3150), + [anon_sym_map_LBRACK] = ACTIONS(3150), + [anon_sym_chan] = ACTIONS(3150), + [anon_sym_thread] = ACTIONS(3150), + [anon_sym_atomic] = ACTIONS(3150), + [anon_sym_assert] = ACTIONS(3150), + [anon_sym_defer] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_DOLLARfor] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_POUND] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym_AT_LBRACK] = ACTIONS(3150), + [sym___double_quote] = ACTIONS(3150), + [sym___single_quote] = ACTIONS(3150), + [sym___c_double_quote] = ACTIONS(3150), + [sym___c_single_quote] = ACTIONS(3150), + [sym___r_double_quote] = ACTIONS(3150), + [sym___r_single_quote] = ACTIONS(3150), }, [580] = { [sym_line_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_EQ] = ACTIONS(3175), - [anon_sym___global] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_pub] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_LT_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_GT_EQ] = ACTIONS(3175), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3175), - [anon_sym_AMP_EQ] = ACTIONS(3175), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3175), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_PIPE_EQ] = ACTIONS(3175), - [anon_sym_CARET_EQ] = ACTIONS(3175), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [sym_pseudo_compile_time_identifier] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [anon_sym_assert] = ACTIONS(3175), - [anon_sym_defer] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_DOLLARfor] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_POUND] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym_AT_LBRACK] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [sym_block_comment] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3154), + [anon_sym_LF] = ACTIONS(3154), + [anon_sym_CR] = ACTIONS(3154), + [anon_sym_CR_LF] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(3154), + [anon_sym___global] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_fn] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_pub] = ACTIONS(3154), + [anon_sym_mut] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3154), + [anon_sym_spawn] = ACTIONS(3154), + [anon_sym_json_DOTdecode] = ACTIONS(3154), + [anon_sym_LBRACK2] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3154), + [anon_sym_AMP_CARET] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_or] = ACTIONS(3154), + [sym_none] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nil] = ACTIONS(3154), + [anon_sym_QMARK_DOT] = ACTIONS(3154), + [anon_sym_POUND_LBRACK] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_DOLLARif] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3154), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_select] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_LT_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_GT_EQ] = ACTIONS(3154), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3154), + [anon_sym_AMP_EQ] = ACTIONS(3154), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_PIPE_EQ] = ACTIONS(3154), + [anon_sym_CARET_EQ] = ACTIONS(3154), + [anon_sym_COLON_EQ] = ACTIONS(3154), + [anon_sym_lock] = ACTIONS(3154), + [anon_sym_rlock] = ACTIONS(3154), + [anon_sym_unsafe] = ACTIONS(3154), + [anon_sym_sql] = ACTIONS(3154), + [sym_int_literal] = ACTIONS(3154), + [sym_float_literal] = ACTIONS(3154), + [sym_rune_literal] = ACTIONS(3154), + [sym_pseudo_compile_time_identifier] = ACTIONS(3154), + [anon_sym_shared] = ACTIONS(3154), + [anon_sym_map_LBRACK] = ACTIONS(3154), + [anon_sym_chan] = ACTIONS(3154), + [anon_sym_thread] = ACTIONS(3154), + [anon_sym_atomic] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_defer] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_DOLLARfor] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_POUND] = ACTIONS(3154), + [anon_sym_asm] = ACTIONS(3154), + [anon_sym_AT_LBRACK] = ACTIONS(3154), + [sym___double_quote] = ACTIONS(3154), + [sym___single_quote] = ACTIONS(3154), + [sym___c_double_quote] = ACTIONS(3154), + [sym___c_single_quote] = ACTIONS(3154), + [sym___r_double_quote] = ACTIONS(3154), + [sym___r_single_quote] = ACTIONS(3154), }, [581] = { [sym_line_comment] = STATE(581), - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(581), + [sym__expression] = STATE(2679), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [582] = { [sym_line_comment] = STATE(582), - [sym__expression] = STATE(2324), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(582), + [sym__expression] = STATE(2515), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [583] = { [sym_line_comment] = STATE(583), - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(583), + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [584] = { [sym_line_comment] = STATE(584), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3033), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3031), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(584), + [sym__expression] = STATE(2516), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [585] = { [sym_line_comment] = STATE(585), - [sym__expression] = STATE(2694), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(585), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [586] = { [sym_line_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_EQ] = ACTIONS(3179), - [anon_sym___global] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_pub] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_STAR_EQ] = ACTIONS(3179), - [anon_sym_SLASH_EQ] = ACTIONS(3179), - [anon_sym_PERCENT_EQ] = ACTIONS(3179), - [anon_sym_LT_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_GT_EQ] = ACTIONS(3179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3179), - [anon_sym_AMP_EQ] = ACTIONS(3179), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3179), - [anon_sym_PLUS_EQ] = ACTIONS(3179), - [anon_sym_DASH_EQ] = ACTIONS(3179), - [anon_sym_PIPE_EQ] = ACTIONS(3179), - [anon_sym_CARET_EQ] = ACTIONS(3179), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [sym_pseudo_compile_time_identifier] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_defer] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_DOLLARfor] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym_AT_LBRACK] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [sym_block_comment] = STATE(586), + [sym__expression] = STATE(2830), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [587] = { [sym_line_comment] = STATE(587), - [sym__expression] = STATE(2683), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(587), + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_CR] = ACTIONS(3158), + [anon_sym_CR_LF] = ACTIONS(3158), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_EQ] = ACTIONS(3158), + [anon_sym___global] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_fn] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3158), + [anon_sym_pub] = ACTIONS(3158), + [anon_sym_mut] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_go] = ACTIONS(3158), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(3158), + [anon_sym_LBRACK2] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_CARET] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [sym_none] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_nil] = ACTIONS(3158), + [anon_sym_QMARK_DOT] = ACTIONS(3158), + [anon_sym_POUND_LBRACK] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_DOLLARif] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_BANGis] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_BANGin] = ACTIONS(3158), + [anon_sym_match] = ACTIONS(3158), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_STAR_EQ] = ACTIONS(3158), + [anon_sym_SLASH_EQ] = ACTIONS(3158), + [anon_sym_PERCENT_EQ] = ACTIONS(3158), + [anon_sym_LT_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_GT_EQ] = ACTIONS(3158), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3158), + [anon_sym_AMP_EQ] = ACTIONS(3158), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3158), + [anon_sym_PLUS_EQ] = ACTIONS(3158), + [anon_sym_DASH_EQ] = ACTIONS(3158), + [anon_sym_PIPE_EQ] = ACTIONS(3158), + [anon_sym_CARET_EQ] = ACTIONS(3158), + [anon_sym_COLON_EQ] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3158), + [anon_sym_rlock] = ACTIONS(3158), + [anon_sym_unsafe] = ACTIONS(3158), + [anon_sym_sql] = ACTIONS(3158), + [sym_int_literal] = ACTIONS(3158), + [sym_float_literal] = ACTIONS(3158), + [sym_rune_literal] = ACTIONS(3158), + [sym_pseudo_compile_time_identifier] = ACTIONS(3158), + [anon_sym_shared] = ACTIONS(3158), + [anon_sym_map_LBRACK] = ACTIONS(3158), + [anon_sym_chan] = ACTIONS(3158), + [anon_sym_thread] = ACTIONS(3158), + [anon_sym_atomic] = ACTIONS(3158), + [anon_sym_assert] = ACTIONS(3158), + [anon_sym_defer] = ACTIONS(3158), + [anon_sym_goto] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_DOLLARfor] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3158), + [anon_sym_asm] = ACTIONS(3158), + [anon_sym_AT_LBRACK] = ACTIONS(3158), + [sym___double_quote] = ACTIONS(3158), + [sym___single_quote] = ACTIONS(3158), + [sym___c_double_quote] = ACTIONS(3158), + [sym___c_single_quote] = ACTIONS(3158), + [sym___r_double_quote] = ACTIONS(3158), + [sym___r_single_quote] = ACTIONS(3158), }, [588] = { [sym_line_comment] = STATE(588), - [sym__expression] = STATE(1148), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), + [sym_block_comment] = STATE(588), + [ts_builtin_sym_end] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3162), + [anon_sym_LF] = ACTIONS(3162), + [anon_sym_CR] = ACTIONS(3162), + [anon_sym_CR_LF] = ACTIONS(3162), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_EQ] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_union] = ACTIONS(3162), + [anon_sym_pub] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3162), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_STAR_EQ] = ACTIONS(3162), + [anon_sym_SLASH_EQ] = ACTIONS(3162), + [anon_sym_PERCENT_EQ] = ACTIONS(3162), + [anon_sym_LT_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3162), + [anon_sym_AMP_EQ] = ACTIONS(3162), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3162), + [anon_sym_PLUS_EQ] = ACTIONS(3162), + [anon_sym_DASH_EQ] = ACTIONS(3162), + [anon_sym_PIPE_EQ] = ACTIONS(3162), + [anon_sym_CARET_EQ] = ACTIONS(3162), + [anon_sym_COLON_EQ] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + [sym_rune_literal] = ACTIONS(3162), + [sym_pseudo_compile_time_identifier] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3162), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [anon_sym_assert] = ACTIONS(3162), + [anon_sym_defer] = ACTIONS(3162), + [anon_sym_goto] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_DOLLARfor] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3162), + [anon_sym_AT_LBRACK] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3162), + [sym___single_quote] = ACTIONS(3162), + [sym___c_double_quote] = ACTIONS(3162), + [sym___c_single_quote] = ACTIONS(3162), + [sym___r_double_quote] = ACTIONS(3162), + [sym___r_single_quote] = ACTIONS(3162), + }, + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), + [sym__expression] = STATE(1147), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -98392,8 +92337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -98419,11 +92364,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -98431,74 +92376,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [589] = { - [sym_line_comment] = STATE(589), - [sym__expression] = STATE(1149), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), + [sym__expression] = STATE(2318), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4151), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -98507,8 +92685,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -98534,11 +92712,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -98546,74 +92724,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [590] = { - [sym_line_comment] = STATE(590), - [sym__expression] = STATE(1142), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_STAR_EQ] = ACTIONS(3020), + [anon_sym_SLASH_EQ] = ACTIONS(3020), + [anon_sym_PERCENT_EQ] = ACTIONS(3020), + [anon_sym_LT_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3020), + [anon_sym_AMP_EQ] = ACTIONS(3020), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3020), + [anon_sym_PLUS_EQ] = ACTIONS(3020), + [anon_sym_DASH_EQ] = ACTIONS(3020), + [anon_sym_PIPE_EQ] = ACTIONS(3020), + [anon_sym_CARET_EQ] = ACTIONS(3020), + [anon_sym_COLON_EQ] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), + }, + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3018), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3019), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [sym__expression] = STATE(2508), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [sym__expression] = STATE(2492), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [sym__expression] = STATE(2600), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), + }, + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), + [sym__expression] = STATE(2616), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -98622,8 +94077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -98649,11 +94104,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -98661,189 +94116,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym__expression] = STATE(2789), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [592] = { - [sym_line_comment] = STATE(592), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [sym__expression] = STATE(1141), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -98852,8 +94193,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -98879,11 +94220,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -98891,2853 +94232,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [593] = { - [sym_line_comment] = STATE(593), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3001), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2995), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [594] = { - [sym_line_comment] = STATE(594), - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [595] = { - [sym_line_comment] = STATE(595), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [596] = { - [sym_line_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(3183), - [anon_sym___global] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_pub] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_STAR_EQ] = ACTIONS(3183), - [anon_sym_SLASH_EQ] = ACTIONS(3183), - [anon_sym_PERCENT_EQ] = ACTIONS(3183), - [anon_sym_LT_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_GT_EQ] = ACTIONS(3183), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3183), - [anon_sym_AMP_EQ] = ACTIONS(3183), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3183), - [anon_sym_PLUS_EQ] = ACTIONS(3183), - [anon_sym_DASH_EQ] = ACTIONS(3183), - [anon_sym_PIPE_EQ] = ACTIONS(3183), - [anon_sym_CARET_EQ] = ACTIONS(3183), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), - }, - [597] = { - [sym_line_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_LT_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_AMP_EQ] = ACTIONS(3187), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_PIPE_EQ] = ACTIONS(3187), - [anon_sym_CARET_EQ] = ACTIONS(3187), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), - }, - [598] = { - [sym_line_comment] = STATE(598), - [sym__expression] = STATE(273), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), - }, - [599] = { - [sym_line_comment] = STATE(599), - [sym__expression] = STATE(1797), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [600] = { - [sym_line_comment] = STATE(600), - [sym__expression] = STATE(1809), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), - }, - [601] = { - [sym_line_comment] = STATE(601), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [602] = { - [sym_line_comment] = STATE(602), - [sym__expression] = STATE(2776), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [603] = { - [sym_line_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_LT_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_AMP_EQ] = ACTIONS(3195), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3195), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_PIPE_EQ] = ACTIONS(3195), - [anon_sym_CARET_EQ] = ACTIONS(3195), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [604] = { - [sym_line_comment] = STATE(604), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [605] = { - [sym_line_comment] = STATE(605), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [606] = { [sym_line_comment] = STATE(606), - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2025), - [sym__expression_with_blocks] = STATE(2025), - [sym_inc_expression] = STATE(2060), - [sym_dec_expression] = STATE(2060), - [sym_or_block_expression] = STATE(2060), - [sym_option_propagation_expression] = STATE(2060), - [sym_result_propagation_expression] = STATE(2060), - [sym_anon_struct_value_expression] = STATE(2026), - [sym_go_expression] = STATE(2060), - [sym_spawn_expression] = STATE(2060), - [sym_parenthesized_expression] = STATE(2060), - [sym_call_expression] = STATE(2060), - [sym_type_initializer] = STATE(2026), - [sym_function_literal] = STATE(2060), - [sym_reference_expression] = STATE(1978), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2060), - [sym_receive_expression] = STATE(2060), - [sym_binary_expression] = STATE(2060), - [sym_as_type_cast_expression] = STATE(2060), - [sym__max_group] = STATE(2060), - [sym_literal] = STATE(2055), - [sym_map_init_expression] = STATE(2026), - [sym_array_creation] = STATE(2060), - [sym_fixed_array_creation] = STATE(2060), - [sym_selector_expression] = STATE(2060), - [sym_index_expression] = STATE(2060), - [sym_slice_expression] = STATE(2060), - [sym_if_expression] = STATE(2026), - [sym_compile_time_if_expression] = STATE(2026), - [sym_is_expression] = STATE(2060), - [sym_not_is_expression] = STATE(2060), - [sym_in_expression] = STATE(2060), - [sym_not_in_expression] = STATE(2060), - [sym_enum_fetch] = STATE(2060), - [sym_match_expression] = STATE(2026), - [sym_select_expression] = STATE(2026), - [sym_lock_expression] = STATE(2026), - [sym_unsafe_expression] = STATE(2026), - [sym_sql_expression] = STATE(2026), - [sym_c_string_literal] = STATE(2054), - [sym_raw_string_literal] = STATE(2054), - [sym_interpreted_string_literal] = STATE(2054), - [sym_mutability_modifiers] = STATE(818), - [sym_plain_type] = STATE(4267), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(709), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_PLUS] = ACTIONS(713), - [anon_sym_DASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(719), - [anon_sym_go] = ACTIONS(721), - [anon_sym_spawn] = ACTIONS(723), - [anon_sym_json_DOTdecode] = ACTIONS(725), - [anon_sym_LBRACK2] = ACTIONS(727), - [anon_sym_TILDE] = ACTIONS(713), - [anon_sym_CARET] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(729), - [anon_sym_LT_DASH] = ACTIONS(731), - [sym_none] = ACTIONS(733), - [sym_true] = ACTIONS(733), - [sym_false] = ACTIONS(733), - [sym_nil] = ACTIONS(733), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2995), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2999), - [anon_sym_rlock] = ACTIONS(2999), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3003), - [sym_int_literal] = ACTIONS(733), - [sym_float_literal] = ACTIONS(751), - [sym_rune_literal] = ACTIONS(751), - [sym_pseudo_compile_time_identifier] = ACTIONS(753), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(755), - [sym___single_quote] = ACTIONS(757), - [sym___c_double_quote] = ACTIONS(759), - [sym___c_single_quote] = ACTIONS(761), - [sym___r_double_quote] = ACTIONS(763), - [sym___r_single_quote] = ACTIONS(765), + [sym_block_comment] = STATE(606), + [sym__expression] = STATE(2677), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [607] = { [sym_line_comment] = STATE(607), - [sym__expression] = STATE(2747), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(607), + [sym__expression] = STATE(2633), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [608] = { [sym_line_comment] = STATE(608), - [sym__expression] = STATE(2653), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(608), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [609] = { [sym_line_comment] = STATE(609), - [sym__expression] = STATE(2701), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(609), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [610] = { [sym_line_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_STAR_EQ] = ACTIONS(3199), - [anon_sym_SLASH_EQ] = ACTIONS(3199), - [anon_sym_PERCENT_EQ] = ACTIONS(3199), - [anon_sym_LT_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_AMP_EQ] = ACTIONS(3199), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3199), - [anon_sym_PLUS_EQ] = ACTIONS(3199), - [anon_sym_DASH_EQ] = ACTIONS(3199), - [anon_sym_PIPE_EQ] = ACTIONS(3199), - [anon_sym_CARET_EQ] = ACTIONS(3199), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [sym_block_comment] = STATE(610), + [sym__expression] = STATE(2853), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [611] = { [sym_line_comment] = STATE(611), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2974), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2972), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LF] = ACTIONS(3166), + [anon_sym_CR] = ACTIONS(3166), + [anon_sym_CR_LF] = ACTIONS(3166), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_EQ] = ACTIONS(3166), + [anon_sym___global] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3166), + [anon_sym_union] = ACTIONS(3166), + [anon_sym_pub] = ACTIONS(3166), + [anon_sym_mut] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_QMARK] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3166), + [anon_sym_json_DOTdecode] = ACTIONS(3166), + [anon_sym_LBRACK2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_CARET] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT_DASH] = ACTIONS(3166), + [anon_sym_LT_LT] = ACTIONS(3166), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3166), + [anon_sym_AMP_CARET] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_or] = ACTIONS(3166), + [sym_none] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_nil] = ACTIONS(3166), + [anon_sym_QMARK_DOT] = ACTIONS(3166), + [anon_sym_POUND_LBRACK] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_DOLLARif] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3166), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_match] = ACTIONS(3166), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_LT_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_GT_EQ] = ACTIONS(3166), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3166), + [anon_sym_AMP_EQ] = ACTIONS(3166), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_PIPE_EQ] = ACTIONS(3166), + [anon_sym_CARET_EQ] = ACTIONS(3166), + [anon_sym_COLON_EQ] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3166), + [anon_sym_rlock] = ACTIONS(3166), + [anon_sym_unsafe] = ACTIONS(3166), + [anon_sym_sql] = ACTIONS(3166), + [sym_int_literal] = ACTIONS(3166), + [sym_float_literal] = ACTIONS(3166), + [sym_rune_literal] = ACTIONS(3166), + [sym_pseudo_compile_time_identifier] = ACTIONS(3166), + [anon_sym_shared] = ACTIONS(3166), + [anon_sym_map_LBRACK] = ACTIONS(3166), + [anon_sym_chan] = ACTIONS(3166), + [anon_sym_thread] = ACTIONS(3166), + [anon_sym_atomic] = ACTIONS(3166), + [anon_sym_assert] = ACTIONS(3166), + [anon_sym_defer] = ACTIONS(3166), + [anon_sym_goto] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_DOLLARfor] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_POUND] = ACTIONS(3166), + [anon_sym_asm] = ACTIONS(3166), + [anon_sym_AT_LBRACK] = ACTIONS(3166), + [sym___double_quote] = ACTIONS(3166), + [sym___single_quote] = ACTIONS(3166), + [sym___c_double_quote] = ACTIONS(3166), + [sym___c_single_quote] = ACTIONS(3166), + [sym___r_double_quote] = ACTIONS(3166), + [sym___r_single_quote] = ACTIONS(3166), }, [612] = { [sym_line_comment] = STATE(612), - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(612), + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [613] = { [sym_line_comment] = STATE(613), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4419), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(613), + [sym__expression] = STATE(2773), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [614] = { [sym_line_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_EQ] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_STAR_EQ] = ACTIONS(3203), - [anon_sym_SLASH_EQ] = ACTIONS(3203), - [anon_sym_PERCENT_EQ] = ACTIONS(3203), - [anon_sym_LT_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_AMP_EQ] = ACTIONS(3203), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3203), - [anon_sym_PLUS_EQ] = ACTIONS(3203), - [anon_sym_DASH_EQ] = ACTIONS(3203), - [anon_sym_PIPE_EQ] = ACTIONS(3203), - [anon_sym_CARET_EQ] = ACTIONS(3203), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [sym_block_comment] = STATE(614), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [615] = { [sym_line_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_EQ] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_STAR_EQ] = ACTIONS(3207), - [anon_sym_SLASH_EQ] = ACTIONS(3207), - [anon_sym_PERCENT_EQ] = ACTIONS(3207), - [anon_sym_LT_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_AMP_EQ] = ACTIONS(3207), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3207), - [anon_sym_PLUS_EQ] = ACTIONS(3207), - [anon_sym_DASH_EQ] = ACTIONS(3207), - [anon_sym_PIPE_EQ] = ACTIONS(3207), - [anon_sym_CARET_EQ] = ACTIONS(3207), - [anon_sym_COLON_EQ] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [anon_sym_assert] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_DOLLARfor] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym_AT_LBRACK] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), + [sym_block_comment] = STATE(615), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4150), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [616] = { [sym_line_comment] = STATE(616), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [617] = { - [sym_line_comment] = STATE(617), - [sym__expression] = STATE(994), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(616), + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -101745,1715 +95487,2774 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2996), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2997), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [618] = { [sym_line_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym___global] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_pub] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_STAR_EQ] = ACTIONS(3211), - [anon_sym_SLASH_EQ] = ACTIONS(3211), - [anon_sym_PERCENT_EQ] = ACTIONS(3211), - [anon_sym_LT_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_GT_EQ] = ACTIONS(3211), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3211), - [anon_sym_AMP_EQ] = ACTIONS(3211), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3211), - [anon_sym_PLUS_EQ] = ACTIONS(3211), - [anon_sym_DASH_EQ] = ACTIONS(3211), - [anon_sym_PIPE_EQ] = ACTIONS(3211), - [anon_sym_CARET_EQ] = ACTIONS(3211), - [anon_sym_COLON_EQ] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [anon_sym_assert] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_DOLLARfor] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym_AT_LBRACK] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), + [sym_block_comment] = STATE(618), + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_EQ] = ACTIONS(3170), + [anon_sym___global] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_pub] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_STAR_EQ] = ACTIONS(3170), + [anon_sym_SLASH_EQ] = ACTIONS(3170), + [anon_sym_PERCENT_EQ] = ACTIONS(3170), + [anon_sym_LT_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_GT_EQ] = ACTIONS(3170), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3170), + [anon_sym_AMP_EQ] = ACTIONS(3170), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3170), + [anon_sym_PLUS_EQ] = ACTIONS(3170), + [anon_sym_DASH_EQ] = ACTIONS(3170), + [anon_sym_PIPE_EQ] = ACTIONS(3170), + [anon_sym_CARET_EQ] = ACTIONS(3170), + [anon_sym_COLON_EQ] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [sym_pseudo_compile_time_identifier] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [anon_sym_assert] = ACTIONS(3170), + [anon_sym_defer] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_DOLLARfor] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym_AT_LBRACK] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, [619] = { [sym_line_comment] = STATE(619), - [sym__expression] = STATE(2673), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(619), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [620] = { [sym_line_comment] = STATE(620), - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), + [sym_block_comment] = STATE(620), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_EQ] = ACTIONS(3174), + [anon_sym___global] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_pub] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_STAR_EQ] = ACTIONS(3174), + [anon_sym_SLASH_EQ] = ACTIONS(3174), + [anon_sym_PERCENT_EQ] = ACTIONS(3174), + [anon_sym_LT_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_GT_EQ] = ACTIONS(3174), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3174), + [anon_sym_AMP_EQ] = ACTIONS(3174), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3174), + [anon_sym_PLUS_EQ] = ACTIONS(3174), + [anon_sym_DASH_EQ] = ACTIONS(3174), + [anon_sym_PIPE_EQ] = ACTIONS(3174), + [anon_sym_CARET_EQ] = ACTIONS(3174), + [anon_sym_COLON_EQ] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [sym_pseudo_compile_time_identifier] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_defer] = ACTIONS(3174), + [anon_sym_goto] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_DOLLARfor] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_asm] = ACTIONS(3174), + [anon_sym_AT_LBRACK] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), }, [621] = { [sym_line_comment] = STATE(621), - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(621), + [sym__expression] = STATE(2756), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [622] = { [sym_line_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym___global] = ACTIONS(3215), - [anon_sym_type] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_pub] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_STAR_EQ] = ACTIONS(3215), - [anon_sym_SLASH_EQ] = ACTIONS(3215), - [anon_sym_PERCENT_EQ] = ACTIONS(3215), - [anon_sym_LT_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_GT_EQ] = ACTIONS(3215), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3215), - [anon_sym_AMP_EQ] = ACTIONS(3215), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3215), - [anon_sym_DASH_EQ] = ACTIONS(3215), - [anon_sym_PIPE_EQ] = ACTIONS(3215), - [anon_sym_CARET_EQ] = ACTIONS(3215), - [anon_sym_COLON_EQ] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [anon_sym_assert] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_DOLLARfor] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym_AT_LBRACK] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [sym_block_comment] = STATE(622), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_EQ] = ACTIONS(3178), + [anon_sym___global] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_pub] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_STAR_EQ] = ACTIONS(3178), + [anon_sym_SLASH_EQ] = ACTIONS(3178), + [anon_sym_PERCENT_EQ] = ACTIONS(3178), + [anon_sym_LT_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_GT_EQ] = ACTIONS(3178), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3178), + [anon_sym_AMP_EQ] = ACTIONS(3178), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3178), + [anon_sym_PLUS_EQ] = ACTIONS(3178), + [anon_sym_DASH_EQ] = ACTIONS(3178), + [anon_sym_PIPE_EQ] = ACTIONS(3178), + [anon_sym_CARET_EQ] = ACTIONS(3178), + [anon_sym_COLON_EQ] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [sym_pseudo_compile_time_identifier] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_defer] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_DOLLARfor] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym_AT_LBRACK] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), }, [623] = { [sym_line_comment] = STATE(623), - [sym__expression] = STATE(1660), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), + [sym_block_comment] = STATE(623), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym___global] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_pub] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_STAR_EQ] = ACTIONS(3182), + [anon_sym_SLASH_EQ] = ACTIONS(3182), + [anon_sym_PERCENT_EQ] = ACTIONS(3182), + [anon_sym_LT_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_GT_EQ] = ACTIONS(3182), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3182), + [anon_sym_AMP_EQ] = ACTIONS(3182), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3182), + [anon_sym_PLUS_EQ] = ACTIONS(3182), + [anon_sym_DASH_EQ] = ACTIONS(3182), + [anon_sym_PIPE_EQ] = ACTIONS(3182), + [anon_sym_CARET_EQ] = ACTIONS(3182), + [anon_sym_COLON_EQ] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [sym_pseudo_compile_time_identifier] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [anon_sym_assert] = ACTIONS(3182), + [anon_sym_defer] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_DOLLARfor] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym_AT_LBRACK] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), }, [624] = { [sym_line_comment] = STATE(624), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2961), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3018), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(624), + [sym__expression] = STATE(2500), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [625] = { [sym_line_comment] = STATE(625), - [sym__expression] = STATE(1007), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(625), + [sym__expression] = STATE(2479), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [626] = { [sym_line_comment] = STATE(626), - [sym__expression] = STATE(2765), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [sym_block_comment] = STATE(626), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(3186), + [anon_sym___global] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_pub] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_LT_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3186), + [anon_sym_AMP_EQ] = ACTIONS(3186), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_PIPE_EQ] = ACTIONS(3186), + [anon_sym_CARET_EQ] = ACTIONS(3186), + [anon_sym_COLON_EQ] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [sym_pseudo_compile_time_identifier] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [anon_sym_assert] = ACTIONS(3186), + [anon_sym_defer] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_DOLLARfor] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_asm] = ACTIONS(3186), + [anon_sym_AT_LBRACK] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), }, [627] = { [sym_line_comment] = STATE(627), - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4406), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(627), + [sym__expression] = STATE(2873), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [628] = { [sym_line_comment] = STATE(628), - [sym__expression] = STATE(2674), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(628), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_EQ] = ACTIONS(3190), + [anon_sym___global] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_pub] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_STAR_EQ] = ACTIONS(3190), + [anon_sym_SLASH_EQ] = ACTIONS(3190), + [anon_sym_PERCENT_EQ] = ACTIONS(3190), + [anon_sym_LT_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_GT_EQ] = ACTIONS(3190), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3190), + [anon_sym_AMP_EQ] = ACTIONS(3190), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3190), + [anon_sym_PLUS_EQ] = ACTIONS(3190), + [anon_sym_DASH_EQ] = ACTIONS(3190), + [anon_sym_PIPE_EQ] = ACTIONS(3190), + [anon_sym_CARET_EQ] = ACTIONS(3190), + [anon_sym_COLON_EQ] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [sym_pseudo_compile_time_identifier] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [anon_sym_assert] = ACTIONS(3190), + [anon_sym_defer] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_DOLLARfor] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_asm] = ACTIONS(3190), + [anon_sym_AT_LBRACK] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), }, [629] = { [sym_line_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3219), - [anon_sym___global] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_pub] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_STAR_EQ] = ACTIONS(3219), - [anon_sym_SLASH_EQ] = ACTIONS(3219), - [anon_sym_PERCENT_EQ] = ACTIONS(3219), - [anon_sym_LT_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_GT_EQ] = ACTIONS(3219), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3219), - [anon_sym_AMP_EQ] = ACTIONS(3219), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_PIPE_EQ] = ACTIONS(3219), - [anon_sym_CARET_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_DOLLARfor] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym_AT_LBRACK] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [sym_block_comment] = STATE(629), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [630] = { [sym_line_comment] = STATE(630), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(630), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3028), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3029), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [631] = { [sym_line_comment] = STATE(631), - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4179), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(631), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [sym__expression] = STATE(2320), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4223), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [632] = { - [sym_line_comment] = STATE(632), - [sym__expression] = STATE(2907), - [sym__expression_without_blocks] = STATE(2178), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [sym__expression] = STATE(2681), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [sym__expression] = STATE(2885), + [sym__expression_without_blocks] = STATE(2179), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1197), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -103467,23 +98268,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -103491,9314 +98292,9047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [633] = { - [sym_line_comment] = STATE(633), - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [634] = { - [sym_line_comment] = STATE(634), - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), - }, - [635] = { - [sym_line_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3223), - [anon_sym___global] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_pub] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_STAR_EQ] = ACTIONS(3223), - [anon_sym_SLASH_EQ] = ACTIONS(3223), - [anon_sym_PERCENT_EQ] = ACTIONS(3223), - [anon_sym_LT_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_GT_EQ] = ACTIONS(3223), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3223), - [anon_sym_AMP_EQ] = ACTIONS(3223), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3223), - [anon_sym_PLUS_EQ] = ACTIONS(3223), - [anon_sym_DASH_EQ] = ACTIONS(3223), - [anon_sym_PIPE_EQ] = ACTIONS(3223), - [anon_sym_CARET_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_defer] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_DOLLARfor] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym_AT_LBRACK] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), - }, - [636] = { - [sym_line_comment] = STATE(636), - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [637] = { - [sym_line_comment] = STATE(637), - [sym__expression] = STATE(273), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4290), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), - }, - [638] = { - [sym_line_comment] = STATE(638), - [sym__expression] = STATE(2397), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [639] = { - [sym_line_comment] = STATE(639), - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4187), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, - [640] = { - [sym_line_comment] = STATE(640), - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4253), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), - }, [641] = { [sym_line_comment] = STATE(641), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(641), + [sym__expression] = STATE(1000), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [642] = { [sym_line_comment] = STATE(642), - [sym__expression] = STATE(1161), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(642), + [sym__expression] = STATE(2334), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [643] = { [sym_line_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_EQ] = ACTIONS(3227), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_pub] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_STAR_EQ] = ACTIONS(3227), - [anon_sym_SLASH_EQ] = ACTIONS(3227), - [anon_sym_PERCENT_EQ] = ACTIONS(3227), - [anon_sym_LT_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_GT_EQ] = ACTIONS(3227), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3227), - [anon_sym_AMP_EQ] = ACTIONS(3227), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3227), - [anon_sym_DASH_EQ] = ACTIONS(3227), - [anon_sym_PIPE_EQ] = ACTIONS(3227), - [anon_sym_CARET_EQ] = ACTIONS(3227), - [anon_sym_COLON_EQ] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3227), - [sym_rune_literal] = ACTIONS(3227), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3227), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [anon_sym_assert] = ACTIONS(3227), - [anon_sym_defer] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_DOLLARfor] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_POUND] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym_AT_LBRACK] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3227), - [sym___single_quote] = ACTIONS(3227), - [sym___c_double_quote] = ACTIONS(3227), - [sym___c_single_quote] = ACTIONS(3227), - [sym___r_double_quote] = ACTIONS(3227), - [sym___r_single_quote] = ACTIONS(3227), + [sym_block_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_EQ] = ACTIONS(3194), + [anon_sym___global] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_pub] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_STAR_EQ] = ACTIONS(3194), + [anon_sym_SLASH_EQ] = ACTIONS(3194), + [anon_sym_PERCENT_EQ] = ACTIONS(3194), + [anon_sym_LT_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_GT_EQ] = ACTIONS(3194), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3194), + [anon_sym_AMP_EQ] = ACTIONS(3194), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3194), + [anon_sym_PLUS_EQ] = ACTIONS(3194), + [anon_sym_DASH_EQ] = ACTIONS(3194), + [anon_sym_PIPE_EQ] = ACTIONS(3194), + [anon_sym_CARET_EQ] = ACTIONS(3194), + [anon_sym_COLON_EQ] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [sym_pseudo_compile_time_identifier] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [anon_sym_assert] = ACTIONS(3194), + [anon_sym_defer] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_DOLLARfor] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_asm] = ACTIONS(3194), + [anon_sym_AT_LBRACK] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), }, [644] = { [sym_line_comment] = STATE(644), - [sym__expression] = STATE(2883), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(644), + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [645] = { [sym_line_comment] = STATE(645), - [sym__expression] = STATE(2700), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_LT_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_AMP_EQ] = ACTIONS(3198), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_PIPE_EQ] = ACTIONS(3198), + [anon_sym_CARET_EQ] = ACTIONS(3198), + [anon_sym_COLON_EQ] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [sym_pseudo_compile_time_identifier] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), }, [646] = { [sym_line_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym___global] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_pub] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_STAR_EQ] = ACTIONS(3231), - [anon_sym_SLASH_EQ] = ACTIONS(3231), - [anon_sym_PERCENT_EQ] = ACTIONS(3231), - [anon_sym_LT_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_GT_EQ] = ACTIONS(3231), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3231), - [anon_sym_AMP_EQ] = ACTIONS(3231), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3231), - [anon_sym_PLUS_EQ] = ACTIONS(3231), - [anon_sym_DASH_EQ] = ACTIONS(3231), - [anon_sym_PIPE_EQ] = ACTIONS(3231), - [anon_sym_CARET_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_DOLLARfor] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym_AT_LBRACK] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), + [sym_block_comment] = STATE(646), + [sym__expression] = STATE(2503), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [647] = { [sym_line_comment] = STATE(647), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2979), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2973), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(647), + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3666), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [648] = { [sym_line_comment] = STATE(648), - [sym__expression] = STATE(2672), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(648), + [sym__expression] = STATE(2328), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [649] = { [sym_line_comment] = STATE(649), - [sym__expression] = STATE(258), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym___global] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_pub] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_STAR_EQ] = ACTIONS(3202), + [anon_sym_SLASH_EQ] = ACTIONS(3202), + [anon_sym_PERCENT_EQ] = ACTIONS(3202), + [anon_sym_LT_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_AMP_EQ] = ACTIONS(3202), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3202), + [anon_sym_PLUS_EQ] = ACTIONS(3202), + [anon_sym_DASH_EQ] = ACTIONS(3202), + [anon_sym_PIPE_EQ] = ACTIONS(3202), + [anon_sym_CARET_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [sym_pseudo_compile_time_identifier] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_defer] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_DOLLARfor] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym_AT_LBRACK] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), }, [650] = { [sym_line_comment] = STATE(650), - [sym__expression] = STATE(2886), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(650), + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [651] = { [sym_line_comment] = STATE(651), - [sym__expression] = STATE(2675), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_EQ] = ACTIONS(3206), + [anon_sym___global] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_pub] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_STAR_EQ] = ACTIONS(3206), + [anon_sym_SLASH_EQ] = ACTIONS(3206), + [anon_sym_PERCENT_EQ] = ACTIONS(3206), + [anon_sym_LT_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_GT_EQ] = ACTIONS(3206), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3206), + [anon_sym_AMP_EQ] = ACTIONS(3206), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3206), + [anon_sym_PLUS_EQ] = ACTIONS(3206), + [anon_sym_DASH_EQ] = ACTIONS(3206), + [anon_sym_PIPE_EQ] = ACTIONS(3206), + [anon_sym_CARET_EQ] = ACTIONS(3206), + [anon_sym_COLON_EQ] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [sym_pseudo_compile_time_identifier] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_defer] = ACTIONS(3206), + [anon_sym_goto] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_DOLLARfor] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3206), + [anon_sym_asm] = ACTIONS(3206), + [anon_sym_AT_LBRACK] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), }, [652] = { [sym_line_comment] = STATE(652), - [sym__expression] = STATE(2890), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_EQ] = ACTIONS(3210), + [anon_sym___global] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_pub] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_STAR_EQ] = ACTIONS(3210), + [anon_sym_SLASH_EQ] = ACTIONS(3210), + [anon_sym_PERCENT_EQ] = ACTIONS(3210), + [anon_sym_LT_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_GT_EQ] = ACTIONS(3210), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3210), + [anon_sym_AMP_EQ] = ACTIONS(3210), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3210), + [anon_sym_PLUS_EQ] = ACTIONS(3210), + [anon_sym_DASH_EQ] = ACTIONS(3210), + [anon_sym_PIPE_EQ] = ACTIONS(3210), + [anon_sym_CARET_EQ] = ACTIONS(3210), + [anon_sym_COLON_EQ] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [sym_pseudo_compile_time_identifier] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [anon_sym_assert] = ACTIONS(3210), + [anon_sym_defer] = ACTIONS(3210), + [anon_sym_goto] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_DOLLARfor] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_asm] = ACTIONS(3210), + [anon_sym_AT_LBRACK] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), }, [653] = { [sym_line_comment] = STATE(653), - [sym__expression] = STATE(273), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4181), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_EQ] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_STAR_EQ] = ACTIONS(3214), + [anon_sym_SLASH_EQ] = ACTIONS(3214), + [anon_sym_PERCENT_EQ] = ACTIONS(3214), + [anon_sym_LT_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_GT_EQ] = ACTIONS(3214), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3214), + [anon_sym_AMP_EQ] = ACTIONS(3214), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3214), + [anon_sym_PLUS_EQ] = ACTIONS(3214), + [anon_sym_DASH_EQ] = ACTIONS(3214), + [anon_sym_PIPE_EQ] = ACTIONS(3214), + [anon_sym_CARET_EQ] = ACTIONS(3214), + [anon_sym_COLON_EQ] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [sym_pseudo_compile_time_identifier] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), }, [654] = { [sym_line_comment] = STATE(654), - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym___global] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3218), + [anon_sym_pub] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_STAR_EQ] = ACTIONS(3218), + [anon_sym_SLASH_EQ] = ACTIONS(3218), + [anon_sym_PERCENT_EQ] = ACTIONS(3218), + [anon_sym_LT_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_GT_EQ] = ACTIONS(3218), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3218), + [anon_sym_AMP_EQ] = ACTIONS(3218), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3218), + [anon_sym_PLUS_EQ] = ACTIONS(3218), + [anon_sym_DASH_EQ] = ACTIONS(3218), + [anon_sym_PIPE_EQ] = ACTIONS(3218), + [anon_sym_CARET_EQ] = ACTIONS(3218), + [anon_sym_COLON_EQ] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [anon_sym_assert] = ACTIONS(3218), + [anon_sym_defer] = ACTIONS(3218), + [anon_sym_goto] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_DOLLARfor] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_asm] = ACTIONS(3218), + [anon_sym_AT_LBRACK] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), }, [655] = { [sym_line_comment] = STATE(655), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2985), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2977), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(655), + [sym__expression] = STATE(2177), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [656] = { [sym_line_comment] = STATE(656), - [sym__expression] = STATE(2756), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(656), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [657] = { [sym_line_comment] = STATE(657), - [sym__expression] = STATE(2668), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(657), + [sym__expression] = STATE(2326), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [658] = { [sym_line_comment] = STATE(658), - [sym__expression] = STATE(217), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(658), + [sym__expression] = STATE(999), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [659] = { [sym_line_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_pub] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_STAR_EQ] = ACTIONS(3235), - [anon_sym_SLASH_EQ] = ACTIONS(3235), - [anon_sym_PERCENT_EQ] = ACTIONS(3235), - [anon_sym_LT_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_GT_EQ] = ACTIONS(3235), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3235), - [anon_sym_AMP_EQ] = ACTIONS(3235), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3235), - [anon_sym_PLUS_EQ] = ACTIONS(3235), - [anon_sym_DASH_EQ] = ACTIONS(3235), - [anon_sym_PIPE_EQ] = ACTIONS(3235), - [anon_sym_CARET_EQ] = ACTIONS(3235), - [anon_sym_COLON_EQ] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_DOLLARfor] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_POUND] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym_AT_LBRACK] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [sym_block_comment] = STATE(659), + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [660] = { [sym_line_comment] = STATE(660), - [sym__expression] = STATE(244), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(660), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3027), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3023), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [661] = { [sym_line_comment] = STATE(661), - [sym__expression] = STATE(273), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4161), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(661), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [662] = { [sym_line_comment] = STATE(662), - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(662), + [sym__expression] = STATE(2499), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [663] = { [sym_line_comment] = STATE(663), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3014), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3027), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(663), + [sym__expression] = STATE(2698), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [664] = { [sym_line_comment] = STATE(664), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(3030), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(3023), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_EQ] = ACTIONS(3222), + [anon_sym___global] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_union] = ACTIONS(3222), + [anon_sym_pub] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_LT_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_GT_EQ] = ACTIONS(3222), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3222), + [anon_sym_AMP_EQ] = ACTIONS(3222), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_PIPE_EQ] = ACTIONS(3222), + [anon_sym_CARET_EQ] = ACTIONS(3222), + [anon_sym_COLON_EQ] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [sym_pseudo_compile_time_identifier] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [anon_sym_assert] = ACTIONS(3222), + [anon_sym_defer] = ACTIONS(3222), + [anon_sym_goto] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_DOLLARfor] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3222), + [anon_sym_AT_LBRACK] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), }, [665] = { [sym_line_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_STAR_EQ] = ACTIONS(3239), - [anon_sym_SLASH_EQ] = ACTIONS(3239), - [anon_sym_PERCENT_EQ] = ACTIONS(3239), - [anon_sym_LT_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_AMP_EQ] = ACTIONS(3239), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3239), - [anon_sym_PLUS_EQ] = ACTIONS(3239), - [anon_sym_DASH_EQ] = ACTIONS(3239), - [anon_sym_PIPE_EQ] = ACTIONS(3239), - [anon_sym_CARET_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), + [sym_block_comment] = STATE(665), + [sym__expression] = STATE(1162), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [666] = { [sym_line_comment] = STATE(666), - [sym__expression] = STATE(2903), - [sym__expression_without_blocks] = STATE(3019), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(666), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [667] = { [sym_line_comment] = STATE(667), - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(667), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [668] = { [sym_line_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_EQ] = ACTIONS(3243), - [anon_sym___global] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_pub] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_STAR_EQ] = ACTIONS(3243), - [anon_sym_SLASH_EQ] = ACTIONS(3243), - [anon_sym_PERCENT_EQ] = ACTIONS(3243), - [anon_sym_LT_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_GT_EQ] = ACTIONS(3243), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3243), - [anon_sym_AMP_EQ] = ACTIONS(3243), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3243), - [anon_sym_PLUS_EQ] = ACTIONS(3243), - [anon_sym_DASH_EQ] = ACTIONS(3243), - [anon_sym_PIPE_EQ] = ACTIONS(3243), - [anon_sym_CARET_EQ] = ACTIONS(3243), - [anon_sym_COLON_EQ] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [anon_sym_assert] = ACTIONS(3243), - [anon_sym_defer] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_DOLLARfor] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym_AT_LBRACK] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), + [sym_block_comment] = STATE(668), + [sym__expression] = STATE(280), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [669] = { [sym_line_comment] = STATE(669), - [sym__expression] = STATE(2782), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(669), + [sym__expression] = STATE(2691), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [670] = { [sym_line_comment] = STATE(670), - [sym__expression] = STATE(2684), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(670), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4374), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [671] = { [sym_line_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym___global] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_pub] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_STAR_EQ] = ACTIONS(3247), - [anon_sym_SLASH_EQ] = ACTIONS(3247), - [anon_sym_PERCENT_EQ] = ACTIONS(3247), - [anon_sym_LT_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_AMP_EQ] = ACTIONS(3247), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3247), - [anon_sym_PLUS_EQ] = ACTIONS(3247), - [anon_sym_DASH_EQ] = ACTIONS(3247), - [anon_sym_PIPE_EQ] = ACTIONS(3247), - [anon_sym_CARET_EQ] = ACTIONS(3247), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [anon_sym_assert] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_DOLLARfor] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym_AT_LBRACK] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), + [sym_block_comment] = STATE(671), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4357), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [672] = { [sym_line_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_EQ] = ACTIONS(3251), - [anon_sym___global] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_pub] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_STAR_EQ] = ACTIONS(3251), - [anon_sym_SLASH_EQ] = ACTIONS(3251), - [anon_sym_PERCENT_EQ] = ACTIONS(3251), - [anon_sym_LT_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_GT_EQ] = ACTIONS(3251), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3251), - [anon_sym_AMP_EQ] = ACTIONS(3251), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3251), - [anon_sym_PLUS_EQ] = ACTIONS(3251), - [anon_sym_DASH_EQ] = ACTIONS(3251), - [anon_sym_PIPE_EQ] = ACTIONS(3251), - [anon_sym_CARET_EQ] = ACTIONS(3251), - [anon_sym_COLON_EQ] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [anon_sym_assert] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_DOLLARfor] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym_AT_LBRACK] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), + [sym_block_comment] = STATE(672), + [sym__expression] = STATE(2895), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(3032), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(3033), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [673] = { [sym_line_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym___global] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_pub] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_STAR_EQ] = ACTIONS(3255), - [anon_sym_SLASH_EQ] = ACTIONS(3255), - [anon_sym_PERCENT_EQ] = ACTIONS(3255), - [anon_sym_LT_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_GT_EQ] = ACTIONS(3255), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3255), - [anon_sym_AMP_EQ] = ACTIONS(3255), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3255), - [anon_sym_PLUS_EQ] = ACTIONS(3255), - [anon_sym_DASH_EQ] = ACTIONS(3255), - [anon_sym_PIPE_EQ] = ACTIONS(3255), - [anon_sym_CARET_EQ] = ACTIONS(3255), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [anon_sym_assert] = ACTIONS(3255), - [anon_sym_defer] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_DOLLARfor] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_POUND] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym_AT_LBRACK] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), + [sym_block_comment] = STATE(673), + [sym__expression] = STATE(280), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4179), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [674] = { [sym_line_comment] = STATE(674), - [sym__expression] = STATE(222), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(674), + [sym__expression] = STATE(2896), + [sym__expression_without_blocks] = STATE(3034), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [675] = { [sym_line_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_EQ] = ACTIONS(3259), - [anon_sym___global] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_pub] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_STAR_EQ] = ACTIONS(3259), - [anon_sym_SLASH_EQ] = ACTIONS(3259), - [anon_sym_PERCENT_EQ] = ACTIONS(3259), - [anon_sym_LT_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_GT_EQ] = ACTIONS(3259), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3259), - [anon_sym_AMP_EQ] = ACTIONS(3259), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3259), - [anon_sym_PLUS_EQ] = ACTIONS(3259), - [anon_sym_DASH_EQ] = ACTIONS(3259), - [anon_sym_PIPE_EQ] = ACTIONS(3259), - [anon_sym_CARET_EQ] = ACTIONS(3259), - [anon_sym_COLON_EQ] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [anon_sym_assert] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_DOLLARfor] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym_AT_LBRACK] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), + [sym_block_comment] = STATE(675), + [sym__expression] = STATE(2715), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [676] = { [sym_line_comment] = STATE(676), - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym___global] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_pub] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_STAR_EQ] = ACTIONS(3226), + [anon_sym_SLASH_EQ] = ACTIONS(3226), + [anon_sym_PERCENT_EQ] = ACTIONS(3226), + [anon_sym_LT_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_GT_EQ] = ACTIONS(3226), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3226), + [anon_sym_AMP_EQ] = ACTIONS(3226), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3226), + [anon_sym_PLUS_EQ] = ACTIONS(3226), + [anon_sym_DASH_EQ] = ACTIONS(3226), + [anon_sym_PIPE_EQ] = ACTIONS(3226), + [anon_sym_CARET_EQ] = ACTIONS(3226), + [anon_sym_COLON_EQ] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [sym_pseudo_compile_time_identifier] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [anon_sym_assert] = ACTIONS(3226), + [anon_sym_defer] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_DOLLARfor] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym_AT_LBRACK] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), }, [677] = { [sym_line_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(3263), - [anon_sym___global] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_pub] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_STAR_EQ] = ACTIONS(3263), - [anon_sym_SLASH_EQ] = ACTIONS(3263), - [anon_sym_PERCENT_EQ] = ACTIONS(3263), - [anon_sym_LT_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_GT_EQ] = ACTIONS(3263), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3263), - [anon_sym_AMP_EQ] = ACTIONS(3263), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3263), - [anon_sym_PLUS_EQ] = ACTIONS(3263), - [anon_sym_DASH_EQ] = ACTIONS(3263), - [anon_sym_PIPE_EQ] = ACTIONS(3263), - [anon_sym_CARET_EQ] = ACTIONS(3263), - [anon_sym_COLON_EQ] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [anon_sym_assert] = ACTIONS(3263), - [anon_sym_defer] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_DOLLARfor] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_POUND] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym_AT_LBRACK] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), + [sym_block_comment] = STATE(677), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [678] = { [sym_line_comment] = STATE(678), - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(678), + [sym__expression] = STATE(246), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [679] = { [sym_line_comment] = STATE(679), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(679), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4140), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [680] = { [sym_line_comment] = STATE(680), - [sym__expression] = STATE(1147), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), + [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_EQ] = ACTIONS(3230), + [anon_sym___global] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_pub] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_LT_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_GT_EQ] = ACTIONS(3230), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3230), + [anon_sym_AMP_EQ] = ACTIONS(3230), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_PIPE_EQ] = ACTIONS(3230), + [anon_sym_CARET_EQ] = ACTIONS(3230), + [anon_sym_COLON_EQ] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [sym_pseudo_compile_time_identifier] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_defer] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_DOLLARfor] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym_AT_LBRACK] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, [681] = { [sym_line_comment] = STATE(681), - [sym__expression] = STATE(1144), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(681), + [sym__expression] = STATE(2903), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [682] = { [sym_line_comment] = STATE(682), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3234), + [anon_sym_LF] = ACTIONS(3234), + [anon_sym_CR] = ACTIONS(3234), + [anon_sym_CR_LF] = ACTIONS(3234), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_EQ] = ACTIONS(3234), + [anon_sym___global] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_pub] = ACTIONS(3234), + [anon_sym_mut] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [anon_sym_QMARK] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_go] = ACTIONS(3234), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3234), + [anon_sym_LBRACK2] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_LT_DASH] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3234), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3234), + [anon_sym_AMP_CARET] = ACTIONS(3234), + [anon_sym_AMP_AMP] = ACTIONS(3234), + [anon_sym_PIPE_PIPE] = ACTIONS(3234), + [anon_sym_or] = ACTIONS(3234), + [sym_none] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_nil] = ACTIONS(3234), + [anon_sym_QMARK_DOT] = ACTIONS(3234), + [anon_sym_POUND_LBRACK] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_DOLLARif] = ACTIONS(3234), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_BANGin] = ACTIONS(3234), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3234), + [anon_sym_STAR_EQ] = ACTIONS(3234), + [anon_sym_SLASH_EQ] = ACTIONS(3234), + [anon_sym_PERCENT_EQ] = ACTIONS(3234), + [anon_sym_LT_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_GT_EQ] = ACTIONS(3234), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3234), + [anon_sym_AMP_EQ] = ACTIONS(3234), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3234), + [anon_sym_PLUS_EQ] = ACTIONS(3234), + [anon_sym_DASH_EQ] = ACTIONS(3234), + [anon_sym_PIPE_EQ] = ACTIONS(3234), + [anon_sym_CARET_EQ] = ACTIONS(3234), + [anon_sym_COLON_EQ] = ACTIONS(3234), + [anon_sym_lock] = ACTIONS(3234), + [anon_sym_rlock] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(3234), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3234), + [sym_rune_literal] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(3234), + [anon_sym_shared] = ACTIONS(3234), + [anon_sym_map_LBRACK] = ACTIONS(3234), + [anon_sym_chan] = ACTIONS(3234), + [anon_sym_thread] = ACTIONS(3234), + [anon_sym_atomic] = ACTIONS(3234), + [anon_sym_assert] = ACTIONS(3234), + [anon_sym_defer] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_DOLLARfor] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_POUND] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym_AT_LBRACK] = ACTIONS(3234), + [sym___double_quote] = ACTIONS(3234), + [sym___single_quote] = ACTIONS(3234), + [sym___c_double_quote] = ACTIONS(3234), + [sym___c_single_quote] = ACTIONS(3234), + [sym___r_double_quote] = ACTIONS(3234), + [sym___r_single_quote] = ACTIONS(3234), }, [683] = { [sym_line_comment] = STATE(683), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(683), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [684] = { [sym_line_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_EQ] = ACTIONS(3267), - [anon_sym___global] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_union] = ACTIONS(3267), - [anon_sym_pub] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_STAR_EQ] = ACTIONS(3267), - [anon_sym_SLASH_EQ] = ACTIONS(3267), - [anon_sym_PERCENT_EQ] = ACTIONS(3267), - [anon_sym_LT_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_GT_EQ] = ACTIONS(3267), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3267), - [anon_sym_AMP_EQ] = ACTIONS(3267), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3267), - [anon_sym_PLUS_EQ] = ACTIONS(3267), - [anon_sym_DASH_EQ] = ACTIONS(3267), - [anon_sym_PIPE_EQ] = ACTIONS(3267), - [anon_sym_CARET_EQ] = ACTIONS(3267), - [anon_sym_COLON_EQ] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [anon_sym_assert] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_goto] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_DOLLARfor] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_asm] = ACTIONS(3267), - [anon_sym_AT_LBRACK] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), + [sym_block_comment] = STATE(684), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [685] = { [sym_line_comment] = STATE(685), - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3238), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_CR] = ACTIONS(3238), + [anon_sym_CR_LF] = ACTIONS(3238), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_EQ] = ACTIONS(3238), + [anon_sym___global] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_fn] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_pub] = ACTIONS(3238), + [anon_sym_mut] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_QMARK] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_go] = ACTIONS(3238), + [anon_sym_spawn] = ACTIONS(3238), + [anon_sym_json_DOTdecode] = ACTIONS(3238), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3238), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_CARET] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_or] = ACTIONS(3238), + [sym_none] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_nil] = ACTIONS(3238), + [anon_sym_QMARK_DOT] = ACTIONS(3238), + [anon_sym_POUND_LBRACK] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_DOLLARif] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3238), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_match] = ACTIONS(3238), + [anon_sym_select] = ACTIONS(3238), + [anon_sym_STAR_EQ] = ACTIONS(3238), + [anon_sym_SLASH_EQ] = ACTIONS(3238), + [anon_sym_PERCENT_EQ] = ACTIONS(3238), + [anon_sym_LT_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_GT_EQ] = ACTIONS(3238), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3238), + [anon_sym_AMP_EQ] = ACTIONS(3238), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3238), + [anon_sym_PLUS_EQ] = ACTIONS(3238), + [anon_sym_DASH_EQ] = ACTIONS(3238), + [anon_sym_PIPE_EQ] = ACTIONS(3238), + [anon_sym_CARET_EQ] = ACTIONS(3238), + [anon_sym_COLON_EQ] = ACTIONS(3238), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3238), + [anon_sym_sql] = ACTIONS(3238), + [sym_int_literal] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3238), + [sym_rune_literal] = ACTIONS(3238), + [sym_pseudo_compile_time_identifier] = ACTIONS(3238), + [anon_sym_shared] = ACTIONS(3238), + [anon_sym_map_LBRACK] = ACTIONS(3238), + [anon_sym_chan] = ACTIONS(3238), + [anon_sym_thread] = ACTIONS(3238), + [anon_sym_atomic] = ACTIONS(3238), + [anon_sym_assert] = ACTIONS(3238), + [anon_sym_defer] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_DOLLARfor] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym_AT_LBRACK] = ACTIONS(3238), + [sym___double_quote] = ACTIONS(3238), + [sym___single_quote] = ACTIONS(3238), + [sym___c_double_quote] = ACTIONS(3238), + [sym___c_single_quote] = ACTIONS(3238), + [sym___r_double_quote] = ACTIONS(3238), + [sym___r_single_quote] = ACTIONS(3238), }, [686] = { [sym_line_comment] = STATE(686), - [sym__expression] = STATE(253), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(686), + [sym__expression] = STATE(2711), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [687] = { [sym_line_comment] = STATE(687), - [sym__expression] = STATE(264), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(687), + [sym__expression] = STATE(1655), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [688] = { [sym_line_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_EQ] = ACTIONS(3271), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_STAR_EQ] = ACTIONS(3271), - [anon_sym_SLASH_EQ] = ACTIONS(3271), - [anon_sym_PERCENT_EQ] = ACTIONS(3271), - [anon_sym_LT_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_GT_EQ] = ACTIONS(3271), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3271), - [anon_sym_AMP_EQ] = ACTIONS(3271), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3271), - [anon_sym_PLUS_EQ] = ACTIONS(3271), - [anon_sym_DASH_EQ] = ACTIONS(3271), - [anon_sym_PIPE_EQ] = ACTIONS(3271), - [anon_sym_CARET_EQ] = ACTIONS(3271), - [anon_sym_COLON_EQ] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [sym_block_comment] = STATE(688), + [sym__expression] = STATE(2700), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [689] = { [sym_line_comment] = STATE(689), - [sym__expression] = STATE(265), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(689), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [690] = { [sym_line_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3275), - [anon_sym___global] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_union] = ACTIONS(3275), - [anon_sym_pub] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_STAR_EQ] = ACTIONS(3275), - [anon_sym_SLASH_EQ] = ACTIONS(3275), - [anon_sym_PERCENT_EQ] = ACTIONS(3275), - [anon_sym_LT_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_GT_EQ] = ACTIONS(3275), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3275), - [anon_sym_AMP_EQ] = ACTIONS(3275), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_PIPE_EQ] = ACTIONS(3275), - [anon_sym_CARET_EQ] = ACTIONS(3275), - [anon_sym_COLON_EQ] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [anon_sym_assert] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_goto] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_DOLLARfor] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_asm] = ACTIONS(3275), - [anon_sym_AT_LBRACK] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), + [sym_block_comment] = STATE(690), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4019), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [691] = { [sym_line_comment] = STATE(691), - [sym__expression] = STATE(1000), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(691), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [692] = { [sym_line_comment] = STATE(692), - [sym__expression] = STATE(227), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(692), + [sym__expression] = STATE(2430), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [693] = { [sym_line_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_union] = ACTIONS(3167), - [anon_sym_pub] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_STAR_EQ] = ACTIONS(2970), - [anon_sym_SLASH_EQ] = ACTIONS(2970), - [anon_sym_PERCENT_EQ] = ACTIONS(2970), - [anon_sym_LT_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2970), - [anon_sym_AMP_EQ] = ACTIONS(2970), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2970), - [anon_sym_PLUS_EQ] = ACTIONS(2970), - [anon_sym_DASH_EQ] = ACTIONS(2970), - [anon_sym_PIPE_EQ] = ACTIONS(2970), - [anon_sym_CARET_EQ] = ACTIONS(2970), - [anon_sym_COLON_EQ] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_DOLLARfor] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_POUND] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym_AT_LBRACK] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [sym_block_comment] = STATE(693), + [sym__expression] = STATE(1301), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [694] = { [sym_line_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2976), - [anon_sym___global] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_pub] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_STAR_EQ] = ACTIONS(2976), - [anon_sym_SLASH_EQ] = ACTIONS(2976), - [anon_sym_PERCENT_EQ] = ACTIONS(2976), - [anon_sym_LT_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_GT_EQ] = ACTIONS(2976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2976), - [anon_sym_AMP_EQ] = ACTIONS(2976), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2976), - [anon_sym_PLUS_EQ] = ACTIONS(2976), - [anon_sym_DASH_EQ] = ACTIONS(2976), - [anon_sym_PIPE_EQ] = ACTIONS(2976), - [anon_sym_CARET_EQ] = ACTIONS(2976), - [anon_sym_COLON_EQ] = ACTIONS(2976), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [sym_block_comment] = STATE(694), + [sym__expression] = STATE(1292), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [695] = { [sym_line_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3279), - [anon_sym___global] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_union] = ACTIONS(3279), - [anon_sym_pub] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_STAR_EQ] = ACTIONS(3279), - [anon_sym_SLASH_EQ] = ACTIONS(3279), - [anon_sym_PERCENT_EQ] = ACTIONS(3279), - [anon_sym_LT_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_GT_EQ] = ACTIONS(3279), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3279), - [anon_sym_AMP_EQ] = ACTIONS(3279), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3279), - [anon_sym_PLUS_EQ] = ACTIONS(3279), - [anon_sym_DASH_EQ] = ACTIONS(3279), - [anon_sym_PIPE_EQ] = ACTIONS(3279), - [anon_sym_CARET_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_defer] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_DOLLARfor] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_POUND] = ACTIONS(3279), - [anon_sym_asm] = ACTIONS(3279), - [anon_sym_AT_LBRACK] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), + [sym_block_comment] = STATE(695), + [sym__expression] = STATE(1309), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [696] = { [sym_line_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym___global] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3283), - [anon_sym_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_EQ] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_union] = ACTIONS(3283), - [anon_sym_pub] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3283), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_CARET] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3283), - [anon_sym_POUND_LBRACK] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_STAR_EQ] = ACTIONS(3283), - [anon_sym_SLASH_EQ] = ACTIONS(3283), - [anon_sym_PERCENT_EQ] = ACTIONS(3283), - [anon_sym_LT_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_GT_EQ] = ACTIONS(3283), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3283), - [anon_sym_AMP_EQ] = ACTIONS(3283), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3283), - [anon_sym_PLUS_EQ] = ACTIONS(3283), - [anon_sym_DASH_EQ] = ACTIONS(3283), - [anon_sym_PIPE_EQ] = ACTIONS(3283), - [anon_sym_CARET_EQ] = ACTIONS(3283), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3283), - [sym_rune_literal] = ACTIONS(3283), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3283), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_defer] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_DOLLARfor] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_POUND] = ACTIONS(3283), - [anon_sym_asm] = ACTIONS(3283), - [anon_sym_AT_LBRACK] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3283), - [sym___single_quote] = ACTIONS(3283), - [sym___c_double_quote] = ACTIONS(3283), - [sym___c_single_quote] = ACTIONS(3283), - [sym___r_double_quote] = ACTIONS(3283), - [sym___r_single_quote] = ACTIONS(3283), + [sym_block_comment] = STATE(696), + [sym__expression] = STATE(2399), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [697] = { [sym_line_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_EQ] = ACTIONS(3287), - [anon_sym___global] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [anon_sym_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_EQ] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_union] = ACTIONS(3287), - [anon_sym_pub] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3287), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3287), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3287), - [anon_sym_AMP_CARET] = ACTIONS(3287), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3287), - [anon_sym_POUND_LBRACK] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3287), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_STAR_EQ] = ACTIONS(3287), - [anon_sym_SLASH_EQ] = ACTIONS(3287), - [anon_sym_PERCENT_EQ] = ACTIONS(3287), - [anon_sym_LT_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_GT_EQ] = ACTIONS(3287), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3287), - [anon_sym_AMP_EQ] = ACTIONS(3287), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3287), - [anon_sym_PLUS_EQ] = ACTIONS(3287), - [anon_sym_DASH_EQ] = ACTIONS(3287), - [anon_sym_PIPE_EQ] = ACTIONS(3287), - [anon_sym_CARET_EQ] = ACTIONS(3287), - [anon_sym_COLON_EQ] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3287), - [sym_rune_literal] = ACTIONS(3287), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3287), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [anon_sym_assert] = ACTIONS(3287), - [anon_sym_defer] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_DOLLARfor] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_POUND] = ACTIONS(3287), - [anon_sym_asm] = ACTIONS(3287), - [anon_sym_AT_LBRACK] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3287), - [sym___single_quote] = ACTIONS(3287), - [sym___c_double_quote] = ACTIONS(3287), - [sym___c_single_quote] = ACTIONS(3287), - [sym___r_double_quote] = ACTIONS(3287), - [sym___r_single_quote] = ACTIONS(3287), + [sym_block_comment] = STATE(697), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4021), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [698] = { [sym_line_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym___global] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3291), - [anon_sym_pub] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3291), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3291), - [anon_sym_AMP_CARET] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3291), - [anon_sym_POUND_LBRACK] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3291), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_LT_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_GT_EQ] = ACTIONS(3291), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3291), - [anon_sym_AMP_EQ] = ACTIONS(3291), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_PIPE_EQ] = ACTIONS(3291), - [anon_sym_CARET_EQ] = ACTIONS(3291), - [anon_sym_COLON_EQ] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3291), - [sym_rune_literal] = ACTIONS(3291), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3291), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [anon_sym_assert] = ACTIONS(3291), - [anon_sym_defer] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_DOLLARfor] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_POUND] = ACTIONS(3291), - [anon_sym_asm] = ACTIONS(3291), - [anon_sym_AT_LBRACK] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3291), - [sym___single_quote] = ACTIONS(3291), - [sym___c_double_quote] = ACTIONS(3291), - [sym___c_single_quote] = ACTIONS(3291), - [sym___r_double_quote] = ACTIONS(3291), - [sym___r_single_quote] = ACTIONS(3291), + [sym_block_comment] = STATE(698), + [sym__expression] = STATE(2730), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [699] = { [sym_line_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3295), - [anon_sym___global] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3295), - [anon_sym_pub] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_STAR_EQ] = ACTIONS(3295), - [anon_sym_SLASH_EQ] = ACTIONS(3295), - [anon_sym_PERCENT_EQ] = ACTIONS(3295), - [anon_sym_LT_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_GT_EQ] = ACTIONS(3295), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3295), - [anon_sym_AMP_EQ] = ACTIONS(3295), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3295), - [anon_sym_PLUS_EQ] = ACTIONS(3295), - [anon_sym_DASH_EQ] = ACTIONS(3295), - [anon_sym_PIPE_EQ] = ACTIONS(3295), - [anon_sym_CARET_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_DOLLARfor] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3295), - [anon_sym_asm] = ACTIONS(3295), - [anon_sym_AT_LBRACK] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [sym_block_comment] = STATE(699), + [sym__expression] = STATE(1661), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4348), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [700] = { [sym_line_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(3299), - [anon_sym___global] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_EQ] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_union] = ACTIONS(3299), - [anon_sym_pub] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3299), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3299), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3299), - [anon_sym_AMP_CARET] = ACTIONS(3299), - [anon_sym_AMP_AMP] = ACTIONS(3299), - [anon_sym_PIPE_PIPE] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3299), - [anon_sym_POUND_LBRACK] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3299), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_STAR_EQ] = ACTIONS(3299), - [anon_sym_SLASH_EQ] = ACTIONS(3299), - [anon_sym_PERCENT_EQ] = ACTIONS(3299), - [anon_sym_LT_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_GT_EQ] = ACTIONS(3299), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3299), - [anon_sym_AMP_EQ] = ACTIONS(3299), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3299), - [anon_sym_PLUS_EQ] = ACTIONS(3299), - [anon_sym_DASH_EQ] = ACTIONS(3299), - [anon_sym_PIPE_EQ] = ACTIONS(3299), - [anon_sym_CARET_EQ] = ACTIONS(3299), - [anon_sym_COLON_EQ] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3299), - [sym_rune_literal] = ACTIONS(3299), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3299), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [anon_sym_assert] = ACTIONS(3299), - [anon_sym_defer] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_DOLLARfor] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_POUND] = ACTIONS(3299), - [anon_sym_asm] = ACTIONS(3299), - [anon_sym_AT_LBRACK] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3299), - [sym___single_quote] = ACTIONS(3299), - [sym___c_double_quote] = ACTIONS(3299), - [sym___c_single_quote] = ACTIONS(3299), - [sym___r_double_quote] = ACTIONS(3299), - [sym___r_single_quote] = ACTIONS(3299), + [sym_block_comment] = STATE(700), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [701] = { [sym_line_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_EQ] = ACTIONS(3303), - [anon_sym___global] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_pub] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3303), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3303), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3303), - [anon_sym_AMP_CARET] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3303), - [anon_sym_POUND_LBRACK] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3303), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_STAR_EQ] = ACTIONS(3303), - [anon_sym_SLASH_EQ] = ACTIONS(3303), - [anon_sym_PERCENT_EQ] = ACTIONS(3303), - [anon_sym_LT_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_GT_EQ] = ACTIONS(3303), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3303), - [anon_sym_AMP_EQ] = ACTIONS(3303), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3303), - [anon_sym_PLUS_EQ] = ACTIONS(3303), - [anon_sym_DASH_EQ] = ACTIONS(3303), - [anon_sym_PIPE_EQ] = ACTIONS(3303), - [anon_sym_CARET_EQ] = ACTIONS(3303), - [anon_sym_COLON_EQ] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3303), - [sym_rune_literal] = ACTIONS(3303), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3303), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [anon_sym_assert] = ACTIONS(3303), - [anon_sym_defer] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_DOLLARfor] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3303), - [anon_sym_AT_LBRACK] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3303), - [sym___single_quote] = ACTIONS(3303), - [sym___c_double_quote] = ACTIONS(3303), - [sym___c_single_quote] = ACTIONS(3303), - [sym___r_double_quote] = ACTIONS(3303), - [sym___r_single_quote] = ACTIONS(3303), + [sym_block_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_STAR_EQ] = ACTIONS(3029), + [anon_sym_SLASH_EQ] = ACTIONS(3029), + [anon_sym_PERCENT_EQ] = ACTIONS(3029), + [anon_sym_LT_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), + [anon_sym_AMP_EQ] = ACTIONS(3029), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), + [anon_sym_PLUS_EQ] = ACTIONS(3029), + [anon_sym_DASH_EQ] = ACTIONS(3029), + [anon_sym_PIPE_EQ] = ACTIONS(3029), + [anon_sym_CARET_EQ] = ACTIONS(3029), + [anon_sym_COLON_EQ] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [702] = { [sym_line_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_STAR_EQ] = ACTIONS(3307), - [anon_sym_SLASH_EQ] = ACTIONS(3307), - [anon_sym_PERCENT_EQ] = ACTIONS(3307), - [anon_sym_LT_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_GT_EQ] = ACTIONS(3307), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3307), - [anon_sym_AMP_EQ] = ACTIONS(3307), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3307), - [anon_sym_DASH_EQ] = ACTIONS(3307), - [anon_sym_PIPE_EQ] = ACTIONS(3307), - [anon_sym_CARET_EQ] = ACTIONS(3307), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LF] = ACTIONS(3116), + [anon_sym_CR] = ACTIONS(3116), + [anon_sym_CR_LF] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3035), + [anon_sym___global] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_pub] = ACTIONS(3116), + [anon_sym_mut] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3116), + [anon_sym_spawn] = ACTIONS(3116), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_nil] = ACTIONS(3116), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_DOLLARif] = ACTIONS(3116), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_select] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3035), + [anon_sym_SLASH_EQ] = ACTIONS(3035), + [anon_sym_PERCENT_EQ] = ACTIONS(3035), + [anon_sym_LT_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3035), + [anon_sym_AMP_EQ] = ACTIONS(3035), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3035), + [anon_sym_PLUS_EQ] = ACTIONS(3035), + [anon_sym_DASH_EQ] = ACTIONS(3035), + [anon_sym_PIPE_EQ] = ACTIONS(3035), + [anon_sym_CARET_EQ] = ACTIONS(3035), + [anon_sym_COLON_EQ] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3116), + [anon_sym_rlock] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_sql] = ACTIONS(3116), + [sym_int_literal] = ACTIONS(3116), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [sym_pseudo_compile_time_identifier] = ACTIONS(3116), + [anon_sym_shared] = ACTIONS(3116), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3116), + [anon_sym_thread] = ACTIONS(3116), + [anon_sym_atomic] = ACTIONS(3116), + [anon_sym_assert] = ACTIONS(3116), + [anon_sym_defer] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_DOLLARfor] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym_AT_LBRACK] = ACTIONS(3116), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, [703] = { [sym_line_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_EQ] = ACTIONS(3311), - [anon_sym___global] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_union] = ACTIONS(3311), - [anon_sym_pub] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_STAR_EQ] = ACTIONS(3311), - [anon_sym_SLASH_EQ] = ACTIONS(3311), - [anon_sym_PERCENT_EQ] = ACTIONS(3311), - [anon_sym_LT_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_GT_EQ] = ACTIONS(3311), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3311), - [anon_sym_AMP_EQ] = ACTIONS(3311), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3311), - [anon_sym_PLUS_EQ] = ACTIONS(3311), - [anon_sym_DASH_EQ] = ACTIONS(3311), - [anon_sym_PIPE_EQ] = ACTIONS(3311), - [anon_sym_CARET_EQ] = ACTIONS(3311), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [anon_sym_assert] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_DOLLARfor] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_asm] = ACTIONS(3311), - [anon_sym_AT_LBRACK] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_CR] = ACTIONS(3242), + [anon_sym_CR_LF] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_EQ] = ACTIONS(3242), + [anon_sym___global] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_fn] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_EQ_EQ] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3242), + [anon_sym_GT_EQ] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_pub] = ACTIONS(3242), + [anon_sym_mut] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_go] = ACTIONS(3242), + [anon_sym_spawn] = ACTIONS(3242), + [anon_sym_json_DOTdecode] = ACTIONS(3242), + [anon_sym_LBRACK2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_CARET] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_LT_LT] = ACTIONS(3242), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3242), + [anon_sym_AMP_CARET] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_or] = ACTIONS(3242), + [sym_none] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_nil] = ACTIONS(3242), + [anon_sym_QMARK_DOT] = ACTIONS(3242), + [anon_sym_POUND_LBRACK] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_DOLLARif] = ACTIONS(3242), + [anon_sym_is] = ACTIONS(3242), + [anon_sym_BANGis] = ACTIONS(3242), + [anon_sym_in] = ACTIONS(3242), + [anon_sym_BANGin] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_STAR_EQ] = ACTIONS(3242), + [anon_sym_SLASH_EQ] = ACTIONS(3242), + [anon_sym_PERCENT_EQ] = ACTIONS(3242), + [anon_sym_LT_LT_EQ] = ACTIONS(3242), + [anon_sym_GT_GT_EQ] = ACTIONS(3242), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3242), + [anon_sym_AMP_EQ] = ACTIONS(3242), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3242), + [anon_sym_PLUS_EQ] = ACTIONS(3242), + [anon_sym_DASH_EQ] = ACTIONS(3242), + [anon_sym_PIPE_EQ] = ACTIONS(3242), + [anon_sym_CARET_EQ] = ACTIONS(3242), + [anon_sym_COLON_EQ] = ACTIONS(3242), + [anon_sym_lock] = ACTIONS(3242), + [anon_sym_rlock] = ACTIONS(3242), + [anon_sym_unsafe] = ACTIONS(3242), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3242), + [sym_rune_literal] = ACTIONS(3242), + [sym_pseudo_compile_time_identifier] = ACTIONS(3242), + [anon_sym_shared] = ACTIONS(3242), + [anon_sym_map_LBRACK] = ACTIONS(3242), + [anon_sym_chan] = ACTIONS(3242), + [anon_sym_thread] = ACTIONS(3242), + [anon_sym_atomic] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_defer] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_DOLLARfor] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym_AT_LBRACK] = ACTIONS(3242), + [sym___double_quote] = ACTIONS(3242), + [sym___single_quote] = ACTIONS(3242), + [sym___c_double_quote] = ACTIONS(3242), + [sym___c_single_quote] = ACTIONS(3242), + [sym___r_double_quote] = ACTIONS(3242), + [sym___r_single_quote] = ACTIONS(3242), }, [704] = { [sym_line_comment] = STATE(704), - [sym__expression] = STATE(276), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_EQ] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_STAR_EQ] = ACTIONS(3246), + [anon_sym_SLASH_EQ] = ACTIONS(3246), + [anon_sym_PERCENT_EQ] = ACTIONS(3246), + [anon_sym_LT_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3246), + [anon_sym_AMP_EQ] = ACTIONS(3246), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3246), + [anon_sym_PLUS_EQ] = ACTIONS(3246), + [anon_sym_DASH_EQ] = ACTIONS(3246), + [anon_sym_PIPE_EQ] = ACTIONS(3246), + [anon_sym_CARET_EQ] = ACTIONS(3246), + [anon_sym_COLON_EQ] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), + [sym___double_quote] = ACTIONS(3246), + [sym___single_quote] = ACTIONS(3246), + [sym___c_double_quote] = ACTIONS(3246), + [sym___c_single_quote] = ACTIONS(3246), + [sym___r_double_quote] = ACTIONS(3246), + [sym___r_single_quote] = ACTIONS(3246), }, [705] = { [sym_line_comment] = STATE(705), - [sym__expression] = STATE(277), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(705), + [sym__expression] = STATE(992), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [706] = { [sym_line_comment] = STATE(706), - [sym__expression] = STATE(2515), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(706), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4014), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1079), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [707] = { [sym_line_comment] = STATE(707), - [sym__expression] = STATE(279), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(707), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [708] = { [sym_line_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym___global] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_union] = ACTIONS(3315), - [anon_sym_pub] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_LT_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_AMP_EQ] = ACTIONS(3315), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_PIPE_EQ] = ACTIONS(3315), - [anon_sym_CARET_EQ] = ACTIONS(3315), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [anon_sym_assert] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_DOLLARfor] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_asm] = ACTIONS(3315), - [anon_sym_AT_LBRACK] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [sym_block_comment] = STATE(708), + [sym__expression] = STATE(1305), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [709] = { [sym_line_comment] = STATE(709), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2992), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2963), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(709), + [sym__expression] = STATE(1306), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), + [sym__expression] = STATE(2908), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), + [sym__expression] = STATE(1300), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4355), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4358), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [sym__expression] = STATE(1150), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, - [710] = { - [sym_line_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_EQ] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_STAR_EQ] = ACTIONS(3319), - [anon_sym_SLASH_EQ] = ACTIONS(3319), - [anon_sym_PERCENT_EQ] = ACTIONS(3319), - [anon_sym_LT_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_GT_EQ] = ACTIONS(3319), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3319), - [anon_sym_AMP_EQ] = ACTIONS(3319), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3319), - [anon_sym_PLUS_EQ] = ACTIONS(3319), - [anon_sym_DASH_EQ] = ACTIONS(3319), - [anon_sym_PIPE_EQ] = ACTIONS(3319), - [anon_sym_CARET_EQ] = ACTIONS(3319), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4367), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, - [711] = { - [sym_line_comment] = STATE(711), - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_EQ] = ACTIONS(3250), + [anon_sym___global] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_union] = ACTIONS(3250), + [anon_sym_pub] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_STAR_EQ] = ACTIONS(3250), + [anon_sym_SLASH_EQ] = ACTIONS(3250), + [anon_sym_PERCENT_EQ] = ACTIONS(3250), + [anon_sym_LT_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3250), + [anon_sym_AMP_EQ] = ACTIONS(3250), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3250), + [anon_sym_PLUS_EQ] = ACTIONS(3250), + [anon_sym_DASH_EQ] = ACTIONS(3250), + [anon_sym_PIPE_EQ] = ACTIONS(3250), + [anon_sym_CARET_EQ] = ACTIONS(3250), + [anon_sym_COLON_EQ] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + [anon_sym_AT_LBRACK] = ACTIONS(3250), + [sym___double_quote] = ACTIONS(3250), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3250), + [sym___c_single_quote] = ACTIONS(3250), + [sym___r_double_quote] = ACTIONS(3250), + [sym___r_single_quote] = ACTIONS(3250), }, - [712] = { - [sym_line_comment] = STATE(712), - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [anon_sym_LF] = ACTIONS(3254), + [anon_sym_CR] = ACTIONS(3254), + [anon_sym_CR_LF] = ACTIONS(3254), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3254), + [anon_sym_as] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_EQ] = ACTIONS(3254), + [anon_sym___global] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3254), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_pub] = ACTIONS(3254), + [anon_sym_mut] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_go] = ACTIONS(3254), + [anon_sym_spawn] = ACTIONS(3254), + [anon_sym_json_DOTdecode] = ACTIONS(3254), + [anon_sym_LBRACK2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_LT_DASH] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3254), + [anon_sym_AMP_CARET] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3254), + [sym_none] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_nil] = ACTIONS(3254), + [anon_sym_QMARK_DOT] = ACTIONS(3254), + [anon_sym_POUND_LBRACK] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_DOLLARif] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3254), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_STAR_EQ] = ACTIONS(3254), + [anon_sym_SLASH_EQ] = ACTIONS(3254), + [anon_sym_PERCENT_EQ] = ACTIONS(3254), + [anon_sym_LT_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3254), + [anon_sym_AMP_EQ] = ACTIONS(3254), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3254), + [anon_sym_PLUS_EQ] = ACTIONS(3254), + [anon_sym_DASH_EQ] = ACTIONS(3254), + [anon_sym_PIPE_EQ] = ACTIONS(3254), + [anon_sym_CARET_EQ] = ACTIONS(3254), + [anon_sym_COLON_EQ] = ACTIONS(3254), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3254), + [anon_sym_sql] = ACTIONS(3254), + [sym_int_literal] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(3254), + [sym_rune_literal] = ACTIONS(3254), + [sym_pseudo_compile_time_identifier] = ACTIONS(3254), + [anon_sym_shared] = ACTIONS(3254), + [anon_sym_map_LBRACK] = ACTIONS(3254), + [anon_sym_chan] = ACTIONS(3254), + [anon_sym_thread] = ACTIONS(3254), + [anon_sym_atomic] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_defer] = ACTIONS(3254), + [anon_sym_goto] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_DOLLARfor] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3254), + [anon_sym_asm] = ACTIONS(3254), + [anon_sym_AT_LBRACK] = ACTIONS(3254), + [sym___double_quote] = ACTIONS(3254), + [sym___single_quote] = ACTIONS(3254), + [sym___c_double_quote] = ACTIONS(3254), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3254), + [sym___r_single_quote] = ACTIONS(3254), }, - [713] = { - [sym_line_comment] = STATE(713), - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [sym__expression] = STATE(1303), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -112806,2853 +107340,2182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [714] = { - [sym_line_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_EQ] = ACTIONS(3323), - [anon_sym___global] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_union] = ACTIONS(3323), - [anon_sym_pub] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_STAR_EQ] = ACTIONS(3323), - [anon_sym_SLASH_EQ] = ACTIONS(3323), - [anon_sym_PERCENT_EQ] = ACTIONS(3323), - [anon_sym_LT_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_GT_EQ] = ACTIONS(3323), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3323), - [anon_sym_AMP_EQ] = ACTIONS(3323), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3323), - [anon_sym_PLUS_EQ] = ACTIONS(3323), - [anon_sym_DASH_EQ] = ACTIONS(3323), - [anon_sym_PIPE_EQ] = ACTIONS(3323), - [anon_sym_CARET_EQ] = ACTIONS(3323), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_DOLLARfor] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_POUND] = ACTIONS(3323), - [anon_sym_asm] = ACTIONS(3323), - [anon_sym_AT_LBRACK] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), - }, - [715] = { - [sym_line_comment] = STATE(715), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [716] = { - [sym_line_comment] = STATE(716), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [717] = { - [sym_line_comment] = STATE(717), - [sym__expression] = STATE(2499), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [718] = { - [sym_line_comment] = STATE(718), - [sym__expression] = STATE(2500), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [719] = { [sym_line_comment] = STATE(719), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(719), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [720] = { [sym_line_comment] = STATE(720), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(720), + [sym__expression] = STATE(254), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [721] = { [sym_line_comment] = STATE(721), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(721), + [sym__expression] = STATE(2898), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [722] = { [sym_line_comment] = STATE(722), - [sym__expression] = STATE(2699), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(722), + [sym__expression] = STATE(2500), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [723] = { [sym_line_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym___global] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_pub] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_STAR_EQ] = ACTIONS(3327), - [anon_sym_SLASH_EQ] = ACTIONS(3327), - [anon_sym_PERCENT_EQ] = ACTIONS(3327), - [anon_sym_LT_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_GT_EQ] = ACTIONS(3327), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3327), - [anon_sym_AMP_EQ] = ACTIONS(3327), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3327), - [anon_sym_PLUS_EQ] = ACTIONS(3327), - [anon_sym_DASH_EQ] = ACTIONS(3327), - [anon_sym_PIPE_EQ] = ACTIONS(3327), - [anon_sym_CARET_EQ] = ACTIONS(3327), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_DOLLARfor] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3327), - [anon_sym_asm] = ACTIONS(3327), - [anon_sym_AT_LBRACK] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), + [sym_block_comment] = STATE(723), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4266), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [724] = { [sym_line_comment] = STATE(724), - [sym__expression] = STATE(2898), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2981), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2986), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(724), + [sym__expression] = STATE(2504), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [725] = { [sym_line_comment] = STATE(725), - [sym__expression] = STATE(2678), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(725), + [sym__expression] = STATE(2506), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [726] = { [sym_line_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_STAR_EQ] = ACTIONS(3331), - [anon_sym_SLASH_EQ] = ACTIONS(3331), - [anon_sym_PERCENT_EQ] = ACTIONS(3331), - [anon_sym_LT_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_GT_EQ] = ACTIONS(3331), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3331), - [anon_sym_AMP_EQ] = ACTIONS(3331), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3331), - [anon_sym_PLUS_EQ] = ACTIONS(3331), - [anon_sym_DASH_EQ] = ACTIONS(3331), - [anon_sym_PIPE_EQ] = ACTIONS(3331), - [anon_sym_CARET_EQ] = ACTIONS(3331), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), + [sym_block_comment] = STATE(726), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4250), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [727] = { [sym_line_comment] = STATE(727), - [sym__expression] = STATE(2893), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(727), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4235), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [728] = { [sym_line_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_STAR_EQ] = ACTIONS(3335), - [anon_sym_SLASH_EQ] = ACTIONS(3335), - [anon_sym_PERCENT_EQ] = ACTIONS(3335), - [anon_sym_LT_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_GT_EQ] = ACTIONS(3335), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3335), - [anon_sym_AMP_EQ] = ACTIONS(3335), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3335), - [anon_sym_PLUS_EQ] = ACTIONS(3335), - [anon_sym_DASH_EQ] = ACTIONS(3335), - [anon_sym_PIPE_EQ] = ACTIONS(3335), - [anon_sym_CARET_EQ] = ACTIONS(3335), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [sym_block_comment] = STATE(728), + [sym__expression] = STATE(2517), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(1091), + [anon_sym_DASH] = ACTIONS(1091), + [anon_sym_STAR] = ACTIONS(3046), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3048), + [anon_sym_go] = ACTIONS(1099), + [anon_sym_spawn] = ACTIONS(1101), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_CARET] = ACTIONS(1091), + [anon_sym_AMP] = ACTIONS(3050), + [anon_sym_LT_DASH] = ACTIONS(1109), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2713), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [729] = { [sym_line_comment] = STATE(729), - [sym__expression] = STATE(2490), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(729), + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [730] = { [sym_line_comment] = STATE(730), - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(730), + [sym__expression] = STATE(1324), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [731] = { [sym_line_comment] = STATE(731), - [sym__expression] = STATE(1159), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(731), + [sym__expression] = STATE(1292), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [732] = { [sym_line_comment] = STATE(732), - [sym__expression] = STATE(2895), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(732), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [733] = { [sym_line_comment] = STATE(733), - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(733), + [sym__expression] = STATE(251), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [734] = { [sym_line_comment] = STATE(734), - [sym__expression] = STATE(2857), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(734), + [sym__expression] = STATE(250), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [735] = { [sym_line_comment] = STATE(735), - [sym__expression] = STATE(2864), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(735), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [736] = { [sym_line_comment] = STATE(736), - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(736), + [sym__expression] = STATE(280), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4149), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [737] = { [sym_line_comment] = STATE(737), - [sym__expression] = STATE(2882), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [738] = { - [sym_line_comment] = STATE(738), - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(737), + [sym__expression] = STATE(996), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -115660,1515 +109523,1180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), + [ts_builtin_sym_end] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_CR] = ACTIONS(3258), + [anon_sym_CR_LF] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3258), + [anon_sym_as] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_EQ] = ACTIONS(3258), + [anon_sym___global] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PERCENT] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_pub] = ACTIONS(3258), + [anon_sym_mut] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_go] = ACTIONS(3258), + [anon_sym_spawn] = ACTIONS(3258), + [anon_sym_json_DOTdecode] = ACTIONS(3258), + [anon_sym_LBRACK2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_CARET] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_LT_DASH] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3258), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3258), + [anon_sym_AMP_CARET] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3258), + [sym_none] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_nil] = ACTIONS(3258), + [anon_sym_QMARK_DOT] = ACTIONS(3258), + [anon_sym_POUND_LBRACK] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_DOLLARif] = ACTIONS(3258), + [anon_sym_is] = ACTIONS(3258), + [anon_sym_BANGis] = ACTIONS(3258), + [anon_sym_in] = ACTIONS(3258), + [anon_sym_BANGin] = ACTIONS(3258), + [anon_sym_match] = ACTIONS(3258), + [anon_sym_select] = ACTIONS(3258), + [anon_sym_STAR_EQ] = ACTIONS(3258), + [anon_sym_SLASH_EQ] = ACTIONS(3258), + [anon_sym_PERCENT_EQ] = ACTIONS(3258), + [anon_sym_LT_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3258), + [anon_sym_AMP_EQ] = ACTIONS(3258), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3258), + [anon_sym_PLUS_EQ] = ACTIONS(3258), + [anon_sym_DASH_EQ] = ACTIONS(3258), + [anon_sym_PIPE_EQ] = ACTIONS(3258), + [anon_sym_CARET_EQ] = ACTIONS(3258), + [anon_sym_COLON_EQ] = ACTIONS(3258), + [anon_sym_lock] = ACTIONS(3258), + [anon_sym_rlock] = ACTIONS(3258), + [anon_sym_unsafe] = ACTIONS(3258), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(3258), + [sym_rune_literal] = ACTIONS(3258), + [sym_pseudo_compile_time_identifier] = ACTIONS(3258), + [anon_sym_shared] = ACTIONS(3258), + [anon_sym_map_LBRACK] = ACTIONS(3258), + [anon_sym_chan] = ACTIONS(3258), + [anon_sym_thread] = ACTIONS(3258), + [anon_sym_atomic] = ACTIONS(3258), + [anon_sym_assert] = ACTIONS(3258), + [anon_sym_defer] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_DOLLARfor] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_POUND] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym_AT_LBRACK] = ACTIONS(3258), + [sym___double_quote] = ACTIONS(3258), + [sym___single_quote] = ACTIONS(3258), + [sym___c_double_quote] = ACTIONS(3258), + [sym___c_single_quote] = ACTIONS(3258), + [sym___r_double_quote] = ACTIONS(3258), + [sym___r_single_quote] = ACTIONS(3258), }, [739] = { [sym_line_comment] = STATE(739), - [sym__expression] = STATE(2902), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(739), + [sym__expression] = STATE(2176), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [740] = { [sym_line_comment] = STATE(740), - [sym__expression] = STATE(2492), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(740), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [741] = { [sym_line_comment] = STATE(741), - [sym__expression] = STATE(2346), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(741), + [sym__expression] = STATE(2317), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [742] = { [sym_line_comment] = STATE(742), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4245), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(742), + [sym__expression] = STATE(2335), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [743] = { [sym_line_comment] = STATE(743), - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(743), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_EQ] = ACTIONS(3262), + [anon_sym___global] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_pub] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_STAR_EQ] = ACTIONS(3262), + [anon_sym_SLASH_EQ] = ACTIONS(3262), + [anon_sym_PERCENT_EQ] = ACTIONS(3262), + [anon_sym_LT_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3262), + [anon_sym_AMP_EQ] = ACTIONS(3262), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3262), + [anon_sym_PLUS_EQ] = ACTIONS(3262), + [anon_sym_DASH_EQ] = ACTIONS(3262), + [anon_sym_PIPE_EQ] = ACTIONS(3262), + [anon_sym_CARET_EQ] = ACTIONS(3262), + [anon_sym_COLON_EQ] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_defer] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_DOLLARfor] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym_AT_LBRACK] = ACTIONS(3262), + [sym___double_quote] = ACTIONS(3262), + [sym___single_quote] = ACTIONS(3262), + [sym___c_double_quote] = ACTIONS(3262), + [sym___c_single_quote] = ACTIONS(3262), + [sym___r_double_quote] = ACTIONS(3262), + [sym___r_single_quote] = ACTIONS(3262), }, [744] = { [sym_line_comment] = STATE(744), - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(744), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [745] = { [sym_line_comment] = STATE(745), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4241), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(745), + [sym__expression] = STATE(2178), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(3124), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_go] = ACTIONS(3128), + [anon_sym_spawn] = ACTIONS(3130), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3122), + [anon_sym_CARET] = ACTIONS(3122), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_LT_DASH] = ACTIONS(3134), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3136), + [anon_sym_lock] = ACTIONS(3138), + [anon_sym_rlock] = ACTIONS(3138), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, [746] = { [sym_line_comment] = STATE(746), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(746), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_EQ] = ACTIONS(3266), + [anon_sym___global] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_pub] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_STAR_EQ] = ACTIONS(3266), + [anon_sym_SLASH_EQ] = ACTIONS(3266), + [anon_sym_PERCENT_EQ] = ACTIONS(3266), + [anon_sym_LT_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3266), + [anon_sym_AMP_EQ] = ACTIONS(3266), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3266), + [anon_sym_PLUS_EQ] = ACTIONS(3266), + [anon_sym_DASH_EQ] = ACTIONS(3266), + [anon_sym_PIPE_EQ] = ACTIONS(3266), + [anon_sym_CARET_EQ] = ACTIONS(3266), + [anon_sym_COLON_EQ] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym_AT_LBRACK] = ACTIONS(3266), + [sym___double_quote] = ACTIONS(3266), + [sym___single_quote] = ACTIONS(3266), + [sym___c_double_quote] = ACTIONS(3266), + [sym___c_single_quote] = ACTIONS(3266), + [sym___r_double_quote] = ACTIONS(3266), + [sym___r_single_quote] = ACTIONS(3266), }, [747] = { [sym_line_comment] = STATE(747), - [sym__expression] = STATE(2347), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [748] = { - [sym_line_comment] = STATE(748), - [sym__expression] = STATE(1961), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [749] = { - [sym_line_comment] = STATE(749), - [sym__expression] = STATE(2889), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [750] = { - [sym_line_comment] = STATE(750), - [sym__expression] = STATE(2833), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [751] = { - [sym_line_comment] = STATE(751), - [sym__expression] = STATE(1299), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(747), + [sym__expression] = STATE(1325), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -117176,1034 +110704,1507 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_EQ] = ACTIONS(3270), + [anon_sym___global] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_pub] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_STAR_EQ] = ACTIONS(3270), + [anon_sym_SLASH_EQ] = ACTIONS(3270), + [anon_sym_PERCENT_EQ] = ACTIONS(3270), + [anon_sym_LT_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3270), + [anon_sym_AMP_EQ] = ACTIONS(3270), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3270), + [anon_sym_PLUS_EQ] = ACTIONS(3270), + [anon_sym_DASH_EQ] = ACTIONS(3270), + [anon_sym_PIPE_EQ] = ACTIONS(3270), + [anon_sym_CARET_EQ] = ACTIONS(3270), + [anon_sym_COLON_EQ] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym_AT_LBRACK] = ACTIONS(3270), + [sym___double_quote] = ACTIONS(3270), + [sym___single_quote] = ACTIONS(3270), + [sym___c_double_quote] = ACTIONS(3270), + [sym___c_single_quote] = ACTIONS(3270), + [sym___r_double_quote] = ACTIONS(3270), + [sym___r_single_quote] = ACTIONS(3270), + }, + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), + [sym__expression] = STATE(244), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, + [750] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), + [sym__expression] = STATE(237), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, + [751] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), + [sym__expression] = STATE(291), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, [752] = { [sym_line_comment] = STATE(752), - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(752), + [sym__expression] = STATE(1687), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [753] = { [sym_line_comment] = STATE(753), - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(753), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4243), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [754] = { [sym_line_comment] = STATE(754), - [sym__expression] = STATE(2869), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(754), + [sym__expression] = STATE(1691), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [755] = { [sym_line_comment] = STATE(755), - [sym__expression] = STATE(1155), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(633), - [anon_sym_LPAREN] = ACTIONS(637), - [anon_sym_fn] = ACTIONS(641), - [anon_sym_PLUS] = ACTIONS(643), - [anon_sym_DASH] = ACTIONS(643), - [anon_sym_STAR] = ACTIONS(645), - [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(655), - [anon_sym_go] = ACTIONS(657), - [anon_sym_spawn] = ACTIONS(659), - [anon_sym_json_DOTdecode] = ACTIONS(661), - [anon_sym_LBRACK2] = ACTIONS(663), - [anon_sym_TILDE] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(643), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_LT_DASH] = ACTIONS(667), - [sym_none] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_nil] = ACTIONS(669), - [anon_sym_if] = ACTIONS(671), - [anon_sym_DOLLARif] = ACTIONS(673), - [anon_sym_match] = ACTIONS(675), - [anon_sym_select] = ACTIONS(677), - [anon_sym_lock] = ACTIONS(679), - [anon_sym_rlock] = ACTIONS(679), - [anon_sym_unsafe] = ACTIONS(681), - [anon_sym_sql] = ACTIONS(683), - [sym_int_literal] = ACTIONS(669), - [sym_float_literal] = ACTIONS(685), - [sym_rune_literal] = ACTIONS(685), - [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(689), - [sym___single_quote] = ACTIONS(691), - [sym___c_double_quote] = ACTIONS(693), - [sym___c_single_quote] = ACTIONS(695), - [sym___r_double_quote] = ACTIONS(697), - [sym___r_single_quote] = ACTIONS(699), + [sym_block_comment] = STATE(755), + [sym__expression] = STATE(1693), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [756] = { [sym_line_comment] = STATE(756), - [sym__expression] = STATE(2887), - [sym__expression_without_blocks] = STATE(2915), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(756), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4245), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [757] = { [sym_line_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3339), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_STAR_EQ] = ACTIONS(3339), - [anon_sym_SLASH_EQ] = ACTIONS(3339), - [anon_sym_PERCENT_EQ] = ACTIONS(3339), - [anon_sym_LT_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_GT_EQ] = ACTIONS(3339), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3339), - [anon_sym_AMP_EQ] = ACTIONS(3339), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3339), - [anon_sym_PLUS_EQ] = ACTIONS(3339), - [anon_sym_DASH_EQ] = ACTIONS(3339), - [anon_sym_PIPE_EQ] = ACTIONS(3339), - [anon_sym_CARET_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), + [sym_block_comment] = STATE(757), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4268), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [758] = { [sym_line_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [anon_sym_LF] = ACTIONS(3343), - [anon_sym_CR] = ACTIONS(3343), - [anon_sym_CR_LF] = ACTIONS(3343), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(3343), - [anon_sym___global] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_union] = ACTIONS(3343), - [anon_sym_pub] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_STAR_EQ] = ACTIONS(3343), - [anon_sym_SLASH_EQ] = ACTIONS(3343), - [anon_sym_PERCENT_EQ] = ACTIONS(3343), - [anon_sym_LT_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_GT_EQ] = ACTIONS(3343), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3343), - [anon_sym_AMP_EQ] = ACTIONS(3343), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3343), - [anon_sym_PLUS_EQ] = ACTIONS(3343), - [anon_sym_DASH_EQ] = ACTIONS(3343), - [anon_sym_PIPE_EQ] = ACTIONS(3343), - [anon_sym_CARET_EQ] = ACTIONS(3343), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_DOLLARfor] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_asm] = ACTIONS(3343), - [anon_sym_AT_LBRACK] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [sym_block_comment] = STATE(758), + [sym__expression] = STATE(1702), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [759] = { [sym_line_comment] = STATE(759), - [sym__expression] = STATE(2185), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(759), + [sym__expression] = STATE(287), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [760] = { [sym_line_comment] = STATE(760), - [sym__expression] = STATE(1292), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(760), + [sym__expression] = STATE(1326), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -118213,342 +112214,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [761] = { [sym_line_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_EQ] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_STAR_EQ] = ACTIONS(3347), - [anon_sym_SLASH_EQ] = ACTIONS(3347), - [anon_sym_PERCENT_EQ] = ACTIONS(3347), - [anon_sym_LT_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_AMP_EQ] = ACTIONS(3347), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3347), - [anon_sym_PLUS_EQ] = ACTIONS(3347), - [anon_sym_DASH_EQ] = ACTIONS(3347), - [anon_sym_PIPE_EQ] = ACTIONS(3347), - [anon_sym_CARET_EQ] = ACTIONS(3347), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [sym_block_comment] = STATE(761), + [sym__expression] = STATE(298), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [762] = { [sym_line_comment] = STATE(762), - [sym__expression] = STATE(2337), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [763] = { - [sym_line_comment] = STATE(763), - [sym__expression] = STATE(1314), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(762), + [sym__expression] = STATE(1327), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -118556,459 +112444,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, + [763] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, [764] = { [sym_line_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3351), - [anon_sym___global] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_pub] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_STAR_EQ] = ACTIONS(3351), - [anon_sym_SLASH_EQ] = ACTIONS(3351), - [anon_sym_PERCENT_EQ] = ACTIONS(3351), - [anon_sym_LT_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_GT_EQ] = ACTIONS(3351), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3351), - [anon_sym_AMP_EQ] = ACTIONS(3351), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3351), - [anon_sym_PLUS_EQ] = ACTIONS(3351), - [anon_sym_DASH_EQ] = ACTIONS(3351), - [anon_sym_PIPE_EQ] = ACTIONS(3351), - [anon_sym_CARET_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [anon_sym_assert] = ACTIONS(3351), - [anon_sym_defer] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_DOLLARfor] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_POUND] = ACTIONS(3351), - [anon_sym_asm] = ACTIONS(3351), - [anon_sym_AT_LBRACK] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [sym_block_comment] = STATE(764), + [sym__expression] = STATE(1329), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, [765] = { [sym_line_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3355), - [anon_sym___global] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_union] = ACTIONS(3355), - [anon_sym_pub] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_STAR_EQ] = ACTIONS(3355), - [anon_sym_SLASH_EQ] = ACTIONS(3355), - [anon_sym_PERCENT_EQ] = ACTIONS(3355), - [anon_sym_LT_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_GT_EQ] = ACTIONS(3355), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3355), - [anon_sym_AMP_EQ] = ACTIONS(3355), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3355), - [anon_sym_PLUS_EQ] = ACTIONS(3355), - [anon_sym_DASH_EQ] = ACTIONS(3355), - [anon_sym_PIPE_EQ] = ACTIONS(3355), - [anon_sym_CARET_EQ] = ACTIONS(3355), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [anon_sym_assert] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_DOLLARfor] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_POUND] = ACTIONS(3355), - [anon_sym_asm] = ACTIONS(3355), - [anon_sym_AT_LBRACK] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), + [sym_block_comment] = STATE(765), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3294), + [anon_sym_LF] = ACTIONS(3294), + [anon_sym_CR] = ACTIONS(3294), + [anon_sym_CR_LF] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym___global] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_PIPE] = ACTIONS(3294), + [anon_sym_fn] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_GT] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_LT_EQ] = ACTIONS(3294), + [anon_sym_GT_EQ] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_pub] = ACTIONS(3294), + [anon_sym_mut] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [anon_sym_QMARK] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3294), + [anon_sym_json_DOTdecode] = ACTIONS(3294), + [anon_sym_LBRACK2] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_CARET] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_LT_DASH] = ACTIONS(3294), + [anon_sym_LT_LT] = ACTIONS(3294), + [anon_sym_GT_GT] = ACTIONS(3294), + [anon_sym_GT_GT_GT] = ACTIONS(3294), + [anon_sym_AMP_CARET] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_PIPE_PIPE] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3294), + [sym_none] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_nil] = ACTIONS(3294), + [anon_sym_QMARK_DOT] = ACTIONS(3294), + [anon_sym_POUND_LBRACK] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_DOLLARif] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3294), + [anon_sym_BANGis] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3294), + [anon_sym_BANGin] = ACTIONS(3294), + [anon_sym_match] = ACTIONS(3294), + [anon_sym_select] = ACTIONS(3294), + [anon_sym_STAR_EQ] = ACTIONS(3294), + [anon_sym_SLASH_EQ] = ACTIONS(3294), + [anon_sym_PERCENT_EQ] = ACTIONS(3294), + [anon_sym_LT_LT_EQ] = ACTIONS(3294), + [anon_sym_GT_GT_EQ] = ACTIONS(3294), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3294), + [anon_sym_AMP_EQ] = ACTIONS(3294), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3294), + [anon_sym_PLUS_EQ] = ACTIONS(3294), + [anon_sym_DASH_EQ] = ACTIONS(3294), + [anon_sym_PIPE_EQ] = ACTIONS(3294), + [anon_sym_CARET_EQ] = ACTIONS(3294), + [anon_sym_COLON_EQ] = ACTIONS(3294), + [anon_sym_lock] = ACTIONS(3294), + [anon_sym_rlock] = ACTIONS(3294), + [anon_sym_unsafe] = ACTIONS(3294), + [anon_sym_sql] = ACTIONS(3294), + [sym_int_literal] = ACTIONS(3294), + [sym_float_literal] = ACTIONS(3294), + [sym_rune_literal] = ACTIONS(3294), + [sym_pseudo_compile_time_identifier] = ACTIONS(3294), + [anon_sym_shared] = ACTIONS(3294), + [anon_sym_map_LBRACK] = ACTIONS(3294), + [anon_sym_chan] = ACTIONS(3294), + [anon_sym_thread] = ACTIONS(3294), + [anon_sym_atomic] = ACTIONS(3294), + [anon_sym_assert] = ACTIONS(3294), + [anon_sym_defer] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_DOLLARfor] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_POUND] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym_AT_LBRACK] = ACTIONS(3294), + [sym___double_quote] = ACTIONS(3294), + [sym___single_quote] = ACTIONS(3294), + [sym___c_double_quote] = ACTIONS(3294), + [sym___c_single_quote] = ACTIONS(3294), + [sym___r_double_quote] = ACTIONS(3294), + [sym___r_single_quote] = ACTIONS(3294), }, [766] = { [sym_line_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym___global] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_union] = ACTIONS(3359), - [anon_sym_pub] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_STAR_EQ] = ACTIONS(3359), - [anon_sym_SLASH_EQ] = ACTIONS(3359), - [anon_sym_PERCENT_EQ] = ACTIONS(3359), - [anon_sym_LT_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_GT_EQ] = ACTIONS(3359), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3359), - [anon_sym_AMP_EQ] = ACTIONS(3359), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), - [anon_sym_DASH_EQ] = ACTIONS(3359), - [anon_sym_PIPE_EQ] = ACTIONS(3359), - [anon_sym_CARET_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_DOLLARfor] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_asm] = ACTIONS(3359), - [anon_sym_AT_LBRACK] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [sym_block_comment] = STATE(766), + [sym__expression] = STATE(2901), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [767] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), + [sym__expression] = STATE(2198), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [768] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), + [sym__expression] = STATE(1007), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [767] = { - [sym_line_comment] = STATE(767), - [sym__expression] = STATE(1298), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [769] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [sym__expression] = STATE(1311), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -119016,114 +113256,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [768] = { - [sym_line_comment] = STATE(768), - [sym__expression] = STATE(1316), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [770] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), + [sym__expression] = STATE(2338), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [771] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [772] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4169), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -119131,114 +113604,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [769] = { - [sym_line_comment] = STATE(769), - [sym__expression] = STATE(1318), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [773] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [sym__expression] = STATE(1298), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -119246,114 +113720,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [770] = { - [sym_line_comment] = STATE(770), - [sym__expression] = STATE(1320), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [774] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(1404), [anon_sym_LBRACE] = ACTIONS(1406), [anon_sym_LPAREN] = ACTIONS(1408), [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), + [anon_sym_PLUS] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_go] = ACTIONS(1422), + [anon_sym_spawn] = ACTIONS(1424), [anon_sym_json_DOTdecode] = ACTIONS(1426), [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), + [anon_sym_TILDE] = ACTIONS(1412), + [anon_sym_CARET] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_LT_DASH] = ACTIONS(1432), [sym_none] = ACTIONS(1434), [sym_true] = ACTIONS(1434), [sym_false] = ACTIONS(1434), [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1825), [anon_sym_DOLLARif] = ACTIONS(1438), [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), + [anon_sym_select] = ACTIONS(1442), + [anon_sym_lock] = ACTIONS(1444), + [anon_sym_rlock] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1831), [anon_sym_sql] = ACTIONS(1448), [sym_int_literal] = ACTIONS(1434), [sym_float_literal] = ACTIONS(1452), [sym_rune_literal] = ACTIONS(1452), [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(1456), [sym___single_quote] = ACTIONS(1458), [sym___c_double_quote] = ACTIONS(1460), @@ -119361,1473 +113836,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1464), [sym___r_single_quote] = ACTIONS(1466), }, - [771] = { - [sym_line_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(3363), - [anon_sym___global] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_union] = ACTIONS(3363), - [anon_sym_pub] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_STAR_EQ] = ACTIONS(3363), - [anon_sym_SLASH_EQ] = ACTIONS(3363), - [anon_sym_PERCENT_EQ] = ACTIONS(3363), - [anon_sym_LT_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_GT_EQ] = ACTIONS(3363), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3363), - [anon_sym_AMP_EQ] = ACTIONS(3363), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), - [anon_sym_DASH_EQ] = ACTIONS(3363), - [anon_sym_PIPE_EQ] = ACTIONS(3363), - [anon_sym_CARET_EQ] = ACTIONS(3363), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [anon_sym_assert] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_DOLLARfor] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_asm] = ACTIONS(3363), - [anon_sym_AT_LBRACK] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), - }, - [772] = { - [sym_line_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3367), - [anon_sym___global] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_union] = ACTIONS(3367), - [anon_sym_pub] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_STAR_EQ] = ACTIONS(3367), - [anon_sym_SLASH_EQ] = ACTIONS(3367), - [anon_sym_PERCENT_EQ] = ACTIONS(3367), - [anon_sym_LT_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_GT_EQ] = ACTIONS(3367), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3367), - [anon_sym_AMP_EQ] = ACTIONS(3367), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3367), - [anon_sym_PLUS_EQ] = ACTIONS(3367), - [anon_sym_DASH_EQ] = ACTIONS(3367), - [anon_sym_PIPE_EQ] = ACTIONS(3367), - [anon_sym_CARET_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_DOLLARfor] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(3367), - [anon_sym_asm] = ACTIONS(3367), - [anon_sym_AT_LBRACK] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), - }, - [773] = { - [sym_line_comment] = STATE(773), - [sym__expression] = STATE(1865), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [774] = { - [sym_line_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym___global] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_union] = ACTIONS(3371), - [anon_sym_pub] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_STAR_EQ] = ACTIONS(3371), - [anon_sym_SLASH_EQ] = ACTIONS(3371), - [anon_sym_PERCENT_EQ] = ACTIONS(3371), - [anon_sym_LT_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_GT_EQ] = ACTIONS(3371), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3371), - [anon_sym_AMP_EQ] = ACTIONS(3371), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3371), - [anon_sym_PLUS_EQ] = ACTIONS(3371), - [anon_sym_DASH_EQ] = ACTIONS(3371), - [anon_sym_PIPE_EQ] = ACTIONS(3371), - [anon_sym_CARET_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_defer] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_DOLLARfor] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_asm] = ACTIONS(3371), - [anon_sym_AT_LBRACK] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), - }, [775] = { [sym_line_comment] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3375), - [anon_sym___global] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_union] = ACTIONS(3375), - [anon_sym_pub] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_STAR_EQ] = ACTIONS(3375), - [anon_sym_SLASH_EQ] = ACTIONS(3375), - [anon_sym_PERCENT_EQ] = ACTIONS(3375), - [anon_sym_LT_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_GT_EQ] = ACTIONS(3375), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3375), - [anon_sym_AMP_EQ] = ACTIONS(3375), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3375), - [anon_sym_PLUS_EQ] = ACTIONS(3375), - [anon_sym_DASH_EQ] = ACTIONS(3375), - [anon_sym_PIPE_EQ] = ACTIONS(3375), - [anon_sym_CARET_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_defer] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_DOLLARfor] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_POUND] = ACTIONS(3375), - [anon_sym_asm] = ACTIONS(3375), - [anon_sym_AT_LBRACK] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), + [sym_block_comment] = STATE(775), + [sym__expression] = STATE(995), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [776] = { [sym_line_comment] = STATE(776), - [sym__expression] = STATE(2905), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [sym_block_comment] = STATE(776), + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LF] = ACTIONS(3298), + [anon_sym_CR] = ACTIONS(3298), + [anon_sym_CR_LF] = ACTIONS(3298), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_EQ] = ACTIONS(3298), + [anon_sym___global] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_pub] = ACTIONS(3298), + [anon_sym_mut] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_QMARK] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3298), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_LT_DASH] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_GT_GT_GT] = ACTIONS(3298), + [anon_sym_AMP_CARET] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3298), + [sym_none] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_nil] = ACTIONS(3298), + [anon_sym_QMARK_DOT] = ACTIONS(3298), + [anon_sym_POUND_LBRACK] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_DOLLARif] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3298), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_LT_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_GT_EQ] = ACTIONS(3298), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3298), + [anon_sym_AMP_EQ] = ACTIONS(3298), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_PIPE_EQ] = ACTIONS(3298), + [anon_sym_CARET_EQ] = ACTIONS(3298), + [anon_sym_COLON_EQ] = ACTIONS(3298), + [anon_sym_lock] = ACTIONS(3298), + [anon_sym_rlock] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(3298), + [anon_sym_sql] = ACTIONS(3298), + [sym_int_literal] = ACTIONS(3298), + [sym_float_literal] = ACTIONS(3298), + [sym_rune_literal] = ACTIONS(3298), + [sym_pseudo_compile_time_identifier] = ACTIONS(3298), + [anon_sym_shared] = ACTIONS(3298), + [anon_sym_map_LBRACK] = ACTIONS(3298), + [anon_sym_chan] = ACTIONS(3298), + [anon_sym_thread] = ACTIONS(3298), + [anon_sym_atomic] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_defer] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_DOLLARfor] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym_AT_LBRACK] = ACTIONS(3298), + [sym___double_quote] = ACTIONS(3298), + [sym___single_quote] = ACTIONS(3298), + [sym___c_double_quote] = ACTIONS(3298), + [sym___c_single_quote] = ACTIONS(3298), + [sym___r_double_quote] = ACTIONS(3298), + [sym___r_single_quote] = ACTIONS(3298), }, [777] = { [sym_line_comment] = STATE(777), - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3379), - [anon_sym___global] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_union] = ACTIONS(3379), - [anon_sym_pub] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_STAR_EQ] = ACTIONS(3379), - [anon_sym_SLASH_EQ] = ACTIONS(3379), - [anon_sym_PERCENT_EQ] = ACTIONS(3379), - [anon_sym_LT_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_GT_EQ] = ACTIONS(3379), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3379), - [anon_sym_AMP_EQ] = ACTIONS(3379), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3379), - [anon_sym_PLUS_EQ] = ACTIONS(3379), - [anon_sym_DASH_EQ] = ACTIONS(3379), - [anon_sym_PIPE_EQ] = ACTIONS(3379), - [anon_sym_CARET_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_DOLLARfor] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3379), - [anon_sym_asm] = ACTIONS(3379), - [anon_sym_AT_LBRACK] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), + [sym_block_comment] = STATE(777), + [sym__expression] = STATE(1004), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [778] = { [sym_line_comment] = STATE(778), - [sym__expression] = STATE(1867), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_block_comment] = STATE(778), + [sym__expression] = STATE(994), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, [779] = { [sym_line_comment] = STATE(779), - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(779), + [sym__expression] = STATE(1159), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [780] = { [sym_line_comment] = STATE(780), - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(780), + [sym__expression] = STATE(1800), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [781] = { [sym_line_comment] = STATE(781), - [sym__expression] = STATE(1815), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [782] = { - [sym_line_comment] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3383), - [anon_sym___global] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_pub] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_STAR_EQ] = ACTIONS(3383), - [anon_sym_SLASH_EQ] = ACTIONS(3383), - [anon_sym_PERCENT_EQ] = ACTIONS(3383), - [anon_sym_LT_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_GT_EQ] = ACTIONS(3383), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3383), - [anon_sym_AMP_EQ] = ACTIONS(3383), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3383), - [anon_sym_PLUS_EQ] = ACTIONS(3383), - [anon_sym_DASH_EQ] = ACTIONS(3383), - [anon_sym_PIPE_EQ] = ACTIONS(3383), - [anon_sym_CARET_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_DOLLARfor] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_asm] = ACTIONS(3383), - [anon_sym_AT_LBRACK] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), - }, - [783] = { - [sym_line_comment] = STATE(783), - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(781), + [sym__expression] = STATE(993), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), [anon_sym_go] = ACTIONS(519), [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -120841,1028 +114633,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [782] = { + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LF] = ACTIONS(3302), + [anon_sym_CR] = ACTIONS(3302), + [anon_sym_CR_LF] = ACTIONS(3302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_EQ] = ACTIONS(3302), + [anon_sym___global] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_fn] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3302), + [anon_sym_BANG_EQ] = ACTIONS(3302), + [anon_sym_LT_EQ] = ACTIONS(3302), + [anon_sym_GT_EQ] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_pub] = ACTIONS(3302), + [anon_sym_mut] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [anon_sym_QMARK] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_go] = ACTIONS(3302), + [anon_sym_spawn] = ACTIONS(3302), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3302), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3302), + [anon_sym_GT_GT_GT] = ACTIONS(3302), + [anon_sym_AMP_CARET] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_PIPE_PIPE] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3302), + [sym_none] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_nil] = ACTIONS(3302), + [anon_sym_QMARK_DOT] = ACTIONS(3302), + [anon_sym_POUND_LBRACK] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_DOLLARif] = ACTIONS(3302), + [anon_sym_is] = ACTIONS(3302), + [anon_sym_BANGis] = ACTIONS(3302), + [anon_sym_in] = ACTIONS(3302), + [anon_sym_BANGin] = ACTIONS(3302), + [anon_sym_match] = ACTIONS(3302), + [anon_sym_select] = ACTIONS(3302), + [anon_sym_STAR_EQ] = ACTIONS(3302), + [anon_sym_SLASH_EQ] = ACTIONS(3302), + [anon_sym_PERCENT_EQ] = ACTIONS(3302), + [anon_sym_LT_LT_EQ] = ACTIONS(3302), + [anon_sym_GT_GT_EQ] = ACTIONS(3302), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3302), + [anon_sym_AMP_EQ] = ACTIONS(3302), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3302), + [anon_sym_PLUS_EQ] = ACTIONS(3302), + [anon_sym_DASH_EQ] = ACTIONS(3302), + [anon_sym_PIPE_EQ] = ACTIONS(3302), + [anon_sym_CARET_EQ] = ACTIONS(3302), + [anon_sym_COLON_EQ] = ACTIONS(3302), + [anon_sym_lock] = ACTIONS(3302), + [anon_sym_rlock] = ACTIONS(3302), + [anon_sym_unsafe] = ACTIONS(3302), + [anon_sym_sql] = ACTIONS(3302), + [sym_int_literal] = ACTIONS(3302), + [sym_float_literal] = ACTIONS(3302), + [sym_rune_literal] = ACTIONS(3302), + [sym_pseudo_compile_time_identifier] = ACTIONS(3302), + [anon_sym_shared] = ACTIONS(3302), + [anon_sym_map_LBRACK] = ACTIONS(3302), + [anon_sym_chan] = ACTIONS(3302), + [anon_sym_thread] = ACTIONS(3302), + [anon_sym_atomic] = ACTIONS(3302), + [anon_sym_assert] = ACTIONS(3302), + [anon_sym_defer] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_DOLLARfor] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_POUND] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym_AT_LBRACK] = ACTIONS(3302), + [sym___double_quote] = ACTIONS(3302), + [sym___single_quote] = ACTIONS(3302), + [sym___c_double_quote] = ACTIONS(3302), + [sym___c_single_quote] = ACTIONS(3302), + [sym___r_double_quote] = ACTIONS(3302), + [sym___r_single_quote] = ACTIONS(3302), + }, + [783] = { + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LF] = ACTIONS(3306), + [anon_sym_CR] = ACTIONS(3306), + [anon_sym_CR_LF] = ACTIONS(3306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_EQ] = ACTIONS(3306), + [anon_sym___global] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_fn] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_LT_EQ] = ACTIONS(3306), + [anon_sym_GT_EQ] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_pub] = ACTIONS(3306), + [anon_sym_mut] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_go] = ACTIONS(3306), + [anon_sym_spawn] = ACTIONS(3306), + [anon_sym_json_DOTdecode] = ACTIONS(3306), + [anon_sym_LBRACK2] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_CARET] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_LT_LT] = ACTIONS(3306), + [anon_sym_GT_GT] = ACTIONS(3306), + [anon_sym_GT_GT_GT] = ACTIONS(3306), + [anon_sym_AMP_CARET] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_QMARK_DOT] = ACTIONS(3306), + [anon_sym_POUND_LBRACK] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_DOLLARif] = ACTIONS(3306), + [anon_sym_is] = ACTIONS(3306), + [anon_sym_BANGis] = ACTIONS(3306), + [anon_sym_in] = ACTIONS(3306), + [anon_sym_BANGin] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_select] = ACTIONS(3306), + [anon_sym_STAR_EQ] = ACTIONS(3306), + [anon_sym_SLASH_EQ] = ACTIONS(3306), + [anon_sym_PERCENT_EQ] = ACTIONS(3306), + [anon_sym_LT_LT_EQ] = ACTIONS(3306), + [anon_sym_GT_GT_EQ] = ACTIONS(3306), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3306), + [anon_sym_AMP_EQ] = ACTIONS(3306), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3306), + [anon_sym_PLUS_EQ] = ACTIONS(3306), + [anon_sym_DASH_EQ] = ACTIONS(3306), + [anon_sym_PIPE_EQ] = ACTIONS(3306), + [anon_sym_CARET_EQ] = ACTIONS(3306), + [anon_sym_COLON_EQ] = ACTIONS(3306), + [anon_sym_lock] = ACTIONS(3306), + [anon_sym_rlock] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(3306), + [anon_sym_sql] = ACTIONS(3306), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3306), + [sym_rune_literal] = ACTIONS(3306), + [sym_pseudo_compile_time_identifier] = ACTIONS(3306), + [anon_sym_shared] = ACTIONS(3306), + [anon_sym_map_LBRACK] = ACTIONS(3306), + [anon_sym_chan] = ACTIONS(3306), + [anon_sym_thread] = ACTIONS(3306), + [anon_sym_atomic] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_defer] = ACTIONS(3306), + [anon_sym_goto] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_DOLLARfor] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_asm] = ACTIONS(3306), + [anon_sym_AT_LBRACK] = ACTIONS(3306), + [sym___double_quote] = ACTIONS(3306), + [sym___single_quote] = ACTIONS(3306), + [sym___c_double_quote] = ACTIONS(3306), + [sym___c_single_quote] = ACTIONS(3306), + [sym___r_double_quote] = ACTIONS(3306), + [sym___r_single_quote] = ACTIONS(3306), }, [784] = { [sym_line_comment] = STATE(784), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_block_comment] = STATE(784), + [sym__expression] = STATE(1797), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [785] = { [sym_line_comment] = STATE(785), - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(785), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3310), + [anon_sym_LF] = ACTIONS(3310), + [anon_sym_CR] = ACTIONS(3310), + [anon_sym_CR_LF] = ACTIONS(3310), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_EQ] = ACTIONS(3310), + [anon_sym___global] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_fn] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_LT_EQ] = ACTIONS(3310), + [anon_sym_GT_EQ] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_pub] = ACTIONS(3310), + [anon_sym_mut] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_QMARK] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3310), + [anon_sym_json_DOTdecode] = ACTIONS(3310), + [anon_sym_LBRACK2] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_CARET] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_LT_DASH] = ACTIONS(3310), + [anon_sym_LT_LT] = ACTIONS(3310), + [anon_sym_GT_GT] = ACTIONS(3310), + [anon_sym_GT_GT_GT] = ACTIONS(3310), + [anon_sym_AMP_CARET] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_PIPE_PIPE] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3310), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_QMARK_DOT] = ACTIONS(3310), + [anon_sym_POUND_LBRACK] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_BANGin] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3310), + [anon_sym_select] = ACTIONS(3310), + [anon_sym_STAR_EQ] = ACTIONS(3310), + [anon_sym_SLASH_EQ] = ACTIONS(3310), + [anon_sym_PERCENT_EQ] = ACTIONS(3310), + [anon_sym_LT_LT_EQ] = ACTIONS(3310), + [anon_sym_GT_GT_EQ] = ACTIONS(3310), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3310), + [anon_sym_AMP_EQ] = ACTIONS(3310), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3310), + [anon_sym_PLUS_EQ] = ACTIONS(3310), + [anon_sym_DASH_EQ] = ACTIONS(3310), + [anon_sym_PIPE_EQ] = ACTIONS(3310), + [anon_sym_CARET_EQ] = ACTIONS(3310), + [anon_sym_COLON_EQ] = ACTIONS(3310), + [anon_sym_lock] = ACTIONS(3310), + [anon_sym_rlock] = ACTIONS(3310), + [anon_sym_unsafe] = ACTIONS(3310), + [anon_sym_sql] = ACTIONS(3310), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3310), + [sym_rune_literal] = ACTIONS(3310), + [sym_pseudo_compile_time_identifier] = ACTIONS(3310), + [anon_sym_shared] = ACTIONS(3310), + [anon_sym_map_LBRACK] = ACTIONS(3310), + [anon_sym_chan] = ACTIONS(3310), + [anon_sym_thread] = ACTIONS(3310), + [anon_sym_atomic] = ACTIONS(3310), + [anon_sym_assert] = ACTIONS(3310), + [anon_sym_defer] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_DOLLARfor] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym_AT_LBRACK] = ACTIONS(3310), + [sym___double_quote] = ACTIONS(3310), + [sym___single_quote] = ACTIONS(3310), + [sym___c_double_quote] = ACTIONS(3310), + [sym___c_single_quote] = ACTIONS(3310), + [sym___r_double_quote] = ACTIONS(3310), + [sym___r_single_quote] = ACTIONS(3310), }, [786] = { [sym_line_comment] = STATE(786), - [sym__expression] = STATE(1910), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_block_comment] = STATE(786), + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [787] = { [sym_line_comment] = STATE(787), - [sym__expression] = STATE(1829), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [788] = { - [sym_line_comment] = STATE(788), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4178), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [789] = { - [sym_line_comment] = STATE(789), - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(787), + [sym__expression] = STATE(2683), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [790] = { - [sym_line_comment] = STATE(790), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4186), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [791] = { - [sym_line_comment] = STATE(791), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [792] = { - [sym_line_comment] = STATE(792), - [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [788] = { + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [sym__expression] = STATE(1006), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -121870,459 +115439,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [793] = { - [sym_line_comment] = STATE(793), - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3387), - [anon_sym___global] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_pub] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_STAR_EQ] = ACTIONS(3387), - [anon_sym_SLASH_EQ] = ACTIONS(3387), - [anon_sym_PERCENT_EQ] = ACTIONS(3387), - [anon_sym_LT_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_GT_EQ] = ACTIONS(3387), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3387), - [anon_sym_AMP_EQ] = ACTIONS(3387), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3387), - [anon_sym_PLUS_EQ] = ACTIONS(3387), - [anon_sym_DASH_EQ] = ACTIONS(3387), - [anon_sym_PIPE_EQ] = ACTIONS(3387), - [anon_sym_CARET_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_DOLLARfor] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_asm] = ACTIONS(3387), - [anon_sym_AT_LBRACK] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [794] = { - [sym_line_comment] = STATE(794), - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_pub] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_STAR_EQ] = ACTIONS(3391), - [anon_sym_SLASH_EQ] = ACTIONS(3391), - [anon_sym_PERCENT_EQ] = ACTIONS(3391), - [anon_sym_LT_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_GT_EQ] = ACTIONS(3391), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3391), - [anon_sym_AMP_EQ] = ACTIONS(3391), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3391), - [anon_sym_PLUS_EQ] = ACTIONS(3391), - [anon_sym_DASH_EQ] = ACTIONS(3391), - [anon_sym_PIPE_EQ] = ACTIONS(3391), - [anon_sym_CARET_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_DOLLARfor] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym_AT_LBRACK] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [789] = { + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_CR] = ACTIONS(3314), + [anon_sym_CR_LF] = ACTIONS(3314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_EQ] = ACTIONS(3314), + [anon_sym___global] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_EQ_EQ] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_LT_EQ] = ACTIONS(3314), + [anon_sym_GT_EQ] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3314), + [anon_sym_union] = ACTIONS(3314), + [anon_sym_pub] = ACTIONS(3314), + [anon_sym_mut] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_go] = ACTIONS(3314), + [anon_sym_spawn] = ACTIONS(3314), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_CARET] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_LT_LT] = ACTIONS(3314), + [anon_sym_GT_GT] = ACTIONS(3314), + [anon_sym_GT_GT_GT] = ACTIONS(3314), + [anon_sym_AMP_CARET] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_or] = ACTIONS(3314), + [sym_none] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_nil] = ACTIONS(3314), + [anon_sym_QMARK_DOT] = ACTIONS(3314), + [anon_sym_POUND_LBRACK] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_is] = ACTIONS(3314), + [anon_sym_BANGis] = ACTIONS(3314), + [anon_sym_in] = ACTIONS(3314), + [anon_sym_BANGin] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_STAR_EQ] = ACTIONS(3314), + [anon_sym_SLASH_EQ] = ACTIONS(3314), + [anon_sym_PERCENT_EQ] = ACTIONS(3314), + [anon_sym_LT_LT_EQ] = ACTIONS(3314), + [anon_sym_GT_GT_EQ] = ACTIONS(3314), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3314), + [anon_sym_AMP_EQ] = ACTIONS(3314), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3314), + [anon_sym_PLUS_EQ] = ACTIONS(3314), + [anon_sym_DASH_EQ] = ACTIONS(3314), + [anon_sym_PIPE_EQ] = ACTIONS(3314), + [anon_sym_CARET_EQ] = ACTIONS(3314), + [anon_sym_COLON_EQ] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3314), + [anon_sym_rlock] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(3314), + [anon_sym_sql] = ACTIONS(3314), + [sym_int_literal] = ACTIONS(3314), + [sym_float_literal] = ACTIONS(3314), + [sym_rune_literal] = ACTIONS(3314), + [sym_pseudo_compile_time_identifier] = ACTIONS(3314), + [anon_sym_shared] = ACTIONS(3314), + [anon_sym_map_LBRACK] = ACTIONS(3314), + [anon_sym_chan] = ACTIONS(3314), + [anon_sym_thread] = ACTIONS(3314), + [anon_sym_atomic] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_defer] = ACTIONS(3314), + [anon_sym_goto] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_DOLLARfor] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_POUND] = ACTIONS(3314), + [anon_sym_asm] = ACTIONS(3314), + [anon_sym_AT_LBRACK] = ACTIONS(3314), + [sym___double_quote] = ACTIONS(3314), + [sym___single_quote] = ACTIONS(3314), + [sym___c_double_quote] = ACTIONS(3314), + [sym___c_single_quote] = ACTIONS(3314), + [sym___r_double_quote] = ACTIONS(3314), + [sym___r_single_quote] = ACTIONS(3314), }, - [795] = { - [sym_line_comment] = STATE(795), - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [790] = { + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_STAR_EQ] = ACTIONS(3318), + [anon_sym_SLASH_EQ] = ACTIONS(3318), + [anon_sym_PERCENT_EQ] = ACTIONS(3318), + [anon_sym_LT_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_GT_EQ] = ACTIONS(3318), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3318), + [anon_sym_AMP_EQ] = ACTIONS(3318), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3318), + [anon_sym_PLUS_EQ] = ACTIONS(3318), + [anon_sym_DASH_EQ] = ACTIONS(3318), + [anon_sym_PIPE_EQ] = ACTIONS(3318), + [anon_sym_CARET_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), }, - [796] = { - [sym_line_comment] = STATE(796), + [791] = { + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), [sym__expression] = STATE(1001), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2887), + [anon_sym_spawn] = ACTIONS(2889), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2893), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -122330,1034 +115787,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2897), + [anon_sym_rlock] = ACTIONS(2897), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [797] = { - [sym_line_comment] = STATE(797), + [792] = { + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [798] = { - [sym_line_comment] = STATE(798), - [sym__expression] = STATE(1002), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [799] = { - [sym_line_comment] = STATE(799), - [sym__expression] = STATE(1003), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [800] = { - [sym_line_comment] = STATE(800), - [sym__expression] = STATE(1004), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [801] = { - [sym_line_comment] = STATE(801), - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [802] = { - [sym_line_comment] = STATE(802), - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [803] = { - [sym_line_comment] = STATE(803), - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_CR] = ACTIONS(3395), - [anon_sym_CR_LF] = ACTIONS(3395), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym___global] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_fn] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_LT_EQ] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_union] = ACTIONS(3395), - [anon_sym_pub] = ACTIONS(3395), - [anon_sym_mut] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(3395), - [anon_sym_spawn] = ACTIONS(3395), - [anon_sym_json_DOTdecode] = ACTIONS(3395), - [anon_sym_LBRACK2] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_DASH] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_AMP_CARET] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3395), - [anon_sym_PIPE_PIPE] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_nil] = ACTIONS(3395), - [anon_sym_QMARK_DOT] = ACTIONS(3395), - [anon_sym_POUND_LBRACK] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOLLARif] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_BANGis] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_BANGin] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_STAR_EQ] = ACTIONS(3395), - [anon_sym_SLASH_EQ] = ACTIONS(3395), - [anon_sym_PERCENT_EQ] = ACTIONS(3395), - [anon_sym_LT_LT_EQ] = ACTIONS(3395), - [anon_sym_GT_GT_EQ] = ACTIONS(3395), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3395), - [anon_sym_AMP_EQ] = ACTIONS(3395), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3395), - [anon_sym_DASH_EQ] = ACTIONS(3395), - [anon_sym_PIPE_EQ] = ACTIONS(3395), - [anon_sym_CARET_EQ] = ACTIONS(3395), - [anon_sym_COLON_EQ] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_rlock] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_sql] = ACTIONS(3395), - [sym_int_literal] = ACTIONS(3395), - [sym_float_literal] = ACTIONS(3395), - [sym_rune_literal] = ACTIONS(3395), - [sym_pseudo_compile_time_identifier] = ACTIONS(3395), - [anon_sym_shared] = ACTIONS(3395), - [anon_sym_map_LBRACK] = ACTIONS(3395), - [anon_sym_chan] = ACTIONS(3395), - [anon_sym_thread] = ACTIONS(3395), - [anon_sym_atomic] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_defer] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_DOLLARfor] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_POUND] = ACTIONS(3395), - [anon_sym_asm] = ACTIONS(3395), - [anon_sym_AT_LBRACK] = ACTIONS(3395), - [sym___double_quote] = ACTIONS(3395), - [sym___single_quote] = ACTIONS(3395), - [sym___c_double_quote] = ACTIONS(3395), - [sym___c_single_quote] = ACTIONS(3395), - [sym___r_double_quote] = ACTIONS(3395), - [sym___r_single_quote] = ACTIONS(3395), - }, - [804] = { - [sym_line_comment] = STATE(804), - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [805] = { - [sym_line_comment] = STATE(805), - [sym__expression] = STATE(986), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), [anon_sym_go] = ACTIONS(519), [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -123371,108 +115909,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [806] = { - [sym_line_comment] = STATE(806), - [sym__expression] = STATE(1005), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [793] = { + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), [sym_none] = ACTIONS(531), [sym_true] = ACTIONS(531), [sym_false] = ACTIONS(531), @@ -123480,555 +116019,444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(533), [anon_sym_DOLLARif] = ACTIONS(535), [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), [anon_sym_unsafe] = ACTIONS(543), [anon_sym_sql] = ACTIONS(545), [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [807] = { - [sym_line_comment] = STATE(807), - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [anon_sym_LF] = ACTIONS(3399), - [anon_sym_CR] = ACTIONS(3399), - [anon_sym_CR_LF] = ACTIONS(3399), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3399), - [anon_sym___global] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_fn] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_EQ_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [anon_sym_pub] = ACTIONS(3399), - [anon_sym_mut] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_go] = ACTIONS(3399), - [anon_sym_spawn] = ACTIONS(3399), - [anon_sym_json_DOTdecode] = ACTIONS(3399), - [anon_sym_LBRACK2] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3399), - [anon_sym_GT_GT] = ACTIONS(3399), - [anon_sym_GT_GT_GT] = ACTIONS(3399), - [anon_sym_AMP_CARET] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [sym_none] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_nil] = ACTIONS(3399), - [anon_sym_QMARK_DOT] = ACTIONS(3399), - [anon_sym_POUND_LBRACK] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOLLARif] = ACTIONS(3399), - [anon_sym_is] = ACTIONS(3399), - [anon_sym_BANGis] = ACTIONS(3399), - [anon_sym_in] = ACTIONS(3399), - [anon_sym_BANGin] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_STAR_EQ] = ACTIONS(3399), - [anon_sym_SLASH_EQ] = ACTIONS(3399), - [anon_sym_PERCENT_EQ] = ACTIONS(3399), - [anon_sym_LT_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_GT_EQ] = ACTIONS(3399), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3399), - [anon_sym_AMP_EQ] = ACTIONS(3399), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3399), - [anon_sym_PLUS_EQ] = ACTIONS(3399), - [anon_sym_DASH_EQ] = ACTIONS(3399), - [anon_sym_PIPE_EQ] = ACTIONS(3399), - [anon_sym_CARET_EQ] = ACTIONS(3399), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_rlock] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_sql] = ACTIONS(3399), - [sym_int_literal] = ACTIONS(3399), - [sym_float_literal] = ACTIONS(3399), - [sym_rune_literal] = ACTIONS(3399), - [sym_pseudo_compile_time_identifier] = ACTIONS(3399), - [anon_sym_shared] = ACTIONS(3399), - [anon_sym_map_LBRACK] = ACTIONS(3399), - [anon_sym_chan] = ACTIONS(3399), - [anon_sym_thread] = ACTIONS(3399), - [anon_sym_atomic] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_defer] = ACTIONS(3399), - [anon_sym_goto] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_DOLLARfor] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_POUND] = ACTIONS(3399), - [anon_sym_asm] = ACTIONS(3399), - [anon_sym_AT_LBRACK] = ACTIONS(3399), - [sym___double_quote] = ACTIONS(3399), - [sym___single_quote] = ACTIONS(3399), - [sym___c_double_quote] = ACTIONS(3399), - [sym___c_single_quote] = ACTIONS(3399), - [sym___r_double_quote] = ACTIONS(3399), - [sym___r_single_quote] = ACTIONS(3399), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [808] = { - [sym_line_comment] = STATE(808), - [sym__expression] = STATE(2903), - [sym__expression_without_blocks] = STATE(3034), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [794] = { + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym___global] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_pub] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_STAR_EQ] = ACTIONS(3322), + [anon_sym_SLASH_EQ] = ACTIONS(3322), + [anon_sym_PERCENT_EQ] = ACTIONS(3322), + [anon_sym_LT_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_GT_EQ] = ACTIONS(3322), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3322), + [anon_sym_AMP_EQ] = ACTIONS(3322), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3322), + [anon_sym_PLUS_EQ] = ACTIONS(3322), + [anon_sym_DASH_EQ] = ACTIONS(3322), + [anon_sym_PIPE_EQ] = ACTIONS(3322), + [anon_sym_CARET_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_defer] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_DOLLARfor] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym_AT_LBRACK] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), }, - [809] = { - [sym_line_comment] = STATE(809), - [sym__expression] = STATE(998), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3027), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_LT_DASH] = ACTIONS(3033), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(3035), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [795] = { + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, - [810] = { - [sym_line_comment] = STATE(810), - [sym__expression] = STATE(2906), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [796] = { + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_STAR_EQ] = ACTIONS(2703), + [anon_sym_SLASH_EQ] = ACTIONS(2703), + [anon_sym_PERCENT_EQ] = ACTIONS(2703), + [anon_sym_LT_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2703), + [anon_sym_AMP_EQ] = ACTIONS(2703), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2703), + [anon_sym_PLUS_EQ] = ACTIONS(2703), + [anon_sym_DASH_EQ] = ACTIONS(2703), + [anon_sym_PIPE_EQ] = ACTIONS(2703), + [anon_sym_CARET_EQ] = ACTIONS(2703), + [anon_sym_COLON_EQ] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, - [811] = { - [sym_line_comment] = STATE(811), - [sym__expression] = STATE(1686), - [sym__expression_without_blocks] = STATE(1941), - [sym__expression_with_blocks] = STATE(1941), - [sym_inc_expression] = STATE(1947), - [sym_dec_expression] = STATE(1947), - [sym_or_block_expression] = STATE(1947), - [sym_option_propagation_expression] = STATE(1947), - [sym_result_propagation_expression] = STATE(1947), - [sym_anon_struct_value_expression] = STATE(1948), - [sym_go_expression] = STATE(1947), - [sym_spawn_expression] = STATE(1947), - [sym_parenthesized_expression] = STATE(1947), - [sym_call_expression] = STATE(1947), - [sym_type_initializer] = STATE(1948), - [sym_function_literal] = STATE(1947), - [sym_reference_expression] = STATE(1893), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1947), - [sym_receive_expression] = STATE(1947), - [sym_binary_expression] = STATE(1947), - [sym_as_type_cast_expression] = STATE(1947), - [sym__max_group] = STATE(1947), - [sym_literal] = STATE(1940), - [sym_map_init_expression] = STATE(1948), - [sym_array_creation] = STATE(1947), - [sym_fixed_array_creation] = STATE(1947), - [sym_selector_expression] = STATE(1947), - [sym_index_expression] = STATE(1947), - [sym_slice_expression] = STATE(1947), - [sym_if_expression] = STATE(1948), - [sym_compile_time_if_expression] = STATE(1948), - [sym_is_expression] = STATE(1947), - [sym_not_is_expression] = STATE(1947), - [sym_in_expression] = STATE(1947), - [sym_not_in_expression] = STATE(1947), - [sym_enum_fetch] = STATE(1947), - [sym_match_expression] = STATE(1948), - [sym_select_expression] = STATE(1948), - [sym_lock_expression] = STATE(1948), - [sym_unsafe_expression] = STATE(1948), - [sym_sql_expression] = STATE(1948), - [sym_c_string_literal] = STATE(1939), - [sym_raw_string_literal] = STATE(1939), - [sym_interpreted_string_literal] = STATE(1939), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [797] = { + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [sym__expression] = STATE(1706), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(2785), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(2787), [anon_sym_LBRACE] = ACTIONS(2789), [anon_sym_LPAREN] = ACTIONS(2791), @@ -124037,8 +116465,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(2795), [anon_sym_STAR] = ACTIONS(2797), [anon_sym_struct] = ACTIONS(2799), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(2801), [anon_sym_go] = ACTIONS(2803), [anon_sym_spawn] = ACTIONS(2805), @@ -124064,11 +116492,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2831), [sym_rune_literal] = ACTIONS(2831), [sym_pseudo_compile_time_identifier] = ACTIONS(2833), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(2835), [sym___single_quote] = ACTIONS(2837), [sym___c_double_quote] = ACTIONS(2839), @@ -124076,93 +116504,1022 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2843), [sym___r_single_quote] = ACTIONS(2845), }, - [812] = { - [sym_line_comment] = STATE(812), - [sym__expression] = STATE(1853), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [798] = { + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [sym__expression] = STATE(1801), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), + }, + [799] = { + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [800] = { + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), + [sym__expression] = STATE(1802), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), + }, + [801] = { + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LF] = ACTIONS(3326), + [anon_sym_CR] = ACTIONS(3326), + [anon_sym_CR_LF] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_as] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym___global] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_pub] = ACTIONS(3326), + [anon_sym_mut] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_go] = ACTIONS(3326), + [anon_sym_spawn] = ACTIONS(3326), + [anon_sym_json_DOTdecode] = ACTIONS(3326), + [anon_sym_LBRACK2] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [sym_none] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_nil] = ACTIONS(3326), + [anon_sym_QMARK_DOT] = ACTIONS(3326), + [anon_sym_POUND_LBRACK] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_is] = ACTIONS(3326), + [anon_sym_BANGis] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_BANGin] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_select] = ACTIONS(3326), + [anon_sym_STAR_EQ] = ACTIONS(3326), + [anon_sym_SLASH_EQ] = ACTIONS(3326), + [anon_sym_PERCENT_EQ] = ACTIONS(3326), + [anon_sym_LT_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_GT_EQ] = ACTIONS(3326), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3326), + [anon_sym_AMP_EQ] = ACTIONS(3326), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3326), + [anon_sym_PLUS_EQ] = ACTIONS(3326), + [anon_sym_DASH_EQ] = ACTIONS(3326), + [anon_sym_PIPE_EQ] = ACTIONS(3326), + [anon_sym_CARET_EQ] = ACTIONS(3326), + [anon_sym_COLON_EQ] = ACTIONS(3326), + [anon_sym_lock] = ACTIONS(3326), + [anon_sym_rlock] = ACTIONS(3326), + [anon_sym_unsafe] = ACTIONS(3326), + [anon_sym_sql] = ACTIONS(3326), + [sym_int_literal] = ACTIONS(3326), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [sym_pseudo_compile_time_identifier] = ACTIONS(3326), + [anon_sym_shared] = ACTIONS(3326), + [anon_sym_map_LBRACK] = ACTIONS(3326), + [anon_sym_chan] = ACTIONS(3326), + [anon_sym_thread] = ACTIONS(3326), + [anon_sym_atomic] = ACTIONS(3326), + [anon_sym_assert] = ACTIONS(3326), + [anon_sym_defer] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_DOLLARfor] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym_AT_LBRACK] = ACTIONS(3326), + [sym___double_quote] = ACTIONS(3326), + [sym___single_quote] = ACTIONS(3326), + [sym___c_double_quote] = ACTIONS(3326), + [sym___c_single_quote] = ACTIONS(3326), + [sym___r_double_quote] = ACTIONS(3326), + [sym___r_single_quote] = ACTIONS(3326), + }, + [802] = { + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LF] = ACTIONS(3330), + [anon_sym_CR] = ACTIONS(3330), + [anon_sym_CR_LF] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_as] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym___global] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3330), + [anon_sym_union] = ACTIONS(3330), + [anon_sym_pub] = ACTIONS(3330), + [anon_sym_mut] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_QMARK] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_go] = ACTIONS(3330), + [anon_sym_spawn] = ACTIONS(3330), + [anon_sym_json_DOTdecode] = ACTIONS(3330), + [anon_sym_LBRACK2] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [sym_none] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_nil] = ACTIONS(3330), + [anon_sym_QMARK_DOT] = ACTIONS(3330), + [anon_sym_POUND_LBRACK] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_DOLLARif] = ACTIONS(3330), + [anon_sym_is] = ACTIONS(3330), + [anon_sym_BANGis] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_BANGin] = ACTIONS(3330), + [anon_sym_match] = ACTIONS(3330), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_STAR_EQ] = ACTIONS(3330), + [anon_sym_SLASH_EQ] = ACTIONS(3330), + [anon_sym_PERCENT_EQ] = ACTIONS(3330), + [anon_sym_LT_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_GT_EQ] = ACTIONS(3330), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3330), + [anon_sym_AMP_EQ] = ACTIONS(3330), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3330), + [anon_sym_PLUS_EQ] = ACTIONS(3330), + [anon_sym_DASH_EQ] = ACTIONS(3330), + [anon_sym_PIPE_EQ] = ACTIONS(3330), + [anon_sym_CARET_EQ] = ACTIONS(3330), + [anon_sym_COLON_EQ] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3330), + [anon_sym_rlock] = ACTIONS(3330), + [anon_sym_unsafe] = ACTIONS(3330), + [anon_sym_sql] = ACTIONS(3330), + [sym_int_literal] = ACTIONS(3330), + [sym_float_literal] = ACTIONS(3330), + [sym_rune_literal] = ACTIONS(3330), + [sym_pseudo_compile_time_identifier] = ACTIONS(3330), + [anon_sym_shared] = ACTIONS(3330), + [anon_sym_map_LBRACK] = ACTIONS(3330), + [anon_sym_chan] = ACTIONS(3330), + [anon_sym_thread] = ACTIONS(3330), + [anon_sym_atomic] = ACTIONS(3330), + [anon_sym_assert] = ACTIONS(3330), + [anon_sym_defer] = ACTIONS(3330), + [anon_sym_goto] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_DOLLARfor] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_POUND] = ACTIONS(3330), + [anon_sym_asm] = ACTIONS(3330), + [anon_sym_AT_LBRACK] = ACTIONS(3330), + [sym___double_quote] = ACTIONS(3330), + [sym___single_quote] = ACTIONS(3330), + [sym___c_double_quote] = ACTIONS(3330), + [sym___c_single_quote] = ACTIONS(3330), + [sym___r_double_quote] = ACTIONS(3330), + [sym___r_single_quote] = ACTIONS(3330), + }, + [803] = { + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), + }, + [804] = { + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [805] = { + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [806] = { + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), + [sym__expression] = STATE(1840), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -124170,20 +117527,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -124191,314 +117548,1245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, + [807] = { + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), + [sym__expression] = STATE(1818), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), + }, + [808] = { + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [809] = { + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), + [sym__expression] = STATE(2478), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [810] = { + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), + [sym__expression] = STATE(2347), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [811] = { + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym___global] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_STAR_EQ] = ACTIONS(2867), + [anon_sym_SLASH_EQ] = ACTIONS(2867), + [anon_sym_PERCENT_EQ] = ACTIONS(2867), + [anon_sym_LT_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_AMP_EQ] = ACTIONS(2867), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2867), + [anon_sym_PLUS_EQ] = ACTIONS(2867), + [anon_sym_DASH_EQ] = ACTIONS(2867), + [anon_sym_PIPE_EQ] = ACTIONS(2867), + [anon_sym_CARET_EQ] = ACTIONS(2867), + [anon_sym_COLON_EQ] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_defer] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_DOLLARfor] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym_AT_LBRACK] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), + }, + [812] = { + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym__expression] = STATE(280), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4143), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, [813] = { [sym_line_comment] = STATE(813), - [sym__expression] = STATE(1822), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), + [sym_block_comment] = STATE(813), + [sym__expression] = STATE(2474), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [814] = { [sym_line_comment] = STATE(814), - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [anon_sym_LF] = ACTIONS(3403), - [anon_sym_CR] = ACTIONS(3403), - [anon_sym_CR_LF] = ACTIONS(3403), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3403), - [anon_sym___global] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_fn] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_EQ_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_LT_EQ] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_union] = ACTIONS(3403), - [anon_sym_pub] = ACTIONS(3403), - [anon_sym_mut] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_go] = ACTIONS(3403), - [anon_sym_spawn] = ACTIONS(3403), - [anon_sym_json_DOTdecode] = ACTIONS(3403), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3403), - [anon_sym_GT_GT] = ACTIONS(3403), - [anon_sym_GT_GT_GT] = ACTIONS(3403), - [anon_sym_AMP_CARET] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_nil] = ACTIONS(3403), - [anon_sym_QMARK_DOT] = ACTIONS(3403), - [anon_sym_POUND_LBRACK] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOLLARif] = ACTIONS(3403), - [anon_sym_is] = ACTIONS(3403), - [anon_sym_BANGis] = ACTIONS(3403), - [anon_sym_in] = ACTIONS(3403), - [anon_sym_BANGin] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_STAR_EQ] = ACTIONS(3403), - [anon_sym_SLASH_EQ] = ACTIONS(3403), - [anon_sym_PERCENT_EQ] = ACTIONS(3403), - [anon_sym_LT_LT_EQ] = ACTIONS(3403), - [anon_sym_GT_GT_EQ] = ACTIONS(3403), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3403), - [anon_sym_AMP_EQ] = ACTIONS(3403), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3403), - [anon_sym_PLUS_EQ] = ACTIONS(3403), - [anon_sym_DASH_EQ] = ACTIONS(3403), - [anon_sym_PIPE_EQ] = ACTIONS(3403), - [anon_sym_CARET_EQ] = ACTIONS(3403), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_rlock] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_sql] = ACTIONS(3403), - [sym_int_literal] = ACTIONS(3403), - [sym_float_literal] = ACTIONS(3403), - [sym_rune_literal] = ACTIONS(3403), - [sym_pseudo_compile_time_identifier] = ACTIONS(3403), - [anon_sym_shared] = ACTIONS(3403), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3403), - [anon_sym_thread] = ACTIONS(3403), - [anon_sym_atomic] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_defer] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_DOLLARfor] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_POUND] = ACTIONS(3403), - [anon_sym_asm] = ACTIONS(3403), - [anon_sym_AT_LBRACK] = ACTIONS(3403), - [sym___double_quote] = ACTIONS(3403), - [sym___single_quote] = ACTIONS(3403), - [sym___c_double_quote] = ACTIONS(3403), - [sym___c_single_quote] = ACTIONS(3403), - [sym___r_double_quote] = ACTIONS(3403), - [sym___r_single_quote] = ACTIONS(3403), + [sym_block_comment] = STATE(814), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LF] = ACTIONS(3334), + [anon_sym_CR] = ACTIONS(3334), + [anon_sym_CR_LF] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_as] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym___global] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_pub] = ACTIONS(3334), + [anon_sym_mut] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_go] = ACTIONS(3334), + [anon_sym_spawn] = ACTIONS(3334), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_LBRACK2] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [sym_none] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_nil] = ACTIONS(3334), + [anon_sym_QMARK_DOT] = ACTIONS(3334), + [anon_sym_POUND_LBRACK] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_DOLLARif] = ACTIONS(3334), + [anon_sym_is] = ACTIONS(3334), + [anon_sym_BANGis] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_BANGin] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3334), + [anon_sym_select] = ACTIONS(3334), + [anon_sym_STAR_EQ] = ACTIONS(3334), + [anon_sym_SLASH_EQ] = ACTIONS(3334), + [anon_sym_PERCENT_EQ] = ACTIONS(3334), + [anon_sym_LT_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_GT_EQ] = ACTIONS(3334), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3334), + [anon_sym_AMP_EQ] = ACTIONS(3334), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3334), + [anon_sym_PLUS_EQ] = ACTIONS(3334), + [anon_sym_DASH_EQ] = ACTIONS(3334), + [anon_sym_PIPE_EQ] = ACTIONS(3334), + [anon_sym_CARET_EQ] = ACTIONS(3334), + [anon_sym_COLON_EQ] = ACTIONS(3334), + [anon_sym_lock] = ACTIONS(3334), + [anon_sym_rlock] = ACTIONS(3334), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3334), + [sym_int_literal] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_shared] = ACTIONS(3334), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3334), + [anon_sym_thread] = ACTIONS(3334), + [anon_sym_atomic] = ACTIONS(3334), + [anon_sym_assert] = ACTIONS(3334), + [anon_sym_defer] = ACTIONS(3334), + [anon_sym_goto] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_DOLLARfor] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_asm] = ACTIONS(3334), + [anon_sym_AT_LBRACK] = ACTIONS(3334), + [sym___double_quote] = ACTIONS(3334), + [sym___single_quote] = ACTIONS(3334), + [sym___c_double_quote] = ACTIONS(3334), + [sym___c_single_quote] = ACTIONS(3334), + [sym___r_double_quote] = ACTIONS(3334), + [sym___r_single_quote] = ACTIONS(3334), }, [815] = { [sym_line_comment] = STATE(815), - [sym__expression] = STATE(1815), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(815), + [sym__expression] = STATE(2470), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [816] = { + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [sym__expression] = STATE(2896), + [sym__expression_without_blocks] = STATE(3021), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [817] = { + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -124524,11 +118812,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -124536,84 +118824,2057 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [816] = { - [sym_line_comment] = STATE(816), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4175), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [818] = { + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LF] = ACTIONS(3338), + [anon_sym_CR] = ACTIONS(3338), + [anon_sym_CR_LF] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym___global] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_pub] = ACTIONS(3338), + [anon_sym_mut] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_go] = ACTIONS(3338), + [anon_sym_spawn] = ACTIONS(3338), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_LBRACK2] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [sym_none] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_nil] = ACTIONS(3338), + [anon_sym_QMARK_DOT] = ACTIONS(3338), + [anon_sym_POUND_LBRACK] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_DOLLARif] = ACTIONS(3338), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_BANGin] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3338), + [anon_sym_select] = ACTIONS(3338), + [anon_sym_STAR_EQ] = ACTIONS(3338), + [anon_sym_SLASH_EQ] = ACTIONS(3338), + [anon_sym_PERCENT_EQ] = ACTIONS(3338), + [anon_sym_LT_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_GT_EQ] = ACTIONS(3338), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3338), + [anon_sym_AMP_EQ] = ACTIONS(3338), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3338), + [anon_sym_PLUS_EQ] = ACTIONS(3338), + [anon_sym_DASH_EQ] = ACTIONS(3338), + [anon_sym_PIPE_EQ] = ACTIONS(3338), + [anon_sym_CARET_EQ] = ACTIONS(3338), + [anon_sym_COLON_EQ] = ACTIONS(3338), + [anon_sym_lock] = ACTIONS(3338), + [anon_sym_rlock] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(3338), + [anon_sym_sql] = ACTIONS(3338), + [sym_int_literal] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3338), + [anon_sym_shared] = ACTIONS(3338), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3338), + [anon_sym_thread] = ACTIONS(3338), + [anon_sym_atomic] = ACTIONS(3338), + [anon_sym_assert] = ACTIONS(3338), + [anon_sym_defer] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_DOLLARfor] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym_AT_LBRACK] = ACTIONS(3338), + [sym___double_quote] = ACTIONS(3338), + [sym___single_quote] = ACTIONS(3338), + [sym___c_double_quote] = ACTIONS(3338), + [sym___c_single_quote] = ACTIONS(3338), + [sym___r_double_quote] = ACTIONS(3338), + [sym___r_single_quote] = ACTIONS(3338), + }, + [819] = { + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LF] = ACTIONS(3342), + [anon_sym_CR] = ACTIONS(3342), + [anon_sym_CR_LF] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym___global] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_pub] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_go] = ACTIONS(3342), + [anon_sym_spawn] = ACTIONS(3342), + [anon_sym_json_DOTdecode] = ACTIONS(3342), + [anon_sym_LBRACK2] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [sym_none] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_nil] = ACTIONS(3342), + [anon_sym_QMARK_DOT] = ACTIONS(3342), + [anon_sym_POUND_LBRACK] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_DOLLARif] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3342), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_match] = ACTIONS(3342), + [anon_sym_select] = ACTIONS(3342), + [anon_sym_STAR_EQ] = ACTIONS(3342), + [anon_sym_SLASH_EQ] = ACTIONS(3342), + [anon_sym_PERCENT_EQ] = ACTIONS(3342), + [anon_sym_LT_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_GT_EQ] = ACTIONS(3342), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3342), + [anon_sym_AMP_EQ] = ACTIONS(3342), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3342), + [anon_sym_PLUS_EQ] = ACTIONS(3342), + [anon_sym_DASH_EQ] = ACTIONS(3342), + [anon_sym_PIPE_EQ] = ACTIONS(3342), + [anon_sym_CARET_EQ] = ACTIONS(3342), + [anon_sym_COLON_EQ] = ACTIONS(3342), + [anon_sym_lock] = ACTIONS(3342), + [anon_sym_rlock] = ACTIONS(3342), + [anon_sym_unsafe] = ACTIONS(3342), + [anon_sym_sql] = ACTIONS(3342), + [sym_int_literal] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3342), + [sym_rune_literal] = ACTIONS(3342), + [sym_pseudo_compile_time_identifier] = ACTIONS(3342), + [anon_sym_shared] = ACTIONS(3342), + [anon_sym_map_LBRACK] = ACTIONS(3342), + [anon_sym_chan] = ACTIONS(3342), + [anon_sym_thread] = ACTIONS(3342), + [anon_sym_atomic] = ACTIONS(3342), + [anon_sym_assert] = ACTIONS(3342), + [anon_sym_defer] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_DOLLARfor] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym_AT_LBRACK] = ACTIONS(3342), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3342), + [sym___c_double_quote] = ACTIONS(3342), + [sym___c_single_quote] = ACTIONS(3342), + [sym___r_double_quote] = ACTIONS(3342), + [sym___r_single_quote] = ACTIONS(3342), + }, + [820] = { + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym___global] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_pub] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_STAR_EQ] = ACTIONS(3346), + [anon_sym_SLASH_EQ] = ACTIONS(3346), + [anon_sym_PERCENT_EQ] = ACTIONS(3346), + [anon_sym_LT_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_GT_EQ] = ACTIONS(3346), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3346), + [anon_sym_AMP_EQ] = ACTIONS(3346), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3346), + [anon_sym_PLUS_EQ] = ACTIONS(3346), + [anon_sym_DASH_EQ] = ACTIONS(3346), + [anon_sym_PIPE_EQ] = ACTIONS(3346), + [anon_sym_CARET_EQ] = ACTIONS(3346), + [anon_sym_COLON_EQ] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym_AT_LBRACK] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3346), + [sym___single_quote] = ACTIONS(3346), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3346), + [sym___r_double_quote] = ACTIONS(3346), + [sym___r_single_quote] = ACTIONS(3346), + }, + [821] = { + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [822] = { + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4169), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [823] = { + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), + }, + [824] = { + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym__expression] = STATE(2468), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [825] = { + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), + [sym__expression] = STATE(2467), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [826] = { + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), + [sym__expression] = STATE(2891), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [827] = { + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [sym__expression] = STATE(275), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), + }, + [828] = { + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), + [sym__expression] = STATE(2463), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [829] = { + [sym_line_comment] = STATE(829), + [sym_block_comment] = STATE(829), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [830] = { + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [sym__expression] = STATE(1699), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), + }, + [831] = { + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_STAR_EQ] = ACTIONS(3350), + [anon_sym_SLASH_EQ] = ACTIONS(3350), + [anon_sym_PERCENT_EQ] = ACTIONS(3350), + [anon_sym_LT_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_GT_EQ] = ACTIONS(3350), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3350), + [anon_sym_AMP_EQ] = ACTIONS(3350), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3350), + [anon_sym_PLUS_EQ] = ACTIONS(3350), + [anon_sym_DASH_EQ] = ACTIONS(3350), + [anon_sym_PIPE_EQ] = ACTIONS(3350), + [anon_sym_CARET_EQ] = ACTIONS(3350), + [anon_sym_COLON_EQ] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), + [sym___double_quote] = ACTIONS(3350), + [sym___single_quote] = ACTIONS(3350), + [sym___c_double_quote] = ACTIONS(3350), + [sym___c_single_quote] = ACTIONS(3350), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3350), + }, + [832] = { + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3354), + [anon_sym_CR] = ACTIONS(3354), + [anon_sym_CR_LF] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym___global] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_pub] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_go] = ACTIONS(3354), + [anon_sym_spawn] = ACTIONS(3354), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_LBRACK2] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_AMP_CARET] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [sym_none] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_nil] = ACTIONS(3354), + [anon_sym_QMARK_DOT] = ACTIONS(3354), + [anon_sym_POUND_LBRACK] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_DOLLARif] = ACTIONS(3354), + [anon_sym_is] = ACTIONS(3354), + [anon_sym_BANGis] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_BANGin] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_STAR_EQ] = ACTIONS(3354), + [anon_sym_SLASH_EQ] = ACTIONS(3354), + [anon_sym_PERCENT_EQ] = ACTIONS(3354), + [anon_sym_LT_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_GT_EQ] = ACTIONS(3354), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3354), + [anon_sym_AMP_EQ] = ACTIONS(3354), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3354), + [anon_sym_PLUS_EQ] = ACTIONS(3354), + [anon_sym_DASH_EQ] = ACTIONS(3354), + [anon_sym_PIPE_EQ] = ACTIONS(3354), + [anon_sym_CARET_EQ] = ACTIONS(3354), + [anon_sym_COLON_EQ] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_rlock] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3354), + [sym_int_literal] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3354), + [anon_sym_shared] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3354), + [anon_sym_thread] = ACTIONS(3354), + [anon_sym_atomic] = ACTIONS(3354), + [anon_sym_assert] = ACTIONS(3354), + [anon_sym_defer] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_DOLLARfor] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym_AT_LBRACK] = ACTIONS(3354), + [sym___double_quote] = ACTIONS(3354), + [sym___single_quote] = ACTIONS(3354), + [sym___c_double_quote] = ACTIONS(3354), + [sym___c_single_quote] = ACTIONS(3354), + [sym___r_double_quote] = ACTIONS(3354), + [sym___r_single_quote] = ACTIONS(3354), + }, + [833] = { + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LF] = ACTIONS(3358), + [anon_sym_CR] = ACTIONS(3358), + [anon_sym_CR_LF] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym___global] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_pub] = ACTIONS(3358), + [anon_sym_mut] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_go] = ACTIONS(3358), + [anon_sym_spawn] = ACTIONS(3358), + [anon_sym_json_DOTdecode] = ACTIONS(3358), + [anon_sym_LBRACK2] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [sym_none] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_nil] = ACTIONS(3358), + [anon_sym_QMARK_DOT] = ACTIONS(3358), + [anon_sym_POUND_LBRACK] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_DOLLARif] = ACTIONS(3358), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_BANGin] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_select] = ACTIONS(3358), + [anon_sym_STAR_EQ] = ACTIONS(3358), + [anon_sym_SLASH_EQ] = ACTIONS(3358), + [anon_sym_PERCENT_EQ] = ACTIONS(3358), + [anon_sym_LT_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_GT_EQ] = ACTIONS(3358), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3358), + [anon_sym_AMP_EQ] = ACTIONS(3358), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3358), + [anon_sym_PLUS_EQ] = ACTIONS(3358), + [anon_sym_DASH_EQ] = ACTIONS(3358), + [anon_sym_PIPE_EQ] = ACTIONS(3358), + [anon_sym_CARET_EQ] = ACTIONS(3358), + [anon_sym_COLON_EQ] = ACTIONS(3358), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3358), + [anon_sym_sql] = ACTIONS(3358), + [sym_int_literal] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3358), + [sym_rune_literal] = ACTIONS(3358), + [sym_pseudo_compile_time_identifier] = ACTIONS(3358), + [anon_sym_shared] = ACTIONS(3358), + [anon_sym_map_LBRACK] = ACTIONS(3358), + [anon_sym_chan] = ACTIONS(3358), + [anon_sym_thread] = ACTIONS(3358), + [anon_sym_atomic] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_defer] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_DOLLARfor] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym_AT_LBRACK] = ACTIONS(3358), + [sym___double_quote] = ACTIONS(3358), + [sym___single_quote] = ACTIONS(3358), + [sym___c_double_quote] = ACTIONS(3358), + [sym___c_single_quote] = ACTIONS(3358), + [sym___r_double_quote] = ACTIONS(3358), + [sym___r_single_quote] = ACTIONS(3358), + }, + [834] = { + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym___global] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_pub] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_STAR_EQ] = ACTIONS(3362), + [anon_sym_SLASH_EQ] = ACTIONS(3362), + [anon_sym_PERCENT_EQ] = ACTIONS(3362), + [anon_sym_LT_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_GT_EQ] = ACTIONS(3362), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3362), + [anon_sym_AMP_EQ] = ACTIONS(3362), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3362), + [anon_sym_PLUS_EQ] = ACTIONS(3362), + [anon_sym_DASH_EQ] = ACTIONS(3362), + [anon_sym_PIPE_EQ] = ACTIONS(3362), + [anon_sym_CARET_EQ] = ACTIONS(3362), + [anon_sym_COLON_EQ] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [anon_sym_assert] = ACTIONS(3362), + [anon_sym_defer] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_DOLLARfor] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym_AT_LBRACK] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), + }, + [835] = { + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4262), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -124639,11 +120900,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -124651,84 +120912,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [817] = { - [sym_line_comment] = STATE(817), - [sym__expression] = STATE(1813), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [836] = { + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [sym__expression] = STATE(1796), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), + }, + [837] = { + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -124754,11 +121132,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -124766,429 +121144,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [818] = { - [sym_line_comment] = STATE(818), - [sym__expression] = STATE(2888), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), + [838] = { + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym___global] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_pub] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_STAR_EQ] = ACTIONS(3366), + [anon_sym_SLASH_EQ] = ACTIONS(3366), + [anon_sym_PERCENT_EQ] = ACTIONS(3366), + [anon_sym_LT_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_GT_EQ] = ACTIONS(3366), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3366), + [anon_sym_AMP_EQ] = ACTIONS(3366), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3366), + [anon_sym_PLUS_EQ] = ACTIONS(3366), + [anon_sym_DASH_EQ] = ACTIONS(3366), + [anon_sym_PIPE_EQ] = ACTIONS(3366), + [anon_sym_CARET_EQ] = ACTIONS(3366), + [anon_sym_COLON_EQ] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [anon_sym_assert] = ACTIONS(3366), + [anon_sym_defer] = ACTIONS(3366), + [anon_sym_goto] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_DOLLARfor] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_asm] = ACTIONS(3366), + [anon_sym_AT_LBRACK] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), }, - [819] = { - [sym_line_comment] = STATE(819), - [sym__expression] = STATE(1852), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), + [839] = { + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [820] = { - [sym_line_comment] = STATE(820), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_STAR_EQ] = ACTIONS(2747), - [anon_sym_SLASH_EQ] = ACTIONS(2747), - [anon_sym_PERCENT_EQ] = ACTIONS(2747), - [anon_sym_LT_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2747), - [anon_sym_AMP_EQ] = ACTIONS(2747), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2747), - [anon_sym_PLUS_EQ] = ACTIONS(2747), - [anon_sym_DASH_EQ] = ACTIONS(2747), - [anon_sym_PIPE_EQ] = ACTIONS(2747), - [anon_sym_CARET_EQ] = ACTIONS(2747), - [anon_sym_COLON_EQ] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_LT_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_GT_EQ] = ACTIONS(3370), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3370), + [anon_sym_AMP_EQ] = ACTIONS(3370), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_PIPE_EQ] = ACTIONS(3370), + [anon_sym_CARET_EQ] = ACTIONS(3370), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), }, - [821] = { - [sym_line_comment] = STATE(821), - [sym__expression] = STATE(1812), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [840] = { + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [sym__expression] = STATE(1819), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -125214,586 +121480,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [822] = { - [sym_line_comment] = STATE(822), - [sym__expression] = STATE(1850), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [823] = { - [sym_line_comment] = STATE(823), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_EQ] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_STAR_EQ] = ACTIONS(2741), - [anon_sym_SLASH_EQ] = ACTIONS(2741), - [anon_sym_PERCENT_EQ] = ACTIONS(2741), - [anon_sym_LT_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2741), - [anon_sym_AMP_EQ] = ACTIONS(2741), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2741), - [anon_sym_PLUS_EQ] = ACTIONS(2741), - [anon_sym_DASH_EQ] = ACTIONS(2741), - [anon_sym_PIPE_EQ] = ACTIONS(2741), - [anon_sym_CARET_EQ] = ACTIONS(2741), - [anon_sym_COLON_EQ] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), - }, - [824] = { - [sym_line_comment] = STATE(824), - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [anon_sym_LF] = ACTIONS(3407), - [anon_sym_CR] = ACTIONS(3407), - [anon_sym_CR_LF] = ACTIONS(3407), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_EQ] = ACTIONS(3407), - [anon_sym___global] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_fn] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_EQ_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_LT_EQ] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_union] = ACTIONS(3407), - [anon_sym_pub] = ACTIONS(3407), - [anon_sym_mut] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_go] = ACTIONS(3407), - [anon_sym_spawn] = ACTIONS(3407), - [anon_sym_json_DOTdecode] = ACTIONS(3407), - [anon_sym_LBRACK2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_LT_DASH] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3407), - [anon_sym_GT_GT] = ACTIONS(3407), - [anon_sym_GT_GT_GT] = ACTIONS(3407), - [anon_sym_AMP_CARET] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_PIPE_PIPE] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_nil] = ACTIONS(3407), - [anon_sym_QMARK_DOT] = ACTIONS(3407), - [anon_sym_POUND_LBRACK] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOLLARif] = ACTIONS(3407), - [anon_sym_is] = ACTIONS(3407), - [anon_sym_BANGis] = ACTIONS(3407), - [anon_sym_in] = ACTIONS(3407), - [anon_sym_BANGin] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_STAR_EQ] = ACTIONS(3407), - [anon_sym_SLASH_EQ] = ACTIONS(3407), - [anon_sym_PERCENT_EQ] = ACTIONS(3407), - [anon_sym_LT_LT_EQ] = ACTIONS(3407), - [anon_sym_GT_GT_EQ] = ACTIONS(3407), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3407), - [anon_sym_AMP_EQ] = ACTIONS(3407), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3407), - [anon_sym_PLUS_EQ] = ACTIONS(3407), - [anon_sym_DASH_EQ] = ACTIONS(3407), - [anon_sym_PIPE_EQ] = ACTIONS(3407), - [anon_sym_CARET_EQ] = ACTIONS(3407), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_rlock] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_sql] = ACTIONS(3407), - [sym_int_literal] = ACTIONS(3407), - [sym_float_literal] = ACTIONS(3407), - [sym_rune_literal] = ACTIONS(3407), - [sym_pseudo_compile_time_identifier] = ACTIONS(3407), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3407), - [anon_sym_chan] = ACTIONS(3407), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_defer] = ACTIONS(3407), - [anon_sym_goto] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_DOLLARfor] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_POUND] = ACTIONS(3407), - [anon_sym_asm] = ACTIONS(3407), - [anon_sym_AT_LBRACK] = ACTIONS(3407), - [sym___double_quote] = ACTIONS(3407), - [sym___single_quote] = ACTIONS(3407), - [sym___c_double_quote] = ACTIONS(3407), - [sym___c_single_quote] = ACTIONS(3407), - [sym___r_double_quote] = ACTIONS(3407), - [sym___r_single_quote] = ACTIONS(3407), - }, - [825] = { - [sym_line_comment] = STATE(825), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4013), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [826] = { - [sym_line_comment] = STATE(826), - [sym__expression] = STATE(1849), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -125801,84 +121492,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [827] = { - [sym_line_comment] = STATE(827), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4178), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [841] = { + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [sym__expression] = STATE(1820), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -125904,241 +121596,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [828] = { - [sym_line_comment] = STATE(828), - [sym__expression] = STATE(1848), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(861), - [sym___single_quote] = ACTIONS(863), - [sym___c_double_quote] = ACTIONS(865), - [sym___c_single_quote] = ACTIONS(867), - [sym___r_double_quote] = ACTIONS(869), - [sym___r_single_quote] = ACTIONS(871), - }, - [829] = { - [sym_line_comment] = STATE(829), - [sym__expression] = STATE(1845), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), - [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), - [sym_none] = ACTIONS(841), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_nil] = ACTIONS(841), - [anon_sym_if] = ACTIONS(843), - [anon_sym_DOLLARif] = ACTIONS(845), - [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), - [anon_sym_unsafe] = ACTIONS(853), - [anon_sym_sql] = ACTIONS(855), - [sym_int_literal] = ACTIONS(841), - [sym_float_literal] = ACTIONS(857), - [sym_rune_literal] = ACTIONS(857), - [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -126146,199 +121608,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [830] = { - [sym_line_comment] = STATE(830), - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [831] = { - [sym_line_comment] = STATE(831), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4186), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [842] = { + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [sym__expression] = STATE(1821), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -126364,11 +121712,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -126376,429 +121724,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [832] = { - [sym_line_comment] = STATE(832), - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [833] = { - [sym_line_comment] = STATE(833), - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [843] = { + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [sym__expression] = STATE(1822), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, - [834] = { - [sym_line_comment] = STATE(834), - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [844] = { + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym___global] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_pub] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_LT_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_AMP_EQ] = ACTIONS(3374), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3374), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_PIPE_EQ] = ACTIONS(3374), + [anon_sym_CARET_EQ] = ACTIONS(3374), + [anon_sym_COLON_EQ] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [anon_sym_assert] = ACTIONS(3374), + [anon_sym_defer] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_DOLLARfor] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_asm] = ACTIONS(3374), + [anon_sym_AT_LBRACK] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, - [835] = { - [sym_line_comment] = STATE(835), - [sym__expression] = STATE(1814), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [845] = { + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [sym__expression] = STATE(1824), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -126824,11 +122060,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -126836,2489 +122072,1699 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [836] = { - [sym_line_comment] = STATE(836), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4011), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [837] = { - [sym_line_comment] = STATE(837), - [sym__expression] = STATE(2885), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [838] = { - [sym_line_comment] = STATE(838), - [sym__expression] = STATE(2483), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [839] = { - [sym_line_comment] = STATE(839), - [sym__expression] = STATE(2484), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [840] = { - [sym_line_comment] = STATE(840), - [sym__expression] = STATE(2485), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [841] = { - [sym_line_comment] = STATE(841), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4006), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [842] = { - [sym_line_comment] = STATE(842), - [sym__expression] = STATE(2402), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [843] = { - [sym_line_comment] = STATE(843), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [844] = { - [sym_line_comment] = STATE(844), - [sym__expression] = STATE(2340), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [845] = { - [sym_line_comment] = STATE(845), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [846] = { [sym_line_comment] = STATE(846), - [sym__expression] = STATE(2404), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), + [sym_block_comment] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_STAR_EQ] = ACTIONS(3378), + [anon_sym_SLASH_EQ] = ACTIONS(3378), + [anon_sym_PERCENT_EQ] = ACTIONS(3378), + [anon_sym_LT_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_GT_EQ] = ACTIONS(3378), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3378), + [anon_sym_AMP_EQ] = ACTIONS(3378), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3378), + [anon_sym_PLUS_EQ] = ACTIONS(3378), + [anon_sym_DASH_EQ] = ACTIONS(3378), + [anon_sym_PIPE_EQ] = ACTIONS(3378), + [anon_sym_CARET_EQ] = ACTIONS(3378), + [anon_sym_COLON_EQ] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, [847] = { [sym_line_comment] = STATE(847), - [sym__expression] = STATE(2405), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(847), + [sym__expression] = STATE(1814), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [848] = { [sym_line_comment] = STATE(848), - [sym__expression] = STATE(2406), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(848), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [849] = { [sym_line_comment] = STATE(849), - [sym__expression] = STATE(2408), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(849), + [sym__expression] = STATE(1804), + [sym__expression_without_blocks] = STATE(2118), + [sym__expression_with_blocks] = STATE(2118), + [sym_inc_expression] = STATE(2068), + [sym_dec_expression] = STATE(2068), + [sym_or_block_expression] = STATE(2068), + [sym_option_propagation_expression] = STATE(2068), + [sym_result_propagation_expression] = STATE(2068), + [sym_anon_struct_value_expression] = STATE(2117), + [sym_go_expression] = STATE(2068), + [sym_spawn_expression] = STATE(2068), + [sym_parenthesized_expression] = STATE(2068), + [sym_call_expression] = STATE(2068), + [sym_type_initializer] = STATE(2117), + [sym_function_literal] = STATE(2068), + [sym_reference_expression] = STATE(2143), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2068), + [sym_receive_expression] = STATE(2068), + [sym_binary_expression] = STATE(2068), + [sym_as_type_cast_expression] = STATE(2068), + [sym__max_group] = STATE(2068), + [sym_literal] = STATE(2063), + [sym_map_init_expression] = STATE(2117), + [sym_array_creation] = STATE(2068), + [sym_fixed_array_creation] = STATE(2068), + [sym_selector_expression] = STATE(2068), + [sym_index_expression] = STATE(2068), + [sym_slice_expression] = STATE(2068), + [sym_if_expression] = STATE(2117), + [sym_compile_time_if_expression] = STATE(2117), + [sym_is_expression] = STATE(2068), + [sym_not_is_expression] = STATE(2068), + [sym_in_expression] = STATE(2068), + [sym_not_in_expression] = STATE(2068), + [sym_enum_fetch] = STATE(2068), + [sym_match_expression] = STATE(2117), + [sym_select_expression] = STATE(2117), + [sym_lock_expression] = STATE(2117), + [sym_unsafe_expression] = STATE(2117), + [sym_sql_expression] = STATE(2117), + [sym_c_string_literal] = STATE(2062), + [sym_raw_string_literal] = STATE(2062), + [sym_interpreted_string_literal] = STATE(2062), + [sym_mutability_modifiers] = STATE(721), + [sym_plain_type] = STATE(4263), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3272), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(703), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_fn] = ACTIONS(711), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_struct] = ACTIONS(3276), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(719), + [anon_sym_go] = ACTIONS(721), + [anon_sym_spawn] = ACTIONS(723), + [anon_sym_json_DOTdecode] = ACTIONS(725), + [anon_sym_LBRACK2] = ACTIONS(727), + [anon_sym_TILDE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), + [anon_sym_AMP] = ACTIONS(729), + [anon_sym_LT_DASH] = ACTIONS(731), + [sym_none] = ACTIONS(733), + [sym_true] = ACTIONS(733), + [sym_false] = ACTIONS(733), + [sym_nil] = ACTIONS(733), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_DOLLARif] = ACTIONS(3280), + [anon_sym_match] = ACTIONS(3282), + [anon_sym_select] = ACTIONS(3284), + [anon_sym_lock] = ACTIONS(3286), + [anon_sym_rlock] = ACTIONS(3286), + [anon_sym_unsafe] = ACTIONS(3288), + [anon_sym_sql] = ACTIONS(3290), + [sym_int_literal] = ACTIONS(733), + [sym_float_literal] = ACTIONS(751), + [sym_rune_literal] = ACTIONS(751), + [sym_pseudo_compile_time_identifier] = ACTIONS(753), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(755), + [sym___single_quote] = ACTIONS(757), + [sym___c_double_quote] = ACTIONS(759), + [sym___c_single_quote] = ACTIONS(761), + [sym___r_double_quote] = ACTIONS(763), + [sym___r_single_quote] = ACTIONS(765), }, [850] = { [sym_line_comment] = STATE(850), - [sym__expression] = STATE(2481), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(850), + [sym__expression] = STATE(2410), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [851] = { [sym_line_comment] = STATE(851), - [sym__expression] = STATE(2486), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(851), + [sym__expression] = STATE(2685), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [852] = { [sym_line_comment] = STATE(852), - [sym__expression] = STATE(2487), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(852), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [853] = { [sym_line_comment] = STATE(853), - [sym__expression] = STATE(2513), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [sym_block_comment] = STATE(853), + [sym__expression] = STATE(2905), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [854] = { [sym_line_comment] = STATE(854), - [sym__expression] = STATE(2409), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT_DASH] = ACTIONS(3069), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(3071), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(854), + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [855] = { [sym_line_comment] = STATE(855), - [sym__expression] = STATE(2267), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(855), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4403), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [856] = { + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [sym__expression] = STATE(2542), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [857] = { + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [sym__expression] = STATE(2540), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [858] = { + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [sym__expression] = STATE(1825), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, - [856] = { - [sym_line_comment] = STATE(856), - [sym__expression] = STATE(2177), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [859] = { + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [sym__expression] = STATE(1809), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, - [857] = { - [sym_line_comment] = STATE(857), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1187), - [sym__expression_with_blocks] = STATE(1187), - [sym_inc_expression] = STATE(1188), - [sym_dec_expression] = STATE(1188), - [sym_or_block_expression] = STATE(1188), - [sym_option_propagation_expression] = STATE(1188), - [sym_result_propagation_expression] = STATE(1188), - [sym_anon_struct_value_expression] = STATE(1190), - [sym_go_expression] = STATE(1188), - [sym_spawn_expression] = STATE(1188), - [sym_parenthesized_expression] = STATE(1188), - [sym_call_expression] = STATE(1188), - [sym_type_initializer] = STATE(1190), - [sym_function_literal] = STATE(1188), - [sym_reference_expression] = STATE(1269), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1188), - [sym_receive_expression] = STATE(1188), - [sym_binary_expression] = STATE(1188), - [sym_as_type_cast_expression] = STATE(1188), - [sym__max_group] = STATE(1188), - [sym_literal] = STATE(1183), - [sym_map_init_expression] = STATE(1190), - [sym_array_creation] = STATE(1188), - [sym_fixed_array_creation] = STATE(1188), - [sym_selector_expression] = STATE(1188), - [sym_index_expression] = STATE(1188), - [sym_slice_expression] = STATE(1188), - [sym_if_expression] = STATE(1190), - [sym_compile_time_if_expression] = STATE(1190), - [sym_is_expression] = STATE(1188), - [sym_not_is_expression] = STATE(1188), - [sym_in_expression] = STATE(1188), - [sym_not_in_expression] = STATE(1188), - [sym_enum_fetch] = STATE(1188), - [sym_match_expression] = STATE(1190), - [sym_select_expression] = STATE(1190), - [sym_lock_expression] = STATE(1190), - [sym_unsafe_expression] = STATE(1190), - [sym_sql_expression] = STATE(1190), - [sym_c_string_literal] = STATE(1182), - [sym_raw_string_literal] = STATE(1182), - [sym_interpreted_string_literal] = STATE(1182), - [sym_mutability_modifiers] = STATE(727), - [sym_plain_type] = STATE(4425), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1137), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [860] = { + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4405), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(631), [anon_sym_LBRACE] = ACTIONS(633), [anon_sym_LPAREN] = ACTIONS(637), @@ -129327,8 +123773,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(643), [anon_sym_STAR] = ACTIONS(645), [anon_sym_struct] = ACTIONS(649), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(655), [anon_sym_go] = ACTIONS(657), [anon_sym_spawn] = ACTIONS(659), @@ -129354,11 +123800,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(685), [sym_rune_literal] = ACTIONS(685), [sym_pseudo_compile_time_identifier] = ACTIONS(687), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(689), [sym___single_quote] = ACTIONS(691), [sym___c_double_quote] = ACTIONS(693), @@ -129366,5144 +123812,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(697), [sym___r_single_quote] = ACTIONS(699), }, - [858] = { - [sym_line_comment] = STATE(858), - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [859] = { - [sym_line_comment] = STATE(859), - [sym__expression] = STATE(2503), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [860] = { - [sym_line_comment] = STATE(860), - [sym__expression] = STATE(2504), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, [861] = { [sym_line_comment] = STATE(861), - [sym__expression] = STATE(2505), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(861), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4411), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [862] = { [sym_line_comment] = STATE(862), - [sym__expression] = STATE(2506), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(862), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [863] = { [sym_line_comment] = STATE(863), - [sym__expression] = STATE(2735), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), + [sym_block_comment] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_EQ] = ACTIONS(3382), + [anon_sym___global] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_pub] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_LT_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_GT_EQ] = ACTIONS(3382), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3382), + [anon_sym_AMP_EQ] = ACTIONS(3382), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_PIPE_EQ] = ACTIONS(3382), + [anon_sym_CARET_EQ] = ACTIONS(3382), + [anon_sym_COLON_EQ] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [anon_sym_assert] = ACTIONS(3382), + [anon_sym_defer] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_DOLLARfor] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3382), + [anon_sym_asm] = ACTIONS(3382), + [anon_sym_AT_LBRACK] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), }, [864] = { [sym_line_comment] = STATE(864), - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [sym_block_comment] = STATE(864), + [sym__expression] = STATE(1815), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [865] = { [sym_line_comment] = STATE(865), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4302), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), + [sym_block_comment] = STATE(865), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_LF] = ACTIONS(3386), + [anon_sym_CR] = ACTIONS(3386), + [anon_sym_CR_LF] = ACTIONS(3386), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_as] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_EQ] = ACTIONS(3386), + [anon_sym___global] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_fn] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PERCENT] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3386), + [anon_sym_BANG_EQ] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_union] = ACTIONS(3386), + [anon_sym_pub] = ACTIONS(3386), + [anon_sym_mut] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_go] = ACTIONS(3386), + [anon_sym_spawn] = ACTIONS(3386), + [anon_sym_json_DOTdecode] = ACTIONS(3386), + [anon_sym_LBRACK2] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3386), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3386), + [anon_sym_AMP_CARET] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_PIPE_PIPE] = ACTIONS(3386), + [anon_sym_or] = ACTIONS(3386), + [sym_none] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_nil] = ACTIONS(3386), + [anon_sym_QMARK_DOT] = ACTIONS(3386), + [anon_sym_POUND_LBRACK] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_DOLLARif] = ACTIONS(3386), + [anon_sym_is] = ACTIONS(3386), + [anon_sym_BANGis] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_BANGin] = ACTIONS(3386), + [anon_sym_match] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [anon_sym_STAR_EQ] = ACTIONS(3386), + [anon_sym_SLASH_EQ] = ACTIONS(3386), + [anon_sym_PERCENT_EQ] = ACTIONS(3386), + [anon_sym_LT_LT_EQ] = ACTIONS(3386), + [anon_sym_GT_GT_EQ] = ACTIONS(3386), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3386), + [anon_sym_AMP_EQ] = ACTIONS(3386), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3386), + [anon_sym_PLUS_EQ] = ACTIONS(3386), + [anon_sym_DASH_EQ] = ACTIONS(3386), + [anon_sym_PIPE_EQ] = ACTIONS(3386), + [anon_sym_CARET_EQ] = ACTIONS(3386), + [anon_sym_COLON_EQ] = ACTIONS(3386), + [anon_sym_lock] = ACTIONS(3386), + [anon_sym_rlock] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_sql] = ACTIONS(3386), + [sym_int_literal] = ACTIONS(3386), + [sym_float_literal] = ACTIONS(3386), + [sym_rune_literal] = ACTIONS(3386), + [sym_pseudo_compile_time_identifier] = ACTIONS(3386), + [anon_sym_shared] = ACTIONS(3386), + [anon_sym_map_LBRACK] = ACTIONS(3386), + [anon_sym_chan] = ACTIONS(3386), + [anon_sym_thread] = ACTIONS(3386), + [anon_sym_atomic] = ACTIONS(3386), + [anon_sym_assert] = ACTIONS(3386), + [anon_sym_defer] = ACTIONS(3386), + [anon_sym_goto] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_DOLLARfor] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3386), + [anon_sym_asm] = ACTIONS(3386), + [anon_sym_AT_LBRACK] = ACTIONS(3386), + [sym___double_quote] = ACTIONS(3386), + [sym___single_quote] = ACTIONS(3386), + [sym___c_double_quote] = ACTIONS(3386), + [sym___c_single_quote] = ACTIONS(3386), + [sym___r_double_quote] = ACTIONS(3386), + [sym___r_single_quote] = ACTIONS(3386), }, [866] = { [sym_line_comment] = STATE(866), - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [867] = { - [sym_line_comment] = STATE(867), - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3411), - [anon_sym_CR] = ACTIONS(3411), - [anon_sym_CR_LF] = ACTIONS(3411), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_EQ] = ACTIONS(3411), - [anon_sym___global] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_fn] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_EQ_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_LT_EQ] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_union] = ACTIONS(3411), - [anon_sym_pub] = ACTIONS(3411), - [anon_sym_mut] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_go] = ACTIONS(3411), - [anon_sym_spawn] = ACTIONS(3411), - [anon_sym_json_DOTdecode] = ACTIONS(3411), - [anon_sym_LBRACK2] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3411), - [anon_sym_LT_DASH] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3411), - [anon_sym_GT_GT_GT] = ACTIONS(3411), - [anon_sym_AMP_CARET] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3411), - [sym_none] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_nil] = ACTIONS(3411), - [anon_sym_QMARK_DOT] = ACTIONS(3411), - [anon_sym_POUND_LBRACK] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOLLARif] = ACTIONS(3411), - [anon_sym_is] = ACTIONS(3411), - [anon_sym_BANGis] = ACTIONS(3411), - [anon_sym_in] = ACTIONS(3411), - [anon_sym_BANGin] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_STAR_EQ] = ACTIONS(3411), - [anon_sym_SLASH_EQ] = ACTIONS(3411), - [anon_sym_PERCENT_EQ] = ACTIONS(3411), - [anon_sym_LT_LT_EQ] = ACTIONS(3411), - [anon_sym_GT_GT_EQ] = ACTIONS(3411), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3411), - [anon_sym_AMP_EQ] = ACTIONS(3411), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3411), - [anon_sym_PLUS_EQ] = ACTIONS(3411), - [anon_sym_DASH_EQ] = ACTIONS(3411), - [anon_sym_PIPE_EQ] = ACTIONS(3411), - [anon_sym_CARET_EQ] = ACTIONS(3411), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_rlock] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_sql] = ACTIONS(3411), - [sym_int_literal] = ACTIONS(3411), - [sym_float_literal] = ACTIONS(3411), - [sym_rune_literal] = ACTIONS(3411), - [sym_pseudo_compile_time_identifier] = ACTIONS(3411), - [anon_sym_shared] = ACTIONS(3411), - [anon_sym_map_LBRACK] = ACTIONS(3411), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3411), - [anon_sym_atomic] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_defer] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_DOLLARfor] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(3411), - [anon_sym_asm] = ACTIONS(3411), - [anon_sym_AT_LBRACK] = ACTIONS(3411), - [sym___double_quote] = ACTIONS(3411), - [sym___single_quote] = ACTIONS(3411), - [sym___c_double_quote] = ACTIONS(3411), - [sym___c_single_quote] = ACTIONS(3411), - [sym___r_double_quote] = ACTIONS(3411), - [sym___r_single_quote] = ACTIONS(3411), - }, - [868] = { - [sym_line_comment] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_identifier] = ACTIONS(3415), - [anon_sym_LF] = ACTIONS(3415), - [anon_sym_CR] = ACTIONS(3415), - [anon_sym_CR_LF] = ACTIONS(3415), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_EQ] = ACTIONS(3415), - [anon_sym___global] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3415), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_union] = ACTIONS(3415), - [anon_sym_pub] = ACTIONS(3415), - [anon_sym_mut] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_go] = ACTIONS(3415), - [anon_sym_spawn] = ACTIONS(3415), - [anon_sym_json_DOTdecode] = ACTIONS(3415), - [anon_sym_LBRACK2] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3415), - [anon_sym_GT_GT] = ACTIONS(3415), - [anon_sym_GT_GT_GT] = ACTIONS(3415), - [anon_sym_AMP_CARET] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [sym_none] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_nil] = ACTIONS(3415), - [anon_sym_QMARK_DOT] = ACTIONS(3415), - [anon_sym_POUND_LBRACK] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOLLARif] = ACTIONS(3415), - [anon_sym_is] = ACTIONS(3415), - [anon_sym_BANGis] = ACTIONS(3415), - [anon_sym_in] = ACTIONS(3415), - [anon_sym_BANGin] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_STAR_EQ] = ACTIONS(3415), - [anon_sym_SLASH_EQ] = ACTIONS(3415), - [anon_sym_PERCENT_EQ] = ACTIONS(3415), - [anon_sym_LT_LT_EQ] = ACTIONS(3415), - [anon_sym_GT_GT_EQ] = ACTIONS(3415), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3415), - [anon_sym_AMP_EQ] = ACTIONS(3415), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3415), - [anon_sym_PLUS_EQ] = ACTIONS(3415), - [anon_sym_DASH_EQ] = ACTIONS(3415), - [anon_sym_PIPE_EQ] = ACTIONS(3415), - [anon_sym_CARET_EQ] = ACTIONS(3415), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_rlock] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_sql] = ACTIONS(3415), - [sym_int_literal] = ACTIONS(3415), - [sym_float_literal] = ACTIONS(3415), - [sym_rune_literal] = ACTIONS(3415), - [sym_pseudo_compile_time_identifier] = ACTIONS(3415), - [anon_sym_shared] = ACTIONS(3415), - [anon_sym_map_LBRACK] = ACTIONS(3415), - [anon_sym_chan] = ACTIONS(3415), - [anon_sym_thread] = ACTIONS(3415), - [anon_sym_atomic] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_defer] = ACTIONS(3415), - [anon_sym_goto] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_DOLLARfor] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_POUND] = ACTIONS(3415), - [anon_sym_asm] = ACTIONS(3415), - [anon_sym_AT_LBRACK] = ACTIONS(3415), - [sym___double_quote] = ACTIONS(3415), - [sym___single_quote] = ACTIONS(3415), - [sym___c_double_quote] = ACTIONS(3415), - [sym___c_single_quote] = ACTIONS(3415), - [sym___r_double_quote] = ACTIONS(3415), - [sym___r_single_quote] = ACTIONS(3415), - }, - [869] = { - [sym_line_comment] = STATE(869), - [sym__expression] = STATE(993), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [870] = { - [sym_line_comment] = STATE(870), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4304), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [871] = { - [sym_line_comment] = STATE(871), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4314), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [872] = { - [sym_line_comment] = STATE(872), - [sym__expression] = STATE(992), - [sym__expression_without_blocks] = STATE(1119), - [sym__expression_with_blocks] = STATE(1119), - [sym_inc_expression] = STATE(1120), - [sym_dec_expression] = STATE(1120), - [sym_or_block_expression] = STATE(1120), - [sym_option_propagation_expression] = STATE(1120), - [sym_result_propagation_expression] = STATE(1120), - [sym_anon_struct_value_expression] = STATE(1123), - [sym_go_expression] = STATE(1120), - [sym_spawn_expression] = STATE(1120), - [sym_parenthesized_expression] = STATE(1120), - [sym_call_expression] = STATE(1120), - [sym_type_initializer] = STATE(1123), - [sym_function_literal] = STATE(1120), - [sym_reference_expression] = STATE(1031), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1120), - [sym_receive_expression] = STATE(1120), - [sym_binary_expression] = STATE(1120), - [sym_as_type_cast_expression] = STATE(1120), - [sym__max_group] = STATE(1120), - [sym_literal] = STATE(1118), - [sym_map_init_expression] = STATE(1123), - [sym_array_creation] = STATE(1120), - [sym_fixed_array_creation] = STATE(1120), - [sym_selector_expression] = STATE(1120), - [sym_index_expression] = STATE(1120), - [sym_slice_expression] = STATE(1120), - [sym_if_expression] = STATE(1123), - [sym_compile_time_if_expression] = STATE(1123), - [sym_is_expression] = STATE(1120), - [sym_not_is_expression] = STATE(1120), - [sym_in_expression] = STATE(1120), - [sym_not_in_expression] = STATE(1120), - [sym_enum_fetch] = STATE(1120), - [sym_match_expression] = STATE(1123), - [sym_select_expression] = STATE(1123), - [sym_lock_expression] = STATE(1123), - [sym_unsafe_expression] = STATE(1123), - [sym_sql_expression] = STATE(1123), - [sym_c_string_literal] = STATE(1116), - [sym_raw_string_literal] = STATE(1116), - [sym_interpreted_string_literal] = STATE(1116), - [sym_mutability_modifiers] = STATE(776), - [sym_plain_type] = STATE(4325), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(493), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(513), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_go] = ACTIONS(519), - [anon_sym_spawn] = ACTIONS(521), - [anon_sym_json_DOTdecode] = ACTIONS(2155), - [anon_sym_LBRACK2] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_CARET] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_LT_DASH] = ACTIONS(2161), - [sym_none] = ACTIONS(531), - [sym_true] = ACTIONS(531), - [sym_false] = ACTIONS(531), - [sym_nil] = ACTIONS(531), - [anon_sym_if] = ACTIONS(533), - [anon_sym_DOLLARif] = ACTIONS(535), - [anon_sym_match] = ACTIONS(537), - [anon_sym_select] = ACTIONS(539), - [anon_sym_lock] = ACTIONS(541), - [anon_sym_rlock] = ACTIONS(541), - [anon_sym_unsafe] = ACTIONS(543), - [anon_sym_sql] = ACTIONS(545), - [sym_int_literal] = ACTIONS(531), - [sym_float_literal] = ACTIONS(2163), - [sym_rune_literal] = ACTIONS(2163), - [sym_pseudo_compile_time_identifier] = ACTIONS(547), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2165), - [sym___single_quote] = ACTIONS(2167), - [sym___c_double_quote] = ACTIONS(2169), - [sym___c_single_quote] = ACTIONS(2171), - [sym___r_double_quote] = ACTIONS(2173), - [sym___r_single_quote] = ACTIONS(2175), - }, - [873] = { - [sym_line_comment] = STATE(873), - [sym__expression] = STATE(2315), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [874] = { - [sym_line_comment] = STATE(874), - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [875] = { - [sym_line_comment] = STATE(875), - [ts_builtin_sym_end] = ACTIONS(3417), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(3419), - [anon_sym_CR] = ACTIONS(3419), - [anon_sym_CR_LF] = ACTIONS(3419), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3419), - [anon_sym___global] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3419), - [anon_sym_fn] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_union] = ACTIONS(3419), - [anon_sym_pub] = ACTIONS(3419), - [anon_sym_mut] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_go] = ACTIONS(3419), - [anon_sym_spawn] = ACTIONS(3419), - [anon_sym_json_DOTdecode] = ACTIONS(3419), - [anon_sym_LBRACK2] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3419), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_GT_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_CARET] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [sym_none] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_nil] = ACTIONS(3419), - [anon_sym_QMARK_DOT] = ACTIONS(3419), - [anon_sym_POUND_LBRACK] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOLLARif] = ACTIONS(3419), - [anon_sym_is] = ACTIONS(3419), - [anon_sym_BANGis] = ACTIONS(3419), - [anon_sym_in] = ACTIONS(3419), - [anon_sym_BANGin] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_STAR_EQ] = ACTIONS(3419), - [anon_sym_SLASH_EQ] = ACTIONS(3419), - [anon_sym_PERCENT_EQ] = ACTIONS(3419), - [anon_sym_LT_LT_EQ] = ACTIONS(3419), - [anon_sym_GT_GT_EQ] = ACTIONS(3419), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3419), - [anon_sym_AMP_EQ] = ACTIONS(3419), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3419), - [anon_sym_PLUS_EQ] = ACTIONS(3419), - [anon_sym_DASH_EQ] = ACTIONS(3419), - [anon_sym_PIPE_EQ] = ACTIONS(3419), - [anon_sym_CARET_EQ] = ACTIONS(3419), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_rlock] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_sql] = ACTIONS(3419), - [sym_int_literal] = ACTIONS(3419), - [sym_float_literal] = ACTIONS(3419), - [sym_rune_literal] = ACTIONS(3419), - [sym_pseudo_compile_time_identifier] = ACTIONS(3419), - [anon_sym_shared] = ACTIONS(3419), - [anon_sym_map_LBRACK] = ACTIONS(3419), - [anon_sym_chan] = ACTIONS(3419), - [anon_sym_thread] = ACTIONS(3419), - [anon_sym_atomic] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_defer] = ACTIONS(3419), - [anon_sym_goto] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_DOLLARfor] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_POUND] = ACTIONS(3419), - [anon_sym_asm] = ACTIONS(3419), - [anon_sym_AT_LBRACK] = ACTIONS(3419), - [sym___double_quote] = ACTIONS(3419), - [sym___single_quote] = ACTIONS(3419), - [sym___c_double_quote] = ACTIONS(3419), - [sym___c_single_quote] = ACTIONS(3419), - [sym___r_double_quote] = ACTIONS(3419), - [sym___r_single_quote] = ACTIONS(3419), - }, - [876] = { - [sym_line_comment] = STATE(876), - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [877] = { - [sym_line_comment] = STATE(877), - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2925), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2937), - [anon_sym_rlock] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), - }, - [878] = { - [sym_line_comment] = STATE(878), - [sym__expression] = STATE(2739), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [879] = { - [sym_line_comment] = STATE(879), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [880] = { - [sym_line_comment] = STATE(880), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [881] = { - [sym_line_comment] = STATE(881), - [ts_builtin_sym_end] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LF] = ACTIONS(3423), - [anon_sym_CR] = ACTIONS(3423), - [anon_sym_CR_LF] = ACTIONS(3423), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3423), - [anon_sym___global] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3423), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_union] = ACTIONS(3423), - [anon_sym_pub] = ACTIONS(3423), - [anon_sym_mut] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_go] = ACTIONS(3423), - [anon_sym_spawn] = ACTIONS(3423), - [anon_sym_json_DOTdecode] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3423), - [anon_sym_GT_GT] = ACTIONS(3423), - [anon_sym_GT_GT_GT] = ACTIONS(3423), - [anon_sym_AMP_CARET] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [sym_none] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_nil] = ACTIONS(3423), - [anon_sym_QMARK_DOT] = ACTIONS(3423), - [anon_sym_POUND_LBRACK] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOLLARif] = ACTIONS(3423), - [anon_sym_is] = ACTIONS(3423), - [anon_sym_BANGis] = ACTIONS(3423), - [anon_sym_in] = ACTIONS(3423), - [anon_sym_BANGin] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [anon_sym_STAR_EQ] = ACTIONS(3423), - [anon_sym_SLASH_EQ] = ACTIONS(3423), - [anon_sym_PERCENT_EQ] = ACTIONS(3423), - [anon_sym_LT_LT_EQ] = ACTIONS(3423), - [anon_sym_GT_GT_EQ] = ACTIONS(3423), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3423), - [anon_sym_AMP_EQ] = ACTIONS(3423), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3423), - [anon_sym_PLUS_EQ] = ACTIONS(3423), - [anon_sym_DASH_EQ] = ACTIONS(3423), - [anon_sym_PIPE_EQ] = ACTIONS(3423), - [anon_sym_CARET_EQ] = ACTIONS(3423), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_lock] = ACTIONS(3423), - [anon_sym_rlock] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_sql] = ACTIONS(3423), - [sym_int_literal] = ACTIONS(3423), - [sym_float_literal] = ACTIONS(3423), - [sym_rune_literal] = ACTIONS(3423), - [sym_pseudo_compile_time_identifier] = ACTIONS(3423), - [anon_sym_shared] = ACTIONS(3423), - [anon_sym_map_LBRACK] = ACTIONS(3423), - [anon_sym_chan] = ACTIONS(3423), - [anon_sym_thread] = ACTIONS(3423), - [anon_sym_atomic] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_defer] = ACTIONS(3423), - [anon_sym_goto] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_DOLLARfor] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_POUND] = ACTIONS(3423), - [anon_sym_asm] = ACTIONS(3423), - [anon_sym_AT_LBRACK] = ACTIONS(3423), - [sym___double_quote] = ACTIONS(3423), - [sym___single_quote] = ACTIONS(3423), - [sym___c_double_quote] = ACTIONS(3423), - [sym___c_single_quote] = ACTIONS(3423), - [sym___r_double_quote] = ACTIONS(3423), - [sym___r_single_quote] = ACTIONS(3423), - }, - [882] = { - [sym_line_comment] = STATE(882), - [sym__expression] = STATE(2507), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [883] = { - [sym_line_comment] = STATE(883), - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [884] = { - [sym_line_comment] = STATE(884), - [sym__expression] = STATE(2903), - [sym__expression_without_blocks] = STATE(2993), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [885] = { - [sym_line_comment] = STATE(885), - [sym__expression] = STATE(2508), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [886] = { - [sym_line_comment] = STATE(886), - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(1083), - [anon_sym_DASH] = ACTIONS(1083), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(1091), - [anon_sym_spawn] = ACTIONS(1093), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(1083), - [anon_sym_CARET] = ACTIONS(1083), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_LT_DASH] = ACTIONS(1101), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [887] = { - [sym_line_comment] = STATE(887), - [sym__expression] = STATE(2635), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [888] = { - [sym_line_comment] = STATE(888), - [sym__expression] = STATE(2544), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [889] = { - [sym_line_comment] = STATE(889), - [sym__expression] = STATE(2513), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [890] = { - [sym_line_comment] = STATE(890), - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [891] = { - [sym_line_comment] = STATE(891), - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LF] = ACTIONS(3427), - [anon_sym_CR] = ACTIONS(3427), - [anon_sym_CR_LF] = ACTIONS(3427), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3427), - [anon_sym___global] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3427), - [anon_sym_fn] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_EQ_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_LT_EQ] = ACTIONS(3427), - [anon_sym_GT_EQ] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_pub] = ACTIONS(3427), - [anon_sym_mut] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_go] = ACTIONS(3427), - [anon_sym_spawn] = ACTIONS(3427), - [anon_sym_json_DOTdecode] = ACTIONS(3427), - [anon_sym_LBRACK2] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3427), - [anon_sym_GT_GT] = ACTIONS(3427), - [anon_sym_GT_GT_GT] = ACTIONS(3427), - [anon_sym_AMP_CARET] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [sym_none] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_nil] = ACTIONS(3427), - [anon_sym_QMARK_DOT] = ACTIONS(3427), - [anon_sym_POUND_LBRACK] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOLLARif] = ACTIONS(3427), - [anon_sym_is] = ACTIONS(3427), - [anon_sym_BANGis] = ACTIONS(3427), - [anon_sym_in] = ACTIONS(3427), - [anon_sym_BANGin] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_STAR_EQ] = ACTIONS(3427), - [anon_sym_SLASH_EQ] = ACTIONS(3427), - [anon_sym_PERCENT_EQ] = ACTIONS(3427), - [anon_sym_LT_LT_EQ] = ACTIONS(3427), - [anon_sym_GT_GT_EQ] = ACTIONS(3427), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3427), - [anon_sym_AMP_EQ] = ACTIONS(3427), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3427), - [anon_sym_PLUS_EQ] = ACTIONS(3427), - [anon_sym_DASH_EQ] = ACTIONS(3427), - [anon_sym_PIPE_EQ] = ACTIONS(3427), - [anon_sym_CARET_EQ] = ACTIONS(3427), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_rlock] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_sql] = ACTIONS(3427), - [sym_int_literal] = ACTIONS(3427), - [sym_float_literal] = ACTIONS(3427), - [sym_rune_literal] = ACTIONS(3427), - [sym_pseudo_compile_time_identifier] = ACTIONS(3427), - [anon_sym_shared] = ACTIONS(3427), - [anon_sym_map_LBRACK] = ACTIONS(3427), - [anon_sym_chan] = ACTIONS(3427), - [anon_sym_thread] = ACTIONS(3427), - [anon_sym_atomic] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_defer] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_DOLLARfor] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_POUND] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym_AT_LBRACK] = ACTIONS(3427), - [sym___double_quote] = ACTIONS(3427), - [sym___single_quote] = ACTIONS(3427), - [sym___c_double_quote] = ACTIONS(3427), - [sym___c_single_quote] = ACTIONS(3427), - [sym___r_double_quote] = ACTIONS(3427), - [sym___r_single_quote] = ACTIONS(3427), - }, - [892] = { - [sym_line_comment] = STATE(892), - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3431), - [anon_sym___global] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_pub] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_STAR_EQ] = ACTIONS(3431), - [anon_sym_SLASH_EQ] = ACTIONS(3431), - [anon_sym_PERCENT_EQ] = ACTIONS(3431), - [anon_sym_LT_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_GT_EQ] = ACTIONS(3431), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3431), - [anon_sym_AMP_EQ] = ACTIONS(3431), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3431), - [anon_sym_PLUS_EQ] = ACTIONS(3431), - [anon_sym_DASH_EQ] = ACTIONS(3431), - [anon_sym_PIPE_EQ] = ACTIONS(3431), - [anon_sym_CARET_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_defer] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_DOLLARfor] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym_AT_LBRACK] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), - }, - [893] = { - [sym_line_comment] = STATE(893), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3435), - [anon_sym_LF] = ACTIONS(3435), - [anon_sym_CR] = ACTIONS(3435), - [anon_sym_CR_LF] = ACTIONS(3435), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_EQ] = ACTIONS(3435), - [anon_sym___global] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3435), - [anon_sym_fn] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_union] = ACTIONS(3435), - [anon_sym_pub] = ACTIONS(3435), - [anon_sym_mut] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_go] = ACTIONS(3435), - [anon_sym_spawn] = ACTIONS(3435), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3435), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3435), - [sym_none] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_nil] = ACTIONS(3435), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOLLARif] = ACTIONS(3435), - [anon_sym_is] = ACTIONS(3435), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3435), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_STAR_EQ] = ACTIONS(3435), - [anon_sym_SLASH_EQ] = ACTIONS(3435), - [anon_sym_PERCENT_EQ] = ACTIONS(3435), - [anon_sym_LT_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_GT_EQ] = ACTIONS(3435), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3435), - [anon_sym_AMP_EQ] = ACTIONS(3435), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3435), - [anon_sym_PLUS_EQ] = ACTIONS(3435), - [anon_sym_DASH_EQ] = ACTIONS(3435), - [anon_sym_PIPE_EQ] = ACTIONS(3435), - [anon_sym_CARET_EQ] = ACTIONS(3435), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_rlock] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_sql] = ACTIONS(3435), - [sym_int_literal] = ACTIONS(3435), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3435), - [anon_sym_shared] = ACTIONS(3435), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3435), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_defer] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_DOLLARfor] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(3435), - [anon_sym_asm] = ACTIONS(3435), - [anon_sym_AT_LBRACK] = ACTIONS(3435), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), - }, - [894] = { - [sym_line_comment] = STATE(894), - [sym__expression] = STATE(2633), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [895] = { - [sym_line_comment] = STATE(895), - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_EQ] = ACTIONS(3431), - [anon_sym___global] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_pub] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_STAR_EQ] = ACTIONS(3431), - [anon_sym_SLASH_EQ] = ACTIONS(3431), - [anon_sym_PERCENT_EQ] = ACTIONS(3431), - [anon_sym_LT_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_GT_EQ] = ACTIONS(3431), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3431), - [anon_sym_AMP_EQ] = ACTIONS(3431), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3431), - [anon_sym_PLUS_EQ] = ACTIONS(3431), - [anon_sym_DASH_EQ] = ACTIONS(3431), - [anon_sym_PIPE_EQ] = ACTIONS(3431), - [anon_sym_CARET_EQ] = ACTIONS(3431), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_defer] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_DOLLARfor] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym_AT_LBRACK] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), - }, - [896] = { - [sym_line_comment] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_EQ] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_LT_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_GT_EQ] = ACTIONS(3135), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3135), - [anon_sym_AMP_EQ] = ACTIONS(3135), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3135), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_PIPE_EQ] = ACTIONS(3135), - [anon_sym_CARET_EQ] = ACTIONS(3135), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), - }, - [897] = { - [sym_line_comment] = STATE(897), - [sym__expression] = STATE(2631), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [898] = { - [sym_line_comment] = STATE(898), - [sym__expression] = STATE(2509), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [899] = { - [sym_line_comment] = STATE(899), - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [900] = { - [sym_line_comment] = STATE(900), - [sym__expression] = STATE(2866), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [901] = { - [sym_line_comment] = STATE(901), - [sym__expression] = STATE(1307), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, - [902] = { - [sym_line_comment] = STATE(902), - [sym__expression] = STATE(1823), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(866), + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -134529,11 +124496,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -134541,84 +124508,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [903] = { - [sym_line_comment] = STATE(903), - [sym__expression] = STATE(1822), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [867] = { + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [sym__expression] = STATE(2376), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [868] = { + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [sym__expression] = STATE(2618), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [869] = { + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [sym__expression] = STATE(1676), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), + }, + [870] = { + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4269), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -134644,11 +124960,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -134656,93 +124972,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [904] = { - [sym_line_comment] = STATE(904), - [sym__expression] = STATE(1959), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [871] = { + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4302), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(827), + [anon_sym_go] = ACTIONS(829), + [anon_sym_spawn] = ACTIONS(831), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), + [anon_sym_LBRACK2] = ACTIONS(835), + [anon_sym_TILDE] = ACTIONS(819), + [anon_sym_CARET] = ACTIONS(819), + [anon_sym_AMP] = ACTIONS(837), + [anon_sym_LT_DASH] = ACTIONS(839), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -134750,20 +125067,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(849), + [anon_sym_lock] = ACTIONS(851), + [anon_sym_rlock] = ACTIONS(851), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -134771,429 +125088,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [905] = { - [sym_line_comment] = STATE(905), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [872] = { + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3390), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_CR] = ACTIONS(3390), + [anon_sym_CR_LF] = ACTIONS(3390), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3390), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3390), + [anon_sym_EQ] = ACTIONS(3390), + [anon_sym___global] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_fn] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PERCENT] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_EQ_EQ] = ACTIONS(3390), + [anon_sym_BANG_EQ] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(3390), + [anon_sym_union] = ACTIONS(3390), + [anon_sym_pub] = ACTIONS(3390), + [anon_sym_mut] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3390), + [anon_sym_DASH_DASH] = ACTIONS(3390), + [anon_sym_QMARK] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3390), + [anon_sym_spawn] = ACTIONS(3390), + [anon_sym_json_DOTdecode] = ACTIONS(3390), + [anon_sym_LBRACK2] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_LT_DASH] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3390), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3390), + [anon_sym_AMP_CARET] = ACTIONS(3390), + [anon_sym_AMP_AMP] = ACTIONS(3390), + [anon_sym_PIPE_PIPE] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3390), + [sym_none] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_nil] = ACTIONS(3390), + [anon_sym_QMARK_DOT] = ACTIONS(3390), + [anon_sym_POUND_LBRACK] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_DOLLARif] = ACTIONS(3390), + [anon_sym_is] = ACTIONS(3390), + [anon_sym_BANGis] = ACTIONS(3390), + [anon_sym_in] = ACTIONS(3390), + [anon_sym_BANGin] = ACTIONS(3390), + [anon_sym_match] = ACTIONS(3390), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_STAR_EQ] = ACTIONS(3390), + [anon_sym_SLASH_EQ] = ACTIONS(3390), + [anon_sym_PERCENT_EQ] = ACTIONS(3390), + [anon_sym_LT_LT_EQ] = ACTIONS(3390), + [anon_sym_GT_GT_EQ] = ACTIONS(3390), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3390), + [anon_sym_AMP_EQ] = ACTIONS(3390), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3390), + [anon_sym_PLUS_EQ] = ACTIONS(3390), + [anon_sym_DASH_EQ] = ACTIONS(3390), + [anon_sym_PIPE_EQ] = ACTIONS(3390), + [anon_sym_CARET_EQ] = ACTIONS(3390), + [anon_sym_COLON_EQ] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3390), + [anon_sym_rlock] = ACTIONS(3390), + [anon_sym_unsafe] = ACTIONS(3390), + [anon_sym_sql] = ACTIONS(3390), + [sym_int_literal] = ACTIONS(3390), + [sym_float_literal] = ACTIONS(3390), + [sym_rune_literal] = ACTIONS(3390), + [sym_pseudo_compile_time_identifier] = ACTIONS(3390), + [anon_sym_shared] = ACTIONS(3390), + [anon_sym_map_LBRACK] = ACTIONS(3390), + [anon_sym_chan] = ACTIONS(3390), + [anon_sym_thread] = ACTIONS(3390), + [anon_sym_atomic] = ACTIONS(3390), + [anon_sym_assert] = ACTIONS(3390), + [anon_sym_defer] = ACTIONS(3390), + [anon_sym_goto] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_DOLLARfor] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(3390), + [anon_sym_asm] = ACTIONS(3390), + [anon_sym_AT_LBRACK] = ACTIONS(3390), + [sym___double_quote] = ACTIONS(3390), + [sym___single_quote] = ACTIONS(3390), + [sym___c_double_quote] = ACTIONS(3390), + [sym___c_single_quote] = ACTIONS(3390), + [sym___r_double_quote] = ACTIONS(3390), + [sym___r_single_quote] = ACTIONS(3390), }, - [906] = { - [sym_line_comment] = STATE(906), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [873] = { + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [sym__expression] = STATE(2281), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, - [907] = { - [sym_line_comment] = STATE(907), - [sym__expression] = STATE(2850), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [874] = { + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [sym__expression] = STATE(2667), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_go] = ACTIONS(2109), + [anon_sym_spawn] = ACTIONS(2111), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(2113), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_CARET] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_LT_DASH] = ACTIONS(2117), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2119), + [anon_sym_lock] = ACTIONS(2121), + [anon_sym_rlock] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [875] = { + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_CR] = ACTIONS(3394), + [anon_sym_CR_LF] = ACTIONS(3394), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_as] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_COMMA] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_EQ] = ACTIONS(3394), + [anon_sym___global] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_fn] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PERCENT] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_BANG_EQ] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3394), + [anon_sym_union] = ACTIONS(3394), + [anon_sym_pub] = ACTIONS(3394), + [anon_sym_mut] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_QMARK] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_go] = ACTIONS(3394), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(3394), + [anon_sym_LBRACK2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_CARET] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_or] = ACTIONS(3394), + [sym_none] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_nil] = ACTIONS(3394), + [anon_sym_QMARK_DOT] = ACTIONS(3394), + [anon_sym_POUND_LBRACK] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_DOLLARif] = ACTIONS(3394), + [anon_sym_is] = ACTIONS(3394), + [anon_sym_BANGis] = ACTIONS(3394), + [anon_sym_in] = ACTIONS(3394), + [anon_sym_BANGin] = ACTIONS(3394), + [anon_sym_match] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_STAR_EQ] = ACTIONS(3394), + [anon_sym_SLASH_EQ] = ACTIONS(3394), + [anon_sym_PERCENT_EQ] = ACTIONS(3394), + [anon_sym_LT_LT_EQ] = ACTIONS(3394), + [anon_sym_GT_GT_EQ] = ACTIONS(3394), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3394), + [anon_sym_AMP_EQ] = ACTIONS(3394), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3394), + [anon_sym_PLUS_EQ] = ACTIONS(3394), + [anon_sym_DASH_EQ] = ACTIONS(3394), + [anon_sym_PIPE_EQ] = ACTIONS(3394), + [anon_sym_CARET_EQ] = ACTIONS(3394), + [anon_sym_COLON_EQ] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_rlock] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_sql] = ACTIONS(3394), + [sym_int_literal] = ACTIONS(3394), + [sym_float_literal] = ACTIONS(3394), + [sym_rune_literal] = ACTIONS(3394), + [sym_pseudo_compile_time_identifier] = ACTIONS(3394), + [anon_sym_shared] = ACTIONS(3394), + [anon_sym_map_LBRACK] = ACTIONS(3394), + [anon_sym_chan] = ACTIONS(3394), + [anon_sym_thread] = ACTIONS(3394), + [anon_sym_atomic] = ACTIONS(3394), + [anon_sym_assert] = ACTIONS(3394), + [anon_sym_defer] = ACTIONS(3394), + [anon_sym_goto] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_DOLLARfor] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(3394), + [anon_sym_asm] = ACTIONS(3394), + [anon_sym_AT_LBRACK] = ACTIONS(3394), + [sym___double_quote] = ACTIONS(3394), + [sym___single_quote] = ACTIONS(3394), + [sym___c_double_quote] = ACTIONS(3394), + [sym___c_single_quote] = ACTIONS(3394), + [sym___r_double_quote] = ACTIONS(3394), + [sym___r_single_quote] = ACTIONS(3394), }, - [908] = { - [sym_line_comment] = STATE(908), - [sym__expression] = STATE(1821), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), + [876] = { + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3398), + [anon_sym_LF] = ACTIONS(3398), + [anon_sym_CR] = ACTIONS(3398), + [anon_sym_CR_LF] = ACTIONS(3398), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_as] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_COMMA] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_EQ] = ACTIONS(3398), + [anon_sym___global] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_fn] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PERCENT] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_EQ_EQ] = ACTIONS(3398), + [anon_sym_BANG_EQ] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3398), + [anon_sym_union] = ACTIONS(3398), + [anon_sym_pub] = ACTIONS(3398), + [anon_sym_mut] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_QMARK] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3398), + [anon_sym_spawn] = ACTIONS(3398), + [anon_sym_json_DOTdecode] = ACTIONS(3398), + [anon_sym_LBRACK2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_LT_DASH] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3398), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3398), + [anon_sym_AMP_CARET] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_or] = ACTIONS(3398), + [sym_none] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_nil] = ACTIONS(3398), + [anon_sym_QMARK_DOT] = ACTIONS(3398), + [anon_sym_POUND_LBRACK] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_DOLLARif] = ACTIONS(3398), + [anon_sym_is] = ACTIONS(3398), + [anon_sym_BANGis] = ACTIONS(3398), + [anon_sym_in] = ACTIONS(3398), + [anon_sym_BANGin] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_STAR_EQ] = ACTIONS(3398), + [anon_sym_SLASH_EQ] = ACTIONS(3398), + [anon_sym_PERCENT_EQ] = ACTIONS(3398), + [anon_sym_LT_LT_EQ] = ACTIONS(3398), + [anon_sym_GT_GT_EQ] = ACTIONS(3398), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3398), + [anon_sym_AMP_EQ] = ACTIONS(3398), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3398), + [anon_sym_PLUS_EQ] = ACTIONS(3398), + [anon_sym_DASH_EQ] = ACTIONS(3398), + [anon_sym_PIPE_EQ] = ACTIONS(3398), + [anon_sym_CARET_EQ] = ACTIONS(3398), + [anon_sym_COLON_EQ] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_rlock] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_sql] = ACTIONS(3398), + [sym_int_literal] = ACTIONS(3398), + [sym_float_literal] = ACTIONS(3398), + [sym_rune_literal] = ACTIONS(3398), + [sym_pseudo_compile_time_identifier] = ACTIONS(3398), + [anon_sym_shared] = ACTIONS(3398), + [anon_sym_map_LBRACK] = ACTIONS(3398), + [anon_sym_chan] = ACTIONS(3398), + [anon_sym_thread] = ACTIONS(3398), + [anon_sym_atomic] = ACTIONS(3398), + [anon_sym_assert] = ACTIONS(3398), + [anon_sym_defer] = ACTIONS(3398), + [anon_sym_goto] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_DOLLARfor] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_POUND] = ACTIONS(3398), + [anon_sym_asm] = ACTIONS(3398), + [anon_sym_AT_LBRACK] = ACTIONS(3398), + [sym___double_quote] = ACTIONS(3398), + [sym___single_quote] = ACTIONS(3398), + [sym___c_double_quote] = ACTIONS(3398), + [sym___c_single_quote] = ACTIONS(3398), + [sym___r_double_quote] = ACTIONS(3398), + [sym___r_single_quote] = ACTIONS(3398), + }, + [877] = { + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), [anon_sym_PLUS] = ACTIONS(819), [anon_sym_DASH] = ACTIONS(819), [anon_sym_STAR] = ACTIONS(821), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(827), [anon_sym_go] = ACTIONS(829), [anon_sym_spawn] = ACTIONS(831), @@ -135219,11 +125772,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -135231,1013 +125784,1486 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [909] = { - [sym_line_comment] = STATE(909), - [sym__expression] = STATE(2841), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), - }, - [910] = { - [sym_line_comment] = STATE(910), - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), - }, - [911] = { - [sym_line_comment] = STATE(911), - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [878] = { + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), }, - [912] = { - [sym_line_comment] = STATE(912), - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2814), - [sym__expression_with_blocks] = STATE(2814), - [sym_inc_expression] = STATE(2804), - [sym_dec_expression] = STATE(2804), - [sym_or_block_expression] = STATE(2804), - [sym_option_propagation_expression] = STATE(2804), - [sym_result_propagation_expression] = STATE(2804), - [sym_anon_struct_value_expression] = STATE(2813), - [sym_go_expression] = STATE(2804), - [sym_spawn_expression] = STATE(2804), - [sym_parenthesized_expression] = STATE(2804), - [sym_call_expression] = STATE(2804), - [sym_type_initializer] = STATE(2813), - [sym_function_literal] = STATE(2804), - [sym_reference_expression] = STATE(2809), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2804), - [sym_receive_expression] = STATE(2804), - [sym_binary_expression] = STATE(2804), - [sym_as_type_cast_expression] = STATE(2804), - [sym__max_group] = STATE(2804), - [sym_literal] = STATE(2798), - [sym_map_init_expression] = STATE(2813), - [sym_array_creation] = STATE(2804), - [sym_fixed_array_creation] = STATE(2804), - [sym_selector_expression] = STATE(2804), - [sym_index_expression] = STATE(2804), - [sym_slice_expression] = STATE(2804), - [sym_if_expression] = STATE(2813), - [sym_compile_time_if_expression] = STATE(2813), - [sym_is_expression] = STATE(2804), - [sym_not_is_expression] = STATE(2804), - [sym_in_expression] = STATE(2804), - [sym_not_in_expression] = STATE(2804), - [sym_enum_fetch] = STATE(2804), - [sym_match_expression] = STATE(2813), - [sym_select_expression] = STATE(2813), - [sym_lock_expression] = STATE(2813), - [sym_unsafe_expression] = STATE(2813), - [sym_sql_expression] = STATE(2813), - [sym_c_string_literal] = STATE(2837), - [sym_raw_string_literal] = STATE(2837), - [sym_interpreted_string_literal] = STATE(2837), - [sym_mutability_modifiers] = STATE(644), - [sym_plain_type] = STATE(4134), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1073), - [anon_sym_LBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(1079), - [anon_sym_fn] = ACTIONS(1081), - [anon_sym_PLUS] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(1087), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_go] = ACTIONS(2773), - [anon_sym_spawn] = ACTIONS(2775), - [anon_sym_json_DOTdecode] = ACTIONS(1095), - [anon_sym_LBRACK2] = ACTIONS(1097), - [anon_sym_TILDE] = ACTIONS(2767), - [anon_sym_CARET] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_LT_DASH] = ACTIONS(2779), - [sym_none] = ACTIONS(1103), - [sym_true] = ACTIONS(1103), - [sym_false] = ACTIONS(1103), - [sym_nil] = ACTIONS(1103), - [anon_sym_if] = ACTIONS(1105), - [anon_sym_DOLLARif] = ACTIONS(1109), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_select] = ACTIONS(2781), - [anon_sym_lock] = ACTIONS(2783), - [anon_sym_rlock] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(1117), - [anon_sym_sql] = ACTIONS(1119), - [sym_int_literal] = ACTIONS(1103), - [sym_float_literal] = ACTIONS(1121), - [sym_rune_literal] = ACTIONS(1121), - [sym_pseudo_compile_time_identifier] = ACTIONS(1123), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1125), - [sym___single_quote] = ACTIONS(1127), - [sym___c_double_quote] = ACTIONS(1129), - [sym___c_single_quote] = ACTIONS(1131), - [sym___r_double_quote] = ACTIONS(1133), - [sym___r_single_quote] = ACTIONS(1135), + [879] = { + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [sym__expression] = STATE(2177), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, - [913] = { - [sym_line_comment] = STATE(913), - [sym__expression] = STATE(2326), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [880] = { + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_CR] = ACTIONS(3402), + [anon_sym_CR_LF] = ACTIONS(3402), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3402), + [anon_sym_as] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_EQ] = ACTIONS(3402), + [anon_sym___global] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_fn] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PERCENT] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_BANG_EQ] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_pub] = ACTIONS(3402), + [anon_sym_mut] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_go] = ACTIONS(3402), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(3402), + [anon_sym_LBRACK2] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_CARET] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_or] = ACTIONS(3402), + [sym_none] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_nil] = ACTIONS(3402), + [anon_sym_QMARK_DOT] = ACTIONS(3402), + [anon_sym_POUND_LBRACK] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_is] = ACTIONS(3402), + [anon_sym_BANGis] = ACTIONS(3402), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_BANGin] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_select] = ACTIONS(3402), + [anon_sym_STAR_EQ] = ACTIONS(3402), + [anon_sym_SLASH_EQ] = ACTIONS(3402), + [anon_sym_PERCENT_EQ] = ACTIONS(3402), + [anon_sym_LT_LT_EQ] = ACTIONS(3402), + [anon_sym_GT_GT_EQ] = ACTIONS(3402), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3402), + [anon_sym_AMP_EQ] = ACTIONS(3402), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3402), + [anon_sym_PLUS_EQ] = ACTIONS(3402), + [anon_sym_DASH_EQ] = ACTIONS(3402), + [anon_sym_PIPE_EQ] = ACTIONS(3402), + [anon_sym_CARET_EQ] = ACTIONS(3402), + [anon_sym_COLON_EQ] = ACTIONS(3402), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_sql] = ACTIONS(3402), + [sym_int_literal] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3402), + [sym_rune_literal] = ACTIONS(3402), + [sym_pseudo_compile_time_identifier] = ACTIONS(3402), + [anon_sym_shared] = ACTIONS(3402), + [anon_sym_map_LBRACK] = ACTIONS(3402), + [anon_sym_chan] = ACTIONS(3402), + [anon_sym_thread] = ACTIONS(3402), + [anon_sym_atomic] = ACTIONS(3402), + [anon_sym_assert] = ACTIONS(3402), + [anon_sym_defer] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_DOLLARfor] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym_AT_LBRACK] = ACTIONS(3402), + [sym___double_quote] = ACTIONS(3402), + [sym___single_quote] = ACTIONS(3402), + [sym___c_double_quote] = ACTIONS(3402), + [sym___c_single_quote] = ACTIONS(3402), + [sym___r_double_quote] = ACTIONS(3402), + [sym___r_single_quote] = ACTIONS(3402), }, - [914] = { - [sym_line_comment] = STATE(914), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3670), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [881] = { + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [sym__expression] = STATE(1316), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), }, - [915] = { - [sym_line_comment] = STATE(915), - [sym__expression] = STATE(2577), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [882] = { + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [sym__expression] = STATE(2251), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), }, - [916] = { - [sym_line_comment] = STATE(916), - [sym__expression] = STATE(2578), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [883] = { + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(3406), + [anon_sym_CR] = ACTIONS(3406), + [anon_sym_CR_LF] = ACTIONS(3406), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_EQ] = ACTIONS(3406), + [anon_sym___global] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_fn] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PERCENT] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_EQ_EQ] = ACTIONS(3406), + [anon_sym_BANG_EQ] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_pub] = ACTIONS(3406), + [anon_sym_mut] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_QMARK] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_go] = ACTIONS(3406), + [anon_sym_spawn] = ACTIONS(3406), + [anon_sym_json_DOTdecode] = ACTIONS(3406), + [anon_sym_LBRACK2] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_LT_DASH] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3406), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3406), + [anon_sym_AMP_CARET] = ACTIONS(3406), + [anon_sym_AMP_AMP] = ACTIONS(3406), + [anon_sym_PIPE_PIPE] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3406), + [sym_none] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_nil] = ACTIONS(3406), + [anon_sym_QMARK_DOT] = ACTIONS(3406), + [anon_sym_POUND_LBRACK] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_DOLLARif] = ACTIONS(3406), + [anon_sym_is] = ACTIONS(3406), + [anon_sym_BANGis] = ACTIONS(3406), + [anon_sym_in] = ACTIONS(3406), + [anon_sym_BANGin] = ACTIONS(3406), + [anon_sym_match] = ACTIONS(3406), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_STAR_EQ] = ACTIONS(3406), + [anon_sym_SLASH_EQ] = ACTIONS(3406), + [anon_sym_PERCENT_EQ] = ACTIONS(3406), + [anon_sym_LT_LT_EQ] = ACTIONS(3406), + [anon_sym_GT_GT_EQ] = ACTIONS(3406), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3406), + [anon_sym_AMP_EQ] = ACTIONS(3406), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3406), + [anon_sym_PLUS_EQ] = ACTIONS(3406), + [anon_sym_DASH_EQ] = ACTIONS(3406), + [anon_sym_PIPE_EQ] = ACTIONS(3406), + [anon_sym_CARET_EQ] = ACTIONS(3406), + [anon_sym_COLON_EQ] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3406), + [anon_sym_rlock] = ACTIONS(3406), + [anon_sym_unsafe] = ACTIONS(3406), + [anon_sym_sql] = ACTIONS(3406), + [sym_int_literal] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + [sym_rune_literal] = ACTIONS(3406), + [sym_pseudo_compile_time_identifier] = ACTIONS(3406), + [anon_sym_shared] = ACTIONS(3406), + [anon_sym_map_LBRACK] = ACTIONS(3406), + [anon_sym_chan] = ACTIONS(3406), + [anon_sym_thread] = ACTIONS(3406), + [anon_sym_atomic] = ACTIONS(3406), + [anon_sym_assert] = ACTIONS(3406), + [anon_sym_defer] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_DOLLARfor] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym_AT_LBRACK] = ACTIONS(3406), + [sym___double_quote] = ACTIONS(3406), + [sym___single_quote] = ACTIONS(3406), + [sym___c_double_quote] = ACTIONS(3406), + [sym___c_single_quote] = ACTIONS(3406), + [sym___r_double_quote] = ACTIONS(3406), + [sym___r_single_quote] = ACTIONS(3406), }, - [917] = { - [sym_line_comment] = STATE(917), - [sym__expression] = STATE(1820), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), + [884] = { + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [sym__expression] = STATE(2250), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [885] = { + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [sym__expression] = STATE(2249), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [886] = { + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [sym__expression] = STATE(2220), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [887] = { + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [sym__expression] = STATE(2213), + [sym__expression_without_blocks] = STATE(2300), + [sym__expression_with_blocks] = STATE(2300), + [sym_inc_expression] = STATE(2299), + [sym_dec_expression] = STATE(2299), + [sym_or_block_expression] = STATE(2299), + [sym_option_propagation_expression] = STATE(2299), + [sym_result_propagation_expression] = STATE(2299), + [sym_anon_struct_value_expression] = STATE(2298), + [sym_go_expression] = STATE(2299), + [sym_spawn_expression] = STATE(2299), + [sym_parenthesized_expression] = STATE(2299), + [sym_call_expression] = STATE(2299), + [sym_type_initializer] = STATE(2298), + [sym_function_literal] = STATE(2299), + [sym_reference_expression] = STATE(2297), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2299), + [sym_receive_expression] = STATE(2299), + [sym_binary_expression] = STATE(2299), + [sym_as_type_cast_expression] = STATE(2299), + [sym__max_group] = STATE(2299), + [sym_literal] = STATE(2301), + [sym_map_init_expression] = STATE(2298), + [sym_array_creation] = STATE(2299), + [sym_fixed_array_creation] = STATE(2299), + [sym_selector_expression] = STATE(2299), + [sym_index_expression] = STATE(2299), + [sym_slice_expression] = STATE(2299), + [sym_if_expression] = STATE(2298), + [sym_compile_time_if_expression] = STATE(2298), + [sym_is_expression] = STATE(2299), + [sym_not_is_expression] = STATE(2299), + [sym_in_expression] = STATE(2299), + [sym_not_in_expression] = STATE(2299), + [sym_enum_fetch] = STATE(2299), + [sym_match_expression] = STATE(2298), + [sym_select_expression] = STATE(2298), + [sym_lock_expression] = STATE(2298), + [sym_unsafe_expression] = STATE(2298), + [sym_sql_expression] = STATE(2298), + [sym_c_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_interpreted_string_literal] = STATE(2305), + [sym_mutability_modifiers] = STATE(853), + [sym_plain_type] = STATE(4384), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3052), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3054), + [anon_sym_LBRACE] = ACTIONS(3056), + [anon_sym_LPAREN] = ACTIONS(3058), + [anon_sym_fn] = ACTIONS(3060), + [anon_sym_PLUS] = ACTIONS(3062), + [anon_sym_DASH] = ACTIONS(3062), + [anon_sym_STAR] = ACTIONS(3064), + [anon_sym_struct] = ACTIONS(3066), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(3068), + [anon_sym_go] = ACTIONS(3070), + [anon_sym_spawn] = ACTIONS(3072), + [anon_sym_json_DOTdecode] = ACTIONS(3074), + [anon_sym_LBRACK2] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3062), + [anon_sym_CARET] = ACTIONS(3062), + [anon_sym_AMP] = ACTIONS(3078), + [anon_sym_LT_DASH] = ACTIONS(3080), + [sym_none] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_nil] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_DOLLARif] = ACTIONS(3086), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_select] = ACTIONS(3090), + [anon_sym_lock] = ACTIONS(3092), + [anon_sym_rlock] = ACTIONS(3092), + [anon_sym_unsafe] = ACTIONS(3094), + [anon_sym_sql] = ACTIONS(3096), + [sym_int_literal] = ACTIONS(3082), + [sym_float_literal] = ACTIONS(3098), + [sym_rune_literal] = ACTIONS(3098), + [sym_pseudo_compile_time_identifier] = ACTIONS(3100), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(3102), + [sym___single_quote] = ACTIONS(3104), + [sym___c_double_quote] = ACTIONS(3106), + [sym___c_single_quote] = ACTIONS(3108), + [sym___r_double_quote] = ACTIONS(3110), + [sym___r_single_quote] = ACTIONS(3112), + }, + [888] = { + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [sym__expression] = STATE(2897), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [889] = { + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3410), + [anon_sym_CR] = ACTIONS(3410), + [anon_sym_CR_LF] = ACTIONS(3410), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_COMMA] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_EQ] = ACTIONS(3410), + [anon_sym___global] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_PERCENT] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_GT] = ACTIONS(3410), + [anon_sym_EQ_EQ] = ACTIONS(3410), + [anon_sym_BANG_EQ] = ACTIONS(3410), + [anon_sym_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_EQ] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_pub] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_QMARK] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3410), + [anon_sym_json_DOTdecode] = ACTIONS(3410), + [anon_sym_LBRACK2] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(3410), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_GT_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_CARET] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_or] = ACTIONS(3410), + [sym_none] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_nil] = ACTIONS(3410), + [anon_sym_QMARK_DOT] = ACTIONS(3410), + [anon_sym_POUND_LBRACK] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_DOLLARif] = ACTIONS(3410), + [anon_sym_is] = ACTIONS(3410), + [anon_sym_BANGis] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3410), + [anon_sym_BANGin] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_select] = ACTIONS(3410), + [anon_sym_STAR_EQ] = ACTIONS(3410), + [anon_sym_SLASH_EQ] = ACTIONS(3410), + [anon_sym_PERCENT_EQ] = ACTIONS(3410), + [anon_sym_LT_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_GT_EQ] = ACTIONS(3410), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3410), + [anon_sym_AMP_EQ] = ACTIONS(3410), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3410), + [anon_sym_PLUS_EQ] = ACTIONS(3410), + [anon_sym_DASH_EQ] = ACTIONS(3410), + [anon_sym_PIPE_EQ] = ACTIONS(3410), + [anon_sym_CARET_EQ] = ACTIONS(3410), + [anon_sym_COLON_EQ] = ACTIONS(3410), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3410), + [sym_int_literal] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3410), + [sym_rune_literal] = ACTIONS(3410), + [sym_pseudo_compile_time_identifier] = ACTIONS(3410), + [anon_sym_shared] = ACTIONS(3410), + [anon_sym_map_LBRACK] = ACTIONS(3410), + [anon_sym_chan] = ACTIONS(3410), + [anon_sym_thread] = ACTIONS(3410), + [anon_sym_atomic] = ACTIONS(3410), + [anon_sym_assert] = ACTIONS(3410), + [anon_sym_defer] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_DOLLARfor] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_POUND] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym_AT_LBRACK] = ACTIONS(3410), + [sym___double_quote] = ACTIONS(3410), + [sym___single_quote] = ACTIONS(3410), + [sym___c_double_quote] = ACTIONS(3410), + [sym___c_single_quote] = ACTIONS(3410), + [sym___r_double_quote] = ACTIONS(3410), + [sym___r_single_quote] = ACTIONS(3410), + }, + [890] = { + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [sym__expression] = STATE(1845), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -136245,20 +127271,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -136266,93 +127292,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [918] = { - [sym_line_comment] = STATE(918), - [sym__expression] = STATE(1819), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [891] = { + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [sym__expression] = STATE(1844), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -136360,20 +127387,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -136381,93 +127408,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [919] = { - [sym_line_comment] = STATE(919), - [sym__expression] = STATE(1818), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [892] = { + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [sym__expression] = STATE(2896), + [sym__expression_without_blocks] = STATE(3020), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [893] = { + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [sym__expression] = STATE(2866), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [894] = { + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [895] = { + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [sym__expression] = STATE(1843), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -136475,20 +127851,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -136496,93 +127872,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [920] = { - [sym_line_comment] = STATE(920), - [sym__expression] = STATE(1954), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [896] = { + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [sym__expression] = STATE(2875), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [897] = { + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym__expression] = STATE(2876), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [898] = { + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4128), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [899] = { + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [sym__expression] = STATE(2888), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [900] = { + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [sym__expression] = STATE(2877), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [901] = { + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [sym__expression] = STATE(1690), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), + }, + [902] = { + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [sym__expression] = STATE(1314), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [903] = { + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [904] = { + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [sym__expression] = STATE(2879), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [905] = { + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4160), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [906] = { + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [sym__expression] = STATE(1842), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2707), - [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_go] = ACTIONS(2713), - [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(2717), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_CARET] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2719), - [anon_sym_LT_DASH] = ACTIONS(2721), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -136590,20 +129127,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(2723), - [anon_sym_lock] = ACTIONS(2725), - [anon_sym_rlock] = ACTIONS(2725), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -136611,208 +129148,1254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, - [921] = { - [sym_line_comment] = STATE(921), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [907] = { + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_CR] = ACTIONS(3414), + [anon_sym_CR_LF] = ACTIONS(3414), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_as] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym___global] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_fn] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_BANG_EQ] = ACTIONS(3414), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_union] = ACTIONS(3414), + [anon_sym_pub] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_QMARK] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(3414), + [anon_sym_spawn] = ACTIONS(3414), + [anon_sym_json_DOTdecode] = ACTIONS(3414), + [anon_sym_LBRACK2] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_GT_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_CARET] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_or] = ACTIONS(3414), + [sym_none] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_nil] = ACTIONS(3414), + [anon_sym_QMARK_DOT] = ACTIONS(3414), + [anon_sym_POUND_LBRACK] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_DOLLARif] = ACTIONS(3414), + [anon_sym_is] = ACTIONS(3414), + [anon_sym_BANGis] = ACTIONS(3414), + [anon_sym_in] = ACTIONS(3414), + [anon_sym_BANGin] = ACTIONS(3414), + [anon_sym_match] = ACTIONS(3414), + [anon_sym_select] = ACTIONS(3414), + [anon_sym_STAR_EQ] = ACTIONS(3414), + [anon_sym_SLASH_EQ] = ACTIONS(3414), + [anon_sym_PERCENT_EQ] = ACTIONS(3414), + [anon_sym_LT_LT_EQ] = ACTIONS(3414), + [anon_sym_GT_GT_EQ] = ACTIONS(3414), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3414), + [anon_sym_AMP_EQ] = ACTIONS(3414), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3414), + [anon_sym_PLUS_EQ] = ACTIONS(3414), + [anon_sym_DASH_EQ] = ACTIONS(3414), + [anon_sym_PIPE_EQ] = ACTIONS(3414), + [anon_sym_CARET_EQ] = ACTIONS(3414), + [anon_sym_COLON_EQ] = ACTIONS(3414), + [anon_sym_lock] = ACTIONS(3414), + [anon_sym_rlock] = ACTIONS(3414), + [anon_sym_unsafe] = ACTIONS(3414), + [anon_sym_sql] = ACTIONS(3414), + [sym_int_literal] = ACTIONS(3414), + [sym_float_literal] = ACTIONS(3414), + [sym_rune_literal] = ACTIONS(3414), + [sym_pseudo_compile_time_identifier] = ACTIONS(3414), + [anon_sym_shared] = ACTIONS(3414), + [anon_sym_map_LBRACK] = ACTIONS(3414), + [anon_sym_chan] = ACTIONS(3414), + [anon_sym_thread] = ACTIONS(3414), + [anon_sym_atomic] = ACTIONS(3414), + [anon_sym_assert] = ACTIONS(3414), + [anon_sym_defer] = ACTIONS(3414), + [anon_sym_goto] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_DOLLARfor] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_POUND] = ACTIONS(3414), + [anon_sym_asm] = ACTIONS(3414), + [anon_sym_AT_LBRACK] = ACTIONS(3414), + [sym___double_quote] = ACTIONS(3414), + [sym___single_quote] = ACTIONS(3414), + [sym___c_double_quote] = ACTIONS(3414), + [sym___c_single_quote] = ACTIONS(3414), + [sym___r_double_quote] = ACTIONS(3414), + [sym___r_single_quote] = ACTIONS(3414), }, - [922] = { - [sym_line_comment] = STATE(922), - [sym__expression] = STATE(1817), - [sym__expression_without_blocks] = STATE(2003), - [sym__expression_with_blocks] = STATE(2003), - [sym_inc_expression] = STATE(2004), - [sym_dec_expression] = STATE(2004), - [sym_or_block_expression] = STATE(2004), - [sym_option_propagation_expression] = STATE(2004), - [sym_result_propagation_expression] = STATE(2004), - [sym_anon_struct_value_expression] = STATE(2005), - [sym_go_expression] = STATE(2004), - [sym_spawn_expression] = STATE(2004), - [sym_parenthesized_expression] = STATE(2004), - [sym_call_expression] = STATE(2004), - [sym_type_initializer] = STATE(2005), - [sym_function_literal] = STATE(2004), - [sym_reference_expression] = STATE(1973), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2004), - [sym_receive_expression] = STATE(2004), - [sym_binary_expression] = STATE(2004), - [sym_as_type_cast_expression] = STATE(2004), - [sym__max_group] = STATE(2004), - [sym_literal] = STATE(1999), - [sym_map_init_expression] = STATE(2005), - [sym_array_creation] = STATE(2004), - [sym_fixed_array_creation] = STATE(2004), - [sym_selector_expression] = STATE(2004), - [sym_index_expression] = STATE(2004), - [sym_slice_expression] = STATE(2004), - [sym_if_expression] = STATE(2005), - [sym_compile_time_if_expression] = STATE(2005), - [sym_is_expression] = STATE(2004), - [sym_not_is_expression] = STATE(2004), - [sym_in_expression] = STATE(2004), - [sym_not_in_expression] = STATE(2004), - [sym_enum_fetch] = STATE(2004), - [sym_match_expression] = STATE(2005), - [sym_select_expression] = STATE(2005), - [sym_lock_expression] = STATE(2005), - [sym_unsafe_expression] = STATE(2005), - [sym_sql_expression] = STATE(2005), - [sym_c_string_literal] = STATE(1997), - [sym_raw_string_literal] = STATE(1997), - [sym_interpreted_string_literal] = STATE(1997), - [sym_mutability_modifiers] = STATE(739), - [sym_plain_type] = STATE(4202), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [908] = { + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4140), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [909] = { + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [sym__expression] = STATE(1289), + [sym__expression_without_blocks] = STATE(1338), + [sym__expression_with_blocks] = STATE(1338), + [sym_inc_expression] = STATE(1339), + [sym_dec_expression] = STATE(1339), + [sym_or_block_expression] = STATE(1339), + [sym_option_propagation_expression] = STATE(1339), + [sym_result_propagation_expression] = STATE(1339), + [sym_anon_struct_value_expression] = STATE(1340), + [sym_go_expression] = STATE(1339), + [sym_spawn_expression] = STATE(1339), + [sym_parenthesized_expression] = STATE(1339), + [sym_call_expression] = STATE(1339), + [sym_type_initializer] = STATE(1340), + [sym_function_literal] = STATE(1339), + [sym_reference_expression] = STATE(1357), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1339), + [sym_receive_expression] = STATE(1339), + [sym_binary_expression] = STATE(1339), + [sym_as_type_cast_expression] = STATE(1339), + [sym__max_group] = STATE(1339), + [sym_literal] = STATE(1398), + [sym_map_init_expression] = STATE(1340), + [sym_array_creation] = STATE(1339), + [sym_fixed_array_creation] = STATE(1339), + [sym_selector_expression] = STATE(1339), + [sym_index_expression] = STATE(1339), + [sym_slice_expression] = STATE(1339), + [sym_if_expression] = STATE(1340), + [sym_compile_time_if_expression] = STATE(1340), + [sym_is_expression] = STATE(1339), + [sym_not_is_expression] = STATE(1339), + [sym_in_expression] = STATE(1339), + [sym_not_in_expression] = STATE(1339), + [sym_enum_fetch] = STATE(1339), + [sym_match_expression] = STATE(1340), + [sym_select_expression] = STATE(1340), + [sym_lock_expression] = STATE(1340), + [sym_unsafe_expression] = STATE(1340), + [sym_sql_expression] = STATE(1340), + [sym_c_string_literal] = STATE(1322), + [sym_raw_string_literal] = STATE(1322), + [sym_interpreted_string_literal] = STATE(1322), + [sym_mutability_modifiers] = STATE(958), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1406), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1813), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1815), + [anon_sym_go] = ACTIONS(1817), + [anon_sym_spawn] = ACTIONS(1819), + [anon_sym_json_DOTdecode] = ACTIONS(1426), + [anon_sym_LBRACK2] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1821), + [anon_sym_LT_DASH] = ACTIONS(1823), + [sym_none] = ACTIONS(1434), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [sym_nil] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_DOLLARif] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_select] = ACTIONS(1827), + [anon_sym_lock] = ACTIONS(1829), + [anon_sym_rlock] = ACTIONS(1829), + [anon_sym_unsafe] = ACTIONS(1831), + [anon_sym_sql] = ACTIONS(1448), + [sym_int_literal] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1452), + [sym_rune_literal] = ACTIONS(1452), + [sym_pseudo_compile_time_identifier] = ACTIONS(1454), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1456), + [sym___single_quote] = ACTIONS(1458), + [sym___c_double_quote] = ACTIONS(1460), + [sym___c_single_quote] = ACTIONS(1462), + [sym___r_double_quote] = ACTIONS(1464), + [sym___r_single_quote] = ACTIONS(1466), + }, + [910] = { + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [sym__expression] = STATE(2434), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), + }, + [911] = { + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [sym__expression] = STATE(1145), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [912] = { + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [sym__expression] = STATE(981), + [sym__expression_without_blocks] = STATE(1126), + [sym__expression_with_blocks] = STATE(1126), + [sym_inc_expression] = STATE(1125), + [sym_dec_expression] = STATE(1125), + [sym_or_block_expression] = STATE(1125), + [sym_option_propagation_expression] = STATE(1125), + [sym_result_propagation_expression] = STATE(1125), + [sym_anon_struct_value_expression] = STATE(1124), + [sym_go_expression] = STATE(1125), + [sym_spawn_expression] = STATE(1125), + [sym_parenthesized_expression] = STATE(1125), + [sym_call_expression] = STATE(1125), + [sym_type_initializer] = STATE(1124), + [sym_function_literal] = STATE(1125), + [sym_reference_expression] = STATE(1034), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1125), + [sym_receive_expression] = STATE(1125), + [sym_binary_expression] = STATE(1125), + [sym_as_type_cast_expression] = STATE(1125), + [sym__max_group] = STATE(1125), + [sym_literal] = STATE(1128), + [sym_map_init_expression] = STATE(1124), + [sym_array_creation] = STATE(1125), + [sym_fixed_array_creation] = STATE(1125), + [sym_selector_expression] = STATE(1125), + [sym_index_expression] = STATE(1125), + [sym_slice_expression] = STATE(1125), + [sym_if_expression] = STATE(1124), + [sym_compile_time_if_expression] = STATE(1124), + [sym_is_expression] = STATE(1125), + [sym_not_is_expression] = STATE(1125), + [sym_in_expression] = STATE(1125), + [sym_not_in_expression] = STATE(1125), + [sym_enum_fetch] = STATE(1125), + [sym_match_expression] = STATE(1124), + [sym_select_expression] = STATE(1124), + [sym_lock_expression] = STATE(1124), + [sym_unsafe_expression] = STATE(1124), + [sym_sql_expression] = STATE(1124), + [sym_c_string_literal] = STATE(1127), + [sym_raw_string_literal] = STATE(1127), + [sym_interpreted_string_literal] = STATE(1127), + [sym_mutability_modifiers] = STATE(934), + [sym_plain_type] = STATE(4264), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(495), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(507), + [anon_sym_PLUS] = ACTIONS(2447), + [anon_sym_DASH] = ACTIONS(2447), + [anon_sym_STAR] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(513), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2451), + [anon_sym_go] = ACTIONS(519), + [anon_sym_spawn] = ACTIONS(521), + [anon_sym_json_DOTdecode] = ACTIONS(2453), + [anon_sym_LBRACK2] = ACTIONS(2455), + [anon_sym_TILDE] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(2447), + [anon_sym_AMP] = ACTIONS(2457), + [anon_sym_LT_DASH] = ACTIONS(2459), + [sym_none] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_nil] = ACTIONS(531), + [anon_sym_if] = ACTIONS(533), + [anon_sym_DOLLARif] = ACTIONS(535), + [anon_sym_match] = ACTIONS(537), + [anon_sym_select] = ACTIONS(539), + [anon_sym_lock] = ACTIONS(541), + [anon_sym_rlock] = ACTIONS(541), + [anon_sym_unsafe] = ACTIONS(543), + [anon_sym_sql] = ACTIONS(545), + [sym_int_literal] = ACTIONS(531), + [sym_float_literal] = ACTIONS(2461), + [sym_rune_literal] = ACTIONS(2461), + [sym_pseudo_compile_time_identifier] = ACTIONS(547), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2463), + [sym___single_quote] = ACTIONS(2465), + [sym___c_double_quote] = ACTIONS(2467), + [sym___c_single_quote] = ACTIONS(2469), + [sym___r_double_quote] = ACTIONS(2471), + [sym___r_single_quote] = ACTIONS(2473), + }, + [913] = { + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [sym__expression] = STATE(2893), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [914] = { + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [sym__expression] = STATE(1683), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), + }, + [915] = { + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_STAR_EQ] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3013), + [anon_sym_PERCENT_EQ] = ACTIONS(3013), + [anon_sym_LT_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_AMP_EQ] = ACTIONS(3013), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3013), + [anon_sym_PLUS_EQ] = ACTIONS(3013), + [anon_sym_DASH_EQ] = ACTIONS(3013), + [anon_sym_PIPE_EQ] = ACTIONS(3013), + [anon_sym_CARET_EQ] = ACTIONS(3013), + [anon_sym_COLON_EQ] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), + }, + [916] = { + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [sym__expression] = STATE(1688), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), + }, + [917] = { + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [sym__expression] = STATE(1841), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2645), [anon_sym_LPAREN] = ACTIONS(815), [anon_sym_fn] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(819), - [anon_sym_DASH] = ACTIONS(819), - [anon_sym_STAR] = ACTIONS(821), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), [anon_sym_struct] = ACTIONS(823), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_go] = ACTIONS(829), - [anon_sym_spawn] = ACTIONS(831), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), [anon_sym_json_DOTdecode] = ACTIONS(833), - [anon_sym_LBRACK2] = ACTIONS(835), - [anon_sym_TILDE] = ACTIONS(819), - [anon_sym_CARET] = ACTIONS(819), - [anon_sym_AMP] = ACTIONS(837), - [anon_sym_LT_DASH] = ACTIONS(839), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), [sym_none] = ACTIONS(841), [sym_true] = ACTIONS(841), [sym_false] = ACTIONS(841), @@ -136820,20 +130403,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(843), [anon_sym_DOLLARif] = ACTIONS(845), [anon_sym_match] = ACTIONS(847), - [anon_sym_select] = ACTIONS(849), - [anon_sym_lock] = ACTIONS(851), - [anon_sym_rlock] = ACTIONS(851), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), [anon_sym_unsafe] = ACTIONS(853), [anon_sym_sql] = ACTIONS(855), [sym_int_literal] = ACTIONS(841), [sym_float_literal] = ACTIONS(857), [sym_rune_literal] = ACTIONS(857), [sym_pseudo_compile_time_identifier] = ACTIONS(859), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), [sym___double_quote] = ACTIONS(861), [sym___single_quote] = ACTIONS(863), [sym___c_double_quote] = ACTIONS(865), @@ -136841,4500 +130424,5584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(869), [sym___r_single_quote] = ACTIONS(871), }, + [918] = { + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3691), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [919] = { + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [sym__expression] = STATE(1142), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [920] = { + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), + }, + [921] = { + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3688), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [922] = { + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [sym__expression] = STATE(2331), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(3674), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_go] = ACTIONS(2093), + [anon_sym_spawn] = ACTIONS(2095), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_LT_DASH] = ACTIONS(2099), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, [923] = { [sym_line_comment] = STATE(923), - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_EQ] = ACTIONS(2869), - [anon_sym___global] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_STAR_EQ] = ACTIONS(2869), - [anon_sym_SLASH_EQ] = ACTIONS(2869), - [anon_sym_PERCENT_EQ] = ACTIONS(2869), - [anon_sym_LT_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2869), - [anon_sym_AMP_EQ] = ACTIONS(2869), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2869), - [anon_sym_PLUS_EQ] = ACTIONS(2869), - [anon_sym_DASH_EQ] = ACTIONS(2869), - [anon_sym_PIPE_EQ] = ACTIONS(2869), - [anon_sym_CARET_EQ] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym_AT_LBRACK] = ACTIONS(2869), - [sym___double_quote] = ACTIONS(2869), - [sym___single_quote] = ACTIONS(2869), - [sym___c_double_quote] = ACTIONS(2869), - [sym___c_single_quote] = ACTIONS(2869), - [sym___r_double_quote] = ACTIONS(2869), - [sym___r_single_quote] = ACTIONS(2869), + [sym_block_comment] = STATE(923), + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1227), + [sym__expression_with_blocks] = STATE(1227), + [sym_inc_expression] = STATE(1229), + [sym_dec_expression] = STATE(1229), + [sym_or_block_expression] = STATE(1229), + [sym_option_propagation_expression] = STATE(1229), + [sym_result_propagation_expression] = STATE(1229), + [sym_anon_struct_value_expression] = STATE(1230), + [sym_go_expression] = STATE(1229), + [sym_spawn_expression] = STATE(1229), + [sym_parenthesized_expression] = STATE(1229), + [sym_call_expression] = STATE(1229), + [sym_type_initializer] = STATE(1230), + [sym_function_literal] = STATE(1229), + [sym_reference_expression] = STATE(1253), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1229), + [sym_receive_expression] = STATE(1229), + [sym_binary_expression] = STATE(1229), + [sym_as_type_cast_expression] = STATE(1229), + [sym__max_group] = STATE(1229), + [sym_literal] = STATE(1214), + [sym_map_init_expression] = STATE(1230), + [sym_array_creation] = STATE(1229), + [sym_fixed_array_creation] = STATE(1229), + [sym_selector_expression] = STATE(1229), + [sym_index_expression] = STATE(1229), + [sym_slice_expression] = STATE(1229), + [sym_if_expression] = STATE(1230), + [sym_compile_time_if_expression] = STATE(1230), + [sym_is_expression] = STATE(1229), + [sym_not_is_expression] = STATE(1229), + [sym_in_expression] = STATE(1229), + [sym_not_in_expression] = STATE(1229), + [sym_enum_fetch] = STATE(1229), + [sym_match_expression] = STATE(1230), + [sym_select_expression] = STATE(1230), + [sym_lock_expression] = STATE(1230), + [sym_unsafe_expression] = STATE(1230), + [sym_sql_expression] = STATE(1230), + [sym_c_string_literal] = STATE(1213), + [sym_raw_string_literal] = STATE(1213), + [sym_interpreted_string_literal] = STATE(1213), + [sym_mutability_modifiers] = STATE(899), + [sym_plain_type] = STATE(4420), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(633), + [anon_sym_LPAREN] = ACTIONS(637), + [anon_sym_fn] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_struct] = ACTIONS(649), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_go] = ACTIONS(657), + [anon_sym_spawn] = ACTIONS(659), + [anon_sym_json_DOTdecode] = ACTIONS(661), + [anon_sym_LBRACK2] = ACTIONS(663), + [anon_sym_TILDE] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(665), + [anon_sym_LT_DASH] = ACTIONS(667), + [sym_none] = ACTIONS(669), + [sym_true] = ACTIONS(669), + [sym_false] = ACTIONS(669), + [sym_nil] = ACTIONS(669), + [anon_sym_if] = ACTIONS(671), + [anon_sym_DOLLARif] = ACTIONS(673), + [anon_sym_match] = ACTIONS(675), + [anon_sym_select] = ACTIONS(677), + [anon_sym_lock] = ACTIONS(679), + [anon_sym_rlock] = ACTIONS(679), + [anon_sym_unsafe] = ACTIONS(681), + [anon_sym_sql] = ACTIONS(683), + [sym_int_literal] = ACTIONS(669), + [sym_float_literal] = ACTIONS(685), + [sym_rune_literal] = ACTIONS(685), + [sym_pseudo_compile_time_identifier] = ACTIONS(687), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(689), + [sym___single_quote] = ACTIONS(691), + [sym___c_double_quote] = ACTIONS(693), + [sym___c_single_quote] = ACTIONS(695), + [sym___r_double_quote] = ACTIONS(697), + [sym___r_single_quote] = ACTIONS(699), }, [924] = { [sym_line_comment] = STATE(924), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3658), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(924), + [sym__expression] = STATE(1809), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [925] = { [sym_line_comment] = STATE(925), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(925), + [sym__expression] = STATE(2573), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [926] = { [sym_line_comment] = STATE(926), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(926), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3418), + [anon_sym_LF] = ACTIONS(3418), + [anon_sym_CR] = ACTIONS(3418), + [anon_sym_CR_LF] = ACTIONS(3418), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_as] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_COMMA] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_EQ] = ACTIONS(3418), + [anon_sym___global] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_fn] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_PERCENT] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_EQ_EQ] = ACTIONS(3418), + [anon_sym_BANG_EQ] = ACTIONS(3418), + [anon_sym_LT_EQ] = ACTIONS(3418), + [anon_sym_GT_EQ] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(3418), + [anon_sym_union] = ACTIONS(3418), + [anon_sym_pub] = ACTIONS(3418), + [anon_sym_mut] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3418), + [anon_sym_spawn] = ACTIONS(3418), + [anon_sym_json_DOTdecode] = ACTIONS(3418), + [anon_sym_LBRACK2] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_LT_DASH] = ACTIONS(3418), + [anon_sym_LT_LT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(3418), + [anon_sym_GT_GT_GT] = ACTIONS(3418), + [anon_sym_AMP_CARET] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_or] = ACTIONS(3418), + [sym_none] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_nil] = ACTIONS(3418), + [anon_sym_QMARK_DOT] = ACTIONS(3418), + [anon_sym_POUND_LBRACK] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_DOLLARif] = ACTIONS(3418), + [anon_sym_is] = ACTIONS(3418), + [anon_sym_BANGis] = ACTIONS(3418), + [anon_sym_in] = ACTIONS(3418), + [anon_sym_BANGin] = ACTIONS(3418), + [anon_sym_match] = ACTIONS(3418), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_STAR_EQ] = ACTIONS(3418), + [anon_sym_SLASH_EQ] = ACTIONS(3418), + [anon_sym_PERCENT_EQ] = ACTIONS(3418), + [anon_sym_LT_LT_EQ] = ACTIONS(3418), + [anon_sym_GT_GT_EQ] = ACTIONS(3418), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3418), + [anon_sym_AMP_EQ] = ACTIONS(3418), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3418), + [anon_sym_PLUS_EQ] = ACTIONS(3418), + [anon_sym_DASH_EQ] = ACTIONS(3418), + [anon_sym_PIPE_EQ] = ACTIONS(3418), + [anon_sym_CARET_EQ] = ACTIONS(3418), + [anon_sym_COLON_EQ] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3418), + [anon_sym_rlock] = ACTIONS(3418), + [anon_sym_unsafe] = ACTIONS(3418), + [anon_sym_sql] = ACTIONS(3418), + [sym_int_literal] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3418), + [sym_rune_literal] = ACTIONS(3418), + [sym_pseudo_compile_time_identifier] = ACTIONS(3418), + [anon_sym_shared] = ACTIONS(3418), + [anon_sym_map_LBRACK] = ACTIONS(3418), + [anon_sym_chan] = ACTIONS(3418), + [anon_sym_thread] = ACTIONS(3418), + [anon_sym_atomic] = ACTIONS(3418), + [anon_sym_assert] = ACTIONS(3418), + [anon_sym_defer] = ACTIONS(3418), + [anon_sym_goto] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_DOLLARfor] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_POUND] = ACTIONS(3418), + [anon_sym_asm] = ACTIONS(3418), + [anon_sym_AT_LBRACK] = ACTIONS(3418), + [sym___double_quote] = ACTIONS(3418), + [sym___single_quote] = ACTIONS(3418), + [sym___c_double_quote] = ACTIONS(3418), + [sym___c_single_quote] = ACTIONS(3418), + [sym___r_double_quote] = ACTIONS(3418), + [sym___r_single_quote] = ACTIONS(3418), }, [927] = { [sym_line_comment] = STATE(927), - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), + [sym_block_comment] = STATE(927), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_LF] = ACTIONS(3422), + [anon_sym_CR] = ACTIONS(3422), + [anon_sym_CR_LF] = ACTIONS(3422), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym___global] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_fn] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_union] = ACTIONS(3422), + [anon_sym_pub] = ACTIONS(3422), + [anon_sym_mut] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_QMARK] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_go] = ACTIONS(3422), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(3422), + [anon_sym_LBRACK2] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(3422), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_GT_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_CARET] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_or] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_nil] = ACTIONS(3422), + [anon_sym_QMARK_DOT] = ACTIONS(3422), + [anon_sym_POUND_LBRACK] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_DOLLARif] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_select] = ACTIONS(3422), + [anon_sym_STAR_EQ] = ACTIONS(3422), + [anon_sym_SLASH_EQ] = ACTIONS(3422), + [anon_sym_PERCENT_EQ] = ACTIONS(3422), + [anon_sym_LT_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_GT_EQ] = ACTIONS(3422), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3422), + [anon_sym_AMP_EQ] = ACTIONS(3422), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3422), + [anon_sym_PLUS_EQ] = ACTIONS(3422), + [anon_sym_DASH_EQ] = ACTIONS(3422), + [anon_sym_PIPE_EQ] = ACTIONS(3422), + [anon_sym_CARET_EQ] = ACTIONS(3422), + [anon_sym_COLON_EQ] = ACTIONS(3422), + [anon_sym_lock] = ACTIONS(3422), + [anon_sym_rlock] = ACTIONS(3422), + [anon_sym_unsafe] = ACTIONS(3422), + [anon_sym_sql] = ACTIONS(3422), + [sym_int_literal] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3422), + [sym_rune_literal] = ACTIONS(3422), + [sym_pseudo_compile_time_identifier] = ACTIONS(3422), + [anon_sym_shared] = ACTIONS(3422), + [anon_sym_map_LBRACK] = ACTIONS(3422), + [anon_sym_chan] = ACTIONS(3422), + [anon_sym_thread] = ACTIONS(3422), + [anon_sym_atomic] = ACTIONS(3422), + [anon_sym_assert] = ACTIONS(3422), + [anon_sym_defer] = ACTIONS(3422), + [anon_sym_goto] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_DOLLARfor] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_POUND] = ACTIONS(3422), + [anon_sym_asm] = ACTIONS(3422), + [anon_sym_AT_LBRACK] = ACTIONS(3422), + [sym___double_quote] = ACTIONS(3422), + [sym___single_quote] = ACTIONS(3422), + [sym___c_double_quote] = ACTIONS(3422), + [sym___c_single_quote] = ACTIONS(3422), + [sym___r_double_quote] = ACTIONS(3422), + [sym___r_single_quote] = ACTIONS(3422), }, [928] = { [sym_line_comment] = STATE(928), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(3680), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(928), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(3426), + [anon_sym_CR] = ACTIONS(3426), + [anon_sym_CR_LF] = ACTIONS(3426), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_EQ] = ACTIONS(3426), + [anon_sym___global] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_fn] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_EQ_EQ] = ACTIONS(3426), + [anon_sym_BANG_EQ] = ACTIONS(3426), + [anon_sym_LT_EQ] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_union] = ACTIONS(3426), + [anon_sym_pub] = ACTIONS(3426), + [anon_sym_mut] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_go] = ACTIONS(3426), + [anon_sym_spawn] = ACTIONS(3426), + [anon_sym_json_DOTdecode] = ACTIONS(3426), + [anon_sym_LBRACK2] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_LT_DASH] = ACTIONS(3426), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_GT_GT_GT] = ACTIONS(3426), + [anon_sym_AMP_CARET] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [anon_sym_or] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_nil] = ACTIONS(3426), + [anon_sym_QMARK_DOT] = ACTIONS(3426), + [anon_sym_POUND_LBRACK] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_DOLLARif] = ACTIONS(3426), + [anon_sym_is] = ACTIONS(3426), + [anon_sym_BANGis] = ACTIONS(3426), + [anon_sym_in] = ACTIONS(3426), + [anon_sym_BANGin] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_STAR_EQ] = ACTIONS(3426), + [anon_sym_SLASH_EQ] = ACTIONS(3426), + [anon_sym_PERCENT_EQ] = ACTIONS(3426), + [anon_sym_LT_LT_EQ] = ACTIONS(3426), + [anon_sym_GT_GT_EQ] = ACTIONS(3426), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3426), + [anon_sym_AMP_EQ] = ACTIONS(3426), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3426), + [anon_sym_PLUS_EQ] = ACTIONS(3426), + [anon_sym_DASH_EQ] = ACTIONS(3426), + [anon_sym_PIPE_EQ] = ACTIONS(3426), + [anon_sym_CARET_EQ] = ACTIONS(3426), + [anon_sym_COLON_EQ] = ACTIONS(3426), + [anon_sym_lock] = ACTIONS(3426), + [anon_sym_rlock] = ACTIONS(3426), + [anon_sym_unsafe] = ACTIONS(3426), + [anon_sym_sql] = ACTIONS(3426), + [sym_int_literal] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3426), + [sym_rune_literal] = ACTIONS(3426), + [sym_pseudo_compile_time_identifier] = ACTIONS(3426), + [anon_sym_shared] = ACTIONS(3426), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3426), + [anon_sym_thread] = ACTIONS(3426), + [anon_sym_atomic] = ACTIONS(3426), + [anon_sym_assert] = ACTIONS(3426), + [anon_sym_defer] = ACTIONS(3426), + [anon_sym_goto] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_DOLLARfor] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_asm] = ACTIONS(3426), + [anon_sym_AT_LBRACK] = ACTIONS(3426), + [sym___double_quote] = ACTIONS(3426), + [sym___single_quote] = ACTIONS(3426), + [sym___c_double_quote] = ACTIONS(3426), + [sym___c_single_quote] = ACTIONS(3426), + [sym___r_double_quote] = ACTIONS(3426), + [sym___r_single_quote] = ACTIONS(3426), }, [929] = { [sym_line_comment] = STATE(929), - [sym__expression] = STATE(2327), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(929), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_LF] = ACTIONS(3430), + [anon_sym_CR] = ACTIONS(3430), + [anon_sym_CR_LF] = ACTIONS(3430), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_go] = ACTIONS(1781), - [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_as] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_EQ] = ACTIONS(3430), + [anon_sym___global] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_PERCENT] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_EQ_EQ] = ACTIONS(3430), + [anon_sym_BANG_EQ] = ACTIONS(3430), + [anon_sym_LT_EQ] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_union] = ACTIONS(3430), + [anon_sym_pub] = ACTIONS(3430), + [anon_sym_mut] = ACTIONS(3430), + [anon_sym_enum] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_go] = ACTIONS(3430), + [anon_sym_spawn] = ACTIONS(3430), + [anon_sym_json_DOTdecode] = ACTIONS(3430), + [anon_sym_LBRACK2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_LT_DASH] = ACTIONS(3430), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_GT_GT_GT] = ACTIONS(3430), + [anon_sym_AMP_CARET] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_PIPE_PIPE] = ACTIONS(3430), + [anon_sym_or] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_nil] = ACTIONS(3430), + [anon_sym_QMARK_DOT] = ACTIONS(3430), + [anon_sym_POUND_LBRACK] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_DOLLARif] = ACTIONS(3430), + [anon_sym_is] = ACTIONS(3430), + [anon_sym_BANGis] = ACTIONS(3430), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_BANGin] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_select] = ACTIONS(3430), + [anon_sym_STAR_EQ] = ACTIONS(3430), + [anon_sym_SLASH_EQ] = ACTIONS(3430), + [anon_sym_PERCENT_EQ] = ACTIONS(3430), + [anon_sym_LT_LT_EQ] = ACTIONS(3430), + [anon_sym_GT_GT_EQ] = ACTIONS(3430), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3430), + [anon_sym_AMP_EQ] = ACTIONS(3430), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3430), + [anon_sym_PLUS_EQ] = ACTIONS(3430), + [anon_sym_DASH_EQ] = ACTIONS(3430), + [anon_sym_PIPE_EQ] = ACTIONS(3430), + [anon_sym_CARET_EQ] = ACTIONS(3430), + [anon_sym_COLON_EQ] = ACTIONS(3430), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(3430), + [anon_sym_sql] = ACTIONS(3430), + [sym_int_literal] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3430), + [sym_rune_literal] = ACTIONS(3430), + [sym_pseudo_compile_time_identifier] = ACTIONS(3430), + [anon_sym_shared] = ACTIONS(3430), + [anon_sym_map_LBRACK] = ACTIONS(3430), + [anon_sym_chan] = ACTIONS(3430), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3430), + [anon_sym_assert] = ACTIONS(3430), + [anon_sym_defer] = ACTIONS(3430), + [anon_sym_goto] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_DOLLARfor] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_POUND] = ACTIONS(3430), + [anon_sym_asm] = ACTIONS(3430), + [anon_sym_AT_LBRACK] = ACTIONS(3430), + [sym___double_quote] = ACTIONS(3430), + [sym___single_quote] = ACTIONS(3430), + [sym___c_double_quote] = ACTIONS(3430), + [sym___c_single_quote] = ACTIONS(3430), + [sym___r_double_quote] = ACTIONS(3430), + [sym___r_single_quote] = ACTIONS(3430), }, [930] = { [sym_line_comment] = STATE(930), - [sym__expression] = STATE(2894), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1336), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_go] = ACTIONS(1354), - [anon_sym_spawn] = ACTIONS(1356), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1346), - [anon_sym_CARET] = ACTIONS(1346), - [anon_sym_AMP] = ACTIONS(1362), - [anon_sym_LT_DASH] = ACTIONS(1364), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1374), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(930), + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [931] = { [sym_line_comment] = STATE(931), - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(931), + [sym__expression] = STATE(2576), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [932] = { [sym_line_comment] = STATE(932), - [sym__expression] = STATE(1656), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(932), + [sym__expression] = STATE(2907), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [933] = { [sym_line_comment] = STATE(933), - [sym__expression] = STATE(1655), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(933), + [sym__expression] = STATE(2892), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [934] = { [sym_line_comment] = STATE(934), - [sym__expression] = STATE(2556), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_go] = ACTIONS(2097), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(2101), - [anon_sym_TILDE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_LT_DASH] = ACTIONS(2105), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2107), - [anon_sym_lock] = ACTIONS(2109), - [anon_sym_rlock] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(934), + [sym__expression] = STATE(2889), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [935] = { [sym_line_comment] = STATE(935), - [sym__expression] = STATE(1654), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(935), + [sym__expression] = STATE(2507), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2955), + [anon_sym_go] = ACTIONS(2957), + [anon_sym_spawn] = ACTIONS(2959), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_LT_DASH] = ACTIONS(2963), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(2965), + [anon_sym_lock] = ACTIONS(2967), + [anon_sym_rlock] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [936] = { [sym_line_comment] = STATE(936), - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [sym_block_comment] = STATE(936), + [sym__expression] = STATE(2808), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [937] = { [sym_line_comment] = STATE(937), - [sym__expression] = STATE(1653), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(937), + [sym__expression] = STATE(2619), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [938] = { [sym_line_comment] = STATE(938), - [sym__expression] = STATE(2321), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), + [sym_block_comment] = STATE(938), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_LF] = ACTIONS(3434), + [anon_sym_CR] = ACTIONS(3434), + [anon_sym_CR_LF] = ACTIONS(3434), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3434), + [anon_sym_as] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_COMMA] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_EQ] = ACTIONS(3434), + [anon_sym___global] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_PERCENT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_EQ_EQ] = ACTIONS(3434), + [anon_sym_BANG_EQ] = ACTIONS(3434), + [anon_sym_LT_EQ] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_pub] = ACTIONS(3434), + [anon_sym_mut] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_go] = ACTIONS(3434), + [anon_sym_spawn] = ACTIONS(3434), + [anon_sym_json_DOTdecode] = ACTIONS(3434), + [anon_sym_LBRACK2] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_LT_DASH] = ACTIONS(3434), + [anon_sym_LT_LT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(3434), + [anon_sym_GT_GT_GT] = ACTIONS(3434), + [anon_sym_AMP_CARET] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3434), + [anon_sym_PIPE_PIPE] = ACTIONS(3434), + [anon_sym_or] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_nil] = ACTIONS(3434), + [anon_sym_QMARK_DOT] = ACTIONS(3434), + [anon_sym_POUND_LBRACK] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_DOLLARif] = ACTIONS(3434), + [anon_sym_is] = ACTIONS(3434), + [anon_sym_BANGis] = ACTIONS(3434), + [anon_sym_in] = ACTIONS(3434), + [anon_sym_BANGin] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_STAR_EQ] = ACTIONS(3434), + [anon_sym_SLASH_EQ] = ACTIONS(3434), + [anon_sym_PERCENT_EQ] = ACTIONS(3434), + [anon_sym_LT_LT_EQ] = ACTIONS(3434), + [anon_sym_GT_GT_EQ] = ACTIONS(3434), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3434), + [anon_sym_AMP_EQ] = ACTIONS(3434), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3434), + [anon_sym_PLUS_EQ] = ACTIONS(3434), + [anon_sym_DASH_EQ] = ACTIONS(3434), + [anon_sym_PIPE_EQ] = ACTIONS(3434), + [anon_sym_CARET_EQ] = ACTIONS(3434), + [anon_sym_COLON_EQ] = ACTIONS(3434), + [anon_sym_lock] = ACTIONS(3434), + [anon_sym_rlock] = ACTIONS(3434), + [anon_sym_unsafe] = ACTIONS(3434), + [anon_sym_sql] = ACTIONS(3434), + [sym_int_literal] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3434), + [sym_rune_literal] = ACTIONS(3434), + [sym_pseudo_compile_time_identifier] = ACTIONS(3434), + [anon_sym_shared] = ACTIONS(3434), + [anon_sym_map_LBRACK] = ACTIONS(3434), + [anon_sym_chan] = ACTIONS(3434), + [anon_sym_thread] = ACTIONS(3434), + [anon_sym_atomic] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_defer] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_DOLLARfor] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym_AT_LBRACK] = ACTIONS(3434), + [sym___double_quote] = ACTIONS(3434), + [sym___single_quote] = ACTIONS(3434), + [sym___c_double_quote] = ACTIONS(3434), + [sym___c_single_quote] = ACTIONS(3434), + [sym___r_double_quote] = ACTIONS(3434), + [sym___r_single_quote] = ACTIONS(3434), }, [939] = { [sym_line_comment] = STATE(939), - [sym__expression] = STATE(1652), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), + [sym_block_comment] = STATE(939), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2759), + [anon_sym_LF] = ACTIONS(2759), + [anon_sym_CR] = ACTIONS(2759), + [anon_sym_CR_LF] = ACTIONS(2759), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2759), + [anon_sym___global] = ACTIONS(2759), + [anon_sym_type] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_pub] = ACTIONS(2759), + [anon_sym_mut] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_interface] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_go] = ACTIONS(2759), + [anon_sym_spawn] = ACTIONS(2759), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [sym_none] = ACTIONS(2759), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_nil] = ACTIONS(2759), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_DOLLARif] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_select] = ACTIONS(2759), + [anon_sym_STAR_EQ] = ACTIONS(2759), + [anon_sym_SLASH_EQ] = ACTIONS(2759), + [anon_sym_PERCENT_EQ] = ACTIONS(2759), + [anon_sym_LT_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_GT_EQ] = ACTIONS(2759), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2759), + [anon_sym_AMP_EQ] = ACTIONS(2759), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2759), + [anon_sym_PLUS_EQ] = ACTIONS(2759), + [anon_sym_DASH_EQ] = ACTIONS(2759), + [anon_sym_PIPE_EQ] = ACTIONS(2759), + [anon_sym_CARET_EQ] = ACTIONS(2759), + [anon_sym_COLON_EQ] = ACTIONS(2759), + [anon_sym_lock] = ACTIONS(2759), + [anon_sym_rlock] = ACTIONS(2759), + [anon_sym_unsafe] = ACTIONS(2759), + [anon_sym_sql] = ACTIONS(2759), + [sym_int_literal] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2759), + [sym_rune_literal] = ACTIONS(2759), + [sym_pseudo_compile_time_identifier] = ACTIONS(2759), + [anon_sym_shared] = ACTIONS(2759), + [anon_sym_map_LBRACK] = ACTIONS(2759), + [anon_sym_chan] = ACTIONS(2759), + [anon_sym_thread] = ACTIONS(2759), + [anon_sym_atomic] = ACTIONS(2759), + [anon_sym_assert] = ACTIONS(2759), + [anon_sym_defer] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_DOLLARfor] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_asm] = ACTIONS(2759), + [anon_sym_AT_LBRACK] = ACTIONS(2759), + [sym___double_quote] = ACTIONS(2759), + [sym___single_quote] = ACTIONS(2759), + [sym___c_double_quote] = ACTIONS(2759), + [sym___c_single_quote] = ACTIONS(2759), + [sym___r_double_quote] = ACTIONS(2759), + [sym___r_single_quote] = ACTIONS(2759), }, [940] = { [sym_line_comment] = STATE(940), - [sym__expression] = STATE(1651), - [sym__expression_without_blocks] = STATE(1755), - [sym__expression_with_blocks] = STATE(1755), - [sym_inc_expression] = STATE(1738), - [sym_dec_expression] = STATE(1738), - [sym_or_block_expression] = STATE(1738), - [sym_option_propagation_expression] = STATE(1738), - [sym_result_propagation_expression] = STATE(1738), - [sym_anon_struct_value_expression] = STATE(1782), - [sym_go_expression] = STATE(1738), - [sym_spawn_expression] = STATE(1738), - [sym_parenthesized_expression] = STATE(1738), - [sym_call_expression] = STATE(1738), - [sym_type_initializer] = STATE(1782), - [sym_function_literal] = STATE(1738), - [sym_reference_expression] = STATE(1714), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1738), - [sym_receive_expression] = STATE(1738), - [sym_binary_expression] = STATE(1738), - [sym_as_type_cast_expression] = STATE(1738), - [sym__max_group] = STATE(1738), - [sym_literal] = STATE(1772), - [sym_map_init_expression] = STATE(1782), - [sym_array_creation] = STATE(1738), - [sym_fixed_array_creation] = STATE(1738), - [sym_selector_expression] = STATE(1738), - [sym_index_expression] = STATE(1738), - [sym_slice_expression] = STATE(1738), - [sym_if_expression] = STATE(1782), - [sym_compile_time_if_expression] = STATE(1782), - [sym_is_expression] = STATE(1738), - [sym_not_is_expression] = STATE(1738), - [sym_in_expression] = STATE(1738), - [sym_not_in_expression] = STATE(1738), - [sym_enum_fetch] = STATE(1738), - [sym_match_expression] = STATE(1782), - [sym_select_expression] = STATE(1782), - [sym_lock_expression] = STATE(1782), - [sym_unsafe_expression] = STATE(1782), - [sym_sql_expression] = STATE(1782), - [sym_c_string_literal] = STATE(1757), - [sym_raw_string_literal] = STATE(1757), - [sym_interpreted_string_literal] = STATE(1757), - [sym_mutability_modifiers] = STATE(737), - [sym_plain_type] = STATE(4421), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(319), - [anon_sym_DASH] = ACTIONS(319), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_struct] = ACTIONS(323), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(325), - [anon_sym_go] = ACTIONS(327), - [anon_sym_spawn] = ACTIONS(329), - [anon_sym_json_DOTdecode] = ACTIONS(331), - [anon_sym_LBRACK2] = ACTIONS(333), - [anon_sym_TILDE] = ACTIONS(319), - [anon_sym_CARET] = ACTIONS(319), - [anon_sym_AMP] = ACTIONS(335), - [anon_sym_LT_DASH] = ACTIONS(337), - [sym_none] = ACTIONS(339), - [sym_true] = ACTIONS(339), - [sym_false] = ACTIONS(339), - [sym_nil] = ACTIONS(339), - [anon_sym_if] = ACTIONS(341), - [anon_sym_DOLLARif] = ACTIONS(343), - [anon_sym_match] = ACTIONS(345), - [anon_sym_select] = ACTIONS(347), - [anon_sym_lock] = ACTIONS(349), - [anon_sym_rlock] = ACTIONS(349), - [anon_sym_unsafe] = ACTIONS(351), - [anon_sym_sql] = ACTIONS(353), - [sym_int_literal] = ACTIONS(339), - [sym_float_literal] = ACTIONS(355), - [sym_rune_literal] = ACTIONS(355), - [sym_pseudo_compile_time_identifier] = ACTIONS(357), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(379), - [sym___single_quote] = ACTIONS(381), - [sym___c_double_quote] = ACTIONS(383), - [sym___c_single_quote] = ACTIONS(385), - [sym___r_double_quote] = ACTIONS(387), - [sym___r_single_quote] = ACTIONS(389), + [sym_block_comment] = STATE(940), + [sym__expression] = STATE(1669), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [941] = { [sym_line_comment] = STATE(941), - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(941), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [942] = { [sym_line_comment] = STATE(942), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4405), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(942), + [sym__expression] = STATE(1672), + [sym__expression_without_blocks] = STATE(1913), + [sym__expression_with_blocks] = STATE(1913), + [sym_inc_expression] = STATE(1912), + [sym_dec_expression] = STATE(1912), + [sym_or_block_expression] = STATE(1912), + [sym_option_propagation_expression] = STATE(1912), + [sym_result_propagation_expression] = STATE(1912), + [sym_anon_struct_value_expression] = STATE(1911), + [sym_go_expression] = STATE(1912), + [sym_spawn_expression] = STATE(1912), + [sym_parenthesized_expression] = STATE(1912), + [sym_call_expression] = STATE(1912), + [sym_type_initializer] = STATE(1911), + [sym_function_literal] = STATE(1912), + [sym_reference_expression] = STATE(1937), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1912), + [sym_receive_expression] = STATE(1912), + [sym_binary_expression] = STATE(1912), + [sym_as_type_cast_expression] = STATE(1912), + [sym__max_group] = STATE(1912), + [sym_literal] = STATE(1915), + [sym_map_init_expression] = STATE(1911), + [sym_array_creation] = STATE(1912), + [sym_fixed_array_creation] = STATE(1912), + [sym_selector_expression] = STATE(1912), + [sym_index_expression] = STATE(1912), + [sym_slice_expression] = STATE(1912), + [sym_if_expression] = STATE(1911), + [sym_compile_time_if_expression] = STATE(1911), + [sym_is_expression] = STATE(1912), + [sym_not_is_expression] = STATE(1912), + [sym_in_expression] = STATE(1912), + [sym_not_in_expression] = STATE(1912), + [sym_enum_fetch] = STATE(1912), + [sym_match_expression] = STATE(1911), + [sym_select_expression] = STATE(1911), + [sym_lock_expression] = STATE(1911), + [sym_unsafe_expression] = STATE(1911), + [sym_sql_expression] = STATE(1911), + [sym_c_string_literal] = STATE(1916), + [sym_raw_string_literal] = STATE(1916), + [sym_interpreted_string_literal] = STATE(1916), + [sym_mutability_modifiers] = STATE(710), + [sym_plain_type] = STATE(4218), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_go] = ACTIONS(2803), + [anon_sym_spawn] = ACTIONS(2805), + [anon_sym_json_DOTdecode] = ACTIONS(2807), + [anon_sym_LBRACK2] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2811), + [anon_sym_LT_DASH] = ACTIONS(2813), + [sym_none] = ACTIONS(2815), + [sym_true] = ACTIONS(2815), + [sym_false] = ACTIONS(2815), + [sym_nil] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_DOLLARif] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2821), + [anon_sym_select] = ACTIONS(2823), + [anon_sym_lock] = ACTIONS(2825), + [anon_sym_rlock] = ACTIONS(2825), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_sql] = ACTIONS(2829), + [sym_int_literal] = ACTIONS(2815), + [sym_float_literal] = ACTIONS(2831), + [sym_rune_literal] = ACTIONS(2831), + [sym_pseudo_compile_time_identifier] = ACTIONS(2833), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2835), + [sym___single_quote] = ACTIONS(2837), + [sym___c_double_quote] = ACTIONS(2839), + [sym___c_single_quote] = ACTIONS(2841), + [sym___r_double_quote] = ACTIONS(2843), + [sym___r_single_quote] = ACTIONS(2845), }, [943] = { [sym_line_comment] = STATE(943), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(943), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4249), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [944] = { [sym_line_comment] = STATE(944), - [sym__expression] = STATE(2792), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(944), + [sym__expression] = STATE(2620), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [945] = { [sym_line_comment] = STATE(945), - [sym__expression] = STATE(2800), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(945), + [sym__expression] = STATE(2341), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [946] = { [sym_line_comment] = STATE(946), - [sym__expression] = STATE(2803), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(946), + [sym__expression] = STATE(2622), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [947] = { [sym_line_comment] = STATE(947), - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(947), + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [948] = { [sym_line_comment] = STATE(948), - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(930), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2647), - [anon_sym_go] = ACTIONS(2649), - [anon_sym_spawn] = ACTIONS(2651), - [anon_sym_json_DOTdecode] = ACTIONS(1358), - [anon_sym_LBRACK2] = ACTIONS(1785), - [anon_sym_TILDE] = ACTIONS(2643), - [anon_sym_CARET] = ACTIONS(2643), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_LT_DASH] = ACTIONS(2655), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(2657), - [anon_sym_lock] = ACTIONS(2659), - [anon_sym_rlock] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_block_comment] = STATE(948), + [sym__expression] = STATE(1652), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [949] = { [sym_line_comment] = STATE(949), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4412), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(949), + [sym__expression] = STATE(1654), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [950] = { [sym_line_comment] = STATE(950), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4408), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(950), + [sym__expression] = STATE(1660), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [951] = { [sym_line_comment] = STATE(951), - [sym__expression] = STATE(2333), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(951), + [sym__expression] = STATE(2623), + [sym__expression_without_blocks] = STATE(2719), + [sym__expression_with_blocks] = STATE(2719), + [sym_inc_expression] = STATE(2848), + [sym_dec_expression] = STATE(2848), + [sym_or_block_expression] = STATE(2848), + [sym_option_propagation_expression] = STATE(2848), + [sym_result_propagation_expression] = STATE(2848), + [sym_anon_struct_value_expression] = STATE(2716), + [sym_go_expression] = STATE(2848), + [sym_spawn_expression] = STATE(2848), + [sym_parenthesized_expression] = STATE(2848), + [sym_call_expression] = STATE(2848), + [sym_type_initializer] = STATE(2716), + [sym_function_literal] = STATE(2848), + [sym_reference_expression] = STATE(2847), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2848), + [sym_receive_expression] = STATE(2848), + [sym_binary_expression] = STATE(2848), + [sym_as_type_cast_expression] = STATE(2848), + [sym__max_group] = STATE(2848), + [sym_literal] = STATE(2852), + [sym_map_init_expression] = STATE(2716), + [sym_array_creation] = STATE(2848), + [sym_fixed_array_creation] = STATE(2848), + [sym_selector_expression] = STATE(2848), + [sym_index_expression] = STATE(2848), + [sym_slice_expression] = STATE(2848), + [sym_if_expression] = STATE(2716), + [sym_compile_time_if_expression] = STATE(2716), + [sym_is_expression] = STATE(2848), + [sym_not_is_expression] = STATE(2848), + [sym_in_expression] = STATE(2848), + [sym_not_in_expression] = STATE(2848), + [sym_enum_fetch] = STATE(2848), + [sym_match_expression] = STATE(2716), + [sym_select_expression] = STATE(2716), + [sym_lock_expression] = STATE(2716), + [sym_unsafe_expression] = STATE(2716), + [sym_sql_expression] = STATE(2716), + [sym_c_string_literal] = STATE(2693), + [sym_raw_string_literal] = STATE(2693), + [sym_interpreted_string_literal] = STATE(2693), + [sym_mutability_modifiers] = STATE(766), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(1083), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_fn] = ACTIONS(1089), + [anon_sym_PLUS] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_go] = ACTIONS(2773), + [anon_sym_spawn] = ACTIONS(2775), + [anon_sym_json_DOTdecode] = ACTIONS(1103), + [anon_sym_LBRACK2] = ACTIONS(1105), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_LT_DASH] = ACTIONS(2779), + [sym_none] = ACTIONS(1111), + [sym_true] = ACTIONS(1111), + [sym_false] = ACTIONS(1111), + [sym_nil] = ACTIONS(1111), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_DOLLARif] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1119), + [anon_sym_select] = ACTIONS(2781), + [anon_sym_lock] = ACTIONS(2783), + [anon_sym_rlock] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(1125), + [anon_sym_sql] = ACTIONS(1127), + [sym_int_literal] = ACTIONS(1111), + [sym_float_literal] = ACTIONS(1129), + [sym_rune_literal] = ACTIONS(1129), + [sym_pseudo_compile_time_identifier] = ACTIONS(1131), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1133), + [sym___single_quote] = ACTIONS(1135), + [sym___c_double_quote] = ACTIONS(1137), + [sym___c_single_quote] = ACTIONS(1139), + [sym___r_double_quote] = ACTIONS(1141), + [sym___r_single_quote] = ACTIONS(1143), }, [952] = { [sym_line_comment] = STATE(952), - [sym__expression] = STATE(2177), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(952), + [sym__expression] = STATE(1900), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [953] = { [sym_line_comment] = STATE(953), - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(953), + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1714), + [sym__expression_with_blocks] = STATE(1714), + [sym_inc_expression] = STATE(1713), + [sym_dec_expression] = STATE(1713), + [sym_or_block_expression] = STATE(1713), + [sym_option_propagation_expression] = STATE(1713), + [sym_result_propagation_expression] = STATE(1713), + [sym_anon_struct_value_expression] = STATE(1724), + [sym_go_expression] = STATE(1713), + [sym_spawn_expression] = STATE(1713), + [sym_parenthesized_expression] = STATE(1713), + [sym_call_expression] = STATE(1713), + [sym_type_initializer] = STATE(1724), + [sym_function_literal] = STATE(1713), + [sym_reference_expression] = STATE(1722), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(1713), + [sym_receive_expression] = STATE(1713), + [sym_binary_expression] = STATE(1713), + [sym_as_type_cast_expression] = STATE(1713), + [sym__max_group] = STATE(1713), + [sym_literal] = STATE(1715), + [sym_map_init_expression] = STATE(1724), + [sym_array_creation] = STATE(1713), + [sym_fixed_array_creation] = STATE(1713), + [sym_selector_expression] = STATE(1713), + [sym_index_expression] = STATE(1713), + [sym_slice_expression] = STATE(1713), + [sym_if_expression] = STATE(1724), + [sym_compile_time_if_expression] = STATE(1724), + [sym_is_expression] = STATE(1713), + [sym_not_is_expression] = STATE(1713), + [sym_in_expression] = STATE(1713), + [sym_not_in_expression] = STATE(1713), + [sym_enum_fetch] = STATE(1713), + [sym_match_expression] = STATE(1724), + [sym_select_expression] = STATE(1724), + [sym_lock_expression] = STATE(1724), + [sym_unsafe_expression] = STATE(1724), + [sym_sql_expression] = STATE(1724), + [sym_c_string_literal] = STATE(1725), + [sym_raw_string_literal] = STATE(1725), + [sym_interpreted_string_literal] = STATE(1725), + [sym_mutability_modifiers] = STATE(933), + [sym_plain_type] = STATE(4428), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2937), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(311), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_LPAREN] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(319), + [anon_sym_PLUS] = ACTIONS(321), + [anon_sym_DASH] = ACTIONS(321), + [anon_sym_STAR] = ACTIONS(323), + [anon_sym_struct] = ACTIONS(325), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(327), + [anon_sym_go] = ACTIONS(329), + [anon_sym_spawn] = ACTIONS(331), + [anon_sym_json_DOTdecode] = ACTIONS(333), + [anon_sym_LBRACK2] = ACTIONS(335), + [anon_sym_TILDE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(321), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_LT_DASH] = ACTIONS(339), + [sym_none] = ACTIONS(341), + [sym_true] = ACTIONS(341), + [sym_false] = ACTIONS(341), + [sym_nil] = ACTIONS(341), + [anon_sym_if] = ACTIONS(343), + [anon_sym_DOLLARif] = ACTIONS(345), + [anon_sym_match] = ACTIONS(347), + [anon_sym_select] = ACTIONS(349), + [anon_sym_lock] = ACTIONS(351), + [anon_sym_rlock] = ACTIONS(351), + [anon_sym_unsafe] = ACTIONS(353), + [anon_sym_sql] = ACTIONS(355), + [sym_int_literal] = ACTIONS(341), + [sym_float_literal] = ACTIONS(357), + [sym_rune_literal] = ACTIONS(357), + [sym_pseudo_compile_time_identifier] = ACTIONS(359), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(381), + [sym___single_quote] = ACTIONS(383), + [sym___c_double_quote] = ACTIONS(385), + [sym___c_single_quote] = ACTIONS(387), + [sym___r_double_quote] = ACTIONS(389), + [sym___r_single_quote] = ACTIONS(391), }, [954] = { [sym_line_comment] = STATE(954), - [sym__expression] = STATE(2328), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), + [sym_block_comment] = STATE(954), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_CR] = ACTIONS(3438), + [anon_sym_CR_LF] = ACTIONS(3438), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_EQ] = ACTIONS(3438), + [anon_sym___global] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_pub] = ACTIONS(3438), + [anon_sym_mut] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(3438), + [anon_sym_spawn] = ACTIONS(3438), + [anon_sym_json_DOTdecode] = ACTIONS(3438), + [anon_sym_LBRACK2] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3438), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_or] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_nil] = ACTIONS(3438), + [anon_sym_QMARK_DOT] = ACTIONS(3438), + [anon_sym_POUND_LBRACK] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_DOLLARif] = ACTIONS(3438), + [anon_sym_is] = ACTIONS(3438), + [anon_sym_BANGis] = ACTIONS(3438), + [anon_sym_in] = ACTIONS(3438), + [anon_sym_BANGin] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_select] = ACTIONS(3438), + [anon_sym_STAR_EQ] = ACTIONS(3438), + [anon_sym_SLASH_EQ] = ACTIONS(3438), + [anon_sym_PERCENT_EQ] = ACTIONS(3438), + [anon_sym_LT_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_GT_EQ] = ACTIONS(3438), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3438), + [anon_sym_AMP_EQ] = ACTIONS(3438), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3438), + [anon_sym_PLUS_EQ] = ACTIONS(3438), + [anon_sym_DASH_EQ] = ACTIONS(3438), + [anon_sym_PIPE_EQ] = ACTIONS(3438), + [anon_sym_CARET_EQ] = ACTIONS(3438), + [anon_sym_COLON_EQ] = ACTIONS(3438), + [anon_sym_lock] = ACTIONS(3438), + [anon_sym_rlock] = ACTIONS(3438), + [anon_sym_unsafe] = ACTIONS(3438), + [anon_sym_sql] = ACTIONS(3438), + [sym_int_literal] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3438), + [sym_rune_literal] = ACTIONS(3438), + [sym_pseudo_compile_time_identifier] = ACTIONS(3438), + [anon_sym_shared] = ACTIONS(3438), + [anon_sym_map_LBRACK] = ACTIONS(3438), + [anon_sym_chan] = ACTIONS(3438), + [anon_sym_thread] = ACTIONS(3438), + [anon_sym_atomic] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_defer] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_DOLLARfor] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym_AT_LBRACK] = ACTIONS(3438), + [sym___double_quote] = ACTIONS(3438), + [sym___single_quote] = ACTIONS(3438), + [sym___c_double_quote] = ACTIONS(3438), + [sym___c_single_quote] = ACTIONS(3438), + [sym___r_double_quote] = ACTIONS(3438), + [sym___r_single_quote] = ACTIONS(3438), }, [955] = { [sym_line_comment] = STATE(955), - [sym__expression] = STATE(2325), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(955), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [956] = { [sym_line_comment] = STATE(956), - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(956), + [sym__expression] = STATE(2518), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [957] = { [sym_line_comment] = STATE(957), - [sym__expression] = STATE(229), - [sym__expression_without_blocks] = STATE(891), - [sym__expression_with_blocks] = STATE(891), - [sym_inc_expression] = STATE(892), - [sym_dec_expression] = STATE(892), - [sym_or_block_expression] = STATE(892), - [sym_option_propagation_expression] = STATE(892), - [sym_result_propagation_expression] = STATE(892), - [sym_anon_struct_value_expression] = STATE(893), - [sym_go_expression] = STATE(892), - [sym_spawn_expression] = STATE(892), - [sym_parenthesized_expression] = STATE(892), - [sym_call_expression] = STATE(892), - [sym_type_initializer] = STATE(893), - [sym_function_literal] = STATE(892), - [sym_reference_expression] = STATE(895), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(892), - [sym_receive_expression] = STATE(892), - [sym_binary_expression] = STATE(892), - [sym_as_type_cast_expression] = STATE(892), - [sym__max_group] = STATE(892), - [sym_literal] = STATE(728), - [sym_map_init_expression] = STATE(893), - [sym_array_creation] = STATE(892), - [sym_fixed_array_creation] = STATE(892), - [sym_selector_expression] = STATE(892), - [sym_index_expression] = STATE(892), - [sym_slice_expression] = STATE(892), - [sym_if_expression] = STATE(893), - [sym_compile_time_if_expression] = STATE(893), - [sym_is_expression] = STATE(892), - [sym_not_is_expression] = STATE(892), - [sym_in_expression] = STATE(892), - [sym_not_in_expression] = STATE(892), - [sym_enum_fetch] = STATE(892), - [sym_match_expression] = STATE(893), - [sym_select_expression] = STATE(893), - [sym_lock_expression] = STATE(893), - [sym_unsafe_expression] = STATE(893), - [sym_sql_expression] = STATE(893), - [sym_c_string_literal] = STATE(697), - [sym_raw_string_literal] = STATE(697), - [sym_interpreted_string_literal] = STATE(697), - [sym_mutability_modifiers] = STATE(749), - [sym_plain_type] = STATE(4387), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2665), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(31), - [anon_sym_DASH] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_go] = ACTIONS(51), - [anon_sym_spawn] = ACTIONS(53), - [anon_sym_json_DOTdecode] = ACTIONS(55), - [anon_sym_LBRACK2] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(31), - [anon_sym_CARET] = ACTIONS(31), - [anon_sym_AMP] = ACTIONS(59), - [anon_sym_LT_DASH] = ACTIONS(61), - [sym_none] = ACTIONS(63), - [sym_true] = ACTIONS(63), - [sym_false] = ACTIONS(63), - [sym_nil] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_DOLLARif] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_select] = ACTIONS(71), - [anon_sym_lock] = ACTIONS(73), - [anon_sym_rlock] = ACTIONS(73), - [anon_sym_unsafe] = ACTIONS(75), - [anon_sym_sql] = ACTIONS(77), - [sym_int_literal] = ACTIONS(63), - [sym_float_literal] = ACTIONS(79), - [sym_rune_literal] = ACTIONS(79), - [sym_pseudo_compile_time_identifier] = ACTIONS(81), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(115), - [sym___single_quote] = ACTIONS(117), - [sym___c_double_quote] = ACTIONS(119), - [sym___c_single_quote] = ACTIONS(121), - [sym___r_double_quote] = ACTIONS(123), - [sym___r_single_quote] = ACTIONS(125), + [sym_block_comment] = STATE(957), + [sym__expression] = STATE(2590), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [958] = { [sym_line_comment] = STATE(958), - [sym__expression] = STATE(2329), - [sym__expression_without_blocks] = STATE(2285), - [sym__expression_with_blocks] = STATE(2285), - [sym_inc_expression] = STATE(2308), - [sym_dec_expression] = STATE(2308), - [sym_or_block_expression] = STATE(2308), - [sym_option_propagation_expression] = STATE(2308), - [sym_result_propagation_expression] = STATE(2308), - [sym_anon_struct_value_expression] = STATE(2282), - [sym_go_expression] = STATE(2308), - [sym_spawn_expression] = STATE(2308), - [sym_parenthesized_expression] = STATE(2308), - [sym_call_expression] = STATE(2308), - [sym_type_initializer] = STATE(2282), - [sym_function_literal] = STATE(2308), - [sym_reference_expression] = STATE(2278), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2308), - [sym_receive_expression] = STATE(2308), - [sym_binary_expression] = STATE(2308), - [sym_as_type_cast_expression] = STATE(2308), - [sym__max_group] = STATE(2308), - [sym_literal] = STATE(2205), - [sym_map_init_expression] = STATE(2282), - [sym_array_creation] = STATE(2308), - [sym_fixed_array_creation] = STATE(2308), - [sym_selector_expression] = STATE(2308), - [sym_index_expression] = STATE(2308), - [sym_slice_expression] = STATE(2308), - [sym_if_expression] = STATE(2282), - [sym_compile_time_if_expression] = STATE(2282), - [sym_is_expression] = STATE(2308), - [sym_not_is_expression] = STATE(2308), - [sym_in_expression] = STATE(2308), - [sym_not_in_expression] = STATE(2308), - [sym_enum_fetch] = STATE(2308), - [sym_match_expression] = STATE(2282), - [sym_select_expression] = STATE(2282), - [sym_lock_expression] = STATE(2282), - [sym_unsafe_expression] = STATE(2282), - [sym_sql_expression] = STATE(2282), - [sym_c_string_literal] = STATE(2210), - [sym_raw_string_literal] = STATE(2210), - [sym_interpreted_string_literal] = STATE(2210), - [sym_mutability_modifiers] = STATE(650), - [sym_plain_type] = STATE(4364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(2897), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3095), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2941), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2945), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2957), + [sym_block_comment] = STATE(958), + [sym__expression] = STATE(2884), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_STAR] = ACTIONS(1205), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1209), + [anon_sym_go] = ACTIONS(1211), + [anon_sym_spawn] = ACTIONS(1213), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1217), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1203), + [anon_sym_AMP] = ACTIONS(1219), + [anon_sym_LT_DASH] = ACTIONS(1221), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1231), + [anon_sym_lock] = ACTIONS(1233), + [anon_sym_rlock] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [959] = { [sym_line_comment] = STATE(959), - [sym__expression] = STATE(1325), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(959), + [sym__expression] = STATE(1953), + [sym__expression_without_blocks] = STATE(2028), + [sym__expression_with_blocks] = STATE(2028), + [sym_inc_expression] = STATE(2027), + [sym_dec_expression] = STATE(2027), + [sym_or_block_expression] = STATE(2027), + [sym_option_propagation_expression] = STATE(2027), + [sym_result_propagation_expression] = STATE(2027), + [sym_anon_struct_value_expression] = STATE(2026), + [sym_go_expression] = STATE(2027), + [sym_spawn_expression] = STATE(2027), + [sym_parenthesized_expression] = STATE(2027), + [sym_call_expression] = STATE(2027), + [sym_type_initializer] = STATE(2026), + [sym_function_literal] = STATE(2027), + [sym_reference_expression] = STATE(2053), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2027), + [sym_receive_expression] = STATE(2027), + [sym_binary_expression] = STATE(2027), + [sym_as_type_cast_expression] = STATE(2027), + [sym__max_group] = STATE(2027), + [sym_literal] = STATE(2030), + [sym_map_init_expression] = STATE(2026), + [sym_array_creation] = STATE(2027), + [sym_fixed_array_creation] = STATE(2027), + [sym_selector_expression] = STATE(2027), + [sym_index_expression] = STATE(2027), + [sym_slice_expression] = STATE(2027), + [sym_if_expression] = STATE(2026), + [sym_compile_time_if_expression] = STATE(2026), + [sym_is_expression] = STATE(2027), + [sym_not_is_expression] = STATE(2027), + [sym_in_expression] = STATE(2027), + [sym_not_in_expression] = STATE(2027), + [sym_enum_fetch] = STATE(2027), + [sym_match_expression] = STATE(2026), + [sym_select_expression] = STATE(2026), + [sym_lock_expression] = STATE(2026), + [sym_unsafe_expression] = STATE(2026), + [sym_sql_expression] = STATE(2026), + [sym_c_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_interpreted_string_literal] = STATE(2031), + [sym_mutability_modifiers] = STATE(826), + [sym_plain_type] = STATE(4354), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(811), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(815), + [anon_sym_fn] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(823), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2653), + [anon_sym_spawn] = ACTIONS(2655), + [anon_sym_json_DOTdecode] = ACTIONS(833), + [anon_sym_LBRACK2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_LT_DASH] = ACTIONS(2661), + [sym_none] = ACTIONS(841), + [sym_true] = ACTIONS(841), + [sym_false] = ACTIONS(841), + [sym_nil] = ACTIONS(841), + [anon_sym_if] = ACTIONS(843), + [anon_sym_DOLLARif] = ACTIONS(845), + [anon_sym_match] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2663), + [anon_sym_lock] = ACTIONS(2665), + [anon_sym_rlock] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(853), + [anon_sym_sql] = ACTIONS(855), + [sym_int_literal] = ACTIONS(841), + [sym_float_literal] = ACTIONS(857), + [sym_rune_literal] = ACTIONS(857), + [sym_pseudo_compile_time_identifier] = ACTIONS(859), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(861), + [sym___single_quote] = ACTIONS(863), + [sym___c_double_quote] = ACTIONS(865), + [sym___c_single_quote] = ACTIONS(867), + [sym___r_double_quote] = ACTIONS(869), + [sym___r_single_quote] = ACTIONS(871), }, [960] = { [sym_line_comment] = STATE(960), - [sym__expression] = STATE(2689), - [sym__expression_without_blocks] = STATE(2377), - [sym__expression_with_blocks] = STATE(2377), - [sym_inc_expression] = STATE(2378), - [sym_dec_expression] = STATE(2378), - [sym_or_block_expression] = STATE(2378), - [sym_option_propagation_expression] = STATE(2378), - [sym_result_propagation_expression] = STATE(2378), - [sym_anon_struct_value_expression] = STATE(2380), - [sym_go_expression] = STATE(2378), - [sym_spawn_expression] = STATE(2378), - [sym_parenthesized_expression] = STATE(2378), - [sym_call_expression] = STATE(2378), - [sym_type_initializer] = STATE(2380), - [sym_function_literal] = STATE(2378), - [sym_reference_expression] = STATE(2381), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2378), - [sym_receive_expression] = STATE(2378), - [sym_binary_expression] = STATE(2378), - [sym_as_type_cast_expression] = STATE(2378), - [sym__max_group] = STATE(2378), - [sym_literal] = STATE(2375), - [sym_map_init_expression] = STATE(2380), - [sym_array_creation] = STATE(2378), - [sym_fixed_array_creation] = STATE(2378), - [sym_selector_expression] = STATE(2378), - [sym_index_expression] = STATE(2378), - [sym_slice_expression] = STATE(2378), - [sym_if_expression] = STATE(2380), - [sym_compile_time_if_expression] = STATE(2380), - [sym_is_expression] = STATE(2378), - [sym_not_is_expression] = STATE(2378), - [sym_in_expression] = STATE(2378), - [sym_not_in_expression] = STATE(2378), - [sym_enum_fetch] = STATE(2378), - [sym_match_expression] = STATE(2380), - [sym_select_expression] = STATE(2380), - [sym_lock_expression] = STATE(2380), - [sym_unsafe_expression] = STATE(2380), - [sym_sql_expression] = STATE(2380), - [sym_c_string_literal] = STATE(2374), - [sym_raw_string_literal] = STATE(2374), - [sym_interpreted_string_literal] = STATE(2374), - [sym_mutability_modifiers] = STATE(652), - [sym_plain_type] = STATE(4415), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1771), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_fn] = ACTIONS(1344), + [sym_block_comment] = STATE(960), + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), [anon_sym_PLUS] = ACTIONS(1775), [anon_sym_DASH] = ACTIONS(1775), [anon_sym_STAR] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), [anon_sym_BANG] = ACTIONS(1779), [anon_sym_go] = ACTIONS(1781), [anon_sym_spawn] = ACTIONS(1783), - [anon_sym_json_DOTdecode] = ACTIONS(1358), + [anon_sym_json_DOTdecode] = ACTIONS(1215), [anon_sym_LBRACK2] = ACTIONS(1785), [anon_sym_TILDE] = ACTIONS(1775), [anon_sym_CARET] = ACTIONS(1775), [anon_sym_AMP] = ACTIONS(1787), [anon_sym_LT_DASH] = ACTIONS(1789), - [sym_none] = ACTIONS(1366), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [sym_nil] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1791), - [anon_sym_DOLLARif] = ACTIONS(1370), - [anon_sym_match] = ACTIONS(1372), - [anon_sym_select] = ACTIONS(1793), - [anon_sym_lock] = ACTIONS(1795), - [anon_sym_rlock] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_sql] = ACTIONS(1380), - [sym_int_literal] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1382), - [sym_rune_literal] = ACTIONS(1382), - [sym_pseudo_compile_time_identifier] = ACTIONS(1384), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1388), - [sym___single_quote] = ACTIONS(1390), - [sym___c_double_quote] = ACTIONS(1392), - [sym___c_single_quote] = ACTIONS(1394), - [sym___r_double_quote] = ACTIONS(1396), - [sym___r_single_quote] = ACTIONS(1398), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [961] = { [sym_line_comment] = STATE(961), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(961), + [sym__expression] = STATE(292), + [sym__expression_without_blocks] = STATE(966), + [sym__expression_with_blocks] = STATE(966), + [sym_inc_expression] = STATE(915), + [sym_dec_expression] = STATE(915), + [sym_or_block_expression] = STATE(915), + [sym_option_propagation_expression] = STATE(915), + [sym_result_propagation_expression] = STATE(915), + [sym_anon_struct_value_expression] = STATE(459), + [sym_go_expression] = STATE(915), + [sym_spawn_expression] = STATE(915), + [sym_parenthesized_expression] = STATE(915), + [sym_call_expression] = STATE(915), + [sym_type_initializer] = STATE(459), + [sym_function_literal] = STATE(915), + [sym_reference_expression] = STATE(508), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(915), + [sym_receive_expression] = STATE(915), + [sym_binary_expression] = STATE(915), + [sym_as_type_cast_expression] = STATE(915), + [sym__max_group] = STATE(915), + [sym_literal] = STATE(880), + [sym_map_init_expression] = STATE(459), + [sym_array_creation] = STATE(915), + [sym_fixed_array_creation] = STATE(915), + [sym_selector_expression] = STATE(915), + [sym_index_expression] = STATE(915), + [sym_slice_expression] = STATE(915), + [sym_if_expression] = STATE(459), + [sym_compile_time_if_expression] = STATE(459), + [sym_is_expression] = STATE(915), + [sym_not_is_expression] = STATE(915), + [sym_in_expression] = STATE(915), + [sym_not_in_expression] = STATE(915), + [sym_enum_fetch] = STATE(915), + [sym_match_expression] = STATE(459), + [sym_select_expression] = STATE(459), + [sym_lock_expression] = STATE(459), + [sym_unsafe_expression] = STATE(459), + [sym_sql_expression] = STATE(459), + [sym_c_string_literal] = STATE(834), + [sym_raw_string_literal] = STATE(834), + [sym_interpreted_string_literal] = STATE(834), + [sym_mutability_modifiers] = STATE(681), + [sym_plain_type] = STATE(4317), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(2735), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(19), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_struct] = ACTIONS(489), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_go] = ACTIONS(53), + [anon_sym_spawn] = ACTIONS(55), + [anon_sym_json_DOTdecode] = ACTIONS(57), + [anon_sym_LBRACK2] = ACTIONS(491), + [anon_sym_TILDE] = ACTIONS(33), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_AMP] = ACTIONS(61), + [anon_sym_LT_DASH] = ACTIONS(63), + [sym_none] = ACTIONS(65), + [sym_true] = ACTIONS(65), + [sym_false] = ACTIONS(65), + [sym_nil] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_DOLLARif] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_select] = ACTIONS(73), + [anon_sym_lock] = ACTIONS(75), + [anon_sym_rlock] = ACTIONS(75), + [anon_sym_unsafe] = ACTIONS(77), + [anon_sym_sql] = ACTIONS(79), + [sym_int_literal] = ACTIONS(65), + [sym_float_literal] = ACTIONS(81), + [sym_rune_literal] = ACTIONS(81), + [sym_pseudo_compile_time_identifier] = ACTIONS(83), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(117), + [sym___single_quote] = ACTIONS(119), + [sym___c_double_quote] = ACTIONS(121), + [sym___c_single_quote] = ACTIONS(123), + [sym___r_double_quote] = ACTIONS(125), + [sym___r_single_quote] = ACTIONS(127), }, [962] = { [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [sym__expression] = STATE(2825), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [963] = { + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [sym__expression] = STATE(2606), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [964] = { + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [sym__expression] = STATE(2327), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), + }, + [965] = { + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2867), + [anon_sym___global] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_STAR_EQ] = ACTIONS(2867), + [anon_sym_SLASH_EQ] = ACTIONS(2867), + [anon_sym_PERCENT_EQ] = ACTIONS(2867), + [anon_sym_LT_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2867), + [anon_sym_AMP_EQ] = ACTIONS(2867), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2867), + [anon_sym_PLUS_EQ] = ACTIONS(2867), + [anon_sym_DASH_EQ] = ACTIONS(2867), + [anon_sym_PIPE_EQ] = ACTIONS(2867), + [anon_sym_CARET_EQ] = ACTIONS(2867), + [anon_sym_COLON_EQ] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_defer] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_DOLLARfor] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym_AT_LBRACK] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), + }, + [966] = { + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), [ts_builtin_sym_end] = ACTIONS(3440), [sym_identifier] = ACTIONS(3442), [anon_sym_LF] = ACTIONS(3442), [anon_sym_CR] = ACTIONS(3442), [anon_sym_CR_LF] = ACTIONS(3442), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3442), [anon_sym_as] = ACTIONS(3442), [anon_sym_LBRACE] = ACTIONS(3442), @@ -141441,1305 +136108,1067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3442), [sym___r_single_quote] = ACTIONS(3442), }, - [963] = { - [sym_line_comment] = STATE(963), - [sym__expression] = STATE(1326), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, - [964] = { - [sym_line_comment] = STATE(964), - [sym__expression] = STATE(2478), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), - }, - [965] = { - [sym_line_comment] = STATE(965), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_EQ] = ACTIONS(2671), - [anon_sym___global] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_interface] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_STAR_EQ] = ACTIONS(2671), - [anon_sym_SLASH_EQ] = ACTIONS(2671), - [anon_sym_PERCENT_EQ] = ACTIONS(2671), - [anon_sym_LT_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_AMP_EQ] = ACTIONS(2671), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2671), - [anon_sym_PLUS_EQ] = ACTIONS(2671), - [anon_sym_DASH_EQ] = ACTIONS(2671), - [anon_sym_PIPE_EQ] = ACTIONS(2671), - [anon_sym_CARET_EQ] = ACTIONS(2671), - [anon_sym_COLON_EQ] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [anon_sym_assert] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_DOLLARfor] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym_AT_LBRACK] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), - }, - [966] = { - [sym_line_comment] = STATE(966), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4405), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_go] = ACTIONS(1422), - [anon_sym_spawn] = ACTIONS(1424), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_LT_DASH] = ACTIONS(1432), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1442), - [anon_sym_lock] = ACTIONS(1444), - [anon_sym_rlock] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), - }, [967] = { [sym_line_comment] = STATE(967), - [sym__expression] = STATE(2479), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(967), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [968] = { [sym_line_comment] = STATE(968), - [sym__expression] = STATE(2474), - [sym__expression_without_blocks] = STATE(2611), - [sym__expression_with_blocks] = STATE(2611), - [sym_inc_expression] = STATE(2610), - [sym_dec_expression] = STATE(2610), - [sym_or_block_expression] = STATE(2610), - [sym_option_propagation_expression] = STATE(2610), - [sym_result_propagation_expression] = STATE(2610), - [sym_anon_struct_value_expression] = STATE(2609), - [sym_go_expression] = STATE(2610), - [sym_spawn_expression] = STATE(2610), - [sym_parenthesized_expression] = STATE(2610), - [sym_call_expression] = STATE(2610), - [sym_type_initializer] = STATE(2609), - [sym_function_literal] = STATE(2610), - [sym_reference_expression] = STATE(2647), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(2610), - [sym_receive_expression] = STATE(2610), - [sym_binary_expression] = STATE(2610), - [sym_as_type_cast_expression] = STATE(2610), - [sym__max_group] = STATE(2610), - [sym_literal] = STATE(2620), - [sym_map_init_expression] = STATE(2609), - [sym_array_creation] = STATE(2610), - [sym_fixed_array_creation] = STATE(2610), - [sym_selector_expression] = STATE(2610), - [sym_index_expression] = STATE(2610), - [sym_slice_expression] = STATE(2610), - [sym_if_expression] = STATE(2609), - [sym_compile_time_if_expression] = STATE(2609), - [sym_is_expression] = STATE(2610), - [sym_not_is_expression] = STATE(2610), - [sym_in_expression] = STATE(2610), - [sym_not_in_expression] = STATE(2610), - [sym_enum_fetch] = STATE(2610), - [sym_match_expression] = STATE(2609), - [sym_select_expression] = STATE(2609), - [sym_lock_expression] = STATE(2609), - [sym_unsafe_expression] = STATE(2609), - [sym_sql_expression] = STATE(2609), - [sym_c_string_literal] = STATE(2621), - [sym_raw_string_literal] = STATE(2621), - [sym_interpreted_string_literal] = STATE(2621), - [sym_mutability_modifiers] = STATE(732), - [sym_plain_type] = STATE(4223), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1651), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_fn] = ACTIONS(1659), - [anon_sym_PLUS] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(1665), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_go] = ACTIONS(1669), - [anon_sym_spawn] = ACTIONS(1671), - [anon_sym_json_DOTdecode] = ACTIONS(2613), - [anon_sym_LBRACK2] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_CARET] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_LT_DASH] = ACTIONS(2619), - [sym_none] = ACTIONS(1681), - [sym_true] = ACTIONS(1681), - [sym_false] = ACTIONS(1681), - [sym_nil] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1683), - [anon_sym_DOLLARif] = ACTIONS(1685), - [anon_sym_match] = ACTIONS(1687), - [anon_sym_select] = ACTIONS(1689), - [anon_sym_lock] = ACTIONS(1691), - [anon_sym_rlock] = ACTIONS(1691), - [anon_sym_unsafe] = ACTIONS(1693), - [anon_sym_sql] = ACTIONS(1695), - [sym_int_literal] = ACTIONS(1681), - [sym_float_literal] = ACTIONS(2621), - [sym_rune_literal] = ACTIONS(2621), - [sym_pseudo_compile_time_identifier] = ACTIONS(1697), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(2623), - [sym___single_quote] = ACTIONS(2625), - [sym___c_double_quote] = ACTIONS(2627), - [sym___c_single_quote] = ACTIONS(2629), - [sym___r_double_quote] = ACTIONS(2631), - [sym___r_single_quote] = ACTIONS(2633), + [sym_block_comment] = STATE(968), + [sym__expression] = STATE(2818), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [969] = { [sym_line_comment] = STATE(969), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_EQ] = ACTIONS(2671), - [anon_sym___global] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_interface] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_STAR_EQ] = ACTIONS(2671), - [anon_sym_SLASH_EQ] = ACTIONS(2671), - [anon_sym_PERCENT_EQ] = ACTIONS(2671), - [anon_sym_LT_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2671), - [anon_sym_AMP_EQ] = ACTIONS(2671), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2671), - [anon_sym_PLUS_EQ] = ACTIONS(2671), - [anon_sym_DASH_EQ] = ACTIONS(2671), - [anon_sym_PIPE_EQ] = ACTIONS(2671), - [anon_sym_CARET_EQ] = ACTIONS(2671), - [anon_sym_COLON_EQ] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [anon_sym_assert] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_DOLLARfor] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym_AT_LBRACK] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym_block_comment] = STATE(969), + [sym__expression] = STATE(2388), + [sym__expression_without_blocks] = STATE(2637), + [sym__expression_with_blocks] = STATE(2637), + [sym_inc_expression] = STATE(2638), + [sym_dec_expression] = STATE(2638), + [sym_or_block_expression] = STATE(2638), + [sym_option_propagation_expression] = STATE(2638), + [sym_result_propagation_expression] = STATE(2638), + [sym_anon_struct_value_expression] = STATE(2639), + [sym_go_expression] = STATE(2638), + [sym_spawn_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_type_initializer] = STATE(2639), + [sym_function_literal] = STATE(2638), + [sym_reference_expression] = STATE(2609), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2638), + [sym_receive_expression] = STATE(2638), + [sym_binary_expression] = STATE(2638), + [sym_as_type_cast_expression] = STATE(2638), + [sym__max_group] = STATE(2638), + [sym_literal] = STATE(2636), + [sym_map_init_expression] = STATE(2639), + [sym_array_creation] = STATE(2638), + [sym_fixed_array_creation] = STATE(2638), + [sym_selector_expression] = STATE(2638), + [sym_index_expression] = STATE(2638), + [sym_slice_expression] = STATE(2638), + [sym_if_expression] = STATE(2639), + [sym_compile_time_if_expression] = STATE(2639), + [sym_is_expression] = STATE(2638), + [sym_not_is_expression] = STATE(2638), + [sym_in_expression] = STATE(2638), + [sym_not_in_expression] = STATE(2638), + [sym_enum_fetch] = STATE(2638), + [sym_match_expression] = STATE(2639), + [sym_select_expression] = STATE(2639), + [sym_lock_expression] = STATE(2639), + [sym_unsafe_expression] = STATE(2639), + [sym_sql_expression] = STATE(2639), + [sym_c_string_literal] = STATE(2635), + [sym_raw_string_literal] = STATE(2635), + [sym_interpreted_string_literal] = STATE(2635), + [sym_mutability_modifiers] = STATE(913), + [sym_plain_type] = STATE(4285), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(1619), + [anon_sym_PLUS] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(1625), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_go] = ACTIONS(1629), + [anon_sym_spawn] = ACTIONS(1631), + [anon_sym_json_DOTdecode] = ACTIONS(2141), + [anon_sym_LBRACK2] = ACTIONS(2143), + [anon_sym_TILDE] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_LT_DASH] = ACTIONS(2147), + [sym_none] = ACTIONS(1641), + [sym_true] = ACTIONS(1641), + [sym_false] = ACTIONS(1641), + [sym_nil] = ACTIONS(1641), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_DOLLARif] = ACTIONS(1645), + [anon_sym_match] = ACTIONS(1647), + [anon_sym_select] = ACTIONS(1649), + [anon_sym_lock] = ACTIONS(1651), + [anon_sym_rlock] = ACTIONS(1651), + [anon_sym_unsafe] = ACTIONS(1653), + [anon_sym_sql] = ACTIONS(1655), + [sym_int_literal] = ACTIONS(1641), + [sym_float_literal] = ACTIONS(2149), + [sym_rune_literal] = ACTIONS(2149), + [sym_pseudo_compile_time_identifier] = ACTIONS(1657), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(2151), + [sym___single_quote] = ACTIONS(2153), + [sym___c_double_quote] = ACTIONS(2155), + [sym___c_single_quote] = ACTIONS(2157), + [sym___r_double_quote] = ACTIONS(2159), + [sym___r_single_quote] = ACTIONS(2161), }, [970] = { [sym_line_comment] = STATE(970), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4412), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(970), + [sym__expression] = STATE(2807), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [971] = { [sym_line_comment] = STATE(971), - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4408), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(971), + [sym__expression] = STATE(2784), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(932), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_go] = ACTIONS(2681), + [anon_sym_spawn] = ACTIONS(2683), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(2675), + [anon_sym_CARET] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2687), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(2689), + [anon_sym_lock] = ACTIONS(2691), + [anon_sym_rlock] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [972] = { [sym_line_comment] = STATE(972), - [sym__expression] = STATE(1323), - [sym__expression_without_blocks] = STATE(1335), - [sym__expression_with_blocks] = STATE(1335), - [sym_inc_expression] = STATE(1336), - [sym_dec_expression] = STATE(1336), - [sym_or_block_expression] = STATE(1336), - [sym_option_propagation_expression] = STATE(1336), - [sym_result_propagation_expression] = STATE(1336), - [sym_anon_struct_value_expression] = STATE(1337), - [sym_go_expression] = STATE(1336), - [sym_spawn_expression] = STATE(1336), - [sym_parenthesized_expression] = STATE(1336), - [sym_call_expression] = STATE(1336), - [sym_type_initializer] = STATE(1337), - [sym_function_literal] = STATE(1336), - [sym_reference_expression] = STATE(1353), - [sym_type_reference_expression] = STATE(3558), - [sym_unary_expression] = STATE(1336), - [sym_receive_expression] = STATE(1336), - [sym_binary_expression] = STATE(1336), - [sym_as_type_cast_expression] = STATE(1336), - [sym__max_group] = STATE(1336), - [sym_literal] = STATE(1380), - [sym_map_init_expression] = STATE(1337), - [sym_array_creation] = STATE(1336), - [sym_fixed_array_creation] = STATE(1336), - [sym_selector_expression] = STATE(1336), - [sym_index_expression] = STATE(1336), - [sym_slice_expression] = STATE(1336), - [sym_if_expression] = STATE(1337), - [sym_compile_time_if_expression] = STATE(1337), - [sym_is_expression] = STATE(1336), - [sym_not_is_expression] = STATE(1336), - [sym_in_expression] = STATE(1336), - [sym_not_in_expression] = STATE(1336), - [sym_enum_fetch] = STATE(1336), - [sym_match_expression] = STATE(1337), - [sym_select_expression] = STATE(1337), - [sym_lock_expression] = STATE(1337), - [sym_unsafe_expression] = STATE(1337), - [sym_sql_expression] = STATE(1337), - [sym_c_string_literal] = STATE(1315), - [sym_raw_string_literal] = STATE(1315), - [sym_interpreted_string_literal] = STATE(1315), - [sym_mutability_modifiers] = STATE(810), - [sym_plain_type] = STATE(4135), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_fn] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_mut] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_go] = ACTIONS(1819), - [anon_sym_spawn] = ACTIONS(1821), - [anon_sym_json_DOTdecode] = ACTIONS(1426), - [anon_sym_LBRACK2] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1813), - [anon_sym_CARET] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_LT_DASH] = ACTIONS(1825), - [sym_none] = ACTIONS(1434), - [sym_true] = ACTIONS(1434), - [sym_false] = ACTIONS(1434), - [sym_nil] = ACTIONS(1434), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_DOLLARif] = ACTIONS(1438), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_select] = ACTIONS(1829), - [anon_sym_lock] = ACTIONS(1831), - [anon_sym_rlock] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_sql] = ACTIONS(1448), - [sym_int_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1452), - [sym_rune_literal] = ACTIONS(1452), - [sym_pseudo_compile_time_identifier] = ACTIONS(1454), - [anon_sym_shared] = ACTIONS(83), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [sym___double_quote] = ACTIONS(1456), - [sym___single_quote] = ACTIONS(1458), - [sym___c_double_quote] = ACTIONS(1460), - [sym___c_single_quote] = ACTIONS(1462), - [sym___r_double_quote] = ACTIONS(1464), - [sym___r_single_quote] = ACTIONS(1466), + [sym_block_comment] = STATE(972), + [sym__expression] = STATE(2614), + [sym__expression_without_blocks] = STATE(2372), + [sym__expression_with_blocks] = STATE(2372), + [sym_inc_expression] = STATE(2370), + [sym_dec_expression] = STATE(2370), + [sym_or_block_expression] = STATE(2370), + [sym_option_propagation_expression] = STATE(2370), + [sym_result_propagation_expression] = STATE(2370), + [sym_anon_struct_value_expression] = STATE(2369), + [sym_go_expression] = STATE(2370), + [sym_spawn_expression] = STATE(2370), + [sym_parenthesized_expression] = STATE(2370), + [sym_call_expression] = STATE(2370), + [sym_type_initializer] = STATE(2369), + [sym_function_literal] = STATE(2370), + [sym_reference_expression] = STATE(2365), + [sym_type_reference_expression] = STATE(3627), + [sym_unary_expression] = STATE(2370), + [sym_receive_expression] = STATE(2370), + [sym_binary_expression] = STATE(2370), + [sym_as_type_cast_expression] = STATE(2370), + [sym__max_group] = STATE(2370), + [sym_literal] = STATE(2374), + [sym_map_init_expression] = STATE(2369), + [sym_array_creation] = STATE(2370), + [sym_fixed_array_creation] = STATE(2370), + [sym_selector_expression] = STATE(2370), + [sym_index_expression] = STATE(2370), + [sym_slice_expression] = STATE(2370), + [sym_if_expression] = STATE(2369), + [sym_compile_time_if_expression] = STATE(2369), + [sym_is_expression] = STATE(2370), + [sym_not_is_expression] = STATE(2370), + [sym_in_expression] = STATE(2370), + [sym_not_in_expression] = STATE(2370), + [sym_enum_fetch] = STATE(2370), + [sym_match_expression] = STATE(2369), + [sym_select_expression] = STATE(2369), + [sym_lock_expression] = STATE(2369), + [sym_unsafe_expression] = STATE(2369), + [sym_sql_expression] = STATE(2369), + [sym_c_string_literal] = STATE(2351), + [sym_raw_string_literal] = STATE(2351), + [sym_interpreted_string_literal] = STATE(2351), + [sym_mutability_modifiers] = STATE(888), + [sym_plain_type] = STATE(4185), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(1773), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_LPAREN] = ACTIONS(1199), + [anon_sym_fn] = ACTIONS(1201), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_struct] = ACTIONS(1207), + [anon_sym_mut] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_go] = ACTIONS(1781), + [anon_sym_spawn] = ACTIONS(1783), + [anon_sym_json_DOTdecode] = ACTIONS(1215), + [anon_sym_LBRACK2] = ACTIONS(1785), + [anon_sym_TILDE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1775), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_LT_DASH] = ACTIONS(1789), + [sym_none] = ACTIONS(1223), + [sym_true] = ACTIONS(1223), + [sym_false] = ACTIONS(1223), + [sym_nil] = ACTIONS(1223), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_DOLLARif] = ACTIONS(1227), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_select] = ACTIONS(1791), + [anon_sym_lock] = ACTIONS(1793), + [anon_sym_rlock] = ACTIONS(1793), + [anon_sym_unsafe] = ACTIONS(1771), + [anon_sym_sql] = ACTIONS(1237), + [sym_int_literal] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1239), + [sym_rune_literal] = ACTIONS(1239), + [sym_pseudo_compile_time_identifier] = ACTIONS(1241), + [anon_sym_shared] = ACTIONS(85), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(1245), + [sym___single_quote] = ACTIONS(1247), + [sym___c_double_quote] = ACTIONS(1249), + [sym___c_single_quote] = ACTIONS(1251), + [sym___r_double_quote] = ACTIONS(1253), + [sym___r_single_quote] = ACTIONS(1255), }, [973] = { [sym_line_comment] = STATE(973), - [sym_reference_expression] = STATE(4434), - [sym_type_reference_expression] = STATE(3424), + [sym_block_comment] = STATE(973), + [sym_reference_expression] = STATE(4460), + [sym_type_reference_expression] = STATE(3433), [sym_plain_type] = STATE(3446), - [sym__plain_type_without_special] = STATE(3465), - [sym_anon_struct_type] = STATE(3467), - [sym_multi_return_type] = STATE(3465), - [sym_result_type] = STATE(3465), - [sym_option_type] = STATE(3465), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(3467), - [sym_array_type] = STATE(3467), - [sym_pointer_type] = STATE(3467), - [sym_wrong_pointer_type] = STATE(3467), - [sym_map_type] = STATE(3467), - [sym_channel_type] = STATE(3467), - [sym_shared_type] = STATE(3467), - [sym_thread_type] = STATE(3467), - [sym_atomic_type] = STATE(3467), - [sym_generic_type] = STATE(3467), - [sym_function_type] = STATE(3467), + [sym__plain_type_without_special] = STATE(3464), + [sym_anon_struct_type] = STATE(3462), + [sym_multi_return_type] = STATE(3464), + [sym_result_type] = STATE(3464), + [sym_option_type] = STATE(3464), + [sym_qualified_type] = STATE(3433), + [sym_fixed_array_type] = STATE(3462), + [sym_array_type] = STATE(3462), + [sym_pointer_type] = STATE(3462), + [sym_wrong_pointer_type] = STATE(3462), + [sym_map_type] = STATE(3462), + [sym_channel_type] = STATE(3462), + [sym_shared_type] = STATE(3462), + [sym_thread_type] = STATE(3462), + [sym_atomic_type] = STATE(3462), + [sym_generic_type] = STATE(3462), + [sym_function_type] = STATE(3462), [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_CR] = ACTIONS(2673), - [anon_sym_CR_LF] = ACTIONS(2673), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_LF] = ACTIONS(2869), + [anon_sym_CR] = ACTIONS(2869), + [anon_sym_CR_LF] = ACTIONS(2869), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2869), [anon_sym_LPAREN] = ACTIONS(3446), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(2867), [anon_sym_fn] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), [anon_sym_STAR] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2872), [anon_sym_struct] = ACTIONS(3452), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(2673), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(2869), + [anon_sym_COLON] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), [anon_sym_QMARK] = ACTIONS(3454), [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), [anon_sym_LBRACK2] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), [anon_sym_AMP] = ACTIONS(3460), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), [anon_sym_shared] = ACTIONS(3462), [anon_sym_map_LBRACK] = ACTIONS(3464), [anon_sym_chan] = ACTIONS(3466), [anon_sym_thread] = ACTIONS(3468), [anon_sym_atomic] = ACTIONS(3470), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [974] = { [sym_line_comment] = STATE(974), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(974), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(597), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(597), + [sym_rune_literal] = ACTIONS(597), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(597), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), + [sym___double_quote] = ACTIONS(597), + [sym___single_quote] = ACTIONS(597), + [sym___c_double_quote] = ACTIONS(597), + [sym___c_single_quote] = ACTIONS(597), + [sym___r_double_quote] = ACTIONS(597), + [sym___r_single_quote] = ACTIONS(597), + }, + [975] = { + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [sym_reference_expression] = STATE(4512), + [sym_type_reference_expression] = STATE(1169), + [sym_plain_type] = STATE(1261), + [sym__plain_type_without_special] = STATE(1235), + [sym_anon_struct_type] = STATE(1241), + [sym_multi_return_type] = STATE(1235), + [sym_result_type] = STATE(1235), + [sym_option_type] = STATE(1235), + [sym_qualified_type] = STATE(1169), + [sym_fixed_array_type] = STATE(1241), + [sym_array_type] = STATE(1241), + [sym_pointer_type] = STATE(1241), + [sym_wrong_pointer_type] = STATE(1241), + [sym_map_type] = STATE(1241), + [sym_channel_type] = STATE(1241), + [sym_shared_type] = STATE(1241), + [sym_thread_type] = STATE(1241), + [sym_atomic_type] = STATE(1241), + [sym_generic_type] = STATE(1241), + [sym_function_type] = STATE(1241), + [sym_identifier] = ACTIONS(3472), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3480), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), + [anon_sym_LBRACK2] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3488), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3490), + [anon_sym_map_LBRACK] = ACTIONS(3492), + [anon_sym_chan] = ACTIONS(3494), + [anon_sym_thread] = ACTIONS(3496), + [anon_sym_atomic] = ACTIONS(3498), + [sym___double_quote] = ACTIONS(605), + [sym___single_quote] = ACTIONS(605), + [sym___c_double_quote] = ACTIONS(605), + [sym___c_single_quote] = ACTIONS(605), + [sym___r_double_quote] = ACTIONS(605), + [sym___r_single_quote] = ACTIONS(605), + }, + [976] = { + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [sym_reference_expression] = STATE(4512), + [sym_type_reference_expression] = STATE(1169), + [sym_plain_type] = STATE(1256), + [sym__plain_type_without_special] = STATE(1235), + [sym_anon_struct_type] = STATE(1241), + [sym_multi_return_type] = STATE(1235), + [sym_result_type] = STATE(1235), + [sym_option_type] = STATE(1235), + [sym_qualified_type] = STATE(1169), + [sym_fixed_array_type] = STATE(1241), + [sym_array_type] = STATE(1241), + [sym_pointer_type] = STATE(1241), + [sym_wrong_pointer_type] = STATE(1241), + [sym_map_type] = STATE(1241), + [sym_channel_type] = STATE(1241), + [sym_shared_type] = STATE(1241), + [sym_thread_type] = STATE(1241), + [sym_atomic_type] = STATE(1241), + [sym_generic_type] = STATE(1241), + [sym_function_type] = STATE(1241), + [sym_identifier] = ACTIONS(3472), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3474), [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3476), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3478), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -142750,19 +137179,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_DOT_DOT_DOT] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3480), [anon_sym_mut] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_QMARK] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3484), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(567), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(3486), [anon_sym_TILDE] = ACTIONS(567), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3488), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -142793,11 +137222,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(567), [sym_rune_literal] = ACTIONS(567), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3490), + [anon_sym_map_LBRACK] = ACTIONS(3492), + [anon_sym_chan] = ACTIONS(3494), + [anon_sym_thread] = ACTIONS(3496), + [anon_sym_atomic] = ACTIONS(3498), [sym___double_quote] = ACTIONS(567), [sym___single_quote] = ACTIONS(567), [sym___c_double_quote] = ACTIONS(567), @@ -142805,453 +137234,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(567), [sym___r_single_quote] = ACTIONS(567), }, - [975] = { - [sym_line_comment] = STATE(975), - [sym_reference_expression] = STATE(4504), - [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1174), - [sym__plain_type_without_special] = STATE(1192), - [sym_anon_struct_type] = STATE(1193), - [sym_multi_return_type] = STATE(1192), - [sym_result_type] = STATE(1192), - [sym_option_type] = STATE(1192), - [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1193), - [sym_array_type] = STATE(1193), - [sym_pointer_type] = STATE(1193), - [sym_wrong_pointer_type] = STATE(1193), - [sym_map_type] = STATE(1193), - [sym_channel_type] = STATE(1193), - [sym_shared_type] = STATE(1193), - [sym_thread_type] = STATE(1193), - [sym_atomic_type] = STATE(1193), - [sym_generic_type] = STATE(1193), - [sym_function_type] = STATE(1193), - [sym_identifier] = ACTIONS(3474), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), - [anon_sym_LBRACK2] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3492), - [anon_sym_map_LBRACK] = ACTIONS(3494), - [anon_sym_chan] = ACTIONS(3496), - [anon_sym_thread] = ACTIONS(3498), - [anon_sym_atomic] = ACTIONS(3500), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), - }, - [976] = { - [sym_line_comment] = STATE(976), - [sym_reference_expression] = STATE(4504), - [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1214), - [sym__plain_type_without_special] = STATE(1192), - [sym_anon_struct_type] = STATE(1193), - [sym_multi_return_type] = STATE(1192), - [sym_result_type] = STATE(1192), - [sym_option_type] = STATE(1192), - [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1193), - [sym_array_type] = STATE(1193), - [sym_pointer_type] = STATE(1193), - [sym_wrong_pointer_type] = STATE(1193), - [sym_map_type] = STATE(1193), - [sym_channel_type] = STATE(1193), - [sym_shared_type] = STATE(1193), - [sym_thread_type] = STATE(1193), - [sym_atomic_type] = STATE(1193), - [sym_generic_type] = STATE(1193), - [sym_function_type] = STATE(1193), - [sym_identifier] = ACTIONS(3474), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), - [anon_sym_LBRACK2] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3492), - [anon_sym_map_LBRACK] = ACTIONS(3494), - [anon_sym_chan] = ACTIONS(3496), - [anon_sym_thread] = ACTIONS(3498), - [anon_sym_atomic] = ACTIONS(3500), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), - }, [977] = { [sym_line_comment] = STATE(977), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(623), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(623), - [sym_rune_literal] = ACTIONS(623), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(623), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [sym___double_quote] = ACTIONS(623), - [sym___single_quote] = ACTIONS(623), - [sym___c_double_quote] = ACTIONS(623), - [sym___c_single_quote] = ACTIONS(623), - [sym___r_double_quote] = ACTIONS(623), - [sym___r_single_quote] = ACTIONS(623), + [sym_block_comment] = STATE(977), + [sym_reference_expression] = STATE(4512), + [sym_type_reference_expression] = STATE(1169), + [sym_plain_type] = STATE(1268), + [sym__plain_type_without_special] = STATE(1235), + [sym_anon_struct_type] = STATE(1241), + [sym_multi_return_type] = STATE(1235), + [sym_result_type] = STATE(1235), + [sym_option_type] = STATE(1235), + [sym_qualified_type] = STATE(1169), + [sym_fixed_array_type] = STATE(1241), + [sym_array_type] = STATE(1241), + [sym_pointer_type] = STATE(1241), + [sym_wrong_pointer_type] = STATE(1241), + [sym_map_type] = STATE(1241), + [sym_channel_type] = STATE(1241), + [sym_shared_type] = STATE(1241), + [sym_thread_type] = STATE(1241), + [sym_atomic_type] = STATE(1241), + [sym_generic_type] = STATE(1241), + [sym_function_type] = STATE(1241), + [sym_identifier] = ACTIONS(3472), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3480), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), + [anon_sym_LBRACK2] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3488), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3490), + [anon_sym_map_LBRACK] = ACTIONS(3492), + [anon_sym_chan] = ACTIONS(3494), + [anon_sym_thread] = ACTIONS(3496), + [anon_sym_atomic] = ACTIONS(3498), + [sym___double_quote] = ACTIONS(601), + [sym___single_quote] = ACTIONS(601), + [sym___c_double_quote] = ACTIONS(601), + [sym___c_single_quote] = ACTIONS(601), + [sym___r_double_quote] = ACTIONS(601), + [sym___r_single_quote] = ACTIONS(601), }, [978] = { [sym_line_comment] = STATE(978), - [sym_reference_expression] = STATE(4504), - [sym_type_reference_expression] = STATE(1162), - [sym_plain_type] = STATE(1231), - [sym__plain_type_without_special] = STATE(1192), - [sym_anon_struct_type] = STATE(1193), - [sym_multi_return_type] = STATE(1192), - [sym_result_type] = STATE(1192), - [sym_option_type] = STATE(1192), - [sym_qualified_type] = STATE(1162), - [sym_fixed_array_type] = STATE(1193), - [sym_array_type] = STATE(1193), - [sym_pointer_type] = STATE(1193), - [sym_wrong_pointer_type] = STATE(1193), - [sym_map_type] = STATE(1193), - [sym_channel_type] = STATE(1193), - [sym_shared_type] = STATE(1193), - [sym_thread_type] = STATE(1193), - [sym_atomic_type] = STATE(1193), - [sym_generic_type] = STATE(1193), - [sym_function_type] = STATE(1193), - [sym_identifier] = ACTIONS(3474), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3490), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3492), - [anon_sym_map_LBRACK] = ACTIONS(3494), - [anon_sym_chan] = ACTIONS(3496), - [anon_sym_thread] = ACTIONS(3498), - [anon_sym_atomic] = ACTIONS(3500), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [sym_block_comment] = STATE(978), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(611), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(611), + [sym_rune_literal] = ACTIONS(611), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(611), + [sym___single_quote] = ACTIONS(611), + [sym___c_double_quote] = ACTIONS(611), + [sym___c_single_quote] = ACTIONS(611), + [sym___r_double_quote] = ACTIONS(611), + [sym___r_single_quote] = ACTIONS(611), }, [979] = { [sym_line_comment] = STATE(979), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [aux_sym_strictly_expression_list_repeat1] = STATE(1455), + [sym_block_comment] = STATE(979), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_identifier] = ACTIONS(1723), + [anon_sym_LF] = ACTIONS(1723), + [anon_sym_CR] = ACTIONS(1723), + [anon_sym_CR_LF] = ACTIONS(1723), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1723), [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1723), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), + [anon_sym___global] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1761), + [anon_sym_fn] = ACTIONS(1723), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -143264,24 +137484,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_mut] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_interface] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_union] = ACTIONS(1723), + [anon_sym_pub] = ACTIONS(1723), + [anon_sym_mut] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_interface] = ACTIONS(1723), [anon_sym_PLUS_PLUS] = ACTIONS(3520), [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1761), - [anon_sym_spawn] = ACTIONS(1761), - [anon_sym_json_DOTdecode] = ACTIONS(1761), + [anon_sym_go] = ACTIONS(1723), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(1723), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1723), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1761), + [anon_sym_LT_DASH] = ACTIONS(1723), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), @@ -143289,177 +137509,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3530), [anon_sym_PIPE_PIPE] = ACTIONS(3532), [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1761), - [sym_true] = ACTIONS(1761), - [sym_false] = ACTIONS(1761), - [sym_nil] = ACTIONS(1761), + [sym_none] = ACTIONS(1723), + [sym_true] = ACTIONS(1723), + [sym_false] = ACTIONS(1723), + [sym_nil] = ACTIONS(1723), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_DOLLARif] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1723), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_select] = ACTIONS(1761), - [anon_sym_lock] = ACTIONS(1761), - [anon_sym_rlock] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_sql] = ACTIONS(1761), - [sym_int_literal] = ACTIONS(1761), - [sym_float_literal] = ACTIONS(1761), - [sym_rune_literal] = ACTIONS(1761), - [sym_pseudo_compile_time_identifier] = ACTIONS(1761), - [anon_sym_shared] = ACTIONS(1761), - [anon_sym_map_LBRACK] = ACTIONS(1761), - [anon_sym_chan] = ACTIONS(1761), - [anon_sym_thread] = ACTIONS(1761), - [anon_sym_atomic] = ACTIONS(1761), - [anon_sym_assert] = ACTIONS(1761), - [anon_sym_defer] = ACTIONS(1761), - [anon_sym_goto] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_DOLLARfor] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_asm] = ACTIONS(1761), - [anon_sym_AT_LBRACK] = ACTIONS(1761), - [sym___double_quote] = ACTIONS(1761), - [sym___single_quote] = ACTIONS(1761), - [sym___c_double_quote] = ACTIONS(1761), - [sym___c_single_quote] = ACTIONS(1761), - [sym___r_double_quote] = ACTIONS(1761), - [sym___r_single_quote] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_select] = ACTIONS(1723), + [anon_sym_lock] = ACTIONS(1723), + [anon_sym_rlock] = ACTIONS(1723), + [anon_sym_unsafe] = ACTIONS(1723), + [anon_sym_sql] = ACTIONS(1723), + [sym_int_literal] = ACTIONS(1723), + [sym_float_literal] = ACTIONS(1723), + [sym_rune_literal] = ACTIONS(1723), + [sym_pseudo_compile_time_identifier] = ACTIONS(1723), + [anon_sym_shared] = ACTIONS(1723), + [anon_sym_map_LBRACK] = ACTIONS(1723), + [anon_sym_chan] = ACTIONS(1723), + [anon_sym_thread] = ACTIONS(1723), + [anon_sym_atomic] = ACTIONS(1723), + [anon_sym_assert] = ACTIONS(1723), + [anon_sym_defer] = ACTIONS(1723), + [anon_sym_goto] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_DOLLARfor] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1723), + [anon_sym_AT_LBRACK] = ACTIONS(1723), + [sym___double_quote] = ACTIONS(1723), + [sym___single_quote] = ACTIONS(1723), + [sym___c_double_quote] = ACTIONS(1723), + [sym___c_single_quote] = ACTIONS(1723), + [sym___r_double_quote] = ACTIONS(1723), + [sym___r_single_quote] = ACTIONS(1723), }, [980] = { [sym_line_comment] = STATE(980), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_CR] = ACTIONS(1719), - [anon_sym_CR_LF] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(980), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_const] = ACTIONS(1913), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3516), - [anon_sym_GT] = ACTIONS(3516), - [anon_sym_EQ_EQ] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_LT_EQ] = ACTIONS(3516), - [anon_sym_GT_EQ] = ACTIONS(3516), + [anon_sym___global] = ACTIONS(1913), + [anon_sym_type] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_pub] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_union] = ACTIONS(1913), + [anon_sym_pub] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_enum] = ACTIONS(1913), + [anon_sym_interface] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1719), - [anon_sym_spawn] = ACTIONS(1719), - [anon_sym_json_DOTdecode] = ACTIONS(1719), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(3512), - [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1719), - [anon_sym_LT_LT] = ACTIONS(3514), - [anon_sym_GT_GT] = ACTIONS(3514), - [anon_sym_GT_GT_GT] = ACTIONS(3514), - [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_nil] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_DOLLARif] = ACTIONS(1719), - [anon_sym_is] = ACTIONS(3536), - [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3540), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_select] = ACTIONS(1719), - [anon_sym_lock] = ACTIONS(1719), - [anon_sym_rlock] = ACTIONS(1719), - [anon_sym_unsafe] = ACTIONS(1719), - [anon_sym_sql] = ACTIONS(1719), - [sym_int_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), - [sym_rune_literal] = ACTIONS(1719), - [sym_pseudo_compile_time_identifier] = ACTIONS(1719), - [anon_sym_shared] = ACTIONS(1719), - [anon_sym_map_LBRACK] = ACTIONS(1719), - [anon_sym_chan] = ACTIONS(1719), - [anon_sym_thread] = ACTIONS(1719), - [anon_sym_atomic] = ACTIONS(1719), - [anon_sym_assert] = ACTIONS(1719), - [anon_sym_defer] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_DOLLARfor] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_asm] = ACTIONS(1719), - [anon_sym_AT_LBRACK] = ACTIONS(1719), - [sym___double_quote] = ACTIONS(1719), - [sym___single_quote] = ACTIONS(1719), - [sym___c_double_quote] = ACTIONS(1719), - [sym___c_single_quote] = ACTIONS(1719), - [sym___r_double_quote] = ACTIONS(1719), - [sym___r_single_quote] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [anon_sym_assert] = ACTIONS(1913), + [anon_sym_defer] = ACTIONS(1913), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym_break] = ACTIONS(1913), + [anon_sym_continue] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1913), + [anon_sym_DOLLARfor] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1913), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_asm] = ACTIONS(1913), + [anon_sym_AT_LBRACK] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), }, [981] = { [sym_line_comment] = STATE(981), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_CR] = ACTIONS(1871), - [anon_sym_CR_LF] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(981), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3546), + [anon_sym_LF] = ACTIONS(3546), + [anon_sym_CR] = ACTIONS(3546), + [anon_sym_CR_LF] = ACTIONS(3546), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_COMMA] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3546), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), + [anon_sym___global] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(3546), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -143472,24 +137694,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_pub] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(3546), + [anon_sym_union] = ACTIONS(3546), + [anon_sym_pub] = ACTIONS(3546), + [anon_sym_mut] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), [anon_sym_PLUS_PLUS] = ACTIONS(3520), [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1871), + [anon_sym_go] = ACTIONS(3546), + [anon_sym_spawn] = ACTIONS(3546), + [anon_sym_json_DOTdecode] = ACTIONS(3546), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(3546), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(3546), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), @@ -143497,281 +137719,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3530), [anon_sym_PIPE_PIPE] = ACTIONS(3532), [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), + [sym_none] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_nil] = ACTIONS(3546), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_DOLLARif] = ACTIONS(3546), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), - [sym_rune_literal] = ACTIONS(1871), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1871), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [anon_sym_assert] = ACTIONS(1871), - [anon_sym_defer] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_DOLLARfor] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_asm] = ACTIONS(1871), - [anon_sym_AT_LBRACK] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1871), - [sym___single_quote] = ACTIONS(1871), - [sym___c_double_quote] = ACTIONS(1871), - [sym___c_single_quote] = ACTIONS(1871), - [sym___r_double_quote] = ACTIONS(1871), - [sym___r_single_quote] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(3546), + [anon_sym_select] = ACTIONS(3546), + [anon_sym_lock] = ACTIONS(3546), + [anon_sym_rlock] = ACTIONS(3546), + [anon_sym_unsafe] = ACTIONS(3546), + [anon_sym_sql] = ACTIONS(3546), + [sym_int_literal] = ACTIONS(3546), + [sym_float_literal] = ACTIONS(3546), + [sym_rune_literal] = ACTIONS(3546), + [sym_pseudo_compile_time_identifier] = ACTIONS(3546), + [anon_sym_shared] = ACTIONS(3546), + [anon_sym_map_LBRACK] = ACTIONS(3546), + [anon_sym_chan] = ACTIONS(3546), + [anon_sym_thread] = ACTIONS(3546), + [anon_sym_atomic] = ACTIONS(3546), + [anon_sym_assert] = ACTIONS(3546), + [anon_sym_defer] = ACTIONS(3546), + [anon_sym_goto] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_DOLLARfor] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_POUND] = ACTIONS(3546), + [anon_sym_asm] = ACTIONS(3546), + [anon_sym_AT_LBRACK] = ACTIONS(3546), + [sym___double_quote] = ACTIONS(3546), + [sym___single_quote] = ACTIONS(3546), + [sym___c_double_quote] = ACTIONS(3546), + [sym___c_single_quote] = ACTIONS(3546), + [sym___r_double_quote] = ACTIONS(3546), + [sym___r_single_quote] = ACTIONS(3546), }, [982] = { [sym_line_comment] = STATE(982), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(982), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), [anon_sym_SLASH] = ACTIONS(3514), [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_GT] = ACTIONS(3516), + [anon_sym_EQ_EQ] = ACTIONS(3516), + [anon_sym_BANG_EQ] = ACTIONS(3516), + [anon_sym_LT_EQ] = ACTIONS(3516), + [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1849), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1899), + [anon_sym_LT_DASH] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [983] = { [sym_line_comment] = STATE(983), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_CR] = ACTIONS(1807), - [anon_sym_CR_LF] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(983), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), [anon_sym_SLASH] = ACTIONS(3514), [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_pub] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1849), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_DASH] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [anon_sym_assert] = ACTIONS(1807), - [anon_sym_defer] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_DOLLARfor] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_asm] = ACTIONS(1807), - [anon_sym_AT_LBRACK] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [984] = { [sym_line_comment] = STATE(984), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(984), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1765), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -143784,98 +138009,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1765), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1765), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [985] = { [sym_line_comment] = STATE(985), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(985), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_CR] = ACTIONS(2071), + [anon_sym_CR_LF] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -143888,514 +138114,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_interface] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2071), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(2071), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(2071), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), + [sym_rune_literal] = ACTIONS(2071), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2071), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [anon_sym_assert] = ACTIONS(2071), + [anon_sym_defer] = ACTIONS(2071), + [anon_sym_goto] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_DOLLARfor] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_asm] = ACTIONS(2071), + [anon_sym_AT_LBRACK] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2071), + [sym___single_quote] = ACTIONS(2071), + [sym___c_double_quote] = ACTIONS(2071), + [sym___c_single_quote] = ACTIONS(2071), + [sym___r_double_quote] = ACTIONS(2071), + [sym___r_single_quote] = ACTIONS(2071), }, [986] = { [sym_line_comment] = STATE(986), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(3512), - [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3514), - [anon_sym_GT_GT] = ACTIONS(3514), - [anon_sym_GT_GT_GT] = ACTIONS(3514), - [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [987] = { - [sym_line_comment] = STATE(987), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [988] = { - [sym_line_comment] = STATE(988), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3514), - [anon_sym_GT_GT] = ACTIONS(3514), - [anon_sym_GT_GT_GT] = ACTIONS(3514), - [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [989] = { - [sym_line_comment] = STATE(989), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_LF] = ACTIONS(1837), - [anon_sym_CR] = ACTIONS(1837), - [anon_sym_CR_LF] = ACTIONS(1837), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_pub] = ACTIONS(1837), - [anon_sym_mut] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_interface] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1837), - [anon_sym_spawn] = ACTIONS(1837), - [anon_sym_json_DOTdecode] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_LT_DASH] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1837), - [anon_sym_AMP_CARET] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [sym_none] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_nil] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_DOLLARif] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1837), - [anon_sym_BANGis] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_BANGin] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_select] = ACTIONS(1837), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_sql] = ACTIONS(1837), - [sym_int_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1837), - [sym_rune_literal] = ACTIONS(1837), - [sym_pseudo_compile_time_identifier] = ACTIONS(1837), - [anon_sym_shared] = ACTIONS(1837), - [anon_sym_map_LBRACK] = ACTIONS(1837), - [anon_sym_chan] = ACTIONS(1837), - [anon_sym_thread] = ACTIONS(1837), - [anon_sym_atomic] = ACTIONS(1837), - [anon_sym_assert] = ACTIONS(1837), - [anon_sym_defer] = ACTIONS(1837), - [anon_sym_goto] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_DOLLARfor] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1837), - [anon_sym_asm] = ACTIONS(1837), - [anon_sym_AT_LBRACK] = ACTIONS(1837), - [sym___double_quote] = ACTIONS(1837), - [sym___single_quote] = ACTIONS(1837), - [sym___c_double_quote] = ACTIONS(1837), - [sym___c_single_quote] = ACTIONS(1837), - [sym___r_double_quote] = ACTIONS(1837), - [sym___r_single_quote] = ACTIONS(1837), - }, - [990] = { - [sym_line_comment] = STATE(990), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_CR] = ACTIONS(1841), - [anon_sym_CR_LF] = ACTIONS(1841), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(986), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), + [anon_sym___global] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1933), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -144408,24 +138219,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_interface] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_interface] = ACTIONS(1933), [anon_sym_PLUS_PLUS] = ACTIONS(3520), [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1841), - [anon_sym_spawn] = ACTIONS(1841), - [anon_sym_json_DOTdecode] = ACTIONS(1841), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1841), + [anon_sym_TILDE] = ACTIONS(1933), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1841), + [anon_sym_LT_DASH] = ACTIONS(1933), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), @@ -144433,167 +138244,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3530), [anon_sym_PIPE_PIPE] = ACTIONS(3532), [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_nil] = ACTIONS(1841), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_DOLLARif] = ACTIONS(1841), - [anon_sym_is] = ACTIONS(3546), - [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_select] = ACTIONS(1841), - [anon_sym_lock] = ACTIONS(1841), - [anon_sym_rlock] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_sql] = ACTIONS(1841), - [sym_int_literal] = ACTIONS(1841), - [sym_float_literal] = ACTIONS(1841), - [sym_rune_literal] = ACTIONS(1841), - [sym_pseudo_compile_time_identifier] = ACTIONS(1841), - [anon_sym_shared] = ACTIONS(1841), - [anon_sym_map_LBRACK] = ACTIONS(1841), - [anon_sym_chan] = ACTIONS(1841), - [anon_sym_thread] = ACTIONS(1841), - [anon_sym_atomic] = ACTIONS(1841), - [anon_sym_assert] = ACTIONS(1841), - [anon_sym_defer] = ACTIONS(1841), - [anon_sym_goto] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_DOLLARfor] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_asm] = ACTIONS(1841), - [anon_sym_AT_LBRACK] = ACTIONS(1841), - [sym___double_quote] = ACTIONS(1841), - [sym___single_quote] = ACTIONS(1841), - [sym___c_double_quote] = ACTIONS(1841), - [sym___c_single_quote] = ACTIONS(1841), - [sym___r_double_quote] = ACTIONS(1841), - [sym___r_single_quote] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_defer] = ACTIONS(1933), + [anon_sym_goto] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_DOLLARfor] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_asm] = ACTIONS(1933), + [anon_sym_AT_LBRACK] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), }, - [991] = { - [sym_line_comment] = STATE(991), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3552), - [anon_sym_LF] = ACTIONS(3552), - [anon_sym_CR] = ACTIONS(3552), - [anon_sym_CR_LF] = ACTIONS(3552), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [987] = { + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_COMMA] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3552), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(3552), - [anon_sym_type] = ACTIONS(3552), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(3552), + [anon_sym_fn] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), [anon_sym_SLASH] = ACTIONS(3514), [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3516), - [anon_sym_GT] = ACTIONS(3516), - [anon_sym_EQ_EQ] = ACTIONS(3516), - [anon_sym_BANG_EQ] = ACTIONS(3516), - [anon_sym_LT_EQ] = ACTIONS(3516), - [anon_sym_GT_EQ] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(3552), - [anon_sym_union] = ACTIONS(3552), - [anon_sym_pub] = ACTIONS(3552), - [anon_sym_mut] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(3552), - [anon_sym_spawn] = ACTIONS(3552), - [anon_sym_json_DOTdecode] = ACTIONS(3552), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(1877), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(3552), + [anon_sym_LT_DASH] = ACTIONS(1877), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(3552), - [sym_true] = ACTIONS(3552), - [sym_false] = ACTIONS(3552), - [sym_nil] = ACTIONS(3552), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_DOLLARif] = ACTIONS(3552), - [anon_sym_is] = ACTIONS(3536), - [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3540), - [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(3552), - [anon_sym_select] = ACTIONS(3552), - [anon_sym_lock] = ACTIONS(3552), - [anon_sym_rlock] = ACTIONS(3552), - [anon_sym_unsafe] = ACTIONS(3552), - [anon_sym_sql] = ACTIONS(3552), - [sym_int_literal] = ACTIONS(3552), - [sym_float_literal] = ACTIONS(3552), - [sym_rune_literal] = ACTIONS(3552), - [sym_pseudo_compile_time_identifier] = ACTIONS(3552), - [anon_sym_shared] = ACTIONS(3552), - [anon_sym_map_LBRACK] = ACTIONS(3552), - [anon_sym_chan] = ACTIONS(3552), - [anon_sym_thread] = ACTIONS(3552), - [anon_sym_atomic] = ACTIONS(3552), - [anon_sym_assert] = ACTIONS(3552), - [anon_sym_defer] = ACTIONS(3552), - [anon_sym_goto] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_DOLLARfor] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_POUND] = ACTIONS(3552), - [anon_sym_asm] = ACTIONS(3552), - [anon_sym_AT_LBRACK] = ACTIONS(3552), - [sym___double_quote] = ACTIONS(3552), - [sym___single_quote] = ACTIONS(3552), - [sym___c_double_quote] = ACTIONS(3552), - [sym___c_single_quote] = ACTIONS(3552), - [sym___r_double_quote] = ACTIONS(3552), - [sym___r_single_quote] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1877), + [sym___single_quote] = ACTIONS(1877), + [sym___c_double_quote] = ACTIONS(1877), + [sym___c_single_quote] = ACTIONS(1877), + [sym___r_double_quote] = ACTIONS(1877), + [sym___r_single_quote] = ACTIONS(1877), }, - [992] = { - [sym_line_comment] = STATE(992), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), + [988] = { + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_LF] = ACTIONS(1925), [anon_sym_CR] = ACTIONS(1925), [anon_sym_CR_LF] = ACTIONS(1925), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(1925), [anon_sym_LBRACE] = ACTIONS(1925), @@ -144686,28 +138499,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1925), [sym___r_single_quote] = ACTIONS(1925), }, + [989] = { + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [990] = { + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(3512), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_GT] = ACTIONS(3516), + [anon_sym_EQ_EQ] = ACTIONS(3516), + [anon_sym_BANG_EQ] = ACTIONS(3516), + [anon_sym_LT_EQ] = ACTIONS(3516), + [anon_sym_GT_EQ] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_union] = ACTIONS(2055), + [anon_sym_pub] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_LT_DASH] = ACTIONS(2055), + [anon_sym_LT_LT] = ACTIONS(3514), + [anon_sym_GT_GT] = ACTIONS(3514), + [anon_sym_GT_GT_GT] = ACTIONS(3514), + [anon_sym_AMP_CARET] = ACTIONS(3514), + [anon_sym_AMP_AMP] = ACTIONS(3530), + [anon_sym_PIPE_PIPE] = ACTIONS(3532), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(3552), + [anon_sym_BANGis] = ACTIONS(3554), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_BANGin] = ACTIONS(3542), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [anon_sym_assert] = ACTIONS(2055), + [anon_sym_defer] = ACTIONS(2055), + [anon_sym_goto] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_DOLLARfor] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_asm] = ACTIONS(2055), + [anon_sym_AT_LBRACK] = ACTIONS(2055), + [sym___double_quote] = ACTIONS(2055), + [sym___single_quote] = ACTIONS(2055), + [sym___c_double_quote] = ACTIONS(2055), + [sym___c_single_quote] = ACTIONS(2055), + [sym___r_double_quote] = ACTIONS(2055), + [sym___r_single_quote] = ACTIONS(2055), + }, + [991] = { + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3512), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3514), + [anon_sym_GT_GT] = ACTIONS(3514), + [anon_sym_GT_GT_GT] = ACTIONS(3514), + [anon_sym_AMP_CARET] = ACTIONS(3514), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [992] = { + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_PERCENT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3514), + [anon_sym_GT_GT] = ACTIONS(3514), + [anon_sym_GT_GT_GT] = ACTIONS(3514), + [anon_sym_AMP_CARET] = ACTIONS(3514), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, [993] = { [sym_line_comment] = STATE(993), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(993), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), [anon_sym_PIPE] = ACTIONS(3512), - [anon_sym_fn] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3512), [anon_sym_DASH] = ACTIONS(3512), [anon_sym_STAR] = ACTIONS(3514), @@ -144720,397 +138954,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3516), [anon_sym_GT_EQ] = ACTIONS(3516), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1849), [anon_sym_CARET] = ACTIONS(3512), [anon_sym_AMP] = ACTIONS(3514), - [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(3514), [anon_sym_GT_GT] = ACTIONS(3514), [anon_sym_GT_GT_GT] = ACTIONS(3514), [anon_sym_AMP_CARET] = ACTIONS(3514), [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_PIPE_PIPE] = ACTIONS(3532), - [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(3536), - [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), [anon_sym_in] = ACTIONS(3540), [anon_sym_BANGin] = ACTIONS(3542), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [994] = { [sym_line_comment] = STATE(994), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3558), - [anon_sym_LF] = ACTIONS(3558), - [anon_sym_CR] = ACTIONS(3558), - [anon_sym_CR_LF] = ACTIONS(3558), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(994), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_const] = ACTIONS(3558), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(3558), - [anon_sym_type] = ACTIONS(3558), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(3558), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(3558), - [anon_sym_union] = ACTIONS(3558), - [anon_sym_pub] = ACTIONS(3558), - [anon_sym_mut] = ACTIONS(3558), - [anon_sym_enum] = ACTIONS(3558), - [anon_sym_interface] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(3558), - [anon_sym_spawn] = ACTIONS(3558), - [anon_sym_json_DOTdecode] = ACTIONS(3558), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(3558), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(3558), - [sym_true] = ACTIONS(3558), - [sym_false] = ACTIONS(3558), - [sym_nil] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3558), - [anon_sym_DOLLARif] = ACTIONS(3558), - [anon_sym_is] = ACTIONS(3536), - [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(3558), - [anon_sym_select] = ACTIONS(3558), - [anon_sym_lock] = ACTIONS(3558), - [anon_sym_rlock] = ACTIONS(3558), - [anon_sym_unsafe] = ACTIONS(3558), - [anon_sym_sql] = ACTIONS(3558), - [sym_int_literal] = ACTIONS(3558), - [sym_float_literal] = ACTIONS(3558), - [sym_rune_literal] = ACTIONS(3558), - [sym_pseudo_compile_time_identifier] = ACTIONS(3558), - [anon_sym_shared] = ACTIONS(3558), - [anon_sym_map_LBRACK] = ACTIONS(3558), - [anon_sym_chan] = ACTIONS(3558), - [anon_sym_thread] = ACTIONS(3558), - [anon_sym_atomic] = ACTIONS(3558), - [anon_sym_assert] = ACTIONS(3558), - [anon_sym_defer] = ACTIONS(3558), - [anon_sym_goto] = ACTIONS(3558), - [anon_sym_break] = ACTIONS(3558), - [anon_sym_continue] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3558), - [anon_sym_DOLLARfor] = ACTIONS(3558), - [anon_sym_for] = ACTIONS(3558), - [anon_sym_POUND] = ACTIONS(3558), - [anon_sym_asm] = ACTIONS(3558), - [anon_sym_AT_LBRACK] = ACTIONS(3558), - [sym___double_quote] = ACTIONS(3558), - [sym___single_quote] = ACTIONS(3558), - [sym___c_double_quote] = ACTIONS(3558), - [sym___c_single_quote] = ACTIONS(3558), - [sym___r_double_quote] = ACTIONS(3558), - [sym___r_single_quote] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [995] = { [sym_line_comment] = STATE(995), - [sym_else_branch] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym___global] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_interface] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(3574), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [anon_sym_assert] = ACTIONS(2475), - [anon_sym_defer] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_DOLLARfor] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_POUND] = ACTIONS(2475), - [anon_sym_asm] = ACTIONS(2475), - [anon_sym_AT_LBRACK] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [sym_block_comment] = STATE(995), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [996] = { [sym_line_comment] = STATE(996), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_CR] = ACTIONS(1871), - [anon_sym_CR_LF] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(996), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3570), + [anon_sym_LF] = ACTIONS(3570), + [anon_sym_CR] = ACTIONS(3570), + [anon_sym_CR_LF] = ACTIONS(3570), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1871), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym___global] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_pub] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_interface] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_pub] = ACTIONS(3570), + [anon_sym_mut] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3570), [anon_sym_PLUS_PLUS] = ACTIONS(3520), [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1871), + [anon_sym_go] = ACTIONS(3570), + [anon_sym_spawn] = ACTIONS(3570), + [anon_sym_json_DOTdecode] = ACTIONS(3570), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1871), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1871), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_CARET] = ACTIONS(3570), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(3570), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), + [sym_none] = ACTIONS(3570), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_nil] = ACTIONS(3570), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_DOLLARif] = ACTIONS(3570), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), - [sym_rune_literal] = ACTIONS(1871), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1871), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [anon_sym_assert] = ACTIONS(1871), - [anon_sym_defer] = ACTIONS(1871), - [anon_sym_goto] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_DOLLARfor] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_POUND] = ACTIONS(1871), - [anon_sym_asm] = ACTIONS(1871), - [anon_sym_AT_LBRACK] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1871), - [sym___single_quote] = ACTIONS(1871), - [sym___c_double_quote] = ACTIONS(1871), - [sym___c_single_quote] = ACTIONS(1871), - [sym___r_double_quote] = ACTIONS(1871), - [sym___r_single_quote] = ACTIONS(1871), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(3570), + [anon_sym_select] = ACTIONS(3570), + [anon_sym_lock] = ACTIONS(3570), + [anon_sym_rlock] = ACTIONS(3570), + [anon_sym_unsafe] = ACTIONS(3570), + [anon_sym_sql] = ACTIONS(3570), + [sym_int_literal] = ACTIONS(3570), + [sym_float_literal] = ACTIONS(3570), + [sym_rune_literal] = ACTIONS(3570), + [sym_pseudo_compile_time_identifier] = ACTIONS(3570), + [anon_sym_shared] = ACTIONS(3570), + [anon_sym_map_LBRACK] = ACTIONS(3570), + [anon_sym_chan] = ACTIONS(3570), + [anon_sym_thread] = ACTIONS(3570), + [anon_sym_atomic] = ACTIONS(3570), + [anon_sym_assert] = ACTIONS(3570), + [anon_sym_defer] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_DOLLARfor] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym_AT_LBRACK] = ACTIONS(3570), + [sym___double_quote] = ACTIONS(3570), + [sym___single_quote] = ACTIONS(3570), + [sym___c_double_quote] = ACTIONS(3570), + [sym___c_single_quote] = ACTIONS(3570), + [sym___r_double_quote] = ACTIONS(3570), + [sym___r_single_quote] = ACTIONS(3570), }, [997] = { [sym_line_comment] = STATE(997), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), + [sym_block_comment] = STATE(997), + [sym_else_branch] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym___global] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_interface] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [anon_sym_assert] = ACTIONS(2491), + [anon_sym_defer] = ACTIONS(2491), + [anon_sym_goto] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), + [anon_sym_DOLLARfor] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_asm] = ACTIONS(2491), + [anon_sym_AT_LBRACK] = ACTIONS(2491), + [sym___double_quote] = ACTIONS(2491), + [sym___single_quote] = ACTIONS(2491), + [sym___c_double_quote] = ACTIONS(2491), + [sym___c_single_quote] = ACTIONS(2491), + [sym___r_double_quote] = ACTIONS(2491), + [sym___r_single_quote] = ACTIONS(2491), + }, + [998] = { + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [sym_else_branch] = STATE(1057), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_LF] = ACTIONS(2481), + [anon_sym_CR] = ACTIONS(2481), + [anon_sym_CR_LF] = ACTIONS(2481), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym___global] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_SLASH] = ACTIONS(2481), + [anon_sym_PERCENT] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_GT] = ACTIONS(2481), + [anon_sym_EQ_EQ] = ACTIONS(2481), + [anon_sym_BANG_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_interface] = ACTIONS(2481), + [anon_sym_PLUS_PLUS] = ACTIONS(2481), + [anon_sym_DASH_DASH] = ACTIONS(2481), + [anon_sym_QMARK] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2481), + [anon_sym_json_DOTdecode] = ACTIONS(2481), + [anon_sym_LBRACK2] = ACTIONS(2481), + [anon_sym_TILDE] = ACTIONS(2481), + [anon_sym_CARET] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_LT_DASH] = ACTIONS(2481), + [anon_sym_LT_LT] = ACTIONS(2481), + [anon_sym_GT_GT] = ACTIONS(2481), + [anon_sym_GT_GT_GT] = ACTIONS(2481), + [anon_sym_AMP_CARET] = ACTIONS(2481), + [anon_sym_AMP_AMP] = ACTIONS(2481), + [anon_sym_PIPE_PIPE] = ACTIONS(2481), + [anon_sym_or] = ACTIONS(2481), + [sym_none] = ACTIONS(2481), + [sym_true] = ACTIONS(2481), + [sym_false] = ACTIONS(2481), + [sym_nil] = ACTIONS(2481), + [anon_sym_QMARK_DOT] = ACTIONS(2481), + [anon_sym_POUND_LBRACK] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_DOLLARif] = ACTIONS(2481), + [anon_sym_is] = ACTIONS(2481), + [anon_sym_BANGis] = ACTIONS(2481), + [anon_sym_in] = ACTIONS(2481), + [anon_sym_BANGin] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_select] = ACTIONS(2481), + [anon_sym_lock] = ACTIONS(2481), + [anon_sym_rlock] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_sql] = ACTIONS(2481), + [sym_int_literal] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + [sym_rune_literal] = ACTIONS(2481), + [sym_pseudo_compile_time_identifier] = ACTIONS(2481), + [anon_sym_shared] = ACTIONS(2481), + [anon_sym_map_LBRACK] = ACTIONS(2481), + [anon_sym_chan] = ACTIONS(2481), + [anon_sym_thread] = ACTIONS(2481), + [anon_sym_atomic] = ACTIONS(2481), + [anon_sym_assert] = ACTIONS(2481), + [anon_sym_defer] = ACTIONS(2481), + [anon_sym_goto] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_DOLLARfor] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_asm] = ACTIONS(2481), + [anon_sym_AT_LBRACK] = ACTIONS(2481), + [sym___double_quote] = ACTIONS(2481), + [sym___single_quote] = ACTIONS(2481), + [sym___c_double_quote] = ACTIONS(2481), + [sym___c_single_quote] = ACTIONS(2481), + [sym___r_double_quote] = ACTIONS(2481), + [sym___r_single_quote] = ACTIONS(2481), + }, + [999] = { + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), [ts_builtin_sym_end] = ACTIONS(3576), [sym_identifier] = ACTIONS(3578), [anon_sym_LF] = ACTIONS(3578), [anon_sym_CR] = ACTIONS(3578), [anon_sym_CR_LF] = ACTIONS(3578), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), [anon_sym_LBRACE] = ACTIONS(3578), @@ -145118,19 +139564,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3510), [anon_sym___global] = ACTIONS(3578), [anon_sym_type] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(3560), + [anon_sym_PIPE] = ACTIONS(3556), [anon_sym_fn] = ACTIONS(3578), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), [anon_sym_struct] = ACTIONS(3578), [anon_sym_union] = ACTIONS(3578), @@ -145147,15 +139593,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_json_DOTdecode] = ACTIONS(3578), [anon_sym_LBRACK2] = ACTIONS(3528), [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), [anon_sym_LT_DASH] = ACTIONS(3578), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), [anon_sym_or] = ACTIONS(3534), [sym_none] = ACTIONS(3578), [sym_true] = ACTIONS(3578), @@ -145167,8 +139613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(3578), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), [anon_sym_match] = ACTIONS(3578), [anon_sym_select] = ACTIONS(3578), [anon_sym_lock] = ACTIONS(3578), @@ -145202,224 +139648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3578), [sym___r_single_quote] = ACTIONS(3578), }, - [998] = { - [sym_line_comment] = STATE(998), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_CR] = ACTIONS(1807), - [anon_sym_CR_LF] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_pub] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_interface] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1807), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [anon_sym_assert] = ACTIONS(1807), - [anon_sym_defer] = ACTIONS(1807), - [anon_sym_goto] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_DOLLARfor] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_asm] = ACTIONS(1807), - [anon_sym_AT_LBRACK] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), - }, - [999] = { - [sym_line_comment] = STATE(999), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_interface] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1769), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1769), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), - [anon_sym_or] = ACTIONS(3534), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(3536), - [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [anon_sym_assert] = ACTIONS(1769), - [anon_sym_defer] = ACTIONS(1769), - [anon_sym_goto] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_DOLLARfor] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_POUND] = ACTIONS(1769), - [anon_sym_asm] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), - }, [1000] = { [sym_line_comment] = STATE(1000), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), + [sym_block_comment] = STATE(1000), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), [ts_builtin_sym_end] = ACTIONS(3580), [sym_identifier] = ACTIONS(3582), [anon_sym_LF] = ACTIONS(3582), [anon_sym_CR] = ACTIONS(3582), [anon_sym_CR_LF] = ACTIONS(3582), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), [anon_sym_LBRACE] = ACTIONS(3582), @@ -145427,19 +139668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3510), [anon_sym___global] = ACTIONS(3582), [anon_sym_type] = ACTIONS(3582), - [anon_sym_PIPE] = ACTIONS(3560), + [anon_sym_PIPE] = ACTIONS(3556), [anon_sym_fn] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), [anon_sym_struct] = ACTIONS(3582), [anon_sym_union] = ACTIONS(3582), @@ -145456,15 +139697,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_json_DOTdecode] = ACTIONS(3582), [anon_sym_LBRACK2] = ACTIONS(3528), [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_CARET] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), [anon_sym_LT_DASH] = ACTIONS(3582), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), [anon_sym_or] = ACTIONS(3534), [sym_none] = ACTIONS(3582), [sym_true] = ACTIONS(3582), @@ -145476,8 +139717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(3582), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), [anon_sym_match] = ACTIONS(3582), [anon_sym_select] = ACTIONS(3582), [anon_sym_lock] = ACTIONS(3582), @@ -145513,634 +139754,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1001] = { [sym_line_comment] = STATE(1001), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(1001), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1879), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1002] = { [sym_line_comment] = STATE(1002), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(1002), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_CR] = ACTIONS(2071), + [anon_sym_CR_LF] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), + [anon_sym___global] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_interface] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2071), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(2071), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(2071), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), + [sym_rune_literal] = ACTIONS(2071), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2071), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [anon_sym_assert] = ACTIONS(2071), + [anon_sym_defer] = ACTIONS(2071), + [anon_sym_goto] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_DOLLARfor] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_asm] = ACTIONS(2071), + [anon_sym_AT_LBRACK] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2071), + [sym___single_quote] = ACTIONS(2071), + [sym___c_double_quote] = ACTIONS(2071), + [sym___c_single_quote] = ACTIONS(2071), + [sym___r_double_quote] = ACTIONS(2071), + [sym___r_single_quote] = ACTIONS(2071), }, [1003] = { [sym_line_comment] = STATE(1003), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(1003), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym___global] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_interface] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3522), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), + [anon_sym_or] = ACTIONS(3534), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3536), + [anon_sym_BANGis] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_defer] = ACTIONS(1933), + [anon_sym_goto] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_DOLLARfor] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_asm] = ACTIONS(1933), + [anon_sym_AT_LBRACK] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), }, [1004] = { [sym_line_comment] = STATE(1004), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1887), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [sym_block_comment] = STATE(1004), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1889), - [anon_sym_type] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_union] = ACTIONS(1889), - [anon_sym_pub] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_enum] = ACTIONS(1889), - [anon_sym_interface] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3524), [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3504), [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [anon_sym_assert] = ACTIONS(1889), - [anon_sym_defer] = ACTIONS(1889), - [anon_sym_goto] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_DOLLARfor] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_asm] = ACTIONS(1889), - [anon_sym_AT_LBRACK] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [1005] = { [sym_line_comment] = STATE(1005), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3504), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym___global] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(3560), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_interface] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(3504), - [anon_sym_POUND_LBRACK] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [anon_sym_assert] = ACTIONS(1899), - [anon_sym_defer] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_DOLLARfor] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_POUND] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym_AT_LBRACK] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), - }, - [1006] = { - [sym_line_comment] = STATE(1006), - [sym_else_branch] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(2479), - [sym_identifier] = ACTIONS(2481), - [anon_sym_LF] = ACTIONS(2481), - [anon_sym_CR] = ACTIONS(2481), - [anon_sym_CR_LF] = ACTIONS(2481), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_COMMA] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym___global] = ACTIONS(2481), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_SLASH] = ACTIONS(2481), - [anon_sym_PERCENT] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), - [anon_sym_EQ_EQ] = ACTIONS(2481), - [anon_sym_BANG_EQ] = ACTIONS(2481), - [anon_sym_LT_EQ] = ACTIONS(2481), - [anon_sym_GT_EQ] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2481), - [anon_sym_pub] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_enum] = ACTIONS(2481), - [anon_sym_interface] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_QMARK] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_go] = ACTIONS(2481), - [anon_sym_spawn] = ACTIONS(2481), - [anon_sym_json_DOTdecode] = ACTIONS(2481), - [anon_sym_LBRACK2] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_CARET] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_LT_DASH] = ACTIONS(2481), - [anon_sym_LT_LT] = ACTIONS(2481), - [anon_sym_GT_GT] = ACTIONS(2481), - [anon_sym_GT_GT_GT] = ACTIONS(2481), - [anon_sym_AMP_CARET] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_PIPE_PIPE] = ACTIONS(2481), - [anon_sym_or] = ACTIONS(2481), - [sym_none] = ACTIONS(2481), - [sym_true] = ACTIONS(2481), - [sym_false] = ACTIONS(2481), - [sym_nil] = ACTIONS(2481), - [anon_sym_QMARK_DOT] = ACTIONS(2481), - [anon_sym_POUND_LBRACK] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(3574), - [anon_sym_DOLLARif] = ACTIONS(2481), - [anon_sym_is] = ACTIONS(2481), - [anon_sym_BANGis] = ACTIONS(2481), - [anon_sym_in] = ACTIONS(2481), - [anon_sym_BANGin] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_select] = ACTIONS(2481), - [anon_sym_lock] = ACTIONS(2481), - [anon_sym_rlock] = ACTIONS(2481), - [anon_sym_unsafe] = ACTIONS(2481), - [anon_sym_sql] = ACTIONS(2481), - [sym_int_literal] = ACTIONS(2481), - [sym_float_literal] = ACTIONS(2481), - [sym_rune_literal] = ACTIONS(2481), - [sym_pseudo_compile_time_identifier] = ACTIONS(2481), - [anon_sym_shared] = ACTIONS(2481), - [anon_sym_map_LBRACK] = ACTIONS(2481), - [anon_sym_chan] = ACTIONS(2481), - [anon_sym_thread] = ACTIONS(2481), - [anon_sym_atomic] = ACTIONS(2481), - [anon_sym_assert] = ACTIONS(2481), - [anon_sym_defer] = ACTIONS(2481), - [anon_sym_goto] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_DOLLARfor] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2481), - [anon_sym_asm] = ACTIONS(2481), - [anon_sym_AT_LBRACK] = ACTIONS(2481), - [sym___double_quote] = ACTIONS(2481), - [sym___single_quote] = ACTIONS(2481), - [sym___c_double_quote] = ACTIONS(2481), - [sym___c_single_quote] = ACTIONS(2481), - [sym___r_double_quote] = ACTIONS(2481), - [sym___r_single_quote] = ACTIONS(2481), - }, - [1007] = { - [sym_line_comment] = STATE(1007), - [sym_type_parameters] = STATE(4285), - [sym_argument_list] = STATE(1053), - [sym_or_block] = STATE(1055), + [sym_block_comment] = STATE(1005), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), [ts_builtin_sym_end] = ACTIONS(3584), [sym_identifier] = ACTIONS(3586), [anon_sym_LF] = ACTIONS(3586), [anon_sym_CR] = ACTIONS(3586), [anon_sym_CR_LF] = ACTIONS(3586), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(3504), [anon_sym_as] = ACTIONS(3506), [anon_sym_LBRACE] = ACTIONS(3586), @@ -146148,19 +140188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3510), [anon_sym___global] = ACTIONS(3586), [anon_sym_type] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(3560), + [anon_sym_PIPE] = ACTIONS(3556), [anon_sym_fn] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3562), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3564), - [anon_sym_GT] = ACTIONS(3564), - [anon_sym_EQ_EQ] = ACTIONS(3564), - [anon_sym_BANG_EQ] = ACTIONS(3564), - [anon_sym_LT_EQ] = ACTIONS(3564), - [anon_sym_GT_EQ] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_GT] = ACTIONS(3560), + [anon_sym_EQ_EQ] = ACTIONS(3560), + [anon_sym_BANG_EQ] = ACTIONS(3560), + [anon_sym_LT_EQ] = ACTIONS(3560), + [anon_sym_GT_EQ] = ACTIONS(3560), [anon_sym_LBRACK] = ACTIONS(3518), [anon_sym_struct] = ACTIONS(3586), [anon_sym_union] = ACTIONS(3586), @@ -146177,15 +140217,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_json_DOTdecode] = ACTIONS(3586), [anon_sym_LBRACK2] = ACTIONS(3528), [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_CARET] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), [anon_sym_LT_DASH] = ACTIONS(3586), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3562), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_AMP_CARET] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_PIPE_PIPE] = ACTIONS(3568), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(3562), + [anon_sym_PIPE_PIPE] = ACTIONS(3572), [anon_sym_or] = ACTIONS(3534), [sym_none] = ACTIONS(3586), [sym_true] = ACTIONS(3586), @@ -146197,8 +140237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLARif] = ACTIONS(3586), [anon_sym_is] = ACTIONS(3536), [anon_sym_BANGis] = ACTIONS(3538), - [anon_sym_in] = ACTIONS(3570), - [anon_sym_BANGin] = ACTIONS(3572), + [anon_sym_in] = ACTIONS(3564), + [anon_sym_BANGin] = ACTIONS(3566), [anon_sym_match] = ACTIONS(3586), [anon_sym_select] = ACTIONS(3586), [anon_sym_lock] = ACTIONS(3586), @@ -146232,960 +140272,663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3586), [sym___r_single_quote] = ACTIONS(3586), }, + [1006] = { + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_const] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1877), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(3556), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_union] = ACTIONS(1877), + [anon_sym_pub] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_enum] = ACTIONS(1877), + [anon_sym_interface] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_CARET] = ACTIONS(3556), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1877), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [anon_sym_assert] = ACTIONS(1877), + [anon_sym_defer] = ACTIONS(1877), + [anon_sym_goto] = ACTIONS(1877), + [anon_sym_break] = ACTIONS(1877), + [anon_sym_continue] = ACTIONS(1877), + [anon_sym_return] = ACTIONS(1877), + [anon_sym_DOLLARfor] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_asm] = ACTIONS(1877), + [anon_sym_AT_LBRACK] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1877), + [sym___single_quote] = ACTIONS(1877), + [sym___c_double_quote] = ACTIONS(1877), + [sym___c_single_quote] = ACTIONS(1877), + [sym___r_double_quote] = ACTIONS(1877), + [sym___r_single_quote] = ACTIONS(1877), + }, + [1007] = { + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1082), + [sym_or_block] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3504), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_PERCENT] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3558), + [anon_sym_GT_GT] = ACTIONS(3558), + [anon_sym_GT_GT_GT] = ACTIONS(3558), + [anon_sym_AMP_CARET] = ACTIONS(3558), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3504), + [anon_sym_POUND_LBRACK] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, [1008] = { [sym_line_comment] = STATE(1008), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym___global] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_interface] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_DOLLARelse] = ACTIONS(3588), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [anon_sym_assert] = ACTIONS(2691), - [anon_sym_defer] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_DOLLARfor] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_POUND] = ACTIONS(2691), - [anon_sym_asm] = ACTIONS(2691), - [anon_sym_AT_LBRACK] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), + [sym_block_comment] = STATE(1008), + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1308), + [sym_plain_type] = STATE(1395), + [sym__plain_type_without_special] = STATE(1415), + [sym_anon_struct_type] = STATE(1416), + [sym_multi_return_type] = STATE(1415), + [sym_result_type] = STATE(1415), + [sym_option_type] = STATE(1415), + [sym_qualified_type] = STATE(1308), + [sym_fixed_array_type] = STATE(1416), + [sym_array_type] = STATE(1416), + [sym_pointer_type] = STATE(1416), + [sym_wrong_pointer_type] = STATE(1416), + [sym_map_type] = STATE(1416), + [sym_channel_type] = STATE(1416), + [sym_shared_type] = STATE(1416), + [sym_thread_type] = STATE(1416), + [sym_atomic_type] = STATE(1416), + [sym_generic_type] = STATE(1416), + [sym_function_type] = STATE(1416), + [sym_identifier] = ACTIONS(3588), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_RBRACE] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(603), + [anon_sym_LBRACK2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(603), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(603), + [sym_rune_literal] = ACTIONS(603), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3606), + [anon_sym_map_LBRACK] = ACTIONS(3608), + [anon_sym_chan] = ACTIONS(3610), + [anon_sym_thread] = ACTIONS(3612), + [anon_sym_atomic] = ACTIONS(3614), + [sym___double_quote] = ACTIONS(603), + [sym___single_quote] = ACTIONS(603), + [sym___c_double_quote] = ACTIONS(603), + [sym___c_single_quote] = ACTIONS(603), + [sym___r_double_quote] = ACTIONS(603), + [sym___r_single_quote] = ACTIONS(603), }, [1009] = { [sym_line_comment] = STATE(1009), - [sym_reference_expression] = STATE(4443), - [sym_type_reference_expression] = STATE(1310), - [sym_plain_type] = STATE(1364), - [sym__plain_type_without_special] = STATE(1373), - [sym_anon_struct_type] = STATE(1343), - [sym_multi_return_type] = STATE(1373), - [sym_result_type] = STATE(1373), - [sym_option_type] = STATE(1373), - [sym_qualified_type] = STATE(1310), - [sym_fixed_array_type] = STATE(1343), - [sym_array_type] = STATE(1343), - [sym_pointer_type] = STATE(1343), - [sym_wrong_pointer_type] = STATE(1343), - [sym_map_type] = STATE(1343), - [sym_channel_type] = STATE(1343), - [sym_shared_type] = STATE(1343), - [sym_thread_type] = STATE(1343), - [sym_atomic_type] = STATE(1343), - [sym_generic_type] = STATE(1343), - [sym_function_type] = STATE(1343), - [sym_identifier] = ACTIONS(3590), + [sym_block_comment] = STATE(1009), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3598), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(625), - [anon_sym_LBRACK2] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(625), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(625), - [sym_rune_literal] = ACTIONS(625), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), - [sym___double_quote] = ACTIONS(625), - [sym___single_quote] = ACTIONS(625), - [sym___c_double_quote] = ACTIONS(625), - [sym___c_single_quote] = ACTIONS(625), - [sym___r_double_quote] = ACTIONS(625), - [sym___r_single_quote] = ACTIONS(625), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1010] = { [sym_line_comment] = STATE(1010), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(623), + [sym_block_comment] = STATE(1010), + [ts_builtin_sym_end] = ACTIONS(2749), + [sym_identifier] = ACTIONS(2751), + [anon_sym_LF] = ACTIONS(2751), + [anon_sym_CR] = ACTIONS(2751), + [anon_sym_CR_LF] = ACTIONS(2751), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_go] = ACTIONS(623), - [anon_sym_spawn] = ACTIONS(623), - [anon_sym_json_DOTdecode] = ACTIONS(621), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_TILDE] = ACTIONS(621), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [sym_none] = ACTIONS(623), - [sym_true] = ACTIONS(623), - [sym_false] = ACTIONS(623), - [sym_nil] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_if] = ACTIONS(623), - [anon_sym_DOLLARif] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_match] = ACTIONS(623), - [anon_sym_select] = ACTIONS(623), - [anon_sym_lock] = ACTIONS(623), - [anon_sym_rlock] = ACTIONS(623), - [anon_sym_unsafe] = ACTIONS(623), - [anon_sym_sql] = ACTIONS(623), - [sym_int_literal] = ACTIONS(623), - [sym_float_literal] = ACTIONS(621), - [sym_rune_literal] = ACTIONS(621), - [sym_pseudo_compile_time_identifier] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(621), - [anon_sym_chan] = ACTIONS(623), - [anon_sym_thread] = ACTIONS(623), - [anon_sym_atomic] = ACTIONS(623), - [sym___double_quote] = ACTIONS(621), - [sym___single_quote] = ACTIONS(621), - [sym___c_double_quote] = ACTIONS(621), - [sym___c_single_quote] = ACTIONS(621), - [sym___r_double_quote] = ACTIONS(621), - [sym___r_single_quote] = ACTIONS(621), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_as] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_COMMA] = ACTIONS(2751), + [anon_sym_const] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym___global] = ACTIONS(2751), + [anon_sym_type] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_fn] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_union] = ACTIONS(2751), + [anon_sym_pub] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(2751), + [anon_sym_enum] = ACTIONS(2751), + [anon_sym_interface] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_QMARK] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_go] = ACTIONS(2751), + [anon_sym_spawn] = ACTIONS(2751), + [anon_sym_json_DOTdecode] = ACTIONS(2751), + [anon_sym_LBRACK2] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_LT_DASH] = ACTIONS(2751), + [anon_sym_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_AMP_CARET] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_or] = ACTIONS(2751), + [sym_none] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_nil] = ACTIONS(2751), + [anon_sym_QMARK_DOT] = ACTIONS(2751), + [anon_sym_POUND_LBRACK] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_DOLLARif] = ACTIONS(2751), + [anon_sym_DOLLARelse] = ACTIONS(3616), + [anon_sym_is] = ACTIONS(2751), + [anon_sym_BANGis] = ACTIONS(2751), + [anon_sym_in] = ACTIONS(2751), + [anon_sym_BANGin] = ACTIONS(2751), + [anon_sym_match] = ACTIONS(2751), + [anon_sym_select] = ACTIONS(2751), + [anon_sym_lock] = ACTIONS(2751), + [anon_sym_rlock] = ACTIONS(2751), + [anon_sym_unsafe] = ACTIONS(2751), + [anon_sym_sql] = ACTIONS(2751), + [sym_int_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), + [sym_rune_literal] = ACTIONS(2751), + [sym_pseudo_compile_time_identifier] = ACTIONS(2751), + [anon_sym_shared] = ACTIONS(2751), + [anon_sym_map_LBRACK] = ACTIONS(2751), + [anon_sym_chan] = ACTIONS(2751), + [anon_sym_thread] = ACTIONS(2751), + [anon_sym_atomic] = ACTIONS(2751), + [anon_sym_assert] = ACTIONS(2751), + [anon_sym_defer] = ACTIONS(2751), + [anon_sym_goto] = ACTIONS(2751), + [anon_sym_break] = ACTIONS(2751), + [anon_sym_continue] = ACTIONS(2751), + [anon_sym_return] = ACTIONS(2751), + [anon_sym_DOLLARfor] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2751), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_asm] = ACTIONS(2751), + [anon_sym_AT_LBRACK] = ACTIONS(2751), + [sym___double_quote] = ACTIONS(2751), + [sym___single_quote] = ACTIONS(2751), + [sym___c_double_quote] = ACTIONS(2751), + [sym___c_single_quote] = ACTIONS(2751), + [sym___r_double_quote] = ACTIONS(2751), + [sym___r_single_quote] = ACTIONS(2751), }, [1011] = { [sym_line_comment] = STATE(1011), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1011), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_DOLLARelse] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), }, [1012] = { [sym_line_comment] = STATE(1012), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_DOLLARelse] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), - }, - [1013] = { - [sym_line_comment] = STATE(1013), - [sym_reference_expression] = STATE(4443), - [sym_type_reference_expression] = STATE(1310), - [sym_plain_type] = STATE(1333), - [sym__plain_type_without_special] = STATE(1373), - [sym_anon_struct_type] = STATE(1343), - [sym_multi_return_type] = STATE(1373), - [sym_result_type] = STATE(1373), - [sym_option_type] = STATE(1373), - [sym_qualified_type] = STATE(1310), - [sym_fixed_array_type] = STATE(1343), - [sym_array_type] = STATE(1343), - [sym_pointer_type] = STATE(1343), - [sym_wrong_pointer_type] = STATE(1343), - [sym_map_type] = STATE(1343), - [sym_channel_type] = STATE(1343), - [sym_shared_type] = STATE(1343), - [sym_thread_type] = STATE(1343), - [sym_atomic_type] = STATE(1343), - [sym_generic_type] = STATE(1343), - [sym_function_type] = STATE(1343), - [sym_identifier] = ACTIONS(3590), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3598), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), - }, - [1014] = { - [sym_line_comment] = STATE(1014), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_DOLLARelse] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), - }, - [1015] = { - [sym_line_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), - }, - [1016] = { - [sym_line_comment] = STATE(1016), - [sym_type_parameters] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), - }, - [1017] = { - [sym_line_comment] = STATE(1017), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(1012), + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1308), + [sym_plain_type] = STATE(1401), + [sym__plain_type_without_special] = STATE(1415), + [sym_anon_struct_type] = STATE(1416), + [sym_multi_return_type] = STATE(1415), + [sym_result_type] = STATE(1415), + [sym_option_type] = STATE(1415), + [sym_qualified_type] = STATE(1308), + [sym_fixed_array_type] = STATE(1416), + [sym_array_type] = STATE(1416), + [sym_pointer_type] = STATE(1416), + [sym_wrong_pointer_type] = STATE(1416), + [sym_map_type] = STATE(1416), + [sym_channel_type] = STATE(1416), + [sym_shared_type] = STATE(1416), + [sym_thread_type] = STATE(1416), + [sym_atomic_type] = STATE(1416), + [sym_generic_type] = STATE(1416), + [sym_function_type] = STATE(1416), + [sym_identifier] = ACTIONS(3588), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3590), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3592), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3594), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -147196,20 +140939,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3596), [anon_sym_mut] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3600), [anon_sym_go] = ACTIONS(567), [anon_sym_spawn] = ACTIONS(567), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_LBRACK2] = ACTIONS(3602), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3604), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), @@ -147240,11 +140983,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3606), + [anon_sym_map_LBRACK] = ACTIONS(3608), + [anon_sym_chan] = ACTIONS(3610), + [anon_sym_thread] = ACTIONS(3612), + [anon_sym_atomic] = ACTIONS(3614), [sym___double_quote] = ACTIONS(563), [sym___single_quote] = ACTIONS(563), [sym___c_double_quote] = ACTIONS(563), @@ -147252,11634 +140995,12538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(563), [sym___r_single_quote] = ACTIONS(563), }, + [1013] = { + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), + }, + [1014] = { + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [sym_type_parameters] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), + }, + [1015] = { + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_DOLLARelse] = ACTIONS(3618), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [1016] = { + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [sym_reference_expression] = STATE(4462), + [sym_type_reference_expression] = STATE(1308), + [sym_plain_type] = STATE(1426), + [sym__plain_type_without_special] = STATE(1415), + [sym_anon_struct_type] = STATE(1416), + [sym_multi_return_type] = STATE(1415), + [sym_result_type] = STATE(1415), + [sym_option_type] = STATE(1415), + [sym_qualified_type] = STATE(1308), + [sym_fixed_array_type] = STATE(1416), + [sym_array_type] = STATE(1416), + [sym_pointer_type] = STATE(1416), + [sym_wrong_pointer_type] = STATE(1416), + [sym_map_type] = STATE(1416), + [sym_channel_type] = STATE(1416), + [sym_shared_type] = STATE(1416), + [sym_thread_type] = STATE(1416), + [sym_atomic_type] = STATE(1416), + [sym_generic_type] = STATE(1416), + [sym_function_type] = STATE(1416), + [sym_identifier] = ACTIONS(3588), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(599), + [anon_sym_LBRACK2] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(3604), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(599), + [sym_rune_literal] = ACTIONS(599), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3606), + [anon_sym_map_LBRACK] = ACTIONS(3608), + [anon_sym_chan] = ACTIONS(3610), + [anon_sym_thread] = ACTIONS(3612), + [anon_sym_atomic] = ACTIONS(3614), + [sym___double_quote] = ACTIONS(599), + [sym___single_quote] = ACTIONS(599), + [sym___c_double_quote] = ACTIONS(599), + [sym___c_single_quote] = ACTIONS(599), + [sym___r_double_quote] = ACTIONS(599), + [sym___r_single_quote] = ACTIONS(599), + }, + [1017] = { + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_DOLLARelse] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), + }, [1018] = { [sym_line_comment] = STATE(1018), - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_LF] = ACTIONS(2861), - [anon_sym_CR] = ACTIONS(2861), - [anon_sym_CR_LF] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2861), - [anon_sym_as] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym___global] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_PERCENT] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_GT] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_pub] = ACTIONS(2861), - [anon_sym_mut] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), - [anon_sym_interface] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_go] = ACTIONS(2861), - [anon_sym_spawn] = ACTIONS(2861), - [anon_sym_json_DOTdecode] = ACTIONS(2861), - [anon_sym_LBRACK2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_CARET] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT_DASH] = ACTIONS(2861), - [anon_sym_LT_LT] = ACTIONS(2861), - [anon_sym_GT_GT] = ACTIONS(2861), - [anon_sym_GT_GT_GT] = ACTIONS(2861), - [anon_sym_AMP_CARET] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [sym_none] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_nil] = ACTIONS(2861), - [anon_sym_QMARK_DOT] = ACTIONS(2861), - [anon_sym_POUND_LBRACK] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_DOLLARif] = ACTIONS(2861), - [anon_sym_DOLLARelse] = ACTIONS(3624), - [anon_sym_is] = ACTIONS(2861), - [anon_sym_BANGis] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_BANGin] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_select] = ACTIONS(2861), - [anon_sym_lock] = ACTIONS(2861), - [anon_sym_rlock] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_sql] = ACTIONS(2861), - [sym_int_literal] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(2861), - [sym_rune_literal] = ACTIONS(2861), - [sym_pseudo_compile_time_identifier] = ACTIONS(2861), - [anon_sym_shared] = ACTIONS(2861), - [anon_sym_map_LBRACK] = ACTIONS(2861), - [anon_sym_chan] = ACTIONS(2861), - [anon_sym_thread] = ACTIONS(2861), - [anon_sym_atomic] = ACTIONS(2861), - [anon_sym_assert] = ACTIONS(2861), - [anon_sym_defer] = ACTIONS(2861), - [anon_sym_goto] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_DOLLARfor] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_asm] = ACTIONS(2861), - [anon_sym_AT_LBRACK] = ACTIONS(2861), - [sym___double_quote] = ACTIONS(2861), - [sym___single_quote] = ACTIONS(2861), - [sym___c_double_quote] = ACTIONS(2861), - [sym___c_single_quote] = ACTIONS(2861), - [sym___r_double_quote] = ACTIONS(2861), - [sym___r_single_quote] = ACTIONS(2861), + [sym_block_comment] = STATE(1018), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(597), + [anon_sym_spawn] = ACTIONS(597), + [anon_sym_json_DOTdecode] = ACTIONS(595), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [sym_none] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_nil] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_if] = ACTIONS(597), + [anon_sym_DOLLARif] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_match] = ACTIONS(597), + [anon_sym_select] = ACTIONS(597), + [anon_sym_lock] = ACTIONS(597), + [anon_sym_rlock] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_sql] = ACTIONS(597), + [sym_int_literal] = ACTIONS(597), + [sym_float_literal] = ACTIONS(595), + [sym_rune_literal] = ACTIONS(595), + [sym_pseudo_compile_time_identifier] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(597), + [anon_sym_map_LBRACK] = ACTIONS(595), + [anon_sym_chan] = ACTIONS(597), + [anon_sym_thread] = ACTIONS(597), + [anon_sym_atomic] = ACTIONS(597), + [sym___double_quote] = ACTIONS(595), + [sym___single_quote] = ACTIONS(595), + [sym___c_double_quote] = ACTIONS(595), + [sym___c_single_quote] = ACTIONS(595), + [sym___r_double_quote] = ACTIONS(595), + [sym___r_single_quote] = ACTIONS(595), }, [1019] = { [sym_line_comment] = STATE(1019), - [sym_reference_expression] = STATE(4443), - [sym_type_reference_expression] = STATE(1310), - [sym_plain_type] = STATE(1356), - [sym__plain_type_without_special] = STATE(1373), - [sym_anon_struct_type] = STATE(1343), - [sym_multi_return_type] = STATE(1373), - [sym_result_type] = STATE(1373), - [sym_option_type] = STATE(1373), - [sym_qualified_type] = STATE(1310), - [sym_fixed_array_type] = STATE(1343), - [sym_array_type] = STATE(1343), - [sym_pointer_type] = STATE(1343), - [sym_wrong_pointer_type] = STATE(1343), - [sym_map_type] = STATE(1343), - [sym_channel_type] = STATE(1343), - [sym_shared_type] = STATE(1343), - [sym_thread_type] = STATE(1343), - [sym_atomic_type] = STATE(1343), - [sym_generic_type] = STATE(1343), - [sym_function_type] = STATE(1343), - [sym_identifier] = ACTIONS(3590), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3598), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(617), - [anon_sym_LBRACK2] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(617), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(617), - [sym_rune_literal] = ACTIONS(617), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), - [sym___double_quote] = ACTIONS(617), - [sym___single_quote] = ACTIONS(617), - [sym___c_double_quote] = ACTIONS(617), - [sym___c_single_quote] = ACTIONS(617), - [sym___r_double_quote] = ACTIONS(617), - [sym___r_single_quote] = ACTIONS(617), + [sym_block_comment] = STATE(1019), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_go] = ACTIONS(611), + [anon_sym_spawn] = ACTIONS(611), + [anon_sym_json_DOTdecode] = ACTIONS(607), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_TILDE] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [sym_none] = ACTIONS(611), + [sym_true] = ACTIONS(611), + [sym_false] = ACTIONS(611), + [sym_nil] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_if] = ACTIONS(611), + [anon_sym_DOLLARif] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_match] = ACTIONS(611), + [anon_sym_select] = ACTIONS(611), + [anon_sym_lock] = ACTIONS(611), + [anon_sym_rlock] = ACTIONS(611), + [anon_sym_unsafe] = ACTIONS(611), + [anon_sym_sql] = ACTIONS(611), + [sym_int_literal] = ACTIONS(611), + [sym_float_literal] = ACTIONS(607), + [sym_rune_literal] = ACTIONS(607), + [sym_pseudo_compile_time_identifier] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [sym___double_quote] = ACTIONS(607), + [sym___single_quote] = ACTIONS(607), + [sym___c_double_quote] = ACTIONS(607), + [sym___c_single_quote] = ACTIONS(607), + [sym___r_double_quote] = ACTIONS(607), + [sym___r_single_quote] = ACTIONS(607), }, [1020] = { [sym_line_comment] = STATE(1020), - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym___global] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_EQ] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_union] = ACTIONS(3299), - [anon_sym_pub] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3299), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3299), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3299), - [anon_sym_AMP_CARET] = ACTIONS(3299), - [anon_sym_AMP_AMP] = ACTIONS(3299), - [anon_sym_PIPE_PIPE] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3299), - [anon_sym_POUND_LBRACK] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3299), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3299), - [sym_rune_literal] = ACTIONS(3299), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3299), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [anon_sym_assert] = ACTIONS(3299), - [anon_sym_defer] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_DOLLARfor] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_POUND] = ACTIONS(3299), - [anon_sym_asm] = ACTIONS(3299), - [anon_sym_AT_LBRACK] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3299), - [sym___single_quote] = ACTIONS(3299), - [sym___c_double_quote] = ACTIONS(3299), - [sym___c_single_quote] = ACTIONS(3299), - [sym___r_double_quote] = ACTIONS(3299), - [sym___r_single_quote] = ACTIONS(3299), + [sym_block_comment] = STATE(1020), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym___global] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_pub] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [anon_sym_assert] = ACTIONS(3366), + [anon_sym_defer] = ACTIONS(3366), + [anon_sym_goto] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_DOLLARfor] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_asm] = ACTIONS(3366), + [anon_sym_AT_LBRACK] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), }, [1021] = { [sym_line_comment] = STATE(1021), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3442), - [anon_sym_LF] = ACTIONS(3442), - [anon_sym_CR] = ACTIONS(3442), - [anon_sym_CR_LF] = ACTIONS(3442), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3442), - [anon_sym_as] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_COMMA] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym___global] = ACTIONS(3442), - [anon_sym_type] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3442), - [anon_sym_fn] = ACTIONS(3442), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3442), - [anon_sym_PERCENT] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_GT] = ACTIONS(3442), - [anon_sym_EQ_EQ] = ACTIONS(3442), - [anon_sym_BANG_EQ] = ACTIONS(3442), - [anon_sym_LT_EQ] = ACTIONS(3442), - [anon_sym_GT_EQ] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_struct] = ACTIONS(3442), - [anon_sym_union] = ACTIONS(3442), - [anon_sym_pub] = ACTIONS(3442), - [anon_sym_mut] = ACTIONS(3442), - [anon_sym_enum] = ACTIONS(3442), - [anon_sym_interface] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_QMARK] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_go] = ACTIONS(3442), - [anon_sym_spawn] = ACTIONS(3442), - [anon_sym_json_DOTdecode] = ACTIONS(3442), - [anon_sym_LBRACK2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_LT_DASH] = ACTIONS(3442), - [anon_sym_LT_LT] = ACTIONS(3442), - [anon_sym_GT_GT] = ACTIONS(3442), - [anon_sym_GT_GT_GT] = ACTIONS(3442), - [anon_sym_AMP_CARET] = ACTIONS(3442), - [anon_sym_AMP_AMP] = ACTIONS(3442), - [anon_sym_PIPE_PIPE] = ACTIONS(3442), - [anon_sym_or] = ACTIONS(3442), - [sym_none] = ACTIONS(3442), - [sym_true] = ACTIONS(3442), - [sym_false] = ACTIONS(3442), - [sym_nil] = ACTIONS(3442), - [anon_sym_QMARK_DOT] = ACTIONS(3442), - [anon_sym_POUND_LBRACK] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3442), - [anon_sym_DOLLARif] = ACTIONS(3442), - [anon_sym_is] = ACTIONS(3442), - [anon_sym_BANGis] = ACTIONS(3442), - [anon_sym_in] = ACTIONS(3442), - [anon_sym_BANGin] = ACTIONS(3442), - [anon_sym_match] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_lock] = ACTIONS(3442), - [anon_sym_rlock] = ACTIONS(3442), - [anon_sym_unsafe] = ACTIONS(3442), - [anon_sym_sql] = ACTIONS(3442), - [sym_int_literal] = ACTIONS(3442), - [sym_float_literal] = ACTIONS(3442), - [sym_rune_literal] = ACTIONS(3442), - [sym_pseudo_compile_time_identifier] = ACTIONS(3442), - [anon_sym_shared] = ACTIONS(3442), - [anon_sym_map_LBRACK] = ACTIONS(3442), - [anon_sym_chan] = ACTIONS(3442), - [anon_sym_thread] = ACTIONS(3442), - [anon_sym_atomic] = ACTIONS(3442), - [anon_sym_assert] = ACTIONS(3442), - [anon_sym_defer] = ACTIONS(3442), - [anon_sym_goto] = ACTIONS(3442), - [anon_sym_break] = ACTIONS(3442), - [anon_sym_continue] = ACTIONS(3442), - [anon_sym_return] = ACTIONS(3442), - [anon_sym_DOLLARfor] = ACTIONS(3442), - [anon_sym_for] = ACTIONS(3442), - [anon_sym_POUND] = ACTIONS(3442), - [anon_sym_asm] = ACTIONS(3442), - [anon_sym_AT_LBRACK] = ACTIONS(3442), - [sym___double_quote] = ACTIONS(3442), - [sym___single_quote] = ACTIONS(3442), - [sym___c_double_quote] = ACTIONS(3442), - [sym___c_single_quote] = ACTIONS(3442), - [sym___r_double_quote] = ACTIONS(3442), - [sym___r_single_quote] = ACTIONS(3442), + [sym_block_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LF] = ACTIONS(3334), + [anon_sym_CR] = ACTIONS(3334), + [anon_sym_CR_LF] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_as] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym___global] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_pub] = ACTIONS(3334), + [anon_sym_mut] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_go] = ACTIONS(3334), + [anon_sym_spawn] = ACTIONS(3334), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_LBRACK2] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [sym_none] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_nil] = ACTIONS(3334), + [anon_sym_QMARK_DOT] = ACTIONS(3334), + [anon_sym_POUND_LBRACK] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_DOLLARif] = ACTIONS(3334), + [anon_sym_is] = ACTIONS(3334), + [anon_sym_BANGis] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_BANGin] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3334), + [anon_sym_select] = ACTIONS(3334), + [anon_sym_lock] = ACTIONS(3334), + [anon_sym_rlock] = ACTIONS(3334), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3334), + [sym_int_literal] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_shared] = ACTIONS(3334), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3334), + [anon_sym_thread] = ACTIONS(3334), + [anon_sym_atomic] = ACTIONS(3334), + [anon_sym_assert] = ACTIONS(3334), + [anon_sym_defer] = ACTIONS(3334), + [anon_sym_goto] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_DOLLARfor] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_asm] = ACTIONS(3334), + [anon_sym_AT_LBRACK] = ACTIONS(3334), + [sym___double_quote] = ACTIONS(3334), + [sym___single_quote] = ACTIONS(3334), + [sym___c_double_quote] = ACTIONS(3334), + [sym___c_single_quote] = ACTIONS(3334), + [sym___r_double_quote] = ACTIONS(3334), + [sym___r_single_quote] = ACTIONS(3334), }, [1022] = { [sym_line_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_union] = ACTIONS(2970), - [anon_sym_pub] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [sym_pseudo_compile_time_identifier] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [anon_sym_assert] = ACTIONS(2970), - [anon_sym_defer] = ACTIONS(2970), - [anon_sym_goto] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_DOLLARfor] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(2970), - [anon_sym_asm] = ACTIONS(2970), - [anon_sym_AT_LBRACK] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), + [sym_block_comment] = STATE(1022), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym___global] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_union] = ACTIONS(3194), + [anon_sym_pub] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [sym_pseudo_compile_time_identifier] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [anon_sym_assert] = ACTIONS(3194), + [anon_sym_defer] = ACTIONS(3194), + [anon_sym_goto] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_DOLLARfor] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_POUND] = ACTIONS(3194), + [anon_sym_asm] = ACTIONS(3194), + [anon_sym_AT_LBRACK] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), }, [1023] = { [sym_line_comment] = STATE(1023), - [ts_builtin_sym_end] = ACTIONS(2973), - [sym_identifier] = ACTIONS(2976), - [anon_sym_LF] = ACTIONS(2976), - [anon_sym_CR] = ACTIONS(2976), - [anon_sym_CR_LF] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_const] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym___global] = ACTIONS(2976), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2976), - [anon_sym_union] = ACTIONS(2976), - [anon_sym_pub] = ACTIONS(2976), - [anon_sym_mut] = ACTIONS(2976), - [anon_sym_enum] = ACTIONS(2976), - [anon_sym_interface] = ACTIONS(2976), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(2976), - [anon_sym_spawn] = ACTIONS(2976), - [anon_sym_json_DOTdecode] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(2976), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_nil] = ACTIONS(2976), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_DOLLARif] = ACTIONS(2976), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_select] = ACTIONS(2976), - [anon_sym_lock] = ACTIONS(2976), - [anon_sym_rlock] = ACTIONS(2976), - [anon_sym_unsafe] = ACTIONS(2976), - [anon_sym_sql] = ACTIONS(2976), - [sym_int_literal] = ACTIONS(2976), - [sym_float_literal] = ACTIONS(2976), - [sym_rune_literal] = ACTIONS(2976), - [sym_pseudo_compile_time_identifier] = ACTIONS(2976), - [anon_sym_shared] = ACTIONS(2976), - [anon_sym_map_LBRACK] = ACTIONS(2976), - [anon_sym_chan] = ACTIONS(2976), - [anon_sym_thread] = ACTIONS(2976), - [anon_sym_atomic] = ACTIONS(2976), - [anon_sym_assert] = ACTIONS(2976), - [anon_sym_defer] = ACTIONS(2976), - [anon_sym_goto] = ACTIONS(2976), - [anon_sym_break] = ACTIONS(2976), - [anon_sym_continue] = ACTIONS(2976), - [anon_sym_return] = ACTIONS(2976), - [anon_sym_DOLLARfor] = ACTIONS(2976), - [anon_sym_for] = ACTIONS(2976), - [anon_sym_POUND] = ACTIONS(2976), - [anon_sym_asm] = ACTIONS(2976), - [anon_sym_AT_LBRACK] = ACTIONS(2976), - [sym___double_quote] = ACTIONS(2976), - [sym___single_quote] = ACTIONS(2976), - [sym___c_double_quote] = ACTIONS(2976), - [sym___c_single_quote] = ACTIONS(2976), - [sym___r_double_quote] = ACTIONS(2976), - [sym___r_single_quote] = ACTIONS(2976), + [sym_block_comment] = STATE(1023), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym___global] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_union] = ACTIONS(3246), + [anon_sym_pub] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [anon_sym_assert] = ACTIONS(3246), + [anon_sym_defer] = ACTIONS(3246), + [anon_sym_goto] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_DOLLARfor] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_POUND] = ACTIONS(3246), + [anon_sym_asm] = ACTIONS(3246), + [anon_sym_AT_LBRACK] = ACTIONS(3246), + [sym___double_quote] = ACTIONS(3246), + [sym___single_quote] = ACTIONS(3246), + [sym___c_double_quote] = ACTIONS(3246), + [sym___c_single_quote] = ACTIONS(3246), + [sym___r_double_quote] = ACTIONS(3246), + [sym___r_single_quote] = ACTIONS(3246), }, [1024] = { [sym_line_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym___global] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_union] = ACTIONS(3311), - [anon_sym_pub] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [anon_sym_assert] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_DOLLARfor] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_asm] = ACTIONS(3311), - [anon_sym_AT_LBRACK] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), + [sym_block_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3162), + [anon_sym_LF] = ACTIONS(3162), + [anon_sym_CR] = ACTIONS(3162), + [anon_sym_CR_LF] = ACTIONS(3162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym___global] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_union] = ACTIONS(3162), + [anon_sym_pub] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3162), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + [sym_rune_literal] = ACTIONS(3162), + [sym_pseudo_compile_time_identifier] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3162), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [anon_sym_assert] = ACTIONS(3162), + [anon_sym_defer] = ACTIONS(3162), + [anon_sym_goto] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_DOLLARfor] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_POUND] = ACTIONS(3162), + [anon_sym_asm] = ACTIONS(3162), + [anon_sym_AT_LBRACK] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3162), + [sym___single_quote] = ACTIONS(3162), + [sym___c_double_quote] = ACTIONS(3162), + [sym___c_single_quote] = ACTIONS(3162), + [sym___r_double_quote] = ACTIONS(3162), + [sym___r_single_quote] = ACTIONS(3162), }, [1025] = { [sym_line_comment] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym___global] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_union] = ACTIONS(3267), - [anon_sym_pub] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [anon_sym_assert] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_goto] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_DOLLARfor] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_asm] = ACTIONS(3267), - [anon_sym_AT_LBRACK] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), + [sym_block_comment] = STATE(1025), + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_CR] = ACTIONS(3158), + [anon_sym_CR_LF] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym___global] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_fn] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3158), + [anon_sym_pub] = ACTIONS(3158), + [anon_sym_mut] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_go] = ACTIONS(3158), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(3158), + [anon_sym_LBRACK2] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_CARET] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [sym_none] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_nil] = ACTIONS(3158), + [anon_sym_QMARK_DOT] = ACTIONS(3158), + [anon_sym_POUND_LBRACK] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_DOLLARif] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_BANGis] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_BANGin] = ACTIONS(3158), + [anon_sym_match] = ACTIONS(3158), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3158), + [anon_sym_rlock] = ACTIONS(3158), + [anon_sym_unsafe] = ACTIONS(3158), + [anon_sym_sql] = ACTIONS(3158), + [sym_int_literal] = ACTIONS(3158), + [sym_float_literal] = ACTIONS(3158), + [sym_rune_literal] = ACTIONS(3158), + [sym_pseudo_compile_time_identifier] = ACTIONS(3158), + [anon_sym_shared] = ACTIONS(3158), + [anon_sym_map_LBRACK] = ACTIONS(3158), + [anon_sym_chan] = ACTIONS(3158), + [anon_sym_thread] = ACTIONS(3158), + [anon_sym_atomic] = ACTIONS(3158), + [anon_sym_assert] = ACTIONS(3158), + [anon_sym_defer] = ACTIONS(3158), + [anon_sym_goto] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_DOLLARfor] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_POUND] = ACTIONS(3158), + [anon_sym_asm] = ACTIONS(3158), + [anon_sym_AT_LBRACK] = ACTIONS(3158), + [sym___double_quote] = ACTIONS(3158), + [sym___single_quote] = ACTIONS(3158), + [sym___c_double_quote] = ACTIONS(3158), + [sym___c_single_quote] = ACTIONS(3158), + [sym___r_double_quote] = ACTIONS(3158), + [sym___r_single_quote] = ACTIONS(3158), }, [1026] = { [sym_line_comment] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [sym_block_comment] = STATE(1026), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym___global] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_pub] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym_AT_LBRACK] = ACTIONS(2981), + [sym___double_quote] = ACTIONS(2981), + [sym___single_quote] = ACTIONS(2981), + [sym___c_double_quote] = ACTIONS(2981), + [sym___c_single_quote] = ACTIONS(2981), + [sym___r_double_quote] = ACTIONS(2981), + [sym___r_single_quote] = ACTIONS(2981), }, [1027] = { [sym_line_comment] = STATE(1027), - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym___global] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_union] = ACTIONS(3275), - [anon_sym_pub] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [anon_sym_assert] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_goto] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_DOLLARfor] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_asm] = ACTIONS(3275), - [anon_sym_AT_LBRACK] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), + [sym_block_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym___global] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_defer] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_DOLLARfor] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym_AT_LBRACK] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [1028] = { [sym_line_comment] = STATE(1028), - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym___global] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3295), - [anon_sym_pub] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_DOLLARfor] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3295), - [anon_sym_asm] = ACTIONS(3295), - [anon_sym_AT_LBRACK] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [sym_block_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LF] = ACTIONS(3150), + [anon_sym_CR] = ACTIONS(3150), + [anon_sym_CR_LF] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3150), + [anon_sym_as] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym___global] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PERCENT] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_EQ_EQ] = ACTIONS(3150), + [anon_sym_BANG_EQ] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_pub] = ACTIONS(3150), + [anon_sym_mut] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_QMARK] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3150), + [anon_sym_json_DOTdecode] = ACTIONS(3150), + [anon_sym_LBRACK2] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_LT_DASH] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3150), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3150), + [anon_sym_AMP_CARET] = ACTIONS(3150), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_PIPE_PIPE] = ACTIONS(3150), + [anon_sym_or] = ACTIONS(3150), + [sym_none] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_nil] = ACTIONS(3150), + [anon_sym_QMARK_DOT] = ACTIONS(3150), + [anon_sym_POUND_LBRACK] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_DOLLARif] = ACTIONS(3150), + [anon_sym_is] = ACTIONS(3150), + [anon_sym_BANGis] = ACTIONS(3150), + [anon_sym_in] = ACTIONS(3150), + [anon_sym_BANGin] = ACTIONS(3150), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_rlock] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_sql] = ACTIONS(3150), + [sym_int_literal] = ACTIONS(3150), + [sym_float_literal] = ACTIONS(3150), + [sym_rune_literal] = ACTIONS(3150), + [sym_pseudo_compile_time_identifier] = ACTIONS(3150), + [anon_sym_shared] = ACTIONS(3150), + [anon_sym_map_LBRACK] = ACTIONS(3150), + [anon_sym_chan] = ACTIONS(3150), + [anon_sym_thread] = ACTIONS(3150), + [anon_sym_atomic] = ACTIONS(3150), + [anon_sym_assert] = ACTIONS(3150), + [anon_sym_defer] = ACTIONS(3150), + [anon_sym_goto] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_DOLLARfor] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_POUND] = ACTIONS(3150), + [anon_sym_asm] = ACTIONS(3150), + [anon_sym_AT_LBRACK] = ACTIONS(3150), + [sym___double_quote] = ACTIONS(3150), + [sym___single_quote] = ACTIONS(3150), + [sym___c_double_quote] = ACTIONS(3150), + [sym___c_single_quote] = ACTIONS(3150), + [sym___r_double_quote] = ACTIONS(3150), + [sym___r_single_quote] = ACTIONS(3150), }, [1029] = { [sym_line_comment] = STATE(1029), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym___global] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_interface] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [anon_sym_assert] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_DOLLARfor] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym_AT_LBRACK] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym_block_comment] = STATE(1029), + [ts_builtin_sym_end] = ACTIONS(3026), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3029), + [anon_sym_type] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_union] = ACTIONS(3029), + [anon_sym_pub] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + [anon_sym_assert] = ACTIONS(3029), + [anon_sym_defer] = ACTIONS(3029), + [anon_sym_goto] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_DOLLARfor] = ACTIONS(3029), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_asm] = ACTIONS(3029), + [anon_sym_AT_LBRACK] = ACTIONS(3029), + [sym___double_quote] = ACTIONS(3029), + [sym___single_quote] = ACTIONS(3029), + [sym___c_double_quote] = ACTIONS(3029), + [sym___c_single_quote] = ACTIONS(3029), + [sym___r_double_quote] = ACTIONS(3029), + [sym___r_single_quote] = ACTIONS(3029), }, [1030] = { [sym_line_comment] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), + [sym_block_comment] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3294), + [anon_sym_LF] = ACTIONS(3294), + [anon_sym_CR] = ACTIONS(3294), + [anon_sym_CR_LF] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym___global] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_PIPE] = ACTIONS(3294), + [anon_sym_fn] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_GT] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_LT_EQ] = ACTIONS(3294), + [anon_sym_GT_EQ] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_union] = ACTIONS(3294), + [anon_sym_pub] = ACTIONS(3294), + [anon_sym_mut] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [anon_sym_QMARK] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3294), + [anon_sym_json_DOTdecode] = ACTIONS(3294), + [anon_sym_LBRACK2] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_CARET] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_LT_DASH] = ACTIONS(3294), + [anon_sym_LT_LT] = ACTIONS(3294), + [anon_sym_GT_GT] = ACTIONS(3294), + [anon_sym_GT_GT_GT] = ACTIONS(3294), + [anon_sym_AMP_CARET] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_PIPE_PIPE] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3294), + [sym_none] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_nil] = ACTIONS(3294), + [anon_sym_QMARK_DOT] = ACTIONS(3294), + [anon_sym_POUND_LBRACK] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_DOLLARif] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3294), + [anon_sym_BANGis] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3294), + [anon_sym_BANGin] = ACTIONS(3294), + [anon_sym_match] = ACTIONS(3294), + [anon_sym_select] = ACTIONS(3294), + [anon_sym_lock] = ACTIONS(3294), + [anon_sym_rlock] = ACTIONS(3294), + [anon_sym_unsafe] = ACTIONS(3294), + [anon_sym_sql] = ACTIONS(3294), + [sym_int_literal] = ACTIONS(3294), + [sym_float_literal] = ACTIONS(3294), + [sym_rune_literal] = ACTIONS(3294), + [sym_pseudo_compile_time_identifier] = ACTIONS(3294), + [anon_sym_shared] = ACTIONS(3294), + [anon_sym_map_LBRACK] = ACTIONS(3294), + [anon_sym_chan] = ACTIONS(3294), + [anon_sym_thread] = ACTIONS(3294), + [anon_sym_atomic] = ACTIONS(3294), + [anon_sym_assert] = ACTIONS(3294), + [anon_sym_defer] = ACTIONS(3294), + [anon_sym_goto] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_DOLLARfor] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_POUND] = ACTIONS(3294), + [anon_sym_asm] = ACTIONS(3294), + [anon_sym_AT_LBRACK] = ACTIONS(3294), + [sym___double_quote] = ACTIONS(3294), + [sym___single_quote] = ACTIONS(3294), + [sym___c_double_quote] = ACTIONS(3294), + [sym___c_single_quote] = ACTIONS(3294), + [sym___r_double_quote] = ACTIONS(3294), + [sym___r_single_quote] = ACTIONS(3294), }, [1031] = { [sym_line_comment] = STATE(1031), - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym___global] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_pub] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_defer] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_DOLLARfor] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym_AT_LBRACK] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1031), + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LF] = ACTIONS(3302), + [anon_sym_CR] = ACTIONS(3302), + [anon_sym_CR_LF] = ACTIONS(3302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym___global] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_fn] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3302), + [anon_sym_BANG_EQ] = ACTIONS(3302), + [anon_sym_LT_EQ] = ACTIONS(3302), + [anon_sym_GT_EQ] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_union] = ACTIONS(3302), + [anon_sym_pub] = ACTIONS(3302), + [anon_sym_mut] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [anon_sym_QMARK] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_go] = ACTIONS(3302), + [anon_sym_spawn] = ACTIONS(3302), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3302), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3302), + [anon_sym_GT_GT_GT] = ACTIONS(3302), + [anon_sym_AMP_CARET] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_PIPE_PIPE] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3302), + [sym_none] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_nil] = ACTIONS(3302), + [anon_sym_QMARK_DOT] = ACTIONS(3302), + [anon_sym_POUND_LBRACK] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_DOLLARif] = ACTIONS(3302), + [anon_sym_is] = ACTIONS(3302), + [anon_sym_BANGis] = ACTIONS(3302), + [anon_sym_in] = ACTIONS(3302), + [anon_sym_BANGin] = ACTIONS(3302), + [anon_sym_match] = ACTIONS(3302), + [anon_sym_select] = ACTIONS(3302), + [anon_sym_lock] = ACTIONS(3302), + [anon_sym_rlock] = ACTIONS(3302), + [anon_sym_unsafe] = ACTIONS(3302), + [anon_sym_sql] = ACTIONS(3302), + [sym_int_literal] = ACTIONS(3302), + [sym_float_literal] = ACTIONS(3302), + [sym_rune_literal] = ACTIONS(3302), + [sym_pseudo_compile_time_identifier] = ACTIONS(3302), + [anon_sym_shared] = ACTIONS(3302), + [anon_sym_map_LBRACK] = ACTIONS(3302), + [anon_sym_chan] = ACTIONS(3302), + [anon_sym_thread] = ACTIONS(3302), + [anon_sym_atomic] = ACTIONS(3302), + [anon_sym_assert] = ACTIONS(3302), + [anon_sym_defer] = ACTIONS(3302), + [anon_sym_goto] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_DOLLARfor] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_POUND] = ACTIONS(3302), + [anon_sym_asm] = ACTIONS(3302), + [anon_sym_AT_LBRACK] = ACTIONS(3302), + [sym___double_quote] = ACTIONS(3302), + [sym___single_quote] = ACTIONS(3302), + [sym___c_double_quote] = ACTIONS(3302), + [sym___c_single_quote] = ACTIONS(3302), + [sym___r_double_quote] = ACTIONS(3302), + [sym___r_single_quote] = ACTIONS(3302), }, [1032] = { [sym_line_comment] = STATE(1032), - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), + [sym_block_comment] = STATE(1032), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LF] = ACTIONS(3306), + [anon_sym_CR] = ACTIONS(3306), + [anon_sym_CR_LF] = ACTIONS(3306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym___global] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_fn] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_LT_EQ] = ACTIONS(3306), + [anon_sym_GT_EQ] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_union] = ACTIONS(3306), + [anon_sym_pub] = ACTIONS(3306), + [anon_sym_mut] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_go] = ACTIONS(3306), + [anon_sym_spawn] = ACTIONS(3306), + [anon_sym_json_DOTdecode] = ACTIONS(3306), + [anon_sym_LBRACK2] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_CARET] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_LT_LT] = ACTIONS(3306), + [anon_sym_GT_GT] = ACTIONS(3306), + [anon_sym_GT_GT_GT] = ACTIONS(3306), + [anon_sym_AMP_CARET] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_QMARK_DOT] = ACTIONS(3306), + [anon_sym_POUND_LBRACK] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_DOLLARif] = ACTIONS(3306), + [anon_sym_is] = ACTIONS(3306), + [anon_sym_BANGis] = ACTIONS(3306), + [anon_sym_in] = ACTIONS(3306), + [anon_sym_BANGin] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_select] = ACTIONS(3306), + [anon_sym_lock] = ACTIONS(3306), + [anon_sym_rlock] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(3306), + [anon_sym_sql] = ACTIONS(3306), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3306), + [sym_rune_literal] = ACTIONS(3306), + [sym_pseudo_compile_time_identifier] = ACTIONS(3306), + [anon_sym_shared] = ACTIONS(3306), + [anon_sym_map_LBRACK] = ACTIONS(3306), + [anon_sym_chan] = ACTIONS(3306), + [anon_sym_thread] = ACTIONS(3306), + [anon_sym_atomic] = ACTIONS(3306), + [anon_sym_assert] = ACTIONS(3306), + [anon_sym_defer] = ACTIONS(3306), + [anon_sym_goto] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_DOLLARfor] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_POUND] = ACTIONS(3306), + [anon_sym_asm] = ACTIONS(3306), + [anon_sym_AT_LBRACK] = ACTIONS(3306), + [sym___double_quote] = ACTIONS(3306), + [sym___single_quote] = ACTIONS(3306), + [sym___c_double_quote] = ACTIONS(3306), + [sym___c_single_quote] = ACTIONS(3306), + [sym___r_double_quote] = ACTIONS(3306), + [sym___r_single_quote] = ACTIONS(3306), }, [1033] = { [sym_line_comment] = STATE(1033), - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [sym_block_comment] = STATE(1033), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3310), + [anon_sym_LF] = ACTIONS(3310), + [anon_sym_CR] = ACTIONS(3310), + [anon_sym_CR_LF] = ACTIONS(3310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym___global] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_fn] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_LT_EQ] = ACTIONS(3310), + [anon_sym_GT_EQ] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_union] = ACTIONS(3310), + [anon_sym_pub] = ACTIONS(3310), + [anon_sym_mut] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_QMARK] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3310), + [anon_sym_json_DOTdecode] = ACTIONS(3310), + [anon_sym_LBRACK2] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_CARET] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_LT_DASH] = ACTIONS(3310), + [anon_sym_LT_LT] = ACTIONS(3310), + [anon_sym_GT_GT] = ACTIONS(3310), + [anon_sym_GT_GT_GT] = ACTIONS(3310), + [anon_sym_AMP_CARET] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_PIPE_PIPE] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3310), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_QMARK_DOT] = ACTIONS(3310), + [anon_sym_POUND_LBRACK] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_BANGin] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3310), + [anon_sym_select] = ACTIONS(3310), + [anon_sym_lock] = ACTIONS(3310), + [anon_sym_rlock] = ACTIONS(3310), + [anon_sym_unsafe] = ACTIONS(3310), + [anon_sym_sql] = ACTIONS(3310), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3310), + [sym_rune_literal] = ACTIONS(3310), + [sym_pseudo_compile_time_identifier] = ACTIONS(3310), + [anon_sym_shared] = ACTIONS(3310), + [anon_sym_map_LBRACK] = ACTIONS(3310), + [anon_sym_chan] = ACTIONS(3310), + [anon_sym_thread] = ACTIONS(3310), + [anon_sym_atomic] = ACTIONS(3310), + [anon_sym_assert] = ACTIONS(3310), + [anon_sym_defer] = ACTIONS(3310), + [anon_sym_goto] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_DOLLARfor] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_POUND] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(3310), + [anon_sym_AT_LBRACK] = ACTIONS(3310), + [sym___double_quote] = ACTIONS(3310), + [sym___single_quote] = ACTIONS(3310), + [sym___c_double_quote] = ACTIONS(3310), + [sym___c_single_quote] = ACTIONS(3310), + [sym___r_double_quote] = ACTIONS(3310), + [sym___r_single_quote] = ACTIONS(3310), }, [1034] = { [sym_line_comment] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym___global] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_pub] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_DOLLARfor] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3327), - [anon_sym_asm] = ACTIONS(3327), - [anon_sym_AT_LBRACK] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), + [sym_block_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1035] = { [sym_line_comment] = STATE(1035), - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym___global] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_union] = ACTIONS(3323), - [anon_sym_pub] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_DOLLARfor] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_POUND] = ACTIONS(3323), - [anon_sym_asm] = ACTIONS(3323), - [anon_sym_AT_LBRACK] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), + [sym_block_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), }, [1036] = { [sym_line_comment] = STATE(1036), - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [sym_pseudo_compile_time_identifier] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), + [sym_block_comment] = STATE(1036), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LF] = ACTIONS(2935), + [anon_sym_CR] = ACTIONS(2935), + [anon_sym_CR_LF] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym___global] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [anon_sym_pub] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_interface] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + [anon_sym_assert] = ACTIONS(2935), + [anon_sym_defer] = ACTIONS(2935), + [anon_sym_goto] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_DOLLARfor] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_asm] = ACTIONS(2935), + [anon_sym_AT_LBRACK] = ACTIONS(2935), + [sym___double_quote] = ACTIONS(2935), + [sym___single_quote] = ACTIONS(2935), + [sym___c_double_quote] = ACTIONS(2935), + [sym___c_single_quote] = ACTIONS(2935), + [sym___r_double_quote] = ACTIONS(2935), + [sym___r_single_quote] = ACTIONS(2935), }, [1037] = { [sym_line_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym___global] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_pub] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3303), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3303), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3303), - [anon_sym_AMP_CARET] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3303), - [anon_sym_POUND_LBRACK] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3303), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3303), - [sym_rune_literal] = ACTIONS(3303), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3303), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [anon_sym_assert] = ACTIONS(3303), - [anon_sym_defer] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_DOLLARfor] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3303), - [anon_sym_AT_LBRACK] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3303), - [sym___single_quote] = ACTIONS(3303), - [sym___c_double_quote] = ACTIONS(3303), - [sym___c_single_quote] = ACTIONS(3303), - [sym___r_double_quote] = ACTIONS(3303), - [sym___r_single_quote] = ACTIONS(3303), + [sym_block_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LF] = ACTIONS(2931), + [anon_sym_CR] = ACTIONS(2931), + [anon_sym_CR_LF] = ACTIONS(2931), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2931), + [anon_sym_as] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_COMMA] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym___global] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_pub] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_interface] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_QMARK] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_go] = ACTIONS(2931), + [anon_sym_spawn] = ACTIONS(2931), + [anon_sym_json_DOTdecode] = ACTIONS(2931), + [anon_sym_LBRACK2] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2931), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2931), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_or] = ACTIONS(2931), + [sym_none] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_nil] = ACTIONS(2931), + [anon_sym_QMARK_DOT] = ACTIONS(2931), + [anon_sym_POUND_LBRACK] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_DOLLARif] = ACTIONS(2931), + [anon_sym_is] = ACTIONS(2931), + [anon_sym_BANGis] = ACTIONS(2931), + [anon_sym_in] = ACTIONS(2931), + [anon_sym_BANGin] = ACTIONS(2931), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_select] = ACTIONS(2931), + [anon_sym_lock] = ACTIONS(2931), + [anon_sym_rlock] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2931), + [anon_sym_sql] = ACTIONS(2931), + [sym_int_literal] = ACTIONS(2931), + [sym_float_literal] = ACTIONS(2931), + [sym_rune_literal] = ACTIONS(2931), + [sym_pseudo_compile_time_identifier] = ACTIONS(2931), + [anon_sym_shared] = ACTIONS(2931), + [anon_sym_map_LBRACK] = ACTIONS(2931), + [anon_sym_chan] = ACTIONS(2931), + [anon_sym_thread] = ACTIONS(2931), + [anon_sym_atomic] = ACTIONS(2931), + [anon_sym_assert] = ACTIONS(2931), + [anon_sym_defer] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_DOLLARfor] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_asm] = ACTIONS(2931), + [anon_sym_AT_LBRACK] = ACTIONS(2931), + [sym___double_quote] = ACTIONS(2931), + [sym___single_quote] = ACTIONS(2931), + [sym___c_double_quote] = ACTIONS(2931), + [sym___c_single_quote] = ACTIONS(2931), + [sym___r_double_quote] = ACTIONS(2931), + [sym___r_single_quote] = ACTIONS(2931), }, [1038] = { [sym_line_comment] = STATE(1038), - [ts_builtin_sym_end] = ACTIONS(3341), - [sym_identifier] = ACTIONS(3343), - [anon_sym_LF] = ACTIONS(3343), - [anon_sym_CR] = ACTIONS(3343), - [anon_sym_CR_LF] = ACTIONS(3343), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym___global] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_union] = ACTIONS(3343), - [anon_sym_pub] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_DOLLARfor] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_asm] = ACTIONS(3343), - [anon_sym_AT_LBRACK] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [sym_block_comment] = STATE(1038), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LF] = ACTIONS(3326), + [anon_sym_CR] = ACTIONS(3326), + [anon_sym_CR_LF] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_as] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym___global] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_pub] = ACTIONS(3326), + [anon_sym_mut] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_go] = ACTIONS(3326), + [anon_sym_spawn] = ACTIONS(3326), + [anon_sym_json_DOTdecode] = ACTIONS(3326), + [anon_sym_LBRACK2] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [sym_none] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_nil] = ACTIONS(3326), + [anon_sym_QMARK_DOT] = ACTIONS(3326), + [anon_sym_POUND_LBRACK] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_is] = ACTIONS(3326), + [anon_sym_BANGis] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_BANGin] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_select] = ACTIONS(3326), + [anon_sym_lock] = ACTIONS(3326), + [anon_sym_rlock] = ACTIONS(3326), + [anon_sym_unsafe] = ACTIONS(3326), + [anon_sym_sql] = ACTIONS(3326), + [sym_int_literal] = ACTIONS(3326), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [sym_pseudo_compile_time_identifier] = ACTIONS(3326), + [anon_sym_shared] = ACTIONS(3326), + [anon_sym_map_LBRACK] = ACTIONS(3326), + [anon_sym_chan] = ACTIONS(3326), + [anon_sym_thread] = ACTIONS(3326), + [anon_sym_atomic] = ACTIONS(3326), + [anon_sym_assert] = ACTIONS(3326), + [anon_sym_defer] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_DOLLARfor] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_POUND] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym_AT_LBRACK] = ACTIONS(3326), + [sym___double_quote] = ACTIONS(3326), + [sym___single_quote] = ACTIONS(3326), + [sym___c_double_quote] = ACTIONS(3326), + [sym___c_single_quote] = ACTIONS(3326), + [sym___r_double_quote] = ACTIONS(3326), + [sym___r_single_quote] = ACTIONS(3326), }, [1039] = { [sym_line_comment] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3127), - [anon_sym_CR] = ACTIONS(3127), - [anon_sym_CR_LF] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_as] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym___global] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_pub] = ACTIONS(3127), - [anon_sym_mut] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_interface] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3127), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_nil] = ACTIONS(3127), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_DOLLARif] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_rlock] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_sql] = ACTIONS(3127), - [sym_int_literal] = ACTIONS(3127), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [sym_pseudo_compile_time_identifier] = ACTIONS(3127), - [anon_sym_shared] = ACTIONS(3127), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3127), - [anon_sym_thread] = ACTIONS(3127), - [anon_sym_atomic] = ACTIONS(3127), - [anon_sym_assert] = ACTIONS(3127), - [anon_sym_defer] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_DOLLARfor] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym_AT_LBRACK] = ACTIONS(3127), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), + [sym_block_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LF] = ACTIONS(2927), + [anon_sym_CR] = ACTIONS(2927), + [anon_sym_CR_LF] = ACTIONS(2927), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2927), + [anon_sym_as] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym___global] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_pub] = ACTIONS(2927), + [anon_sym_mut] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_interface] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2927), + [anon_sym_json_DOTdecode] = ACTIONS(2927), + [anon_sym_LBRACK2] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_LT_DASH] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2927), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_or] = ACTIONS(2927), + [sym_none] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_nil] = ACTIONS(2927), + [anon_sym_QMARK_DOT] = ACTIONS(2927), + [anon_sym_POUND_LBRACK] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_DOLLARif] = ACTIONS(2927), + [anon_sym_is] = ACTIONS(2927), + [anon_sym_BANGis] = ACTIONS(2927), + [anon_sym_in] = ACTIONS(2927), + [anon_sym_BANGin] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_select] = ACTIONS(2927), + [anon_sym_lock] = ACTIONS(2927), + [anon_sym_rlock] = ACTIONS(2927), + [anon_sym_unsafe] = ACTIONS(2927), + [anon_sym_sql] = ACTIONS(2927), + [sym_int_literal] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2927), + [sym_rune_literal] = ACTIONS(2927), + [sym_pseudo_compile_time_identifier] = ACTIONS(2927), + [anon_sym_shared] = ACTIONS(2927), + [anon_sym_map_LBRACK] = ACTIONS(2927), + [anon_sym_chan] = ACTIONS(2927), + [anon_sym_thread] = ACTIONS(2927), + [anon_sym_atomic] = ACTIONS(2927), + [anon_sym_assert] = ACTIONS(2927), + [anon_sym_defer] = ACTIONS(2927), + [anon_sym_goto] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_DOLLARfor] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_asm] = ACTIONS(2927), + [anon_sym_AT_LBRACK] = ACTIONS(2927), + [sym___double_quote] = ACTIONS(2927), + [sym___single_quote] = ACTIONS(2927), + [sym___c_double_quote] = ACTIONS(2927), + [sym___c_single_quote] = ACTIONS(2927), + [sym___r_double_quote] = ACTIONS(2927), + [sym___r_single_quote] = ACTIONS(2927), }, [1040] = { [sym_line_comment] = STATE(1040), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1040), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LF] = ACTIONS(3330), + [anon_sym_CR] = ACTIONS(3330), + [anon_sym_CR_LF] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_as] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym___global] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3330), + [anon_sym_union] = ACTIONS(3330), + [anon_sym_pub] = ACTIONS(3330), + [anon_sym_mut] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_QMARK] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_go] = ACTIONS(3330), + [anon_sym_spawn] = ACTIONS(3330), + [anon_sym_json_DOTdecode] = ACTIONS(3330), + [anon_sym_LBRACK2] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [sym_none] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_nil] = ACTIONS(3330), + [anon_sym_QMARK_DOT] = ACTIONS(3330), + [anon_sym_POUND_LBRACK] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_DOLLARif] = ACTIONS(3330), + [anon_sym_is] = ACTIONS(3330), + [anon_sym_BANGis] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_BANGin] = ACTIONS(3330), + [anon_sym_match] = ACTIONS(3330), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3330), + [anon_sym_rlock] = ACTIONS(3330), + [anon_sym_unsafe] = ACTIONS(3330), + [anon_sym_sql] = ACTIONS(3330), + [sym_int_literal] = ACTIONS(3330), + [sym_float_literal] = ACTIONS(3330), + [sym_rune_literal] = ACTIONS(3330), + [sym_pseudo_compile_time_identifier] = ACTIONS(3330), + [anon_sym_shared] = ACTIONS(3330), + [anon_sym_map_LBRACK] = ACTIONS(3330), + [anon_sym_chan] = ACTIONS(3330), + [anon_sym_thread] = ACTIONS(3330), + [anon_sym_atomic] = ACTIONS(3330), + [anon_sym_assert] = ACTIONS(3330), + [anon_sym_defer] = ACTIONS(3330), + [anon_sym_goto] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_DOLLARfor] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_POUND] = ACTIONS(3330), + [anon_sym_asm] = ACTIONS(3330), + [anon_sym_AT_LBRACK] = ACTIONS(3330), + [sym___double_quote] = ACTIONS(3330), + [sym___single_quote] = ACTIONS(3330), + [sym___c_double_quote] = ACTIONS(3330), + [sym___c_single_quote] = ACTIONS(3330), + [sym___r_double_quote] = ACTIONS(3330), + [sym___r_single_quote] = ACTIONS(3330), }, [1041] = { [sym_line_comment] = STATE(1041), - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), + [sym_block_comment] = STATE(1041), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_CR] = ACTIONS(3394), + [anon_sym_CR_LF] = ACTIONS(3394), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_as] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_COMMA] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym___global] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_fn] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PERCENT] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_BANG_EQ] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3394), + [anon_sym_union] = ACTIONS(3394), + [anon_sym_pub] = ACTIONS(3394), + [anon_sym_mut] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_QMARK] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_go] = ACTIONS(3394), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(3394), + [anon_sym_LBRACK2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_CARET] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_or] = ACTIONS(3394), + [sym_none] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_nil] = ACTIONS(3394), + [anon_sym_QMARK_DOT] = ACTIONS(3394), + [anon_sym_POUND_LBRACK] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_DOLLARif] = ACTIONS(3394), + [anon_sym_is] = ACTIONS(3394), + [anon_sym_BANGis] = ACTIONS(3394), + [anon_sym_in] = ACTIONS(3394), + [anon_sym_BANGin] = ACTIONS(3394), + [anon_sym_match] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_rlock] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_sql] = ACTIONS(3394), + [sym_int_literal] = ACTIONS(3394), + [sym_float_literal] = ACTIONS(3394), + [sym_rune_literal] = ACTIONS(3394), + [sym_pseudo_compile_time_identifier] = ACTIONS(3394), + [anon_sym_shared] = ACTIONS(3394), + [anon_sym_map_LBRACK] = ACTIONS(3394), + [anon_sym_chan] = ACTIONS(3394), + [anon_sym_thread] = ACTIONS(3394), + [anon_sym_atomic] = ACTIONS(3394), + [anon_sym_assert] = ACTIONS(3394), + [anon_sym_defer] = ACTIONS(3394), + [anon_sym_goto] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_DOLLARfor] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_POUND] = ACTIONS(3394), + [anon_sym_asm] = ACTIONS(3394), + [anon_sym_AT_LBRACK] = ACTIONS(3394), + [sym___double_quote] = ACTIONS(3394), + [sym___single_quote] = ACTIONS(3394), + [sym___c_double_quote] = ACTIONS(3394), + [sym___c_single_quote] = ACTIONS(3394), + [sym___r_double_quote] = ACTIONS(3394), + [sym___r_single_quote] = ACTIONS(3394), }, [1042] = { [sym_line_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_identifier] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_CR] = ACTIONS(3055), - [anon_sym_CR_LF] = ACTIONS(3055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym___global] = ACTIONS(3055), - [anon_sym_type] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_pub] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_interface] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [anon_sym_assert] = ACTIONS(3055), - [anon_sym_defer] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_DOLLARfor] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_POUND] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym_AT_LBRACK] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), + [sym_block_comment] = STATE(1042), + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LF] = ACTIONS(2917), + [anon_sym_CR] = ACTIONS(2917), + [anon_sym_CR_LF] = ACTIONS(2917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(2917), + [anon_sym_const] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym___global] = ACTIONS(2917), + [anon_sym_type] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2917), + [anon_sym_BANG_EQ] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_union] = ACTIONS(2917), + [anon_sym_pub] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_interface] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), + [anon_sym_spawn] = ACTIONS(2917), + [anon_sym_json_DOTdecode] = ACTIONS(2917), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2917), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2917), + [anon_sym_AMP_CARET] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_PIPE_PIPE] = ACTIONS(2917), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2917), + [anon_sym_POUND_LBRACK] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), + [sym_rune_literal] = ACTIONS(2917), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2917), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + [anon_sym_assert] = ACTIONS(2917), + [anon_sym_defer] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_DOLLARfor] = ACTIONS(2917), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_asm] = ACTIONS(2917), + [anon_sym_AT_LBRACK] = ACTIONS(2917), + [sym___double_quote] = ACTIONS(2917), + [sym___single_quote] = ACTIONS(2917), + [sym___c_double_quote] = ACTIONS(2917), + [sym___c_single_quote] = ACTIONS(2917), + [sym___r_double_quote] = ACTIONS(2917), + [sym___r_single_quote] = ACTIONS(2917), }, [1043] = { [sym_line_comment] = STATE(1043), - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym___global] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_pub] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [sym_pseudo_compile_time_identifier] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_DOLLARfor] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_POUND] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym_AT_LBRACK] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), + [sym_block_comment] = STATE(1043), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_CR] = ACTIONS(2913), + [anon_sym_CR_LF] = ACTIONS(2913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2913), + [anon_sym_as] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(2913), + [anon_sym_const] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym___global] = ACTIONS(2913), + [anon_sym_type] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_fn] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PERCENT] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_union] = ACTIONS(2913), + [anon_sym_pub] = ACTIONS(2913), + [anon_sym_mut] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_go] = ACTIONS(2913), + [anon_sym_spawn] = ACTIONS(2913), + [anon_sym_json_DOTdecode] = ACTIONS(2913), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2913), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_CARET] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_or] = ACTIONS(2913), + [sym_none] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_nil] = ACTIONS(2913), + [anon_sym_QMARK_DOT] = ACTIONS(2913), + [anon_sym_POUND_LBRACK] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_DOLLARif] = ACTIONS(2913), + [anon_sym_is] = ACTIONS(2913), + [anon_sym_BANGis] = ACTIONS(2913), + [anon_sym_in] = ACTIONS(2913), + [anon_sym_BANGin] = ACTIONS(2913), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_select] = ACTIONS(2913), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2913), + [anon_sym_sql] = ACTIONS(2913), + [sym_int_literal] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2913), + [sym_rune_literal] = ACTIONS(2913), + [sym_pseudo_compile_time_identifier] = ACTIONS(2913), + [anon_sym_shared] = ACTIONS(2913), + [anon_sym_map_LBRACK] = ACTIONS(2913), + [anon_sym_chan] = ACTIONS(2913), + [anon_sym_thread] = ACTIONS(2913), + [anon_sym_atomic] = ACTIONS(2913), + [anon_sym_assert] = ACTIONS(2913), + [anon_sym_defer] = ACTIONS(2913), + [anon_sym_goto] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_DOLLARfor] = ACTIONS(2913), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2913), + [anon_sym_asm] = ACTIONS(2913), + [anon_sym_AT_LBRACK] = ACTIONS(2913), + [sym___double_quote] = ACTIONS(2913), + [sym___single_quote] = ACTIONS(2913), + [sym___c_double_quote] = ACTIONS(2913), + [sym___c_single_quote] = ACTIONS(2913), + [sym___r_double_quote] = ACTIONS(2913), + [sym___r_single_quote] = ACTIONS(2913), }, [1044] = { [sym_line_comment] = STATE(1044), - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym___global] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3291), - [anon_sym_pub] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3291), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3291), - [anon_sym_AMP_CARET] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3291), - [anon_sym_POUND_LBRACK] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3291), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3291), - [sym_rune_literal] = ACTIONS(3291), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3291), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [anon_sym_assert] = ACTIONS(3291), - [anon_sym_defer] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_DOLLARfor] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_POUND] = ACTIONS(3291), - [anon_sym_asm] = ACTIONS(3291), - [anon_sym_AT_LBRACK] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3291), - [sym___single_quote] = ACTIONS(3291), - [sym___c_double_quote] = ACTIONS(3291), - [sym___c_single_quote] = ACTIONS(3291), - [sym___r_double_quote] = ACTIONS(3291), - [sym___r_single_quote] = ACTIONS(3291), + [sym_block_comment] = STATE(1044), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3398), + [anon_sym_LF] = ACTIONS(3398), + [anon_sym_CR] = ACTIONS(3398), + [anon_sym_CR_LF] = ACTIONS(3398), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_as] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_COMMA] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym___global] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_fn] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PERCENT] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_EQ_EQ] = ACTIONS(3398), + [anon_sym_BANG_EQ] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3398), + [anon_sym_union] = ACTIONS(3398), + [anon_sym_pub] = ACTIONS(3398), + [anon_sym_mut] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_QMARK] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3398), + [anon_sym_spawn] = ACTIONS(3398), + [anon_sym_json_DOTdecode] = ACTIONS(3398), + [anon_sym_LBRACK2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_LT_DASH] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3398), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3398), + [anon_sym_AMP_CARET] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_or] = ACTIONS(3398), + [sym_none] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_nil] = ACTIONS(3398), + [anon_sym_QMARK_DOT] = ACTIONS(3398), + [anon_sym_POUND_LBRACK] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_DOLLARif] = ACTIONS(3398), + [anon_sym_is] = ACTIONS(3398), + [anon_sym_BANGis] = ACTIONS(3398), + [anon_sym_in] = ACTIONS(3398), + [anon_sym_BANGin] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_rlock] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_sql] = ACTIONS(3398), + [sym_int_literal] = ACTIONS(3398), + [sym_float_literal] = ACTIONS(3398), + [sym_rune_literal] = ACTIONS(3398), + [sym_pseudo_compile_time_identifier] = ACTIONS(3398), + [anon_sym_shared] = ACTIONS(3398), + [anon_sym_map_LBRACK] = ACTIONS(3398), + [anon_sym_chan] = ACTIONS(3398), + [anon_sym_thread] = ACTIONS(3398), + [anon_sym_atomic] = ACTIONS(3398), + [anon_sym_assert] = ACTIONS(3398), + [anon_sym_defer] = ACTIONS(3398), + [anon_sym_goto] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_DOLLARfor] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_POUND] = ACTIONS(3398), + [anon_sym_asm] = ACTIONS(3398), + [anon_sym_AT_LBRACK] = ACTIONS(3398), + [sym___double_quote] = ACTIONS(3398), + [sym___single_quote] = ACTIONS(3398), + [sym___c_double_quote] = ACTIONS(3398), + [sym___c_single_quote] = ACTIONS(3398), + [sym___r_double_quote] = ACTIONS(3398), + [sym___r_single_quote] = ACTIONS(3398), }, [1045] = { [sym_line_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3119), - [anon_sym_LF] = ACTIONS(3119), - [anon_sym_CR] = ACTIONS(3119), - [anon_sym_CR_LF] = ACTIONS(3119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_as] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym___global] = ACTIONS(3119), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3119), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3119), - [anon_sym_GT] = ACTIONS(3119), - [anon_sym_EQ_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_pub] = ACTIONS(3119), - [anon_sym_mut] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_go] = ACTIONS(3119), - [anon_sym_spawn] = ACTIONS(3119), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3119), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_GT_GT_GT] = ACTIONS(3119), - [anon_sym_AMP_CARET] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(3119), - [anon_sym_or] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_nil] = ACTIONS(3119), - [anon_sym_QMARK_DOT] = ACTIONS(3119), - [anon_sym_POUND_LBRACK] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_DOLLARif] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_BANGis] = ACTIONS(3119), - [anon_sym_in] = ACTIONS(3119), - [anon_sym_BANGin] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_rlock] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_sql] = ACTIONS(3119), - [sym_int_literal] = ACTIONS(3119), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [sym_pseudo_compile_time_identifier] = ACTIONS(3119), - [anon_sym_shared] = ACTIONS(3119), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3119), - [anon_sym_thread] = ACTIONS(3119), - [anon_sym_atomic] = ACTIONS(3119), - [anon_sym_assert] = ACTIONS(3119), - [anon_sym_defer] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_DOLLARfor] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_POUND] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym_AT_LBRACK] = ACTIONS(3119), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), + [sym_block_comment] = STATE(1045), + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2901), + [anon_sym_LF] = ACTIONS(2901), + [anon_sym_CR] = ACTIONS(2901), + [anon_sym_CR_LF] = ACTIONS(2901), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2901), + [anon_sym_as] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_const] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym___global] = ACTIONS(2901), + [anon_sym_type] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_fn] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PERCENT] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_union] = ACTIONS(2901), + [anon_sym_pub] = ACTIONS(2901), + [anon_sym_mut] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2901), + [anon_sym_spawn] = ACTIONS(2901), + [anon_sym_json_DOTdecode] = ACTIONS(2901), + [anon_sym_LBRACK2] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_LT_DASH] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2901), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2901), + [anon_sym_AMP_CARET] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_PIPE_PIPE] = ACTIONS(2901), + [anon_sym_or] = ACTIONS(2901), + [sym_none] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_nil] = ACTIONS(2901), + [anon_sym_QMARK_DOT] = ACTIONS(2901), + [anon_sym_POUND_LBRACK] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_DOLLARif] = ACTIONS(2901), + [anon_sym_is] = ACTIONS(2901), + [anon_sym_BANGis] = ACTIONS(2901), + [anon_sym_in] = ACTIONS(2901), + [anon_sym_BANGin] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_select] = ACTIONS(2901), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2901), + [anon_sym_sql] = ACTIONS(2901), + [sym_int_literal] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2901), + [sym_rune_literal] = ACTIONS(2901), + [sym_pseudo_compile_time_identifier] = ACTIONS(2901), + [anon_sym_shared] = ACTIONS(2901), + [anon_sym_map_LBRACK] = ACTIONS(2901), + [anon_sym_chan] = ACTIONS(2901), + [anon_sym_thread] = ACTIONS(2901), + [anon_sym_atomic] = ACTIONS(2901), + [anon_sym_assert] = ACTIONS(2901), + [anon_sym_defer] = ACTIONS(2901), + [anon_sym_goto] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_DOLLARfor] = ACTIONS(2901), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2901), + [anon_sym_asm] = ACTIONS(2901), + [anon_sym_AT_LBRACK] = ACTIONS(2901), + [sym___double_quote] = ACTIONS(2901), + [sym___single_quote] = ACTIONS(2901), + [sym___c_double_quote] = ACTIONS(2901), + [sym___c_single_quote] = ACTIONS(2901), + [sym___r_double_quote] = ACTIONS(2901), + [sym___r_single_quote] = ACTIONS(2901), }, [1046] = { [sym_line_comment] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym___global] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_pub] = ACTIONS(3143), - [anon_sym_mut] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3143), - [anon_sym_spawn] = ACTIONS(3143), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_nil] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_DOLLARif] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_rlock] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_sql] = ACTIONS(3143), - [sym_int_literal] = ACTIONS(3143), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [sym_pseudo_compile_time_identifier] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - [anon_sym_assert] = ACTIONS(3143), - [anon_sym_defer] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_DOLLARfor] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym_AT_LBRACK] = ACTIONS(3143), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), + [sym_block_comment] = STATE(1046), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(3406), + [anon_sym_CR] = ACTIONS(3406), + [anon_sym_CR_LF] = ACTIONS(3406), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym___global] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_fn] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PERCENT] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_EQ_EQ] = ACTIONS(3406), + [anon_sym_BANG_EQ] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_pub] = ACTIONS(3406), + [anon_sym_mut] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_QMARK] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_go] = ACTIONS(3406), + [anon_sym_spawn] = ACTIONS(3406), + [anon_sym_json_DOTdecode] = ACTIONS(3406), + [anon_sym_LBRACK2] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_LT_DASH] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3406), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3406), + [anon_sym_AMP_CARET] = ACTIONS(3406), + [anon_sym_AMP_AMP] = ACTIONS(3406), + [anon_sym_PIPE_PIPE] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3406), + [sym_none] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_nil] = ACTIONS(3406), + [anon_sym_QMARK_DOT] = ACTIONS(3406), + [anon_sym_POUND_LBRACK] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_DOLLARif] = ACTIONS(3406), + [anon_sym_is] = ACTIONS(3406), + [anon_sym_BANGis] = ACTIONS(3406), + [anon_sym_in] = ACTIONS(3406), + [anon_sym_BANGin] = ACTIONS(3406), + [anon_sym_match] = ACTIONS(3406), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3406), + [anon_sym_rlock] = ACTIONS(3406), + [anon_sym_unsafe] = ACTIONS(3406), + [anon_sym_sql] = ACTIONS(3406), + [sym_int_literal] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + [sym_rune_literal] = ACTIONS(3406), + [sym_pseudo_compile_time_identifier] = ACTIONS(3406), + [anon_sym_shared] = ACTIONS(3406), + [anon_sym_map_LBRACK] = ACTIONS(3406), + [anon_sym_chan] = ACTIONS(3406), + [anon_sym_thread] = ACTIONS(3406), + [anon_sym_atomic] = ACTIONS(3406), + [anon_sym_assert] = ACTIONS(3406), + [anon_sym_defer] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_DOLLARfor] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_POUND] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym_AT_LBRACK] = ACTIONS(3406), + [sym___double_quote] = ACTIONS(3406), + [sym___single_quote] = ACTIONS(3406), + [sym___c_double_quote] = ACTIONS(3406), + [sym___c_single_quote] = ACTIONS(3406), + [sym___r_double_quote] = ACTIONS(3406), + [sym___r_single_quote] = ACTIONS(3406), }, [1047] = { [sym_line_comment] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym___global] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_pub] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [anon_sym_assert] = ACTIONS(3351), - [anon_sym_defer] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_DOLLARfor] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_POUND] = ACTIONS(3351), - [anon_sym_asm] = ACTIONS(3351), - [anon_sym_AT_LBRACK] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [sym_block_comment] = STATE(1047), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3410), + [anon_sym_CR] = ACTIONS(3410), + [anon_sym_CR_LF] = ACTIONS(3410), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_COMMA] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym___global] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_PERCENT] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_GT] = ACTIONS(3410), + [anon_sym_EQ_EQ] = ACTIONS(3410), + [anon_sym_BANG_EQ] = ACTIONS(3410), + [anon_sym_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_EQ] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_union] = ACTIONS(3410), + [anon_sym_pub] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_QMARK] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3410), + [anon_sym_json_DOTdecode] = ACTIONS(3410), + [anon_sym_LBRACK2] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(3410), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_GT_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_CARET] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_or] = ACTIONS(3410), + [sym_none] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_nil] = ACTIONS(3410), + [anon_sym_QMARK_DOT] = ACTIONS(3410), + [anon_sym_POUND_LBRACK] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_DOLLARif] = ACTIONS(3410), + [anon_sym_is] = ACTIONS(3410), + [anon_sym_BANGis] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3410), + [anon_sym_BANGin] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_select] = ACTIONS(3410), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3410), + [sym_int_literal] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3410), + [sym_rune_literal] = ACTIONS(3410), + [sym_pseudo_compile_time_identifier] = ACTIONS(3410), + [anon_sym_shared] = ACTIONS(3410), + [anon_sym_map_LBRACK] = ACTIONS(3410), + [anon_sym_chan] = ACTIONS(3410), + [anon_sym_thread] = ACTIONS(3410), + [anon_sym_atomic] = ACTIONS(3410), + [anon_sym_assert] = ACTIONS(3410), + [anon_sym_defer] = ACTIONS(3410), + [anon_sym_goto] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_DOLLARfor] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_POUND] = ACTIONS(3410), + [anon_sym_asm] = ACTIONS(3410), + [anon_sym_AT_LBRACK] = ACTIONS(3410), + [sym___double_quote] = ACTIONS(3410), + [sym___single_quote] = ACTIONS(3410), + [sym___c_double_quote] = ACTIONS(3410), + [sym___c_single_quote] = ACTIONS(3410), + [sym___r_double_quote] = ACTIONS(3410), + [sym___r_single_quote] = ACTIONS(3410), }, [1048] = { [sym_line_comment] = STATE(1048), - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [sym_block_comment] = STATE(1048), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_CR] = ACTIONS(2971), + [anon_sym_CR_LF] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym___global] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_interface] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_defer] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_DOLLARfor] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym_AT_LBRACK] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2971), + [sym___single_quote] = ACTIONS(2971), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2971), + [sym___r_double_quote] = ACTIONS(2971), + [sym___r_single_quote] = ACTIONS(2971), }, [1049] = { [sym_line_comment] = STATE(1049), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym___global] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_union] = ACTIONS(3315), - [anon_sym_pub] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [anon_sym_assert] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_DOLLARfor] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_asm] = ACTIONS(3315), - [anon_sym_AT_LBRACK] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [sym_block_comment] = STATE(1049), + [ts_builtin_sym_end] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2943), + [anon_sym_LF] = ACTIONS(2943), + [anon_sym_CR] = ACTIONS(2943), + [anon_sym_CR_LF] = ACTIONS(2943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2943), + [anon_sym_as] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_COMMA] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym___global] = ACTIONS(2943), + [anon_sym_type] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2943), + [anon_sym_fn] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_pub] = ACTIONS(2943), + [anon_sym_mut] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_interface] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_go] = ACTIONS(2943), + [anon_sym_spawn] = ACTIONS(2943), + [anon_sym_json_DOTdecode] = ACTIONS(2943), + [anon_sym_LBRACK2] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2943), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2943), + [anon_sym_GT_GT_GT] = ACTIONS(2943), + [anon_sym_AMP_CARET] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2943), + [anon_sym_or] = ACTIONS(2943), + [sym_none] = ACTIONS(2943), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [sym_nil] = ACTIONS(2943), + [anon_sym_QMARK_DOT] = ACTIONS(2943), + [anon_sym_POUND_LBRACK] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_DOLLARif] = ACTIONS(2943), + [anon_sym_is] = ACTIONS(2943), + [anon_sym_BANGis] = ACTIONS(2943), + [anon_sym_in] = ACTIONS(2943), + [anon_sym_BANGin] = ACTIONS(2943), + [anon_sym_match] = ACTIONS(2943), + [anon_sym_select] = ACTIONS(2943), + [anon_sym_lock] = ACTIONS(2943), + [anon_sym_rlock] = ACTIONS(2943), + [anon_sym_unsafe] = ACTIONS(2943), + [anon_sym_sql] = ACTIONS(2943), + [sym_int_literal] = ACTIONS(2943), + [sym_float_literal] = ACTIONS(2943), + [sym_rune_literal] = ACTIONS(2943), + [sym_pseudo_compile_time_identifier] = ACTIONS(2943), + [anon_sym_shared] = ACTIONS(2943), + [anon_sym_map_LBRACK] = ACTIONS(2943), + [anon_sym_chan] = ACTIONS(2943), + [anon_sym_thread] = ACTIONS(2943), + [anon_sym_atomic] = ACTIONS(2943), + [anon_sym_assert] = ACTIONS(2943), + [anon_sym_defer] = ACTIONS(2943), + [anon_sym_goto] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_DOLLARfor] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_asm] = ACTIONS(2943), + [anon_sym_AT_LBRACK] = ACTIONS(2943), + [sym___double_quote] = ACTIONS(2943), + [sym___single_quote] = ACTIONS(2943), + [sym___c_double_quote] = ACTIONS(2943), + [sym___c_single_quote] = ACTIONS(2943), + [sym___r_double_quote] = ACTIONS(2943), + [sym___r_single_quote] = ACTIONS(2943), }, [1050] = { [sym_line_comment] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym___global] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_union] = ACTIONS(3355), - [anon_sym_pub] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [anon_sym_assert] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_DOLLARfor] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_POUND] = ACTIONS(3355), - [anon_sym_asm] = ACTIONS(3355), - [anon_sym_AT_LBRACK] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), + [sym_block_comment] = STATE(1050), + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_CR] = ACTIONS(2905), + [anon_sym_CR_LF] = ACTIONS(2905), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2905), + [anon_sym_as] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_COMMA] = ACTIONS(2905), + [anon_sym_const] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym___global] = ACTIONS(2905), + [anon_sym_type] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_fn] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_union] = ACTIONS(2905), + [anon_sym_pub] = ACTIONS(2905), + [anon_sym_mut] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_go] = ACTIONS(2905), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(2905), + [anon_sym_LBRACK2] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_CARET] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_or] = ACTIONS(2905), + [sym_none] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_nil] = ACTIONS(2905), + [anon_sym_QMARK_DOT] = ACTIONS(2905), + [anon_sym_POUND_LBRACK] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_DOLLARif] = ACTIONS(2905), + [anon_sym_is] = ACTIONS(2905), + [anon_sym_BANGis] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_BANGin] = ACTIONS(2905), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_select] = ACTIONS(2905), + [anon_sym_lock] = ACTIONS(2905), + [anon_sym_rlock] = ACTIONS(2905), + [anon_sym_unsafe] = ACTIONS(2905), + [anon_sym_sql] = ACTIONS(2905), + [sym_int_literal] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2905), + [sym_rune_literal] = ACTIONS(2905), + [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_shared] = ACTIONS(2905), + [anon_sym_map_LBRACK] = ACTIONS(2905), + [anon_sym_chan] = ACTIONS(2905), + [anon_sym_thread] = ACTIONS(2905), + [anon_sym_atomic] = ACTIONS(2905), + [anon_sym_assert] = ACTIONS(2905), + [anon_sym_defer] = ACTIONS(2905), + [anon_sym_goto] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_DOLLARfor] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2905), + [anon_sym_asm] = ACTIONS(2905), + [anon_sym_AT_LBRACK] = ACTIONS(2905), + [sym___double_quote] = ACTIONS(2905), + [sym___single_quote] = ACTIONS(2905), + [sym___c_double_quote] = ACTIONS(2905), + [sym___c_single_quote] = ACTIONS(2905), + [sym___r_double_quote] = ACTIONS(2905), + [sym___r_single_quote] = ACTIONS(2905), }, [1051] = { [sym_line_comment] = STATE(1051), - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LF] = ACTIONS(3139), - [anon_sym_CR] = ACTIONS(3139), - [anon_sym_CR_LF] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym___global] = ACTIONS(3139), - [anon_sym_type] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_fn] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3139), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_pub] = ACTIONS(3139), - [anon_sym_mut] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_go] = ACTIONS(3139), - [anon_sym_spawn] = ACTIONS(3139), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_nil] = ACTIONS(3139), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_DOLLARif] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_rlock] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_sql] = ACTIONS(3139), - [sym_int_literal] = ACTIONS(3139), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [sym_pseudo_compile_time_identifier] = ACTIONS(3139), - [anon_sym_shared] = ACTIONS(3139), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3139), - [anon_sym_thread] = ACTIONS(3139), - [anon_sym_atomic] = ACTIONS(3139), - [anon_sym_assert] = ACTIONS(3139), - [anon_sym_defer] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_DOLLARfor] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_POUND] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym_AT_LBRACK] = ACTIONS(3139), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [sym_block_comment] = STATE(1051), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2909), + [anon_sym_LF] = ACTIONS(2909), + [anon_sym_CR] = ACTIONS(2909), + [anon_sym_CR_LF] = ACTIONS(2909), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2909), + [anon_sym_as] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_COMMA] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym___global] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_fn] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PERCENT] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_EQ_EQ] = ACTIONS(2909), + [anon_sym_BANG_EQ] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_pub] = ACTIONS(2909), + [anon_sym_mut] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2909), + [anon_sym_json_DOTdecode] = ACTIONS(2909), + [anon_sym_LBRACK2] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2909), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2909), + [anon_sym_AMP_CARET] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_PIPE_PIPE] = ACTIONS(2909), + [anon_sym_or] = ACTIONS(2909), + [sym_none] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_nil] = ACTIONS(2909), + [anon_sym_QMARK_DOT] = ACTIONS(2909), + [anon_sym_POUND_LBRACK] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_DOLLARif] = ACTIONS(2909), + [anon_sym_is] = ACTIONS(2909), + [anon_sym_BANGis] = ACTIONS(2909), + [anon_sym_in] = ACTIONS(2909), + [anon_sym_BANGin] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_select] = ACTIONS(2909), + [anon_sym_lock] = ACTIONS(2909), + [anon_sym_rlock] = ACTIONS(2909), + [anon_sym_unsafe] = ACTIONS(2909), + [anon_sym_sql] = ACTIONS(2909), + [sym_int_literal] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), + [sym_rune_literal] = ACTIONS(2909), + [sym_pseudo_compile_time_identifier] = ACTIONS(2909), + [anon_sym_shared] = ACTIONS(2909), + [anon_sym_map_LBRACK] = ACTIONS(2909), + [anon_sym_chan] = ACTIONS(2909), + [anon_sym_thread] = ACTIONS(2909), + [anon_sym_atomic] = ACTIONS(2909), + [anon_sym_assert] = ACTIONS(2909), + [anon_sym_defer] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_DOLLARfor] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym_AT_LBRACK] = ACTIONS(2909), + [sym___double_quote] = ACTIONS(2909), + [sym___single_quote] = ACTIONS(2909), + [sym___c_double_quote] = ACTIONS(2909), + [sym___c_single_quote] = ACTIONS(2909), + [sym___r_double_quote] = ACTIONS(2909), + [sym___r_single_quote] = ACTIONS(2909), }, [1052] = { [sym_line_comment] = STATE(1052), - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym___global] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_union] = ACTIONS(3363), - [anon_sym_pub] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [anon_sym_assert] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_DOLLARfor] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_asm] = ACTIONS(3363), - [anon_sym_AT_LBRACK] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), + [sym_block_comment] = STATE(1052), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), }, [1053] = { [sym_line_comment] = STATE(1053), - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym___global] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_pub] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [anon_sym_assert] = ACTIONS(3255), - [anon_sym_defer] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_DOLLARfor] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_POUND] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym_AT_LBRACK] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), + [sym_block_comment] = STATE(1053), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym___global] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [anon_sym_assert] = ACTIONS(2867), + [anon_sym_defer] = ACTIONS(2867), + [anon_sym_goto] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_DOLLARfor] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_asm] = ACTIONS(2867), + [anon_sym_AT_LBRACK] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [1054] = { [sym_line_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym___global] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_union] = ACTIONS(3367), - [anon_sym_pub] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_DOLLARfor] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(3367), - [anon_sym_asm] = ACTIONS(3367), - [anon_sym_AT_LBRACK] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), + [sym_block_comment] = STATE(1054), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [sym_pseudo_compile_time_identifier] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), }, [1055] = { [sym_line_comment] = STATE(1055), - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym___global] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_pub] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [anon_sym_assert] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_DOLLARfor] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym_AT_LBRACK] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), + [sym_block_comment] = STATE(1055), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_LF] = ACTIONS(3434), + [anon_sym_CR] = ACTIONS(3434), + [anon_sym_CR_LF] = ACTIONS(3434), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3434), + [anon_sym_as] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_COMMA] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym___global] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_PERCENT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_EQ_EQ] = ACTIONS(3434), + [anon_sym_BANG_EQ] = ACTIONS(3434), + [anon_sym_LT_EQ] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_pub] = ACTIONS(3434), + [anon_sym_mut] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_go] = ACTIONS(3434), + [anon_sym_spawn] = ACTIONS(3434), + [anon_sym_json_DOTdecode] = ACTIONS(3434), + [anon_sym_LBRACK2] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_LT_DASH] = ACTIONS(3434), + [anon_sym_LT_LT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(3434), + [anon_sym_GT_GT_GT] = ACTIONS(3434), + [anon_sym_AMP_CARET] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3434), + [anon_sym_PIPE_PIPE] = ACTIONS(3434), + [anon_sym_or] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_nil] = ACTIONS(3434), + [anon_sym_QMARK_DOT] = ACTIONS(3434), + [anon_sym_POUND_LBRACK] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_DOLLARif] = ACTIONS(3434), + [anon_sym_is] = ACTIONS(3434), + [anon_sym_BANGis] = ACTIONS(3434), + [anon_sym_in] = ACTIONS(3434), + [anon_sym_BANGin] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_lock] = ACTIONS(3434), + [anon_sym_rlock] = ACTIONS(3434), + [anon_sym_unsafe] = ACTIONS(3434), + [anon_sym_sql] = ACTIONS(3434), + [sym_int_literal] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3434), + [sym_rune_literal] = ACTIONS(3434), + [sym_pseudo_compile_time_identifier] = ACTIONS(3434), + [anon_sym_shared] = ACTIONS(3434), + [anon_sym_map_LBRACK] = ACTIONS(3434), + [anon_sym_chan] = ACTIONS(3434), + [anon_sym_thread] = ACTIONS(3434), + [anon_sym_atomic] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_defer] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_DOLLARfor] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym_AT_LBRACK] = ACTIONS(3434), + [sym___double_quote] = ACTIONS(3434), + [sym___single_quote] = ACTIONS(3434), + [sym___c_double_quote] = ACTIONS(3434), + [sym___c_single_quote] = ACTIONS(3434), + [sym___r_double_quote] = ACTIONS(3434), + [sym___r_single_quote] = ACTIONS(3434), }, [1056] = { [sym_line_comment] = STATE(1056), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1056), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2975), + [anon_sym_CR] = ACTIONS(2975), + [anon_sym_CR_LF] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_as] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym___global] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_pub] = ACTIONS(2975), + [anon_sym_mut] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_interface] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_go] = ACTIONS(2975), + [anon_sym_spawn] = ACTIONS(2975), + [anon_sym_json_DOTdecode] = ACTIONS(2975), + [anon_sym_LBRACK2] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_LT_DASH] = ACTIONS(2975), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2975), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_or] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_nil] = ACTIONS(2975), + [anon_sym_QMARK_DOT] = ACTIONS(2975), + [anon_sym_POUND_LBRACK] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_DOLLARif] = ACTIONS(2975), + [anon_sym_is] = ACTIONS(2975), + [anon_sym_BANGis] = ACTIONS(2975), + [anon_sym_in] = ACTIONS(2975), + [anon_sym_BANGin] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_select] = ACTIONS(2975), + [anon_sym_lock] = ACTIONS(2975), + [anon_sym_rlock] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_sql] = ACTIONS(2975), + [sym_int_literal] = ACTIONS(2975), + [sym_float_literal] = ACTIONS(2975), + [sym_rune_literal] = ACTIONS(2975), + [sym_pseudo_compile_time_identifier] = ACTIONS(2975), + [anon_sym_shared] = ACTIONS(2975), + [anon_sym_map_LBRACK] = ACTIONS(2975), + [anon_sym_chan] = ACTIONS(2975), + [anon_sym_thread] = ACTIONS(2975), + [anon_sym_atomic] = ACTIONS(2975), + [anon_sym_assert] = ACTIONS(2975), + [anon_sym_defer] = ACTIONS(2975), + [anon_sym_goto] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_DOLLARfor] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_asm] = ACTIONS(2975), + [anon_sym_AT_LBRACK] = ACTIONS(2975), + [sym___double_quote] = ACTIONS(2975), + [sym___single_quote] = ACTIONS(2975), + [sym___c_double_quote] = ACTIONS(2975), + [sym___c_single_quote] = ACTIONS(2975), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2975), }, [1057] = { [sym_line_comment] = STATE(1057), - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_CR] = ACTIONS(3395), - [anon_sym_CR_LF] = ACTIONS(3395), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym___global] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_fn] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_LT_EQ] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_union] = ACTIONS(3395), - [anon_sym_pub] = ACTIONS(3395), - [anon_sym_mut] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(3395), - [anon_sym_spawn] = ACTIONS(3395), - [anon_sym_json_DOTdecode] = ACTIONS(3395), - [anon_sym_LBRACK2] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_DASH] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_AMP_CARET] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3395), - [anon_sym_PIPE_PIPE] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_nil] = ACTIONS(3395), - [anon_sym_QMARK_DOT] = ACTIONS(3395), - [anon_sym_POUND_LBRACK] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOLLARif] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_BANGis] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_BANGin] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_rlock] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_sql] = ACTIONS(3395), - [sym_int_literal] = ACTIONS(3395), - [sym_float_literal] = ACTIONS(3395), - [sym_rune_literal] = ACTIONS(3395), - [sym_pseudo_compile_time_identifier] = ACTIONS(3395), - [anon_sym_shared] = ACTIONS(3395), - [anon_sym_map_LBRACK] = ACTIONS(3395), - [anon_sym_chan] = ACTIONS(3395), - [anon_sym_thread] = ACTIONS(3395), - [anon_sym_atomic] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_defer] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_DOLLARfor] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_POUND] = ACTIONS(3395), - [anon_sym_asm] = ACTIONS(3395), - [anon_sym_AT_LBRACK] = ACTIONS(3395), - [sym___double_quote] = ACTIONS(3395), - [sym___single_quote] = ACTIONS(3395), - [sym___c_double_quote] = ACTIONS(3395), - [sym___c_single_quote] = ACTIONS(3395), - [sym___r_double_quote] = ACTIONS(3395), - [sym___r_single_quote] = ACTIONS(3395), + [sym_block_comment] = STATE(1057), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym___global] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_union] = ACTIONS(3182), + [anon_sym_pub] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [sym_pseudo_compile_time_identifier] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [anon_sym_assert] = ACTIONS(3182), + [anon_sym_defer] = ACTIONS(3182), + [anon_sym_goto] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_DOLLARfor] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_POUND] = ACTIONS(3182), + [anon_sym_asm] = ACTIONS(3182), + [anon_sym_AT_LBRACK] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), }, [1058] = { [sym_line_comment] = STATE(1058), - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [anon_sym_LF] = ACTIONS(3403), - [anon_sym_CR] = ACTIONS(3403), - [anon_sym_CR_LF] = ACTIONS(3403), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym___global] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_fn] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_EQ_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_LT_EQ] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_union] = ACTIONS(3403), - [anon_sym_pub] = ACTIONS(3403), - [anon_sym_mut] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_go] = ACTIONS(3403), - [anon_sym_spawn] = ACTIONS(3403), - [anon_sym_json_DOTdecode] = ACTIONS(3403), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3403), - [anon_sym_GT_GT] = ACTIONS(3403), - [anon_sym_GT_GT_GT] = ACTIONS(3403), - [anon_sym_AMP_CARET] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_nil] = ACTIONS(3403), - [anon_sym_QMARK_DOT] = ACTIONS(3403), - [anon_sym_POUND_LBRACK] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOLLARif] = ACTIONS(3403), - [anon_sym_is] = ACTIONS(3403), - [anon_sym_BANGis] = ACTIONS(3403), - [anon_sym_in] = ACTIONS(3403), - [anon_sym_BANGin] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_rlock] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_sql] = ACTIONS(3403), - [sym_int_literal] = ACTIONS(3403), - [sym_float_literal] = ACTIONS(3403), - [sym_rune_literal] = ACTIONS(3403), - [sym_pseudo_compile_time_identifier] = ACTIONS(3403), - [anon_sym_shared] = ACTIONS(3403), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3403), - [anon_sym_thread] = ACTIONS(3403), - [anon_sym_atomic] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_defer] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_DOLLARfor] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_POUND] = ACTIONS(3403), - [anon_sym_asm] = ACTIONS(3403), - [anon_sym_AT_LBRACK] = ACTIONS(3403), - [sym___double_quote] = ACTIONS(3403), - [sym___single_quote] = ACTIONS(3403), - [sym___c_double_quote] = ACTIONS(3403), - [sym___c_single_quote] = ACTIONS(3403), - [sym___r_double_quote] = ACTIONS(3403), - [sym___r_single_quote] = ACTIONS(3403), + [sym_block_comment] = STATE(1058), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym___global] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_pub] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [sym_pseudo_compile_time_identifier] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_defer] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_DOLLARfor] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym_AT_LBRACK] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), }, [1059] = { [sym_line_comment] = STATE(1059), - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym___global] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_union] = ACTIONS(3359), - [anon_sym_pub] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_DOLLARfor] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_asm] = ACTIONS(3359), - [anon_sym_AT_LBRACK] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [sym_block_comment] = STATE(1059), + [ts_builtin_sym_end] = ACTIONS(3032), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym___global] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_pub] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_interface] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [anon_sym_assert] = ACTIONS(3035), + [anon_sym_defer] = ACTIONS(3035), + [anon_sym_goto] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_DOLLARfor] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_asm] = ACTIONS(3035), + [anon_sym_AT_LBRACK] = ACTIONS(3035), + [sym___double_quote] = ACTIONS(3035), + [sym___single_quote] = ACTIONS(3035), + [sym___c_double_quote] = ACTIONS(3035), + [sym___c_single_quote] = ACTIONS(3035), + [sym___r_double_quote] = ACTIONS(3035), + [sym___r_single_quote] = ACTIONS(3035), }, [1060] = { [sym_line_comment] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym___global] = ACTIONS(3183), - [anon_sym_type] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_union] = ACTIONS(3183), - [anon_sym_pub] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [sym_block_comment] = STATE(1060), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_CR] = ACTIONS(3438), + [anon_sym_CR_LF] = ACTIONS(3438), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym___global] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_pub] = ACTIONS(3438), + [anon_sym_mut] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(3438), + [anon_sym_spawn] = ACTIONS(3438), + [anon_sym_json_DOTdecode] = ACTIONS(3438), + [anon_sym_LBRACK2] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3438), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_or] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_nil] = ACTIONS(3438), + [anon_sym_QMARK_DOT] = ACTIONS(3438), + [anon_sym_POUND_LBRACK] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_DOLLARif] = ACTIONS(3438), + [anon_sym_is] = ACTIONS(3438), + [anon_sym_BANGis] = ACTIONS(3438), + [anon_sym_in] = ACTIONS(3438), + [anon_sym_BANGin] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_select] = ACTIONS(3438), + [anon_sym_lock] = ACTIONS(3438), + [anon_sym_rlock] = ACTIONS(3438), + [anon_sym_unsafe] = ACTIONS(3438), + [anon_sym_sql] = ACTIONS(3438), + [sym_int_literal] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3438), + [sym_rune_literal] = ACTIONS(3438), + [sym_pseudo_compile_time_identifier] = ACTIONS(3438), + [anon_sym_shared] = ACTIONS(3438), + [anon_sym_map_LBRACK] = ACTIONS(3438), + [anon_sym_chan] = ACTIONS(3438), + [anon_sym_thread] = ACTIONS(3438), + [anon_sym_atomic] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_defer] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_DOLLARfor] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym_AT_LBRACK] = ACTIONS(3438), + [sym___double_quote] = ACTIONS(3438), + [sym___single_quote] = ACTIONS(3438), + [sym___c_double_quote] = ACTIONS(3438), + [sym___c_single_quote] = ACTIONS(3438), + [sym___r_double_quote] = ACTIONS(3438), + [sym___r_single_quote] = ACTIONS(3438), }, [1061] = { [sym_line_comment] = STATE(1061), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym___global] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_interface] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [anon_sym_assert] = ACTIONS(2671), - [anon_sym_defer] = ACTIONS(2671), - [anon_sym_goto] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_DOLLARfor] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_POUND] = ACTIONS(2671), - [anon_sym_asm] = ACTIONS(2671), - [anon_sym_AT_LBRACK] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym_block_comment] = STATE(1061), + [ts_builtin_sym_end] = ACTIONS(2761), + [sym_identifier] = ACTIONS(2759), + [anon_sym_LF] = ACTIONS(2759), + [anon_sym_CR] = ACTIONS(2759), + [anon_sym_CR_LF] = ACTIONS(2759), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym___global] = ACTIONS(2759), + [anon_sym_type] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_union] = ACTIONS(2759), + [anon_sym_pub] = ACTIONS(2759), + [anon_sym_mut] = ACTIONS(2759), + [anon_sym_enum] = ACTIONS(2759), + [anon_sym_interface] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_go] = ACTIONS(2759), + [anon_sym_spawn] = ACTIONS(2759), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [sym_none] = ACTIONS(2759), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_nil] = ACTIONS(2759), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_DOLLARif] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_select] = ACTIONS(2759), + [anon_sym_lock] = ACTIONS(2759), + [anon_sym_rlock] = ACTIONS(2759), + [anon_sym_unsafe] = ACTIONS(2759), + [anon_sym_sql] = ACTIONS(2759), + [sym_int_literal] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2759), + [sym_rune_literal] = ACTIONS(2759), + [sym_pseudo_compile_time_identifier] = ACTIONS(2759), + [anon_sym_shared] = ACTIONS(2759), + [anon_sym_map_LBRACK] = ACTIONS(2759), + [anon_sym_chan] = ACTIONS(2759), + [anon_sym_thread] = ACTIONS(2759), + [anon_sym_atomic] = ACTIONS(2759), + [anon_sym_assert] = ACTIONS(2759), + [anon_sym_defer] = ACTIONS(2759), + [anon_sym_goto] = ACTIONS(2759), + [anon_sym_break] = ACTIONS(2759), + [anon_sym_continue] = ACTIONS(2759), + [anon_sym_return] = ACTIONS(2759), + [anon_sym_DOLLARfor] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2759), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_asm] = ACTIONS(2759), + [anon_sym_AT_LBRACK] = ACTIONS(2759), + [sym___double_quote] = ACTIONS(2759), + [sym___single_quote] = ACTIONS(2759), + [sym___c_double_quote] = ACTIONS(2759), + [sym___c_single_quote] = ACTIONS(2759), + [sym___r_double_quote] = ACTIONS(2759), + [sym___r_single_quote] = ACTIONS(2759), }, [1062] = { [sym_line_comment] = STATE(1062), - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [sym_pseudo_compile_time_identifier] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), + [sym_block_comment] = STATE(1062), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_LF] = ACTIONS(3430), + [anon_sym_CR] = ACTIONS(3430), + [anon_sym_CR_LF] = ACTIONS(3430), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_as] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym___global] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_PERCENT] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_EQ_EQ] = ACTIONS(3430), + [anon_sym_BANG_EQ] = ACTIONS(3430), + [anon_sym_LT_EQ] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_union] = ACTIONS(3430), + [anon_sym_pub] = ACTIONS(3430), + [anon_sym_mut] = ACTIONS(3430), + [anon_sym_enum] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_go] = ACTIONS(3430), + [anon_sym_spawn] = ACTIONS(3430), + [anon_sym_json_DOTdecode] = ACTIONS(3430), + [anon_sym_LBRACK2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_LT_DASH] = ACTIONS(3430), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_GT_GT_GT] = ACTIONS(3430), + [anon_sym_AMP_CARET] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_PIPE_PIPE] = ACTIONS(3430), + [anon_sym_or] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_nil] = ACTIONS(3430), + [anon_sym_QMARK_DOT] = ACTIONS(3430), + [anon_sym_POUND_LBRACK] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_DOLLARif] = ACTIONS(3430), + [anon_sym_is] = ACTIONS(3430), + [anon_sym_BANGis] = ACTIONS(3430), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_BANGin] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_select] = ACTIONS(3430), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(3430), + [anon_sym_sql] = ACTIONS(3430), + [sym_int_literal] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3430), + [sym_rune_literal] = ACTIONS(3430), + [sym_pseudo_compile_time_identifier] = ACTIONS(3430), + [anon_sym_shared] = ACTIONS(3430), + [anon_sym_map_LBRACK] = ACTIONS(3430), + [anon_sym_chan] = ACTIONS(3430), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3430), + [anon_sym_assert] = ACTIONS(3430), + [anon_sym_defer] = ACTIONS(3430), + [anon_sym_goto] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_DOLLARfor] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_POUND] = ACTIONS(3430), + [anon_sym_asm] = ACTIONS(3430), + [anon_sym_AT_LBRACK] = ACTIONS(3430), + [sym___double_quote] = ACTIONS(3430), + [sym___single_quote] = ACTIONS(3430), + [sym___c_double_quote] = ACTIONS(3430), + [sym___c_single_quote] = ACTIONS(3430), + [sym___r_double_quote] = ACTIONS(3430), + [sym___r_single_quote] = ACTIONS(3430), }, [1063] = { [sym_line_comment] = STATE(1063), - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_pub] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_DOLLARfor] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_POUND] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym_AT_LBRACK] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [sym_block_comment] = STATE(1063), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(3426), + [anon_sym_CR] = ACTIONS(3426), + [anon_sym_CR_LF] = ACTIONS(3426), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym___global] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_fn] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_EQ_EQ] = ACTIONS(3426), + [anon_sym_BANG_EQ] = ACTIONS(3426), + [anon_sym_LT_EQ] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_union] = ACTIONS(3426), + [anon_sym_pub] = ACTIONS(3426), + [anon_sym_mut] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_go] = ACTIONS(3426), + [anon_sym_spawn] = ACTIONS(3426), + [anon_sym_json_DOTdecode] = ACTIONS(3426), + [anon_sym_LBRACK2] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_LT_DASH] = ACTIONS(3426), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_GT_GT_GT] = ACTIONS(3426), + [anon_sym_AMP_CARET] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [anon_sym_or] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_nil] = ACTIONS(3426), + [anon_sym_QMARK_DOT] = ACTIONS(3426), + [anon_sym_POUND_LBRACK] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_DOLLARif] = ACTIONS(3426), + [anon_sym_is] = ACTIONS(3426), + [anon_sym_BANGis] = ACTIONS(3426), + [anon_sym_in] = ACTIONS(3426), + [anon_sym_BANGin] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_lock] = ACTIONS(3426), + [anon_sym_rlock] = ACTIONS(3426), + [anon_sym_unsafe] = ACTIONS(3426), + [anon_sym_sql] = ACTIONS(3426), + [sym_int_literal] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3426), + [sym_rune_literal] = ACTIONS(3426), + [sym_pseudo_compile_time_identifier] = ACTIONS(3426), + [anon_sym_shared] = ACTIONS(3426), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3426), + [anon_sym_thread] = ACTIONS(3426), + [anon_sym_atomic] = ACTIONS(3426), + [anon_sym_assert] = ACTIONS(3426), + [anon_sym_defer] = ACTIONS(3426), + [anon_sym_goto] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_DOLLARfor] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_asm] = ACTIONS(3426), + [anon_sym_AT_LBRACK] = ACTIONS(3426), + [sym___double_quote] = ACTIONS(3426), + [sym___single_quote] = ACTIONS(3426), + [sym___c_double_quote] = ACTIONS(3426), + [sym___c_single_quote] = ACTIONS(3426), + [sym___r_double_quote] = ACTIONS(3426), + [sym___r_single_quote] = ACTIONS(3426), }, [1064] = { [sym_line_comment] = STATE(1064), - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym___global] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_interface] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [anon_sym_assert] = ACTIONS(2869), - [anon_sym_defer] = ACTIONS(2869), - [anon_sym_goto] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_DOLLARfor] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_asm] = ACTIONS(2869), - [anon_sym_AT_LBRACK] = ACTIONS(2869), - [sym___double_quote] = ACTIONS(2869), - [sym___single_quote] = ACTIONS(2869), - [sym___c_double_quote] = ACTIONS(2869), - [sym___c_single_quote] = ACTIONS(2869), - [sym___r_double_quote] = ACTIONS(2869), - [sym___r_single_quote] = ACTIONS(2869), + [sym_block_comment] = STATE(1064), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_LF] = ACTIONS(3422), + [anon_sym_CR] = ACTIONS(3422), + [anon_sym_CR_LF] = ACTIONS(3422), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym___global] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_fn] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_union] = ACTIONS(3422), + [anon_sym_pub] = ACTIONS(3422), + [anon_sym_mut] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_QMARK] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_go] = ACTIONS(3422), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(3422), + [anon_sym_LBRACK2] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(3422), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_GT_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_CARET] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_or] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_nil] = ACTIONS(3422), + [anon_sym_QMARK_DOT] = ACTIONS(3422), + [anon_sym_POUND_LBRACK] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_DOLLARif] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_select] = ACTIONS(3422), + [anon_sym_lock] = ACTIONS(3422), + [anon_sym_rlock] = ACTIONS(3422), + [anon_sym_unsafe] = ACTIONS(3422), + [anon_sym_sql] = ACTIONS(3422), + [sym_int_literal] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3422), + [sym_rune_literal] = ACTIONS(3422), + [sym_pseudo_compile_time_identifier] = ACTIONS(3422), + [anon_sym_shared] = ACTIONS(3422), + [anon_sym_map_LBRACK] = ACTIONS(3422), + [anon_sym_chan] = ACTIONS(3422), + [anon_sym_thread] = ACTIONS(3422), + [anon_sym_atomic] = ACTIONS(3422), + [anon_sym_assert] = ACTIONS(3422), + [anon_sym_defer] = ACTIONS(3422), + [anon_sym_goto] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_DOLLARfor] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_POUND] = ACTIONS(3422), + [anon_sym_asm] = ACTIONS(3422), + [anon_sym_AT_LBRACK] = ACTIONS(3422), + [sym___double_quote] = ACTIONS(3422), + [sym___single_quote] = ACTIONS(3422), + [sym___c_double_quote] = ACTIONS(3422), + [sym___c_single_quote] = ACTIONS(3422), + [sym___r_double_quote] = ACTIONS(3422), + [sym___r_single_quote] = ACTIONS(3422), }, [1065] = { [sym_line_comment] = STATE(1065), - [ts_builtin_sym_end] = ACTIONS(3397), - [sym_identifier] = ACTIONS(3399), - [anon_sym_LF] = ACTIONS(3399), - [anon_sym_CR] = ACTIONS(3399), - [anon_sym_CR_LF] = ACTIONS(3399), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym___global] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_fn] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_EQ_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_union] = ACTIONS(3399), - [anon_sym_pub] = ACTIONS(3399), - [anon_sym_mut] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_go] = ACTIONS(3399), - [anon_sym_spawn] = ACTIONS(3399), - [anon_sym_json_DOTdecode] = ACTIONS(3399), - [anon_sym_LBRACK2] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3399), - [anon_sym_GT_GT] = ACTIONS(3399), - [anon_sym_GT_GT_GT] = ACTIONS(3399), - [anon_sym_AMP_CARET] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [sym_none] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_nil] = ACTIONS(3399), - [anon_sym_QMARK_DOT] = ACTIONS(3399), - [anon_sym_POUND_LBRACK] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOLLARif] = ACTIONS(3399), - [anon_sym_is] = ACTIONS(3399), - [anon_sym_BANGis] = ACTIONS(3399), - [anon_sym_in] = ACTIONS(3399), - [anon_sym_BANGin] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_rlock] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_sql] = ACTIONS(3399), - [sym_int_literal] = ACTIONS(3399), - [sym_float_literal] = ACTIONS(3399), - [sym_rune_literal] = ACTIONS(3399), - [sym_pseudo_compile_time_identifier] = ACTIONS(3399), - [anon_sym_shared] = ACTIONS(3399), - [anon_sym_map_LBRACK] = ACTIONS(3399), - [anon_sym_chan] = ACTIONS(3399), - [anon_sym_thread] = ACTIONS(3399), - [anon_sym_atomic] = ACTIONS(3399), - [anon_sym_assert] = ACTIONS(3399), - [anon_sym_defer] = ACTIONS(3399), - [anon_sym_goto] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_DOLLARfor] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_POUND] = ACTIONS(3399), - [anon_sym_asm] = ACTIONS(3399), - [anon_sym_AT_LBRACK] = ACTIONS(3399), - [sym___double_quote] = ACTIONS(3399), - [sym___single_quote] = ACTIONS(3399), - [sym___c_double_quote] = ACTIONS(3399), - [sym___c_single_quote] = ACTIONS(3399), - [sym___r_double_quote] = ACTIONS(3399), - [sym___r_single_quote] = ACTIONS(3399), + [sym_block_comment] = STATE(1065), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3418), + [anon_sym_LF] = ACTIONS(3418), + [anon_sym_CR] = ACTIONS(3418), + [anon_sym_CR_LF] = ACTIONS(3418), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_as] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_COMMA] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym___global] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_fn] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_PERCENT] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_EQ_EQ] = ACTIONS(3418), + [anon_sym_BANG_EQ] = ACTIONS(3418), + [anon_sym_LT_EQ] = ACTIONS(3418), + [anon_sym_GT_EQ] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(3418), + [anon_sym_union] = ACTIONS(3418), + [anon_sym_pub] = ACTIONS(3418), + [anon_sym_mut] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3418), + [anon_sym_spawn] = ACTIONS(3418), + [anon_sym_json_DOTdecode] = ACTIONS(3418), + [anon_sym_LBRACK2] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_LT_DASH] = ACTIONS(3418), + [anon_sym_LT_LT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(3418), + [anon_sym_GT_GT_GT] = ACTIONS(3418), + [anon_sym_AMP_CARET] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_or] = ACTIONS(3418), + [sym_none] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_nil] = ACTIONS(3418), + [anon_sym_QMARK_DOT] = ACTIONS(3418), + [anon_sym_POUND_LBRACK] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_DOLLARif] = ACTIONS(3418), + [anon_sym_is] = ACTIONS(3418), + [anon_sym_BANGis] = ACTIONS(3418), + [anon_sym_in] = ACTIONS(3418), + [anon_sym_BANGin] = ACTIONS(3418), + [anon_sym_match] = ACTIONS(3418), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3418), + [anon_sym_rlock] = ACTIONS(3418), + [anon_sym_unsafe] = ACTIONS(3418), + [anon_sym_sql] = ACTIONS(3418), + [sym_int_literal] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3418), + [sym_rune_literal] = ACTIONS(3418), + [sym_pseudo_compile_time_identifier] = ACTIONS(3418), + [anon_sym_shared] = ACTIONS(3418), + [anon_sym_map_LBRACK] = ACTIONS(3418), + [anon_sym_chan] = ACTIONS(3418), + [anon_sym_thread] = ACTIONS(3418), + [anon_sym_atomic] = ACTIONS(3418), + [anon_sym_assert] = ACTIONS(3418), + [anon_sym_defer] = ACTIONS(3418), + [anon_sym_goto] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_DOLLARfor] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_POUND] = ACTIONS(3418), + [anon_sym_asm] = ACTIONS(3418), + [anon_sym_AT_LBRACK] = ACTIONS(3418), + [sym___double_quote] = ACTIONS(3418), + [sym___single_quote] = ACTIONS(3418), + [sym___c_double_quote] = ACTIONS(3418), + [sym___c_single_quote] = ACTIONS(3418), + [sym___r_double_quote] = ACTIONS(3418), + [sym___r_single_quote] = ACTIONS(3418), }, [1066] = { [sym_line_comment] = STATE(1066), - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym___global] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_pub] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_DOLLARfor] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym_AT_LBRACK] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [sym_block_comment] = STATE(1066), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), }, [1067] = { [sym_line_comment] = STATE(1067), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), + [sym_block_comment] = STATE(1067), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LF] = ACTIONS(3338), + [anon_sym_CR] = ACTIONS(3338), + [anon_sym_CR_LF] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym___global] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_pub] = ACTIONS(3338), + [anon_sym_mut] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_go] = ACTIONS(3338), + [anon_sym_spawn] = ACTIONS(3338), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_LBRACK2] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [sym_none] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_nil] = ACTIONS(3338), + [anon_sym_QMARK_DOT] = ACTIONS(3338), + [anon_sym_POUND_LBRACK] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_DOLLARif] = ACTIONS(3338), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_BANGin] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3338), + [anon_sym_select] = ACTIONS(3338), + [anon_sym_lock] = ACTIONS(3338), + [anon_sym_rlock] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(3338), + [anon_sym_sql] = ACTIONS(3338), + [sym_int_literal] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3338), + [anon_sym_shared] = ACTIONS(3338), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3338), + [anon_sym_thread] = ACTIONS(3338), + [anon_sym_atomic] = ACTIONS(3338), + [anon_sym_assert] = ACTIONS(3338), + [anon_sym_defer] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_DOLLARfor] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym_AT_LBRACK] = ACTIONS(3338), + [sym___double_quote] = ACTIONS(3338), + [sym___single_quote] = ACTIONS(3338), + [sym___c_double_quote] = ACTIONS(3338), + [sym___c_single_quote] = ACTIONS(3338), + [sym___r_double_quote] = ACTIONS(3338), + [sym___r_single_quote] = ACTIONS(3338), }, [1068] = { [sym_line_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [anon_sym_LF] = ACTIONS(3407), - [anon_sym_CR] = ACTIONS(3407), - [anon_sym_CR_LF] = ACTIONS(3407), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym___global] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_fn] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_EQ_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_LT_EQ] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_union] = ACTIONS(3407), - [anon_sym_pub] = ACTIONS(3407), - [anon_sym_mut] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_go] = ACTIONS(3407), - [anon_sym_spawn] = ACTIONS(3407), - [anon_sym_json_DOTdecode] = ACTIONS(3407), - [anon_sym_LBRACK2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_LT_DASH] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3407), - [anon_sym_GT_GT] = ACTIONS(3407), - [anon_sym_GT_GT_GT] = ACTIONS(3407), - [anon_sym_AMP_CARET] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_PIPE_PIPE] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_nil] = ACTIONS(3407), - [anon_sym_QMARK_DOT] = ACTIONS(3407), - [anon_sym_POUND_LBRACK] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOLLARif] = ACTIONS(3407), - [anon_sym_is] = ACTIONS(3407), - [anon_sym_BANGis] = ACTIONS(3407), - [anon_sym_in] = ACTIONS(3407), - [anon_sym_BANGin] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_rlock] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_sql] = ACTIONS(3407), - [sym_int_literal] = ACTIONS(3407), - [sym_float_literal] = ACTIONS(3407), - [sym_rune_literal] = ACTIONS(3407), - [sym_pseudo_compile_time_identifier] = ACTIONS(3407), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3407), - [anon_sym_chan] = ACTIONS(3407), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_defer] = ACTIONS(3407), - [anon_sym_goto] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_DOLLARfor] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_POUND] = ACTIONS(3407), - [anon_sym_asm] = ACTIONS(3407), - [anon_sym_AT_LBRACK] = ACTIONS(3407), - [sym___double_quote] = ACTIONS(3407), - [sym___single_quote] = ACTIONS(3407), - [sym___c_double_quote] = ACTIONS(3407), - [sym___c_single_quote] = ACTIONS(3407), - [sym___r_double_quote] = ACTIONS(3407), - [sym___r_single_quote] = ACTIONS(3407), + [sym_block_comment] = STATE(1068), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, [1069] = { [sym_line_comment] = STATE(1069), - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym___global] = ACTIONS(3215), - [anon_sym_type] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_pub] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [anon_sym_assert] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_DOLLARfor] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym_AT_LBRACK] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [sym_block_comment] = STATE(1069), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), }, [1070] = { [sym_line_comment] = STATE(1070), - [ts_builtin_sym_end] = ACTIONS(3421), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LF] = ACTIONS(3423), - [anon_sym_CR] = ACTIONS(3423), - [anon_sym_CR_LF] = ACTIONS(3423), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym___global] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3423), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_union] = ACTIONS(3423), - [anon_sym_pub] = ACTIONS(3423), - [anon_sym_mut] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_go] = ACTIONS(3423), - [anon_sym_spawn] = ACTIONS(3423), - [anon_sym_json_DOTdecode] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3423), - [anon_sym_GT_GT] = ACTIONS(3423), - [anon_sym_GT_GT_GT] = ACTIONS(3423), - [anon_sym_AMP_CARET] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [sym_none] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_nil] = ACTIONS(3423), - [anon_sym_QMARK_DOT] = ACTIONS(3423), - [anon_sym_POUND_LBRACK] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOLLARif] = ACTIONS(3423), - [anon_sym_is] = ACTIONS(3423), - [anon_sym_BANGis] = ACTIONS(3423), - [anon_sym_in] = ACTIONS(3423), - [anon_sym_BANGin] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [anon_sym_lock] = ACTIONS(3423), - [anon_sym_rlock] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_sql] = ACTIONS(3423), - [sym_int_literal] = ACTIONS(3423), - [sym_float_literal] = ACTIONS(3423), - [sym_rune_literal] = ACTIONS(3423), - [sym_pseudo_compile_time_identifier] = ACTIONS(3423), - [anon_sym_shared] = ACTIONS(3423), - [anon_sym_map_LBRACK] = ACTIONS(3423), - [anon_sym_chan] = ACTIONS(3423), - [anon_sym_thread] = ACTIONS(3423), - [anon_sym_atomic] = ACTIONS(3423), - [anon_sym_assert] = ACTIONS(3423), - [anon_sym_defer] = ACTIONS(3423), - [anon_sym_goto] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_DOLLARfor] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_POUND] = ACTIONS(3423), - [anon_sym_asm] = ACTIONS(3423), - [anon_sym_AT_LBRACK] = ACTIONS(3423), - [sym___double_quote] = ACTIONS(3423), - [sym___single_quote] = ACTIONS(3423), - [sym___c_double_quote] = ACTIONS(3423), - [sym___c_single_quote] = ACTIONS(3423), - [sym___r_double_quote] = ACTIONS(3423), - [sym___r_single_quote] = ACTIONS(3423), + [sym_block_comment] = STATE(1070), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3146), + [anon_sym_LF] = ACTIONS(3146), + [anon_sym_CR] = ACTIONS(3146), + [anon_sym_CR_LF] = ACTIONS(3146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym___global] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_fn] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PERCENT] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_union] = ACTIONS(3146), + [anon_sym_pub] = ACTIONS(3146), + [anon_sym_mut] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_go] = ACTIONS(3146), + [anon_sym_spawn] = ACTIONS(3146), + [anon_sym_json_DOTdecode] = ACTIONS(3146), + [anon_sym_LBRACK2] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT_DASH] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3146), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3146), + [anon_sym_AMP_CARET] = ACTIONS(3146), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_or] = ACTIONS(3146), + [sym_none] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_nil] = ACTIONS(3146), + [anon_sym_QMARK_DOT] = ACTIONS(3146), + [anon_sym_POUND_LBRACK] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_DOLLARif] = ACTIONS(3146), + [anon_sym_is] = ACTIONS(3146), + [anon_sym_BANGis] = ACTIONS(3146), + [anon_sym_in] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3146), + [anon_sym_match] = ACTIONS(3146), + [anon_sym_select] = ACTIONS(3146), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(3146), + [anon_sym_sql] = ACTIONS(3146), + [sym_int_literal] = ACTIONS(3146), + [sym_float_literal] = ACTIONS(3146), + [sym_rune_literal] = ACTIONS(3146), + [sym_pseudo_compile_time_identifier] = ACTIONS(3146), + [anon_sym_shared] = ACTIONS(3146), + [anon_sym_map_LBRACK] = ACTIONS(3146), + [anon_sym_chan] = ACTIONS(3146), + [anon_sym_thread] = ACTIONS(3146), + [anon_sym_atomic] = ACTIONS(3146), + [anon_sym_assert] = ACTIONS(3146), + [anon_sym_defer] = ACTIONS(3146), + [anon_sym_goto] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_DOLLARfor] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_POUND] = ACTIONS(3146), + [anon_sym_asm] = ACTIONS(3146), + [anon_sym_AT_LBRACK] = ACTIONS(3146), + [sym___double_quote] = ACTIONS(3146), + [sym___single_quote] = ACTIONS(3146), + [sym___c_double_quote] = ACTIONS(3146), + [sym___c_single_quote] = ACTIONS(3146), + [sym___r_double_quote] = ACTIONS(3146), + [sym___r_single_quote] = ACTIONS(3146), }, [1071] = { [sym_line_comment] = STATE(1071), - [ts_builtin_sym_end] = ACTIONS(3417), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(3419), - [anon_sym_CR] = ACTIONS(3419), - [anon_sym_CR_LF] = ACTIONS(3419), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym___global] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3419), - [anon_sym_fn] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_union] = ACTIONS(3419), - [anon_sym_pub] = ACTIONS(3419), - [anon_sym_mut] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_go] = ACTIONS(3419), - [anon_sym_spawn] = ACTIONS(3419), - [anon_sym_json_DOTdecode] = ACTIONS(3419), - [anon_sym_LBRACK2] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3419), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_GT_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_CARET] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [sym_none] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_nil] = ACTIONS(3419), - [anon_sym_QMARK_DOT] = ACTIONS(3419), - [anon_sym_POUND_LBRACK] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOLLARif] = ACTIONS(3419), - [anon_sym_is] = ACTIONS(3419), - [anon_sym_BANGis] = ACTIONS(3419), - [anon_sym_in] = ACTIONS(3419), - [anon_sym_BANGin] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_rlock] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_sql] = ACTIONS(3419), - [sym_int_literal] = ACTIONS(3419), - [sym_float_literal] = ACTIONS(3419), - [sym_rune_literal] = ACTIONS(3419), - [sym_pseudo_compile_time_identifier] = ACTIONS(3419), - [anon_sym_shared] = ACTIONS(3419), - [anon_sym_map_LBRACK] = ACTIONS(3419), - [anon_sym_chan] = ACTIONS(3419), - [anon_sym_thread] = ACTIONS(3419), - [anon_sym_atomic] = ACTIONS(3419), - [anon_sym_assert] = ACTIONS(3419), - [anon_sym_defer] = ACTIONS(3419), - [anon_sym_goto] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_DOLLARfor] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_POUND] = ACTIONS(3419), - [anon_sym_asm] = ACTIONS(3419), - [anon_sym_AT_LBRACK] = ACTIONS(3419), - [sym___double_quote] = ACTIONS(3419), - [sym___single_quote] = ACTIONS(3419), - [sym___c_double_quote] = ACTIONS(3419), - [sym___c_single_quote] = ACTIONS(3419), - [sym___r_double_quote] = ACTIONS(3419), - [sym___r_single_quote] = ACTIONS(3419), + [sym_block_comment] = STATE(1071), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym___global] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_union] = ACTIONS(3186), + [anon_sym_pub] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [sym_pseudo_compile_time_identifier] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [anon_sym_assert] = ACTIONS(3186), + [anon_sym_defer] = ACTIONS(3186), + [anon_sym_goto] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_DOLLARfor] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_POUND] = ACTIONS(3186), + [anon_sym_asm] = ACTIONS(3186), + [anon_sym_AT_LBRACK] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), }, [1072] = { [sym_line_comment] = STATE(1072), - [ts_builtin_sym_end] = ACTIONS(3413), - [sym_identifier] = ACTIONS(3415), - [anon_sym_LF] = ACTIONS(3415), - [anon_sym_CR] = ACTIONS(3415), - [anon_sym_CR_LF] = ACTIONS(3415), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym___global] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3415), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_union] = ACTIONS(3415), - [anon_sym_pub] = ACTIONS(3415), - [anon_sym_mut] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_go] = ACTIONS(3415), - [anon_sym_spawn] = ACTIONS(3415), - [anon_sym_json_DOTdecode] = ACTIONS(3415), - [anon_sym_LBRACK2] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3415), - [anon_sym_GT_GT] = ACTIONS(3415), - [anon_sym_GT_GT_GT] = ACTIONS(3415), - [anon_sym_AMP_CARET] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [sym_none] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_nil] = ACTIONS(3415), - [anon_sym_QMARK_DOT] = ACTIONS(3415), - [anon_sym_POUND_LBRACK] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOLLARif] = ACTIONS(3415), - [anon_sym_is] = ACTIONS(3415), - [anon_sym_BANGis] = ACTIONS(3415), - [anon_sym_in] = ACTIONS(3415), - [anon_sym_BANGin] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_rlock] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_sql] = ACTIONS(3415), - [sym_int_literal] = ACTIONS(3415), - [sym_float_literal] = ACTIONS(3415), - [sym_rune_literal] = ACTIONS(3415), - [sym_pseudo_compile_time_identifier] = ACTIONS(3415), - [anon_sym_shared] = ACTIONS(3415), - [anon_sym_map_LBRACK] = ACTIONS(3415), - [anon_sym_chan] = ACTIONS(3415), - [anon_sym_thread] = ACTIONS(3415), - [anon_sym_atomic] = ACTIONS(3415), - [anon_sym_assert] = ACTIONS(3415), - [anon_sym_defer] = ACTIONS(3415), - [anon_sym_goto] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_DOLLARfor] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_POUND] = ACTIONS(3415), - [anon_sym_asm] = ACTIONS(3415), - [anon_sym_AT_LBRACK] = ACTIONS(3415), - [sym___double_quote] = ACTIONS(3415), - [sym___single_quote] = ACTIONS(3415), - [sym___c_double_quote] = ACTIONS(3415), - [sym___c_single_quote] = ACTIONS(3415), - [sym___r_double_quote] = ACTIONS(3415), - [sym___r_single_quote] = ACTIONS(3415), + [sym_block_comment] = STATE(1072), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LF] = ACTIONS(3358), + [anon_sym_CR] = ACTIONS(3358), + [anon_sym_CR_LF] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym___global] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_pub] = ACTIONS(3358), + [anon_sym_mut] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_go] = ACTIONS(3358), + [anon_sym_spawn] = ACTIONS(3358), + [anon_sym_json_DOTdecode] = ACTIONS(3358), + [anon_sym_LBRACK2] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [sym_none] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_nil] = ACTIONS(3358), + [anon_sym_QMARK_DOT] = ACTIONS(3358), + [anon_sym_POUND_LBRACK] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_DOLLARif] = ACTIONS(3358), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_BANGin] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_select] = ACTIONS(3358), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3358), + [anon_sym_sql] = ACTIONS(3358), + [sym_int_literal] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3358), + [sym_rune_literal] = ACTIONS(3358), + [sym_pseudo_compile_time_identifier] = ACTIONS(3358), + [anon_sym_shared] = ACTIONS(3358), + [anon_sym_map_LBRACK] = ACTIONS(3358), + [anon_sym_chan] = ACTIONS(3358), + [anon_sym_thread] = ACTIONS(3358), + [anon_sym_atomic] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_defer] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_DOLLARfor] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym_AT_LBRACK] = ACTIONS(3358), + [sym___double_quote] = ACTIONS(3358), + [sym___single_quote] = ACTIONS(3358), + [sym___c_double_quote] = ACTIONS(3358), + [sym___c_single_quote] = ACTIONS(3358), + [sym___r_double_quote] = ACTIONS(3358), + [sym___r_single_quote] = ACTIONS(3358), }, [1073] = { [sym_line_comment] = STATE(1073), - [ts_builtin_sym_end] = ACTIONS(3409), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3411), - [anon_sym_CR] = ACTIONS(3411), - [anon_sym_CR_LF] = ACTIONS(3411), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym___global] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_fn] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_EQ_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_LT_EQ] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_union] = ACTIONS(3411), - [anon_sym_pub] = ACTIONS(3411), - [anon_sym_mut] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_go] = ACTIONS(3411), - [anon_sym_spawn] = ACTIONS(3411), - [anon_sym_json_DOTdecode] = ACTIONS(3411), - [anon_sym_LBRACK2] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3411), - [anon_sym_LT_DASH] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3411), - [anon_sym_GT_GT_GT] = ACTIONS(3411), - [anon_sym_AMP_CARET] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3411), - [sym_none] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_nil] = ACTIONS(3411), - [anon_sym_QMARK_DOT] = ACTIONS(3411), - [anon_sym_POUND_LBRACK] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOLLARif] = ACTIONS(3411), - [anon_sym_is] = ACTIONS(3411), - [anon_sym_BANGis] = ACTIONS(3411), - [anon_sym_in] = ACTIONS(3411), - [anon_sym_BANGin] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_rlock] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_sql] = ACTIONS(3411), - [sym_int_literal] = ACTIONS(3411), - [sym_float_literal] = ACTIONS(3411), - [sym_rune_literal] = ACTIONS(3411), - [sym_pseudo_compile_time_identifier] = ACTIONS(3411), - [anon_sym_shared] = ACTIONS(3411), - [anon_sym_map_LBRACK] = ACTIONS(3411), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3411), - [anon_sym_atomic] = ACTIONS(3411), - [anon_sym_assert] = ACTIONS(3411), - [anon_sym_defer] = ACTIONS(3411), - [anon_sym_goto] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_DOLLARfor] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_POUND] = ACTIONS(3411), - [anon_sym_asm] = ACTIONS(3411), - [anon_sym_AT_LBRACK] = ACTIONS(3411), - [sym___double_quote] = ACTIONS(3411), - [sym___single_quote] = ACTIONS(3411), - [sym___c_double_quote] = ACTIONS(3411), - [sym___c_single_quote] = ACTIONS(3411), - [sym___r_double_quote] = ACTIONS(3411), - [sym___r_single_quote] = ACTIONS(3411), + [sym_block_comment] = STATE(1073), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3354), + [anon_sym_CR] = ACTIONS(3354), + [anon_sym_CR_LF] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym___global] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_pub] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_go] = ACTIONS(3354), + [anon_sym_spawn] = ACTIONS(3354), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_LBRACK2] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_AMP_CARET] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [sym_none] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_nil] = ACTIONS(3354), + [anon_sym_QMARK_DOT] = ACTIONS(3354), + [anon_sym_POUND_LBRACK] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_DOLLARif] = ACTIONS(3354), + [anon_sym_is] = ACTIONS(3354), + [anon_sym_BANGis] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_BANGin] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_rlock] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3354), + [sym_int_literal] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3354), + [anon_sym_shared] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3354), + [anon_sym_thread] = ACTIONS(3354), + [anon_sym_atomic] = ACTIONS(3354), + [anon_sym_assert] = ACTIONS(3354), + [anon_sym_defer] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_DOLLARfor] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym_AT_LBRACK] = ACTIONS(3354), + [sym___double_quote] = ACTIONS(3354), + [sym___single_quote] = ACTIONS(3354), + [sym___c_double_quote] = ACTIONS(3354), + [sym___c_single_quote] = ACTIONS(3354), + [sym___r_double_quote] = ACTIONS(3354), + [sym___r_single_quote] = ACTIONS(3354), }, [1074] = { [sym_line_comment] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_pub] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_DOLLARfor] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym_AT_LBRACK] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [sym_block_comment] = STATE(1074), + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3154), + [anon_sym_LF] = ACTIONS(3154), + [anon_sym_CR] = ACTIONS(3154), + [anon_sym_CR_LF] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym___global] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_fn] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3154), + [anon_sym_pub] = ACTIONS(3154), + [anon_sym_mut] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3154), + [anon_sym_spawn] = ACTIONS(3154), + [anon_sym_json_DOTdecode] = ACTIONS(3154), + [anon_sym_LBRACK2] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3154), + [anon_sym_AMP_CARET] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_or] = ACTIONS(3154), + [sym_none] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nil] = ACTIONS(3154), + [anon_sym_QMARK_DOT] = ACTIONS(3154), + [anon_sym_POUND_LBRACK] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_DOLLARif] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3154), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_select] = ACTIONS(3154), + [anon_sym_lock] = ACTIONS(3154), + [anon_sym_rlock] = ACTIONS(3154), + [anon_sym_unsafe] = ACTIONS(3154), + [anon_sym_sql] = ACTIONS(3154), + [sym_int_literal] = ACTIONS(3154), + [sym_float_literal] = ACTIONS(3154), + [sym_rune_literal] = ACTIONS(3154), + [sym_pseudo_compile_time_identifier] = ACTIONS(3154), + [anon_sym_shared] = ACTIONS(3154), + [anon_sym_map_LBRACK] = ACTIONS(3154), + [anon_sym_chan] = ACTIONS(3154), + [anon_sym_thread] = ACTIONS(3154), + [anon_sym_atomic] = ACTIONS(3154), + [anon_sym_assert] = ACTIONS(3154), + [anon_sym_defer] = ACTIONS(3154), + [anon_sym_goto] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_DOLLARfor] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_POUND] = ACTIONS(3154), + [anon_sym_asm] = ACTIONS(3154), + [anon_sym_AT_LBRACK] = ACTIONS(3154), + [sym___double_quote] = ACTIONS(3154), + [sym___single_quote] = ACTIONS(3154), + [sym___c_double_quote] = ACTIONS(3154), + [sym___c_single_quote] = ACTIONS(3154), + [sym___r_double_quote] = ACTIONS(3154), + [sym___r_single_quote] = ACTIONS(3154), }, [1075] = { [sym_line_comment] = STATE(1075), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym___global] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_union] = ACTIONS(3167), - [anon_sym_pub] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [anon_sym_assert] = ACTIONS(3167), - [anon_sym_defer] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_DOLLARfor] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_POUND] = ACTIONS(3167), - [anon_sym_asm] = ACTIONS(3167), - [anon_sym_AT_LBRACK] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [sym_block_comment] = STATE(1075), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), + [sym___double_quote] = ACTIONS(3350), + [sym___single_quote] = ACTIONS(3350), + [sym___c_double_quote] = ACTIONS(3350), + [sym___c_single_quote] = ACTIONS(3350), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3350), }, [1076] = { [sym_line_comment] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym___global] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_pub] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_DOLLARfor] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_asm] = ACTIONS(3387), - [anon_sym_AT_LBRACK] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), + [sym_block_comment] = STATE(1076), + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym___global] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_union] = ACTIONS(3210), + [anon_sym_pub] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [sym_pseudo_compile_time_identifier] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [anon_sym_assert] = ACTIONS(3210), + [anon_sym_defer] = ACTIONS(3210), + [anon_sym_goto] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_DOLLARfor] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_POUND] = ACTIONS(3210), + [anon_sym_asm] = ACTIONS(3210), + [anon_sym_AT_LBRACK] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), }, [1077] = { [sym_line_comment] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym___global] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_pub] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_DOLLARfor] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_asm] = ACTIONS(3383), - [anon_sym_AT_LBRACK] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), + [sym_block_comment] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym___global] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_union] = ACTIONS(3222), + [anon_sym_pub] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [sym_pseudo_compile_time_identifier] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [anon_sym_assert] = ACTIONS(3222), + [anon_sym_defer] = ACTIONS(3222), + [anon_sym_goto] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_DOLLARfor] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_POUND] = ACTIONS(3222), + [anon_sym_asm] = ACTIONS(3222), + [anon_sym_AT_LBRACK] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), }, [1078] = { [sym_line_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym___global] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_union] = ACTIONS(3379), - [anon_sym_pub] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_DOLLARfor] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3379), - [anon_sym_asm] = ACTIONS(3379), - [anon_sym_AT_LBRACK] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), + [sym_block_comment] = STATE(1078), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), }, [1079] = { [sym_line_comment] = STATE(1079), - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym___global] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_union] = ACTIONS(3375), - [anon_sym_pub] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_defer] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_DOLLARfor] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_POUND] = ACTIONS(3375), - [anon_sym_asm] = ACTIONS(3375), - [anon_sym_AT_LBRACK] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), + [sym_block_comment] = STATE(1079), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3234), + [anon_sym_LF] = ACTIONS(3234), + [anon_sym_CR] = ACTIONS(3234), + [anon_sym_CR_LF] = ACTIONS(3234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym___global] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_union] = ACTIONS(3234), + [anon_sym_pub] = ACTIONS(3234), + [anon_sym_mut] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [anon_sym_QMARK] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_go] = ACTIONS(3234), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3234), + [anon_sym_LBRACK2] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_LT_DASH] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3234), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3234), + [anon_sym_AMP_CARET] = ACTIONS(3234), + [anon_sym_AMP_AMP] = ACTIONS(3234), + [anon_sym_PIPE_PIPE] = ACTIONS(3234), + [anon_sym_or] = ACTIONS(3234), + [sym_none] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_nil] = ACTIONS(3234), + [anon_sym_QMARK_DOT] = ACTIONS(3234), + [anon_sym_POUND_LBRACK] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_DOLLARif] = ACTIONS(3234), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_BANGin] = ACTIONS(3234), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3234), + [anon_sym_lock] = ACTIONS(3234), + [anon_sym_rlock] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(3234), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3234), + [sym_rune_literal] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(3234), + [anon_sym_shared] = ACTIONS(3234), + [anon_sym_map_LBRACK] = ACTIONS(3234), + [anon_sym_chan] = ACTIONS(3234), + [anon_sym_thread] = ACTIONS(3234), + [anon_sym_atomic] = ACTIONS(3234), + [anon_sym_assert] = ACTIONS(3234), + [anon_sym_defer] = ACTIONS(3234), + [anon_sym_goto] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_DOLLARfor] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_POUND] = ACTIONS(3234), + [anon_sym_asm] = ACTIONS(3234), + [anon_sym_AT_LBRACK] = ACTIONS(3234), + [sym___double_quote] = ACTIONS(3234), + [sym___single_quote] = ACTIONS(3234), + [sym___c_double_quote] = ACTIONS(3234), + [sym___c_single_quote] = ACTIONS(3234), + [sym___r_double_quote] = ACTIONS(3234), + [sym___r_single_quote] = ACTIONS(3234), }, [1080] = { [sym_line_comment] = STATE(1080), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LF] = ACTIONS(3342), + [anon_sym_CR] = ACTIONS(3342), + [anon_sym_CR_LF] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym___global] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_pub] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_go] = ACTIONS(3342), + [anon_sym_spawn] = ACTIONS(3342), + [anon_sym_json_DOTdecode] = ACTIONS(3342), + [anon_sym_LBRACK2] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [sym_none] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_nil] = ACTIONS(3342), + [anon_sym_QMARK_DOT] = ACTIONS(3342), + [anon_sym_POUND_LBRACK] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_DOLLARif] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3342), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_match] = ACTIONS(3342), + [anon_sym_select] = ACTIONS(3342), + [anon_sym_lock] = ACTIONS(3342), + [anon_sym_rlock] = ACTIONS(3342), + [anon_sym_unsafe] = ACTIONS(3342), + [anon_sym_sql] = ACTIONS(3342), + [sym_int_literal] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3342), + [sym_rune_literal] = ACTIONS(3342), + [sym_pseudo_compile_time_identifier] = ACTIONS(3342), + [anon_sym_shared] = ACTIONS(3342), + [anon_sym_map_LBRACK] = ACTIONS(3342), + [anon_sym_chan] = ACTIONS(3342), + [anon_sym_thread] = ACTIONS(3342), + [anon_sym_atomic] = ACTIONS(3342), + [anon_sym_assert] = ACTIONS(3342), + [anon_sym_defer] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_DOLLARfor] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym_AT_LBRACK] = ACTIONS(3342), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3342), + [sym___c_double_quote] = ACTIONS(3342), + [sym___c_single_quote] = ACTIONS(3342), + [sym___r_double_quote] = ACTIONS(3342), + [sym___r_single_quote] = ACTIONS(3342), }, [1081] = { [sym_line_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym___global] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_union] = ACTIONS(3371), - [anon_sym_pub] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_defer] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_DOLLARfor] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_asm] = ACTIONS(3371), - [anon_sym_AT_LBRACK] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), + [sym_block_comment] = STATE(1081), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym___global] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_union] = ACTIONS(3250), + [anon_sym_pub] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [anon_sym_assert] = ACTIONS(3250), + [anon_sym_defer] = ACTIONS(3250), + [anon_sym_goto] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_DOLLARfor] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_POUND] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3250), + [anon_sym_AT_LBRACK] = ACTIONS(3250), + [sym___double_quote] = ACTIONS(3250), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3250), + [sym___c_single_quote] = ACTIONS(3250), + [sym___r_double_quote] = ACTIONS(3250), + [sym___r_single_quote] = ACTIONS(3250), }, [1082] = { [sym_line_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), + [sym_block_comment] = STATE(1082), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [anon_sym_LF] = ACTIONS(3254), + [anon_sym_CR] = ACTIONS(3254), + [anon_sym_CR_LF] = ACTIONS(3254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3254), + [anon_sym_as] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym___global] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3254), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_pub] = ACTIONS(3254), + [anon_sym_mut] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_go] = ACTIONS(3254), + [anon_sym_spawn] = ACTIONS(3254), + [anon_sym_json_DOTdecode] = ACTIONS(3254), + [anon_sym_LBRACK2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_LT_DASH] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3254), + [anon_sym_AMP_CARET] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3254), + [sym_none] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_nil] = ACTIONS(3254), + [anon_sym_QMARK_DOT] = ACTIONS(3254), + [anon_sym_POUND_LBRACK] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_DOLLARif] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3254), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3254), + [anon_sym_sql] = ACTIONS(3254), + [sym_int_literal] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(3254), + [sym_rune_literal] = ACTIONS(3254), + [sym_pseudo_compile_time_identifier] = ACTIONS(3254), + [anon_sym_shared] = ACTIONS(3254), + [anon_sym_map_LBRACK] = ACTIONS(3254), + [anon_sym_chan] = ACTIONS(3254), + [anon_sym_thread] = ACTIONS(3254), + [anon_sym_atomic] = ACTIONS(3254), + [anon_sym_assert] = ACTIONS(3254), + [anon_sym_defer] = ACTIONS(3254), + [anon_sym_goto] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_DOLLARfor] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_POUND] = ACTIONS(3254), + [anon_sym_asm] = ACTIONS(3254), + [anon_sym_AT_LBRACK] = ACTIONS(3254), + [sym___double_quote] = ACTIONS(3254), + [sym___single_quote] = ACTIONS(3254), + [sym___c_double_quote] = ACTIONS(3254), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3254), + [sym___r_single_quote] = ACTIONS(3254), }, [1083] = { [sym_line_comment] = STATE(1083), - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym___global] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3283), - [anon_sym_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_EQ] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_union] = ACTIONS(3283), - [anon_sym_pub] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3283), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_CARET] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3283), - [anon_sym_POUND_LBRACK] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3283), - [sym_rune_literal] = ACTIONS(3283), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3283), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_defer] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_DOLLARfor] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_POUND] = ACTIONS(3283), - [anon_sym_asm] = ACTIONS(3283), - [anon_sym_AT_LBRACK] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3283), - [sym___single_quote] = ACTIONS(3283), - [sym___c_double_quote] = ACTIONS(3283), - [sym___c_single_quote] = ACTIONS(3283), - [sym___r_double_quote] = ACTIONS(3283), - [sym___r_single_quote] = ACTIONS(3283), + [sym_block_comment] = STATE(1083), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym_AT_LBRACK] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), }, [1084] = { [sym_line_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym___global] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_union] = ACTIONS(3279), - [anon_sym_pub] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_defer] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_DOLLARfor] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_POUND] = ACTIONS(3279), - [anon_sym_asm] = ACTIONS(3279), - [anon_sym_AT_LBRACK] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), + [sym_block_comment] = STATE(1084), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym___global] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_defer] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_DOLLARfor] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym_AT_LBRACK] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), }, [1085] = { [sym_line_comment] = STATE(1085), - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym___global] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_pub] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [anon_sym_assert] = ACTIONS(3263), - [anon_sym_defer] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_DOLLARfor] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_POUND] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym_AT_LBRACK] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), + [sym_block_comment] = STATE(1085), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym___global] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3218), + [anon_sym_pub] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [anon_sym_assert] = ACTIONS(3218), + [anon_sym_defer] = ACTIONS(3218), + [anon_sym_goto] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_DOLLARfor] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_asm] = ACTIONS(3218), + [anon_sym_AT_LBRACK] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), }, [1086] = { [sym_line_comment] = STATE(1086), - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym___global] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_pub] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [anon_sym_assert] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_DOLLARfor] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym_AT_LBRACK] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), + [sym_block_comment] = STATE(1086), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym___global] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_union] = ACTIONS(3206), + [anon_sym_pub] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [sym_pseudo_compile_time_identifier] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [anon_sym_assert] = ACTIONS(3206), + [anon_sym_defer] = ACTIONS(3206), + [anon_sym_goto] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_DOLLARfor] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(3206), + [anon_sym_asm] = ACTIONS(3206), + [anon_sym_AT_LBRACK] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), }, [1087] = { [sym_line_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym___global] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_pub] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [anon_sym_assert] = ACTIONS(3243), - [anon_sym_defer] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_DOLLARfor] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym_AT_LBRACK] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), + [sym_block_comment] = STATE(1087), + [ts_builtin_sym_end] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_CR] = ACTIONS(3258), + [anon_sym_CR_LF] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3258), + [anon_sym_as] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym___global] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PERCENT] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_union] = ACTIONS(3258), + [anon_sym_pub] = ACTIONS(3258), + [anon_sym_mut] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_go] = ACTIONS(3258), + [anon_sym_spawn] = ACTIONS(3258), + [anon_sym_json_DOTdecode] = ACTIONS(3258), + [anon_sym_LBRACK2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_CARET] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_LT_DASH] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3258), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3258), + [anon_sym_AMP_CARET] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3258), + [sym_none] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_nil] = ACTIONS(3258), + [anon_sym_QMARK_DOT] = ACTIONS(3258), + [anon_sym_POUND_LBRACK] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_DOLLARif] = ACTIONS(3258), + [anon_sym_is] = ACTIONS(3258), + [anon_sym_BANGis] = ACTIONS(3258), + [anon_sym_in] = ACTIONS(3258), + [anon_sym_BANGin] = ACTIONS(3258), + [anon_sym_match] = ACTIONS(3258), + [anon_sym_select] = ACTIONS(3258), + [anon_sym_lock] = ACTIONS(3258), + [anon_sym_rlock] = ACTIONS(3258), + [anon_sym_unsafe] = ACTIONS(3258), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(3258), + [sym_rune_literal] = ACTIONS(3258), + [sym_pseudo_compile_time_identifier] = ACTIONS(3258), + [anon_sym_shared] = ACTIONS(3258), + [anon_sym_map_LBRACK] = ACTIONS(3258), + [anon_sym_chan] = ACTIONS(3258), + [anon_sym_thread] = ACTIONS(3258), + [anon_sym_atomic] = ACTIONS(3258), + [anon_sym_assert] = ACTIONS(3258), + [anon_sym_defer] = ACTIONS(3258), + [anon_sym_goto] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_DOLLARfor] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_POUND] = ACTIONS(3258), + [anon_sym_asm] = ACTIONS(3258), + [anon_sym_AT_LBRACK] = ACTIONS(3258), + [sym___double_quote] = ACTIONS(3258), + [sym___single_quote] = ACTIONS(3258), + [sym___c_double_quote] = ACTIONS(3258), + [sym___c_single_quote] = ACTIONS(3258), + [sym___r_double_quote] = ACTIONS(3258), + [sym___r_single_quote] = ACTIONS(3258), }, [1088] = { [sym_line_comment] = STATE(1088), - [ts_builtin_sym_end] = ACTIONS(3177), - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym___global] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_union] = ACTIONS(3179), - [anon_sym_pub] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [sym_pseudo_compile_time_identifier] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [anon_sym_assert] = ACTIONS(3179), - [anon_sym_defer] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_DOLLARfor] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(3179), - [anon_sym_asm] = ACTIONS(3179), - [anon_sym_AT_LBRACK] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [sym_block_comment] = STATE(1088), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym___global] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3262), + [anon_sym_pub] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [anon_sym_assert] = ACTIONS(3262), + [anon_sym_defer] = ACTIONS(3262), + [anon_sym_goto] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_DOLLARfor] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_POUND] = ACTIONS(3262), + [anon_sym_asm] = ACTIONS(3262), + [anon_sym_AT_LBRACK] = ACTIONS(3262), + [sym___double_quote] = ACTIONS(3262), + [sym___single_quote] = ACTIONS(3262), + [sym___c_double_quote] = ACTIONS(3262), + [sym___c_single_quote] = ACTIONS(3262), + [sym___r_double_quote] = ACTIONS(3262), + [sym___r_single_quote] = ACTIONS(3262), }, [1089] = { [sym_line_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym___global] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_pub] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_DOLLARfor] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym_AT_LBRACK] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), + [sym_block_comment] = STATE(1089), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym___global] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_union] = ACTIONS(3266), + [anon_sym_pub] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [anon_sym_assert] = ACTIONS(3266), + [anon_sym_defer] = ACTIONS(3266), + [anon_sym_goto] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_DOLLARfor] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_POUND] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3266), + [anon_sym_AT_LBRACK] = ACTIONS(3266), + [sym___double_quote] = ACTIONS(3266), + [sym___single_quote] = ACTIONS(3266), + [sym___c_double_quote] = ACTIONS(3266), + [sym___c_single_quote] = ACTIONS(3266), + [sym___r_double_quote] = ACTIONS(3266), + [sym___r_single_quote] = ACTIONS(3266), }, [1090] = { [sym_line_comment] = STATE(1090), - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_pub] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3227), - [sym_rune_literal] = ACTIONS(3227), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3227), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [anon_sym_assert] = ACTIONS(3227), - [anon_sym_defer] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_DOLLARfor] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_POUND] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym_AT_LBRACK] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3227), - [sym___single_quote] = ACTIONS(3227), - [sym___c_double_quote] = ACTIONS(3227), - [sym___c_single_quote] = ACTIONS(3227), - [sym___r_double_quote] = ACTIONS(3227), - [sym___r_single_quote] = ACTIONS(3227), + [sym_block_comment] = STATE(1090), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym___global] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_union] = ACTIONS(3270), + [anon_sym_pub] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [anon_sym_assert] = ACTIONS(3270), + [anon_sym_defer] = ACTIONS(3270), + [anon_sym_goto] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_DOLLARfor] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_asm] = ACTIONS(3270), + [anon_sym_AT_LBRACK] = ACTIONS(3270), + [sym___double_quote] = ACTIONS(3270), + [sym___single_quote] = ACTIONS(3270), + [sym___c_double_quote] = ACTIONS(3270), + [sym___c_single_quote] = ACTIONS(3270), + [sym___r_double_quote] = ACTIONS(3270), + [sym___r_single_quote] = ACTIONS(3270), }, [1091] = { [sym_line_comment] = STATE(1091), - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym___global] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_pub] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_defer] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_DOLLARfor] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym_AT_LBRACK] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), + [sym_block_comment] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LF] = ACTIONS(3166), + [anon_sym_CR] = ACTIONS(3166), + [anon_sym_CR_LF] = ACTIONS(3166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym___global] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3166), + [anon_sym_union] = ACTIONS(3166), + [anon_sym_pub] = ACTIONS(3166), + [anon_sym_mut] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_QMARK] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3166), + [anon_sym_json_DOTdecode] = ACTIONS(3166), + [anon_sym_LBRACK2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_CARET] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT_DASH] = ACTIONS(3166), + [anon_sym_LT_LT] = ACTIONS(3166), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3166), + [anon_sym_AMP_CARET] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_or] = ACTIONS(3166), + [sym_none] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_nil] = ACTIONS(3166), + [anon_sym_QMARK_DOT] = ACTIONS(3166), + [anon_sym_POUND_LBRACK] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_DOLLARif] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3166), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_match] = ACTIONS(3166), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3166), + [anon_sym_rlock] = ACTIONS(3166), + [anon_sym_unsafe] = ACTIONS(3166), + [anon_sym_sql] = ACTIONS(3166), + [sym_int_literal] = ACTIONS(3166), + [sym_float_literal] = ACTIONS(3166), + [sym_rune_literal] = ACTIONS(3166), + [sym_pseudo_compile_time_identifier] = ACTIONS(3166), + [anon_sym_shared] = ACTIONS(3166), + [anon_sym_map_LBRACK] = ACTIONS(3166), + [anon_sym_chan] = ACTIONS(3166), + [anon_sym_thread] = ACTIONS(3166), + [anon_sym_atomic] = ACTIONS(3166), + [anon_sym_assert] = ACTIONS(3166), + [anon_sym_defer] = ACTIONS(3166), + [anon_sym_goto] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_DOLLARfor] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_POUND] = ACTIONS(3166), + [anon_sym_asm] = ACTIONS(3166), + [anon_sym_AT_LBRACK] = ACTIONS(3166), + [sym___double_quote] = ACTIONS(3166), + [sym___single_quote] = ACTIONS(3166), + [sym___c_double_quote] = ACTIONS(3166), + [sym___c_single_quote] = ACTIONS(3166), + [sym___r_double_quote] = ACTIONS(3166), + [sym___r_single_quote] = ACTIONS(3166), }, [1092] = { [sym_line_comment] = STATE(1092), - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym___global] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_pub] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [anon_sym_assert] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_DOLLARfor] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym_AT_LBRACK] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), + [sym_block_comment] = STATE(1092), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym___global] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_pub] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [sym_pseudo_compile_time_identifier] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [anon_sym_assert] = ACTIONS(3230), + [anon_sym_defer] = ACTIONS(3230), + [anon_sym_goto] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_DOLLARfor] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_POUND] = ACTIONS(3230), + [anon_sym_asm] = ACTIONS(3230), + [anon_sym_AT_LBRACK] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, [1093] = { [sym_line_comment] = STATE(1093), - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym___global] = ACTIONS(3155), - [anon_sym_type] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_pub] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [sym_pseudo_compile_time_identifier] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [anon_sym_assert] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_DOLLARfor] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_POUND] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym_AT_LBRACK] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), + [sym_block_comment] = STATE(1093), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1094] = { [sym_line_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3131), - [anon_sym_LF] = ACTIONS(3131), - [anon_sym_CR] = ACTIONS(3131), - [anon_sym_CR_LF] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym___global] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_fn] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_pub] = ACTIONS(3131), - [anon_sym_mut] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_go] = ACTIONS(3131), - [anon_sym_spawn] = ACTIONS(3131), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_nil] = ACTIONS(3131), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_DOLLARif] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3131), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_rlock] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_sql] = ACTIONS(3131), - [sym_int_literal] = ACTIONS(3131), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3131), - [anon_sym_shared] = ACTIONS(3131), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3131), - [anon_sym_thread] = ACTIONS(3131), - [anon_sym_atomic] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_defer] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_DOLLARfor] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym_AT_LBRACK] = ACTIONS(3131), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), + [sym_block_comment] = STATE(1094), + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LF] = ACTIONS(3298), + [anon_sym_CR] = ACTIONS(3298), + [anon_sym_CR_LF] = ACTIONS(3298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym___global] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_union] = ACTIONS(3298), + [anon_sym_pub] = ACTIONS(3298), + [anon_sym_mut] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_QMARK] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3298), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_LT_DASH] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_GT_GT_GT] = ACTIONS(3298), + [anon_sym_AMP_CARET] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3298), + [sym_none] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_nil] = ACTIONS(3298), + [anon_sym_QMARK_DOT] = ACTIONS(3298), + [anon_sym_POUND_LBRACK] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_DOLLARif] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3298), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_lock] = ACTIONS(3298), + [anon_sym_rlock] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(3298), + [anon_sym_sql] = ACTIONS(3298), + [sym_int_literal] = ACTIONS(3298), + [sym_float_literal] = ACTIONS(3298), + [sym_rune_literal] = ACTIONS(3298), + [sym_pseudo_compile_time_identifier] = ACTIONS(3298), + [anon_sym_shared] = ACTIONS(3298), + [anon_sym_map_LBRACK] = ACTIONS(3298), + [anon_sym_chan] = ACTIONS(3298), + [anon_sym_thread] = ACTIONS(3298), + [anon_sym_atomic] = ACTIONS(3298), + [anon_sym_assert] = ACTIONS(3298), + [anon_sym_defer] = ACTIONS(3298), + [anon_sym_goto] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_DOLLARfor] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_POUND] = ACTIONS(3298), + [anon_sym_asm] = ACTIONS(3298), + [anon_sym_AT_LBRACK] = ACTIONS(3298), + [sym___double_quote] = ACTIONS(3298), + [sym___single_quote] = ACTIONS(3298), + [sym___c_double_quote] = ACTIONS(3298), + [sym___c_single_quote] = ACTIONS(3298), + [sym___r_double_quote] = ACTIONS(3298), + [sym___r_single_quote] = ACTIONS(3298), }, [1095] = { [sym_line_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [sym_pseudo_compile_time_identifier] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [sym_block_comment] = STATE(1095), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LF] = ACTIONS(3116), + [anon_sym_CR] = ACTIONS(3116), + [anon_sym_CR_LF] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym___global] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_union] = ACTIONS(3116), + [anon_sym_pub] = ACTIONS(3116), + [anon_sym_mut] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3116), + [anon_sym_spawn] = ACTIONS(3116), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_nil] = ACTIONS(3116), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_DOLLARif] = ACTIONS(3116), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_select] = ACTIONS(3116), + [anon_sym_lock] = ACTIONS(3116), + [anon_sym_rlock] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_sql] = ACTIONS(3116), + [sym_int_literal] = ACTIONS(3116), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [sym_pseudo_compile_time_identifier] = ACTIONS(3116), + [anon_sym_shared] = ACTIONS(3116), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3116), + [anon_sym_thread] = ACTIONS(3116), + [anon_sym_atomic] = ACTIONS(3116), + [anon_sym_assert] = ACTIONS(3116), + [anon_sym_defer] = ACTIONS(3116), + [anon_sym_goto] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_DOLLARfor] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym_AT_LBRACK] = ACTIONS(3116), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, [1096] = { [sym_line_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [anon_sym_assert] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_DOLLARfor] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym_AT_LBRACK] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), + [sym_block_comment] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(3042), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_const] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym___global] = ACTIONS(3044), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_union] = ACTIONS(3044), + [anon_sym_pub] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_enum] = ACTIONS(3044), + [anon_sym_interface] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [anon_sym_assert] = ACTIONS(3044), + [anon_sym_defer] = ACTIONS(3044), + [anon_sym_goto] = ACTIONS(3044), + [anon_sym_break] = ACTIONS(3044), + [anon_sym_continue] = ACTIONS(3044), + [anon_sym_return] = ACTIONS(3044), + [anon_sym_DOLLARfor] = ACTIONS(3044), + [anon_sym_for] = ACTIONS(3044), + [anon_sym_POUND] = ACTIONS(3044), + [anon_sym_asm] = ACTIONS(3044), + [anon_sym_AT_LBRACK] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [1097] = { [sym_line_comment] = STATE(1097), - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [sym_block_comment] = STATE(1097), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_CR] = ACTIONS(3314), + [anon_sym_CR_LF] = ACTIONS(3314), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym___global] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_EQ_EQ] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_LT_EQ] = ACTIONS(3314), + [anon_sym_GT_EQ] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3314), + [anon_sym_union] = ACTIONS(3314), + [anon_sym_pub] = ACTIONS(3314), + [anon_sym_mut] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_go] = ACTIONS(3314), + [anon_sym_spawn] = ACTIONS(3314), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_CARET] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_LT_LT] = ACTIONS(3314), + [anon_sym_GT_GT] = ACTIONS(3314), + [anon_sym_GT_GT_GT] = ACTIONS(3314), + [anon_sym_AMP_CARET] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_or] = ACTIONS(3314), + [sym_none] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_nil] = ACTIONS(3314), + [anon_sym_QMARK_DOT] = ACTIONS(3314), + [anon_sym_POUND_LBRACK] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_is] = ACTIONS(3314), + [anon_sym_BANGis] = ACTIONS(3314), + [anon_sym_in] = ACTIONS(3314), + [anon_sym_BANGin] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3314), + [anon_sym_rlock] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(3314), + [anon_sym_sql] = ACTIONS(3314), + [sym_int_literal] = ACTIONS(3314), + [sym_float_literal] = ACTIONS(3314), + [sym_rune_literal] = ACTIONS(3314), + [sym_pseudo_compile_time_identifier] = ACTIONS(3314), + [anon_sym_shared] = ACTIONS(3314), + [anon_sym_map_LBRACK] = ACTIONS(3314), + [anon_sym_chan] = ACTIONS(3314), + [anon_sym_thread] = ACTIONS(3314), + [anon_sym_atomic] = ACTIONS(3314), + [anon_sym_assert] = ACTIONS(3314), + [anon_sym_defer] = ACTIONS(3314), + [anon_sym_goto] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_DOLLARfor] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_POUND] = ACTIONS(3314), + [anon_sym_asm] = ACTIONS(3314), + [anon_sym_AT_LBRACK] = ACTIONS(3314), + [sym___double_quote] = ACTIONS(3314), + [sym___single_quote] = ACTIONS(3314), + [sym___c_double_quote] = ACTIONS(3314), + [sym___c_single_quote] = ACTIONS(3314), + [sym___r_double_quote] = ACTIONS(3314), + [sym___r_single_quote] = ACTIONS(3314), }, [1098] = { [sym_line_comment] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [sym_block_comment] = STATE(1098), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym___global] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_pub] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_defer] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_DOLLARfor] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym_AT_LBRACK] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), }, [1099] = { [sym_line_comment] = STATE(1099), - [ts_builtin_sym_end] = ACTIONS(3197), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [sym_block_comment] = STATE(1099), + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym___global] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [sym_pseudo_compile_time_identifier] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [anon_sym_assert] = ACTIONS(3040), + [anon_sym_defer] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_DOLLARfor] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym_AT_LBRACK] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, [1100] = { [sym_line_comment] = STATE(1100), - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [sym_pseudo_compile_time_identifier] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [sym_block_comment] = STATE(1100), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym___global] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_pub] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [anon_sym_assert] = ACTIONS(3374), + [anon_sym_defer] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_DOLLARfor] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_asm] = ACTIONS(3374), + [anon_sym_AT_LBRACK] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, [1101] = { [sym_line_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), + [sym_block_comment] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_CR] = ACTIONS(2971), + [anon_sym_CR_LF] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym___global] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_interface] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [anon_sym_assert] = ACTIONS(2971), + [anon_sym_defer] = ACTIONS(2971), + [anon_sym_goto] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_DOLLARfor] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_asm] = ACTIONS(2971), + [anon_sym_AT_LBRACK] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2971), + [sym___single_quote] = ACTIONS(2971), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2971), + [sym___r_double_quote] = ACTIONS(2971), + [sym___r_single_quote] = ACTIONS(2971), }, [1102] = { [sym_line_comment] = STATE(1102), - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym___global] = ACTIONS(3151), - [anon_sym_type] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_pub] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [sym_pseudo_compile_time_identifier] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [anon_sym_assert] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_DOLLARfor] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym_AT_LBRACK] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [sym_block_comment] = STATE(1102), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_CR] = ACTIONS(3120), + [anon_sym_CR_LF] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym___global] = ACTIONS(3120), + [anon_sym_type] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_pub] = ACTIONS(3120), + [anon_sym_mut] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_interface] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3120), + [anon_sym_spawn] = ACTIONS(3120), + [anon_sym_json_DOTdecode] = ACTIONS(3120), + [anon_sym_LBRACK2] = ACTIONS(3120), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_or] = ACTIONS(3120), + [sym_none] = ACTIONS(3120), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [sym_nil] = ACTIONS(3120), + [anon_sym_QMARK_DOT] = ACTIONS(3120), + [anon_sym_POUND_LBRACK] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_DOLLARif] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3120), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_in] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_select] = ACTIONS(3120), + [anon_sym_lock] = ACTIONS(3120), + [anon_sym_rlock] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_sql] = ACTIONS(3120), + [sym_int_literal] = ACTIONS(3120), + [sym_float_literal] = ACTIONS(3120), + [sym_rune_literal] = ACTIONS(3120), + [sym_pseudo_compile_time_identifier] = ACTIONS(3120), + [anon_sym_shared] = ACTIONS(3120), + [anon_sym_map_LBRACK] = ACTIONS(3120), + [anon_sym_chan] = ACTIONS(3120), + [anon_sym_thread] = ACTIONS(3120), + [anon_sym_atomic] = ACTIONS(3120), + [anon_sym_assert] = ACTIONS(3120), + [anon_sym_defer] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_DOLLARfor] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym_AT_LBRACK] = ACTIONS(3120), + [sym___double_quote] = ACTIONS(3120), + [sym___single_quote] = ACTIONS(3120), + [sym___c_double_quote] = ACTIONS(3120), + [sym___c_single_quote] = ACTIONS(3120), + [sym___r_double_quote] = ACTIONS(3120), + [sym___r_single_quote] = ACTIONS(3120), }, [1103] = { [sym_line_comment] = STATE(1103), - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [sym_block_comment] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym___global] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_pub] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [anon_sym_assert] = ACTIONS(3382), + [anon_sym_defer] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_DOLLARfor] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3382), + [anon_sym_asm] = ACTIONS(3382), + [anon_sym_AT_LBRACK] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), }, [1104] = { [sym_line_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym___global] = ACTIONS(3175), - [anon_sym_type] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_union] = ACTIONS(3175), - [anon_sym_pub] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [sym_pseudo_compile_time_identifier] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [anon_sym_assert] = ACTIONS(3175), - [anon_sym_defer] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_DOLLARfor] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_POUND] = ACTIONS(3175), - [anon_sym_asm] = ACTIONS(3175), - [anon_sym_AT_LBRACK] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [sym_block_comment] = STATE(1104), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_LF] = ACTIONS(3386), + [anon_sym_CR] = ACTIONS(3386), + [anon_sym_CR_LF] = ACTIONS(3386), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_as] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym___global] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_fn] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PERCENT] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3386), + [anon_sym_BANG_EQ] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_union] = ACTIONS(3386), + [anon_sym_pub] = ACTIONS(3386), + [anon_sym_mut] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_go] = ACTIONS(3386), + [anon_sym_spawn] = ACTIONS(3386), + [anon_sym_json_DOTdecode] = ACTIONS(3386), + [anon_sym_LBRACK2] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3386), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3386), + [anon_sym_AMP_CARET] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_PIPE_PIPE] = ACTIONS(3386), + [anon_sym_or] = ACTIONS(3386), + [sym_none] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_nil] = ACTIONS(3386), + [anon_sym_QMARK_DOT] = ACTIONS(3386), + [anon_sym_POUND_LBRACK] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_DOLLARif] = ACTIONS(3386), + [anon_sym_is] = ACTIONS(3386), + [anon_sym_BANGis] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_BANGin] = ACTIONS(3386), + [anon_sym_match] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [anon_sym_lock] = ACTIONS(3386), + [anon_sym_rlock] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_sql] = ACTIONS(3386), + [sym_int_literal] = ACTIONS(3386), + [sym_float_literal] = ACTIONS(3386), + [sym_rune_literal] = ACTIONS(3386), + [sym_pseudo_compile_time_identifier] = ACTIONS(3386), + [anon_sym_shared] = ACTIONS(3386), + [anon_sym_map_LBRACK] = ACTIONS(3386), + [anon_sym_chan] = ACTIONS(3386), + [anon_sym_thread] = ACTIONS(3386), + [anon_sym_atomic] = ACTIONS(3386), + [anon_sym_assert] = ACTIONS(3386), + [anon_sym_defer] = ACTIONS(3386), + [anon_sym_goto] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_DOLLARfor] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3386), + [anon_sym_asm] = ACTIONS(3386), + [anon_sym_AT_LBRACK] = ACTIONS(3386), + [sym___double_quote] = ACTIONS(3386), + [sym___single_quote] = ACTIONS(3386), + [sym___c_double_quote] = ACTIONS(3386), + [sym___c_single_quote] = ACTIONS(3386), + [sym___r_double_quote] = ACTIONS(3386), + [sym___r_single_quote] = ACTIONS(3386), }, [1105] = { [sym_line_comment] = STATE(1105), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym___global] = ACTIONS(3171), - [anon_sym_type] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_pub] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [sym_pseudo_compile_time_identifier] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [anon_sym_assert] = ACTIONS(3171), - [anon_sym_defer] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_DOLLARfor] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_POUND] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym_AT_LBRACK] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), + [sym_block_comment] = STATE(1105), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3390), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_CR] = ACTIONS(3390), + [anon_sym_CR_LF] = ACTIONS(3390), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3390), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3390), + [anon_sym___global] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_fn] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PERCENT] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_EQ_EQ] = ACTIONS(3390), + [anon_sym_BANG_EQ] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(3390), + [anon_sym_union] = ACTIONS(3390), + [anon_sym_pub] = ACTIONS(3390), + [anon_sym_mut] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3390), + [anon_sym_DASH_DASH] = ACTIONS(3390), + [anon_sym_QMARK] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3390), + [anon_sym_spawn] = ACTIONS(3390), + [anon_sym_json_DOTdecode] = ACTIONS(3390), + [anon_sym_LBRACK2] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_LT_DASH] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3390), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3390), + [anon_sym_AMP_CARET] = ACTIONS(3390), + [anon_sym_AMP_AMP] = ACTIONS(3390), + [anon_sym_PIPE_PIPE] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3390), + [sym_none] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_nil] = ACTIONS(3390), + [anon_sym_QMARK_DOT] = ACTIONS(3390), + [anon_sym_POUND_LBRACK] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_DOLLARif] = ACTIONS(3390), + [anon_sym_is] = ACTIONS(3390), + [anon_sym_BANGis] = ACTIONS(3390), + [anon_sym_in] = ACTIONS(3390), + [anon_sym_BANGin] = ACTIONS(3390), + [anon_sym_match] = ACTIONS(3390), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3390), + [anon_sym_rlock] = ACTIONS(3390), + [anon_sym_unsafe] = ACTIONS(3390), + [anon_sym_sql] = ACTIONS(3390), + [sym_int_literal] = ACTIONS(3390), + [sym_float_literal] = ACTIONS(3390), + [sym_rune_literal] = ACTIONS(3390), + [sym_pseudo_compile_time_identifier] = ACTIONS(3390), + [anon_sym_shared] = ACTIONS(3390), + [anon_sym_map_LBRACK] = ACTIONS(3390), + [anon_sym_chan] = ACTIONS(3390), + [anon_sym_thread] = ACTIONS(3390), + [anon_sym_atomic] = ACTIONS(3390), + [anon_sym_assert] = ACTIONS(3390), + [anon_sym_defer] = ACTIONS(3390), + [anon_sym_goto] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_DOLLARfor] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_POUND] = ACTIONS(3390), + [anon_sym_asm] = ACTIONS(3390), + [anon_sym_AT_LBRACK] = ACTIONS(3390), + [sym___double_quote] = ACTIONS(3390), + [sym___single_quote] = ACTIONS(3390), + [sym___c_double_quote] = ACTIONS(3390), + [sym___c_single_quote] = ACTIONS(3390), + [sym___r_double_quote] = ACTIONS(3390), + [sym___r_single_quote] = ACTIONS(3390), }, [1106] = { [sym_line_comment] = STATE(1106), - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym___global] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_pub] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [sym_pseudo_compile_time_identifier] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [anon_sym_assert] = ACTIONS(3163), - [anon_sym_defer] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_DOLLARfor] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_POUND] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym_AT_LBRACK] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), + [sym_block_comment] = STATE(1106), + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3142), + [anon_sym_LF] = ACTIONS(3142), + [anon_sym_CR] = ACTIONS(3142), + [anon_sym_CR_LF] = ACTIONS(3142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym___global] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_fn] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PERCENT] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3142), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_pub] = ACTIONS(3142), + [anon_sym_mut] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_go] = ACTIONS(3142), + [anon_sym_spawn] = ACTIONS(3142), + [anon_sym_json_DOTdecode] = ACTIONS(3142), + [anon_sym_LBRACK2] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_LT_DASH] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3142), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3142), + [anon_sym_AMP_CARET] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3142), + [sym_none] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nil] = ACTIONS(3142), + [anon_sym_QMARK_DOT] = ACTIONS(3142), + [anon_sym_POUND_LBRACK] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_DOLLARif] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3142), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_match] = ACTIONS(3142), + [anon_sym_select] = ACTIONS(3142), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(3142), + [anon_sym_sql] = ACTIONS(3142), + [sym_int_literal] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3142), + [sym_rune_literal] = ACTIONS(3142), + [sym_pseudo_compile_time_identifier] = ACTIONS(3142), + [anon_sym_shared] = ACTIONS(3142), + [anon_sym_map_LBRACK] = ACTIONS(3142), + [anon_sym_chan] = ACTIONS(3142), + [anon_sym_thread] = ACTIONS(3142), + [anon_sym_atomic] = ACTIONS(3142), + [anon_sym_assert] = ACTIONS(3142), + [anon_sym_defer] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_DOLLARfor] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3142), + [anon_sym_asm] = ACTIONS(3142), + [anon_sym_AT_LBRACK] = ACTIONS(3142), + [sym___double_quote] = ACTIONS(3142), + [sym___single_quote] = ACTIONS(3142), + [sym___c_double_quote] = ACTIONS(3142), + [sym___c_single_quote] = ACTIONS(3142), + [sym___r_double_quote] = ACTIONS(3142), + [sym___r_single_quote] = ACTIONS(3142), }, [1107] = { [sym_line_comment] = STATE(1107), - [ts_builtin_sym_end] = ACTIONS(3157), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym___global] = ACTIONS(3159), - [anon_sym_type] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_union] = ACTIONS(3159), - [anon_sym_pub] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [sym_pseudo_compile_time_identifier] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [anon_sym_assert] = ACTIONS(3159), - [anon_sym_defer] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_DOLLARfor] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_POUND] = ACTIONS(3159), - [anon_sym_asm] = ACTIONS(3159), - [anon_sym_AT_LBRACK] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [sym_block_comment] = STATE(1107), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym___global] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym_AT_LBRACK] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), }, [1108] = { [sym_line_comment] = STATE(1108), - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_identifier] = ACTIONS(3123), - [anon_sym_LF] = ACTIONS(3123), - [anon_sym_CR] = ACTIONS(3123), - [anon_sym_CR_LF] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_as] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym___global] = ACTIONS(3123), - [anon_sym_type] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_fn] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_pub] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_interface] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_go] = ACTIONS(3123), - [anon_sym_spawn] = ACTIONS(3123), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_nil] = ACTIONS(3123), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_DOLLARif] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_sql] = ACTIONS(3123), - [sym_int_literal] = ACTIONS(3123), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [sym_pseudo_compile_time_identifier] = ACTIONS(3123), - [anon_sym_shared] = ACTIONS(3123), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3123), - [anon_sym_thread] = ACTIONS(3123), - [anon_sym_atomic] = ACTIONS(3123), - [anon_sym_assert] = ACTIONS(3123), - [anon_sym_defer] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_DOLLARfor] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_POUND] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym_AT_LBRACK] = ACTIONS(3123), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), + [sym_block_comment] = STATE(1108), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1109] = { [sym_line_comment] = STATE(1109), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym___global] = ACTIONS(2965), - [anon_sym_type] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_pub] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_interface] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [anon_sym_assert] = ACTIONS(2965), - [anon_sym_defer] = ACTIONS(2965), - [anon_sym_goto] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_DOLLARfor] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_POUND] = ACTIONS(2965), - [anon_sym_asm] = ACTIONS(2965), - [anon_sym_AT_LBRACK] = ACTIONS(2965), - [sym___double_quote] = ACTIONS(2965), - [sym___single_quote] = ACTIONS(2965), - [sym___c_double_quote] = ACTIONS(2965), - [sym___c_single_quote] = ACTIONS(2965), - [sym___r_double_quote] = ACTIONS(2965), - [sym___r_single_quote] = ACTIONS(2965), + [sym_block_comment] = STATE(1109), + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym___global] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_pub] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [sym_pseudo_compile_time_identifier] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [anon_sym_assert] = ACTIONS(3170), + [anon_sym_defer] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_DOLLARfor] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_POUND] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym_AT_LBRACK] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, [1110] = { [sym_line_comment] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(3049), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_const] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym___global] = ACTIONS(3051), - [anon_sym_type] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_union] = ACTIONS(3051), - [anon_sym_pub] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [anon_sym_assert] = ACTIONS(3051), - [anon_sym_defer] = ACTIONS(3051), - [anon_sym_goto] = ACTIONS(3051), - [anon_sym_break] = ACTIONS(3051), - [anon_sym_continue] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3051), - [anon_sym_DOLLARfor] = ACTIONS(3051), - [anon_sym_for] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_asm] = ACTIONS(3051), - [anon_sym_AT_LBRACK] = ACTIONS(3051), - [sym___double_quote] = ACTIONS(3051), - [sym___single_quote] = ACTIONS(3051), - [sym___c_double_quote] = ACTIONS(3051), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3051), - [sym___r_single_quote] = ACTIONS(3051), + [sym_block_comment] = STATE(1110), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1111] = { [sym_line_comment] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(3017), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_const] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym___global] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_union] = ACTIONS(3019), - [anon_sym_pub] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_enum] = ACTIONS(3019), - [anon_sym_interface] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [anon_sym_assert] = ACTIONS(3019), - [anon_sym_defer] = ACTIONS(3019), - [anon_sym_goto] = ACTIONS(3019), - [anon_sym_break] = ACTIONS(3019), - [anon_sym_continue] = ACTIONS(3019), - [anon_sym_return] = ACTIONS(3019), - [anon_sym_DOLLARfor] = ACTIONS(3019), - [anon_sym_for] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_asm] = ACTIONS(3019), - [anon_sym_AT_LBRACK] = ACTIONS(3019), - [sym___double_quote] = ACTIONS(3019), - [sym___single_quote] = ACTIONS(3019), - [sym___c_double_quote] = ACTIONS(3019), - [sym___c_single_quote] = ACTIONS(3019), - [sym___r_double_quote] = ACTIONS(3019), - [sym___r_single_quote] = ACTIONS(3019), + [sym_block_comment] = STATE(1111), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_CR] = ACTIONS(3414), + [anon_sym_CR_LF] = ACTIONS(3414), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_as] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym___global] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_fn] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_BANG_EQ] = ACTIONS(3414), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_union] = ACTIONS(3414), + [anon_sym_pub] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_QMARK] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(3414), + [anon_sym_spawn] = ACTIONS(3414), + [anon_sym_json_DOTdecode] = ACTIONS(3414), + [anon_sym_LBRACK2] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_GT_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_CARET] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_or] = ACTIONS(3414), + [sym_none] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_nil] = ACTIONS(3414), + [anon_sym_QMARK_DOT] = ACTIONS(3414), + [anon_sym_POUND_LBRACK] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_DOLLARif] = ACTIONS(3414), + [anon_sym_is] = ACTIONS(3414), + [anon_sym_BANGis] = ACTIONS(3414), + [anon_sym_in] = ACTIONS(3414), + [anon_sym_BANGin] = ACTIONS(3414), + [anon_sym_match] = ACTIONS(3414), + [anon_sym_select] = ACTIONS(3414), + [anon_sym_lock] = ACTIONS(3414), + [anon_sym_rlock] = ACTIONS(3414), + [anon_sym_unsafe] = ACTIONS(3414), + [anon_sym_sql] = ACTIONS(3414), + [sym_int_literal] = ACTIONS(3414), + [sym_float_literal] = ACTIONS(3414), + [sym_rune_literal] = ACTIONS(3414), + [sym_pseudo_compile_time_identifier] = ACTIONS(3414), + [anon_sym_shared] = ACTIONS(3414), + [anon_sym_map_LBRACK] = ACTIONS(3414), + [anon_sym_chan] = ACTIONS(3414), + [anon_sym_thread] = ACTIONS(3414), + [anon_sym_atomic] = ACTIONS(3414), + [anon_sym_assert] = ACTIONS(3414), + [anon_sym_defer] = ACTIONS(3414), + [anon_sym_goto] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_DOLLARfor] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_POUND] = ACTIONS(3414), + [anon_sym_asm] = ACTIONS(3414), + [anon_sym_AT_LBRACK] = ACTIONS(3414), + [sym___double_quote] = ACTIONS(3414), + [sym___single_quote] = ACTIONS(3414), + [sym___c_double_quote] = ACTIONS(3414), + [sym___c_single_quote] = ACTIONS(3414), + [sym___r_double_quote] = ACTIONS(3414), + [sym___r_single_quote] = ACTIONS(3414), }, [1112] = { [sym_line_comment] = STATE(1112), - [ts_builtin_sym_end] = ACTIONS(3013), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_const] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym___global] = ACTIONS(3015), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3015), - [anon_sym_pub] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_enum] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), - [anon_sym_assert] = ACTIONS(3015), - [anon_sym_defer] = ACTIONS(3015), - [anon_sym_goto] = ACTIONS(3015), - [anon_sym_break] = ACTIONS(3015), - [anon_sym_continue] = ACTIONS(3015), - [anon_sym_return] = ACTIONS(3015), - [anon_sym_DOLLARfor] = ACTIONS(3015), - [anon_sym_for] = ACTIONS(3015), - [anon_sym_POUND] = ACTIONS(3015), - [anon_sym_asm] = ACTIONS(3015), - [anon_sym_AT_LBRACK] = ACTIONS(3015), - [sym___double_quote] = ACTIONS(3015), - [sym___single_quote] = ACTIONS(3015), - [sym___c_double_quote] = ACTIONS(3015), - [sym___c_single_quote] = ACTIONS(3015), - [sym___r_double_quote] = ACTIONS(3015), - [sym___r_single_quote] = ACTIONS(3015), + [sym_block_comment] = STATE(1112), + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym___global] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3226), + [anon_sym_pub] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [sym_pseudo_compile_time_identifier] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [anon_sym_assert] = ACTIONS(3226), + [anon_sym_defer] = ACTIONS(3226), + [anon_sym_goto] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_DOLLARfor] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_POUND] = ACTIONS(3226), + [anon_sym_asm] = ACTIONS(3226), + [anon_sym_AT_LBRACK] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), }, [1113] = { [sym_line_comment] = STATE(1113), - [ts_builtin_sym_end] = ACTIONS(3009), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3011), - [anon_sym_CR] = ACTIONS(3011), - [anon_sym_CR_LF] = ACTIONS(3011), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_const] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym___global] = ACTIONS(3011), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(3011), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [sym_pseudo_compile_time_identifier] = ACTIONS(3011), - [anon_sym_shared] = ACTIONS(3011), - [anon_sym_map_LBRACK] = ACTIONS(3011), - [anon_sym_chan] = ACTIONS(3011), - [anon_sym_thread] = ACTIONS(3011), - [anon_sym_atomic] = ACTIONS(3011), - [anon_sym_assert] = ACTIONS(3011), - [anon_sym_defer] = ACTIONS(3011), - [anon_sym_goto] = ACTIONS(3011), - [anon_sym_break] = ACTIONS(3011), - [anon_sym_continue] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3011), - [anon_sym_DOLLARfor] = ACTIONS(3011), - [anon_sym_for] = ACTIONS(3011), - [anon_sym_POUND] = ACTIONS(3011), - [anon_sym_asm] = ACTIONS(3011), - [anon_sym_AT_LBRACK] = ACTIONS(3011), - [sym___double_quote] = ACTIONS(3011), - [sym___single_quote] = ACTIONS(3011), - [sym___c_double_quote] = ACTIONS(3011), - [sym___c_single_quote] = ACTIONS(3011), - [sym___r_double_quote] = ACTIONS(3011), - [sym___r_single_quote] = ACTIONS(3011), + [sym_block_comment] = STATE(1113), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_CR] = ACTIONS(3242), + [anon_sym_CR_LF] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym___global] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_fn] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_EQ_EQ] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3242), + [anon_sym_GT_EQ] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3242), + [anon_sym_pub] = ACTIONS(3242), + [anon_sym_mut] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_go] = ACTIONS(3242), + [anon_sym_spawn] = ACTIONS(3242), + [anon_sym_json_DOTdecode] = ACTIONS(3242), + [anon_sym_LBRACK2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_CARET] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_LT_LT] = ACTIONS(3242), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3242), + [anon_sym_AMP_CARET] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_or] = ACTIONS(3242), + [sym_none] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_nil] = ACTIONS(3242), + [anon_sym_QMARK_DOT] = ACTIONS(3242), + [anon_sym_POUND_LBRACK] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_DOLLARif] = ACTIONS(3242), + [anon_sym_is] = ACTIONS(3242), + [anon_sym_BANGis] = ACTIONS(3242), + [anon_sym_in] = ACTIONS(3242), + [anon_sym_BANGin] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_lock] = ACTIONS(3242), + [anon_sym_rlock] = ACTIONS(3242), + [anon_sym_unsafe] = ACTIONS(3242), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3242), + [sym_rune_literal] = ACTIONS(3242), + [sym_pseudo_compile_time_identifier] = ACTIONS(3242), + [anon_sym_shared] = ACTIONS(3242), + [anon_sym_map_LBRACK] = ACTIONS(3242), + [anon_sym_chan] = ACTIONS(3242), + [anon_sym_thread] = ACTIONS(3242), + [anon_sym_atomic] = ACTIONS(3242), + [anon_sym_assert] = ACTIONS(3242), + [anon_sym_defer] = ACTIONS(3242), + [anon_sym_goto] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_DOLLARfor] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_POUND] = ACTIONS(3242), + [anon_sym_asm] = ACTIONS(3242), + [anon_sym_AT_LBRACK] = ACTIONS(3242), + [sym___double_quote] = ACTIONS(3242), + [sym___single_quote] = ACTIONS(3242), + [sym___c_double_quote] = ACTIONS(3242), + [sym___c_single_quote] = ACTIONS(3242), + [sym___r_double_quote] = ACTIONS(3242), + [sym___r_single_quote] = ACTIONS(3242), }, [1114] = { [sym_line_comment] = STATE(1114), - [ts_builtin_sym_end] = ACTIONS(3005), - [sym_identifier] = ACTIONS(3007), - [anon_sym_LF] = ACTIONS(3007), - [anon_sym_CR] = ACTIONS(3007), - [anon_sym_CR_LF] = ACTIONS(3007), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_const] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym___global] = ACTIONS(3007), - [anon_sym_type] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_fn] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3007), - [anon_sym_GT] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_union] = ACTIONS(3007), - [anon_sym_pub] = ACTIONS(3007), - [anon_sym_mut] = ACTIONS(3007), - [anon_sym_enum] = ACTIONS(3007), - [anon_sym_interface] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_go] = ACTIONS(3007), - [anon_sym_spawn] = ACTIONS(3007), - [anon_sym_json_DOTdecode] = ACTIONS(3007), - [anon_sym_LBRACK2] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_GT_GT_GT] = ACTIONS(3007), - [anon_sym_AMP_CARET] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_or] = ACTIONS(3007), - [sym_none] = ACTIONS(3007), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_nil] = ACTIONS(3007), - [anon_sym_QMARK_DOT] = ACTIONS(3007), - [anon_sym_POUND_LBRACK] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_DOLLARif] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_in] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_select] = ACTIONS(3007), - [anon_sym_lock] = ACTIONS(3007), - [anon_sym_rlock] = ACTIONS(3007), - [anon_sym_unsafe] = ACTIONS(3007), - [anon_sym_sql] = ACTIONS(3007), - [sym_int_literal] = ACTIONS(3007), - [sym_float_literal] = ACTIONS(3007), - [sym_rune_literal] = ACTIONS(3007), - [sym_pseudo_compile_time_identifier] = ACTIONS(3007), - [anon_sym_shared] = ACTIONS(3007), - [anon_sym_map_LBRACK] = ACTIONS(3007), - [anon_sym_chan] = ACTIONS(3007), - [anon_sym_thread] = ACTIONS(3007), - [anon_sym_atomic] = ACTIONS(3007), - [anon_sym_assert] = ACTIONS(3007), - [anon_sym_defer] = ACTIONS(3007), - [anon_sym_goto] = ACTIONS(3007), - [anon_sym_break] = ACTIONS(3007), - [anon_sym_continue] = ACTIONS(3007), - [anon_sym_return] = ACTIONS(3007), - [anon_sym_DOLLARfor] = ACTIONS(3007), - [anon_sym_for] = ACTIONS(3007), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_asm] = ACTIONS(3007), - [anon_sym_AT_LBRACK] = ACTIONS(3007), - [sym___double_quote] = ACTIONS(3007), - [sym___single_quote] = ACTIONS(3007), - [sym___c_double_quote] = ACTIONS(3007), - [sym___c_single_quote] = ACTIONS(3007), - [sym___r_double_quote] = ACTIONS(3007), - [sym___r_single_quote] = ACTIONS(3007), + [sym_block_comment] = STATE(1114), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), }, [1115] = { [sym_line_comment] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(3053), - [sym_identifier] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_CR] = ACTIONS(3055), - [anon_sym_CR_LF] = ACTIONS(3055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_const] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym___global] = ACTIONS(3055), - [anon_sym_type] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_union] = ACTIONS(3055), - [anon_sym_pub] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_enum] = ACTIONS(3055), - [anon_sym_interface] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [anon_sym_assert] = ACTIONS(3055), - [anon_sym_defer] = ACTIONS(3055), - [anon_sym_goto] = ACTIONS(3055), - [anon_sym_break] = ACTIONS(3055), - [anon_sym_continue] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3055), - [anon_sym_DOLLARfor] = ACTIONS(3055), - [anon_sym_for] = ACTIONS(3055), - [anon_sym_POUND] = ACTIONS(3055), - [anon_sym_asm] = ACTIONS(3055), - [anon_sym_AT_LBRACK] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), + [sym_block_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym___global] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [sym_pseudo_compile_time_identifier] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_defer] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_DOLLARfor] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym_AT_LBRACK] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), }, [1116] = { [sym_line_comment] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym___global] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [anon_sym_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_EQ] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_union] = ACTIONS(3287), - [anon_sym_pub] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3287), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3287), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3287), - [anon_sym_AMP_CARET] = ACTIONS(3287), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3287), - [anon_sym_POUND_LBRACK] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3287), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3287), - [sym_rune_literal] = ACTIONS(3287), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3287), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [anon_sym_assert] = ACTIONS(3287), - [anon_sym_defer] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_DOLLARfor] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_POUND] = ACTIONS(3287), - [anon_sym_asm] = ACTIONS(3287), - [anon_sym_AT_LBRACK] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3287), - [sym___single_quote] = ACTIONS(3287), - [sym___c_double_quote] = ACTIONS(3287), - [sym___c_single_quote] = ACTIONS(3287), - [sym___r_double_quote] = ACTIONS(3287), - [sym___r_single_quote] = ACTIONS(3287), + [sym_block_comment] = STATE(1116), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym___global] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_union] = ACTIONS(3178), + [anon_sym_pub] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [sym_pseudo_compile_time_identifier] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [anon_sym_assert] = ACTIONS(3178), + [anon_sym_defer] = ACTIONS(3178), + [anon_sym_goto] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_DOLLARfor] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_POUND] = ACTIONS(3178), + [anon_sym_asm] = ACTIONS(3178), + [anon_sym_AT_LBRACK] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), }, [1117] = { [sym_line_comment] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3238), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_CR] = ACTIONS(3238), + [anon_sym_CR_LF] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym___global] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_fn] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_pub] = ACTIONS(3238), + [anon_sym_mut] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_QMARK] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_go] = ACTIONS(3238), + [anon_sym_spawn] = ACTIONS(3238), + [anon_sym_json_DOTdecode] = ACTIONS(3238), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3238), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_CARET] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_or] = ACTIONS(3238), + [sym_none] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_nil] = ACTIONS(3238), + [anon_sym_QMARK_DOT] = ACTIONS(3238), + [anon_sym_POUND_LBRACK] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_DOLLARif] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3238), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_match] = ACTIONS(3238), + [anon_sym_select] = ACTIONS(3238), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3238), + [anon_sym_sql] = ACTIONS(3238), + [sym_int_literal] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3238), + [sym_rune_literal] = ACTIONS(3238), + [sym_pseudo_compile_time_identifier] = ACTIONS(3238), + [anon_sym_shared] = ACTIONS(3238), + [anon_sym_map_LBRACK] = ACTIONS(3238), + [anon_sym_chan] = ACTIONS(3238), + [anon_sym_thread] = ACTIONS(3238), + [anon_sym_atomic] = ACTIONS(3238), + [anon_sym_assert] = ACTIONS(3238), + [anon_sym_defer] = ACTIONS(3238), + [anon_sym_goto] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_DOLLARfor] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3238), + [anon_sym_asm] = ACTIONS(3238), + [anon_sym_AT_LBRACK] = ACTIONS(3238), + [sym___double_quote] = ACTIONS(3238), + [sym___single_quote] = ACTIONS(3238), + [sym___c_double_quote] = ACTIONS(3238), + [sym___c_single_quote] = ACTIONS(3238), + [sym___r_double_quote] = ACTIONS(3238), + [sym___r_single_quote] = ACTIONS(3238), }, [1118] = { [sym_line_comment] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [sym_block_comment] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1119] = { [sym_line_comment] = STATE(1119), - [ts_builtin_sym_end] = ACTIONS(3425), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LF] = ACTIONS(3427), - [anon_sym_CR] = ACTIONS(3427), - [anon_sym_CR_LF] = ACTIONS(3427), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym___global] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3427), - [anon_sym_fn] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_EQ_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_LT_EQ] = ACTIONS(3427), - [anon_sym_GT_EQ] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_union] = ACTIONS(3427), - [anon_sym_pub] = ACTIONS(3427), - [anon_sym_mut] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_go] = ACTIONS(3427), - [anon_sym_spawn] = ACTIONS(3427), - [anon_sym_json_DOTdecode] = ACTIONS(3427), - [anon_sym_LBRACK2] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3427), - [anon_sym_GT_GT] = ACTIONS(3427), - [anon_sym_GT_GT_GT] = ACTIONS(3427), - [anon_sym_AMP_CARET] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [sym_none] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_nil] = ACTIONS(3427), - [anon_sym_QMARK_DOT] = ACTIONS(3427), - [anon_sym_POUND_LBRACK] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOLLARif] = ACTIONS(3427), - [anon_sym_is] = ACTIONS(3427), - [anon_sym_BANGis] = ACTIONS(3427), - [anon_sym_in] = ACTIONS(3427), - [anon_sym_BANGin] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_rlock] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_sql] = ACTIONS(3427), - [sym_int_literal] = ACTIONS(3427), - [sym_float_literal] = ACTIONS(3427), - [sym_rune_literal] = ACTIONS(3427), - [sym_pseudo_compile_time_identifier] = ACTIONS(3427), - [anon_sym_shared] = ACTIONS(3427), - [anon_sym_map_LBRACK] = ACTIONS(3427), - [anon_sym_chan] = ACTIONS(3427), - [anon_sym_thread] = ACTIONS(3427), - [anon_sym_atomic] = ACTIONS(3427), - [anon_sym_assert] = ACTIONS(3427), - [anon_sym_defer] = ACTIONS(3427), - [anon_sym_goto] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_DOLLARfor] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_POUND] = ACTIONS(3427), - [anon_sym_asm] = ACTIONS(3427), - [anon_sym_AT_LBRACK] = ACTIONS(3427), - [sym___double_quote] = ACTIONS(3427), - [sym___single_quote] = ACTIONS(3427), - [sym___c_double_quote] = ACTIONS(3427), - [sym___c_single_quote] = ACTIONS(3427), - [sym___r_double_quote] = ACTIONS(3427), - [sym___r_single_quote] = ACTIONS(3427), + [sym_block_comment] = STATE(1119), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), }, [1120] = { [sym_line_comment] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(3429), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_const] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym___global] = ACTIONS(3431), - [anon_sym_type] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_union] = ACTIONS(3431), - [anon_sym_pub] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_enum] = ACTIONS(3431), - [anon_sym_interface] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [anon_sym_assert] = ACTIONS(3431), - [anon_sym_defer] = ACTIONS(3431), - [anon_sym_goto] = ACTIONS(3431), - [anon_sym_break] = ACTIONS(3431), - [anon_sym_continue] = ACTIONS(3431), - [anon_sym_return] = ACTIONS(3431), - [anon_sym_DOLLARfor] = ACTIONS(3431), - [anon_sym_for] = ACTIONS(3431), - [anon_sym_POUND] = ACTIONS(3431), - [anon_sym_asm] = ACTIONS(3431), - [anon_sym_AT_LBRACK] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym___global] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_pub] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [anon_sym_assert] = ACTIONS(3346), + [anon_sym_defer] = ACTIONS(3346), + [anon_sym_goto] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_DOLLARfor] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_POUND] = ACTIONS(3346), + [anon_sym_asm] = ACTIONS(3346), + [anon_sym_AT_LBRACK] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3346), + [sym___single_quote] = ACTIONS(3346), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3346), + [sym___r_double_quote] = ACTIONS(3346), + [sym___r_single_quote] = ACTIONS(3346), }, [1121] = { [sym_line_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym___global] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_pub] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [anon_sym_assert] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_DOLLARfor] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym_AT_LBRACK] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), + [sym_block_comment] = STATE(1121), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [sym_pseudo_compile_time_identifier] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), }, [1122] = { [sym_line_comment] = STATE(1122), - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), + [sym_block_comment] = STATE(1122), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym___global] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_pub] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [sym_pseudo_compile_time_identifier] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [anon_sym_assert] = ACTIONS(3190), + [anon_sym_defer] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_DOLLARfor] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_asm] = ACTIONS(3190), + [anon_sym_AT_LBRACK] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), }, [1123] = { [sym_line_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(3433), - [sym_identifier] = ACTIONS(3435), - [anon_sym_LF] = ACTIONS(3435), - [anon_sym_CR] = ACTIONS(3435), - [anon_sym_CR_LF] = ACTIONS(3435), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym___global] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3435), - [anon_sym_fn] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_union] = ACTIONS(3435), - [anon_sym_pub] = ACTIONS(3435), - [anon_sym_mut] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_go] = ACTIONS(3435), - [anon_sym_spawn] = ACTIONS(3435), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3435), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3435), - [sym_none] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_nil] = ACTIONS(3435), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOLLARif] = ACTIONS(3435), - [anon_sym_is] = ACTIONS(3435), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3435), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_rlock] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_sql] = ACTIONS(3435), - [sym_int_literal] = ACTIONS(3435), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3435), - [anon_sym_shared] = ACTIONS(3435), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3435), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3435), - [anon_sym_assert] = ACTIONS(3435), - [anon_sym_defer] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_DOLLARfor] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_POUND] = ACTIONS(3435), - [anon_sym_asm] = ACTIONS(3435), - [anon_sym_AT_LBRACK] = ACTIONS(3435), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), + [sym_block_comment] = STATE(1123), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym___global] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_pub] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [sym_pseudo_compile_time_identifier] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_defer] = ACTIONS(3174), + [anon_sym_goto] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_DOLLARfor] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_asm] = ACTIONS(3174), + [anon_sym_AT_LBRACK] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), }, [1124] = { [sym_line_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym___global] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_interface] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [anon_sym_assert] = ACTIONS(2961), - [anon_sym_defer] = ACTIONS(2961), - [anon_sym_goto] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_DOLLARfor] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_POUND] = ACTIONS(2961), - [anon_sym_asm] = ACTIONS(2961), - [anon_sym_AT_LBRACK] = ACTIONS(2961), - [sym___double_quote] = ACTIONS(2961), - [sym___single_quote] = ACTIONS(2961), - [sym___c_double_quote] = ACTIONS(2961), - [sym___c_single_quote] = ACTIONS(2961), - [sym___r_double_quote] = ACTIONS(2961), - [sym___r_single_quote] = ACTIONS(2961), + [sym_block_comment] = STATE(1124), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LF] = ACTIONS(2923), + [anon_sym_CR] = ACTIONS(2923), + [anon_sym_CR_LF] = ACTIONS(2923), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2923), + [anon_sym_as] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym___global] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_pub] = ACTIONS(2923), + [anon_sym_mut] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_interface] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_go] = ACTIONS(2923), + [anon_sym_spawn] = ACTIONS(2923), + [anon_sym_json_DOTdecode] = ACTIONS(2923), + [anon_sym_LBRACK2] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_LT_DASH] = ACTIONS(2923), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_or] = ACTIONS(2923), + [sym_none] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_nil] = ACTIONS(2923), + [anon_sym_QMARK_DOT] = ACTIONS(2923), + [anon_sym_POUND_LBRACK] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_DOLLARif] = ACTIONS(2923), + [anon_sym_is] = ACTIONS(2923), + [anon_sym_BANGis] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2923), + [anon_sym_BANGin] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_select] = ACTIONS(2923), + [anon_sym_lock] = ACTIONS(2923), + [anon_sym_rlock] = ACTIONS(2923), + [anon_sym_unsafe] = ACTIONS(2923), + [anon_sym_sql] = ACTIONS(2923), + [sym_int_literal] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), + [sym_rune_literal] = ACTIONS(2923), + [sym_pseudo_compile_time_identifier] = ACTIONS(2923), + [anon_sym_shared] = ACTIONS(2923), + [anon_sym_map_LBRACK] = ACTIONS(2923), + [anon_sym_chan] = ACTIONS(2923), + [anon_sym_thread] = ACTIONS(2923), + [anon_sym_atomic] = ACTIONS(2923), + [anon_sym_assert] = ACTIONS(2923), + [anon_sym_defer] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_DOLLARfor] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_POUND] = ACTIONS(2923), + [anon_sym_asm] = ACTIONS(2923), + [anon_sym_AT_LBRACK] = ACTIONS(2923), + [sym___double_quote] = ACTIONS(2923), + [sym___single_quote] = ACTIONS(2923), + [sym___c_double_quote] = ACTIONS(2923), + [sym___c_single_quote] = ACTIONS(2923), + [sym___r_double_quote] = ACTIONS(2923), + [sym___r_single_quote] = ACTIONS(2923), }, [1125] = { [sym_line_comment] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [sym_pseudo_compile_time_identifier] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), + [sym_block_comment] = STATE(1125), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1126] = { [sym_line_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [sym_pseudo_compile_time_identifier] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), + [sym_block_comment] = STATE(1126), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3442), + [anon_sym_LF] = ACTIONS(3442), + [anon_sym_CR] = ACTIONS(3442), + [anon_sym_CR_LF] = ACTIONS(3442), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym___global] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_PIPE] = ACTIONS(3442), + [anon_sym_fn] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3442), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_union] = ACTIONS(3442), + [anon_sym_pub] = ACTIONS(3442), + [anon_sym_mut] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_go] = ACTIONS(3442), + [anon_sym_spawn] = ACTIONS(3442), + [anon_sym_json_DOTdecode] = ACTIONS(3442), + [anon_sym_LBRACK2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_LT_LT] = ACTIONS(3442), + [anon_sym_GT_GT] = ACTIONS(3442), + [anon_sym_GT_GT_GT] = ACTIONS(3442), + [anon_sym_AMP_CARET] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3442), + [sym_none] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_nil] = ACTIONS(3442), + [anon_sym_QMARK_DOT] = ACTIONS(3442), + [anon_sym_POUND_LBRACK] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_DOLLARif] = ACTIONS(3442), + [anon_sym_is] = ACTIONS(3442), + [anon_sym_BANGis] = ACTIONS(3442), + [anon_sym_in] = ACTIONS(3442), + [anon_sym_BANGin] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_select] = ACTIONS(3442), + [anon_sym_lock] = ACTIONS(3442), + [anon_sym_rlock] = ACTIONS(3442), + [anon_sym_unsafe] = ACTIONS(3442), + [anon_sym_sql] = ACTIONS(3442), + [sym_int_literal] = ACTIONS(3442), + [sym_float_literal] = ACTIONS(3442), + [sym_rune_literal] = ACTIONS(3442), + [sym_pseudo_compile_time_identifier] = ACTIONS(3442), + [anon_sym_shared] = ACTIONS(3442), + [anon_sym_map_LBRACK] = ACTIONS(3442), + [anon_sym_chan] = ACTIONS(3442), + [anon_sym_thread] = ACTIONS(3442), + [anon_sym_atomic] = ACTIONS(3442), + [anon_sym_assert] = ACTIONS(3442), + [anon_sym_defer] = ACTIONS(3442), + [anon_sym_goto] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_DOLLARfor] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_POUND] = ACTIONS(3442), + [anon_sym_asm] = ACTIONS(3442), + [anon_sym_AT_LBRACK] = ACTIONS(3442), + [sym___double_quote] = ACTIONS(3442), + [sym___single_quote] = ACTIONS(3442), + [sym___c_double_quote] = ACTIONS(3442), + [sym___c_single_quote] = ACTIONS(3442), + [sym___r_double_quote] = ACTIONS(3442), + [sym___r_single_quote] = ACTIONS(3442), }, [1127] = { [sym_line_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2885), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_const] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym___global] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_union] = ACTIONS(2887), - [anon_sym_pub] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_enum] = ACTIONS(2887), - [anon_sym_interface] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [anon_sym_assert] = ACTIONS(2887), - [anon_sym_defer] = ACTIONS(2887), - [anon_sym_goto] = ACTIONS(2887), - [anon_sym_break] = ACTIONS(2887), - [anon_sym_continue] = ACTIONS(2887), - [anon_sym_return] = ACTIONS(2887), - [anon_sym_DOLLARfor] = ACTIONS(2887), - [anon_sym_for] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_asm] = ACTIONS(2887), - [anon_sym_AT_LBRACK] = ACTIONS(2887), - [sym___double_quote] = ACTIONS(2887), - [sym___single_quote] = ACTIONS(2887), - [sym___c_double_quote] = ACTIONS(2887), - [sym___c_single_quote] = ACTIONS(2887), - [sym___r_double_quote] = ACTIONS(2887), - [sym___r_single_quote] = ACTIONS(2887), + [sym_block_comment] = STATE(1127), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym___global] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_pub] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [anon_sym_assert] = ACTIONS(3362), + [anon_sym_defer] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_DOLLARfor] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym_AT_LBRACK] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), }, [1128] = { [sym_line_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(2881), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_const] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym___global] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_union] = ACTIONS(2883), - [anon_sym_pub] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_enum] = ACTIONS(2883), - [anon_sym_interface] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [anon_sym_assert] = ACTIONS(2883), - [anon_sym_defer] = ACTIONS(2883), - [anon_sym_goto] = ACTIONS(2883), - [anon_sym_break] = ACTIONS(2883), - [anon_sym_continue] = ACTIONS(2883), - [anon_sym_return] = ACTIONS(2883), - [anon_sym_DOLLARfor] = ACTIONS(2883), - [anon_sym_for] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_asm] = ACTIONS(2883), - [anon_sym_AT_LBRACK] = ACTIONS(2883), - [sym___double_quote] = ACTIONS(2883), - [sym___single_quote] = ACTIONS(2883), - [sym___c_double_quote] = ACTIONS(2883), - [sym___c_single_quote] = ACTIONS(2883), - [sym___r_double_quote] = ACTIONS(2883), - [sym___r_single_quote] = ACTIONS(2883), + [sym_block_comment] = STATE(1128), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_CR] = ACTIONS(3402), + [anon_sym_CR_LF] = ACTIONS(3402), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3402), + [anon_sym_as] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym___global] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_fn] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PERCENT] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_BANG_EQ] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_union] = ACTIONS(3402), + [anon_sym_pub] = ACTIONS(3402), + [anon_sym_mut] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_go] = ACTIONS(3402), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(3402), + [anon_sym_LBRACK2] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_CARET] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_or] = ACTIONS(3402), + [sym_none] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_nil] = ACTIONS(3402), + [anon_sym_QMARK_DOT] = ACTIONS(3402), + [anon_sym_POUND_LBRACK] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_is] = ACTIONS(3402), + [anon_sym_BANGis] = ACTIONS(3402), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_BANGin] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_select] = ACTIONS(3402), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_sql] = ACTIONS(3402), + [sym_int_literal] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3402), + [sym_rune_literal] = ACTIONS(3402), + [sym_pseudo_compile_time_identifier] = ACTIONS(3402), + [anon_sym_shared] = ACTIONS(3402), + [anon_sym_map_LBRACK] = ACTIONS(3402), + [anon_sym_chan] = ACTIONS(3402), + [anon_sym_thread] = ACTIONS(3402), + [anon_sym_atomic] = ACTIONS(3402), + [anon_sym_assert] = ACTIONS(3402), + [anon_sym_defer] = ACTIONS(3402), + [anon_sym_goto] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_DOLLARfor] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3402), + [anon_sym_asm] = ACTIONS(3402), + [anon_sym_AT_LBRACK] = ACTIONS(3402), + [sym___double_quote] = ACTIONS(3402), + [sym___single_quote] = ACTIONS(3402), + [sym___c_double_quote] = ACTIONS(3402), + [sym___c_single_quote] = ACTIONS(3402), + [sym___r_double_quote] = ACTIONS(3402), + [sym___r_single_quote] = ACTIONS(3402), }, [1129] = { [sym_line_comment] = STATE(1129), - [sym_reference_expression] = STATE(4518), - [sym_type_reference_expression] = STATE(1443), - [sym_plain_type] = STATE(1482), - [sym__plain_type_without_special] = STATE(1506), - [sym_anon_struct_type] = STATE(1507), - [sym_multi_return_type] = STATE(1506), - [sym_result_type] = STATE(1506), - [sym_option_type] = STATE(1506), - [sym_qualified_type] = STATE(1443), - [sym_fixed_array_type] = STATE(1507), - [sym_array_type] = STATE(1507), - [sym_pointer_type] = STATE(1507), - [sym_wrong_pointer_type] = STATE(1507), - [sym_map_type] = STATE(1507), - [sym_channel_type] = STATE(1507), - [sym_shared_type] = STATE(1507), - [sym_thread_type] = STATE(1507), - [sym_atomic_type] = STATE(1507), - [sym_generic_type] = STATE(1507), - [sym_function_type] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(617), + [sym_block_comment] = STATE(1129), + [sym_reference_expression] = STATE(4534), + [sym_type_reference_expression] = STATE(1442), + [sym_plain_type] = STATE(1505), + [sym__plain_type_without_special] = STATE(1495), + [sym_anon_struct_type] = STATE(1496), + [sym_multi_return_type] = STATE(1495), + [sym_result_type] = STATE(1495), + [sym_option_type] = STATE(1495), + [sym_qualified_type] = STATE(1442), + [sym_fixed_array_type] = STATE(1496), + [sym_array_type] = STATE(1496), + [sym_pointer_type] = STATE(1496), + [sym_wrong_pointer_type] = STATE(1496), + [sym_map_type] = STATE(1496), + [sym_channel_type] = STATE(1496), + [sym_shared_type] = STATE(1496), + [sym_thread_type] = STATE(1496), + [sym_atomic_type] = STATE(1496), + [sym_generic_type] = STATE(1496), + [sym_function_type] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(563), [sym_identifier] = ACTIONS(3628), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_const] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_const] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym___global] = ACTIONS(619), - [anon_sym_type] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), + [anon_sym___global] = ACTIONS(567), + [anon_sym_type] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_fn] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(3634), [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(619), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_enum] = ACTIONS(619), - [anon_sym_interface] = ACTIONS(619), + [anon_sym_union] = ACTIONS(567), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_enum] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(567), [anon_sym_QMARK] = ACTIONS(3638), [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_go] = ACTIONS(619), - [anon_sym_spawn] = ACTIONS(619), - [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_go] = ACTIONS(567), + [anon_sym_spawn] = ACTIONS(567), + [anon_sym_json_DOTdecode] = ACTIONS(567), [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(567), + [anon_sym_CARET] = ACTIONS(567), [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(619), - [sym_none] = ACTIONS(619), - [sym_true] = ACTIONS(619), - [sym_false] = ACTIONS(619), - [sym_nil] = ACTIONS(619), - [anon_sym_if] = ACTIONS(619), - [anon_sym_DOLLARif] = ACTIONS(619), - [anon_sym_match] = ACTIONS(619), - [anon_sym_select] = ACTIONS(619), - [anon_sym_lock] = ACTIONS(619), - [anon_sym_rlock] = ACTIONS(619), - [anon_sym_unsafe] = ACTIONS(619), - [anon_sym_sql] = ACTIONS(619), - [sym_int_literal] = ACTIONS(619), - [sym_float_literal] = ACTIONS(619), - [sym_rune_literal] = ACTIONS(619), - [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_LT_DASH] = ACTIONS(567), + [sym_none] = ACTIONS(567), + [sym_true] = ACTIONS(567), + [sym_false] = ACTIONS(567), + [sym_nil] = ACTIONS(567), + [anon_sym_if] = ACTIONS(567), + [anon_sym_DOLLARif] = ACTIONS(567), + [anon_sym_match] = ACTIONS(567), + [anon_sym_select] = ACTIONS(567), + [anon_sym_lock] = ACTIONS(567), + [anon_sym_rlock] = ACTIONS(567), + [anon_sym_unsafe] = ACTIONS(567), + [anon_sym_sql] = ACTIONS(567), + [sym_int_literal] = ACTIONS(567), + [sym_float_literal] = ACTIONS(567), + [sym_rune_literal] = ACTIONS(567), + [sym_pseudo_compile_time_identifier] = ACTIONS(567), [anon_sym_shared] = ACTIONS(3646), [anon_sym_map_LBRACK] = ACTIONS(3648), [anon_sym_chan] = ACTIONS(3650), [anon_sym_thread] = ACTIONS(3652), [anon_sym_atomic] = ACTIONS(3654), - [anon_sym_assert] = ACTIONS(619), - [anon_sym_defer] = ACTIONS(619), - [anon_sym_goto] = ACTIONS(619), - [anon_sym_break] = ACTIONS(619), - [anon_sym_continue] = ACTIONS(619), - [anon_sym_return] = ACTIONS(619), - [anon_sym_DOLLARfor] = ACTIONS(619), - [anon_sym_for] = ACTIONS(619), - [anon_sym_POUND] = ACTIONS(619), - [anon_sym_asm] = ACTIONS(619), - [anon_sym_AT_LBRACK] = ACTIONS(619), - [sym___double_quote] = ACTIONS(619), - [sym___single_quote] = ACTIONS(619), - [sym___c_double_quote] = ACTIONS(619), - [sym___c_single_quote] = ACTIONS(619), - [sym___r_double_quote] = ACTIONS(619), - [sym___r_single_quote] = ACTIONS(619), + [anon_sym_assert] = ACTIONS(567), + [anon_sym_defer] = ACTIONS(567), + [anon_sym_goto] = ACTIONS(567), + [anon_sym_break] = ACTIONS(567), + [anon_sym_continue] = ACTIONS(567), + [anon_sym_return] = ACTIONS(567), + [anon_sym_DOLLARfor] = ACTIONS(567), + [anon_sym_for] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_asm] = ACTIONS(567), + [anon_sym_AT_LBRACK] = ACTIONS(567), + [sym___double_quote] = ACTIONS(567), + [sym___single_quote] = ACTIONS(567), + [sym___c_double_quote] = ACTIONS(567), + [sym___c_single_quote] = ACTIONS(567), + [sym___r_double_quote] = ACTIONS(567), + [sym___r_single_quote] = ACTIONS(567), }, [1130] = { [sym_line_comment] = STATE(1130), - [sym_reference_expression] = STATE(4518), - [sym_type_reference_expression] = STATE(1443), - [sym_plain_type] = STATE(1485), - [sym__plain_type_without_special] = STATE(1506), - [sym_anon_struct_type] = STATE(1507), - [sym_multi_return_type] = STATE(1506), - [sym_result_type] = STATE(1506), - [sym_option_type] = STATE(1506), - [sym_qualified_type] = STATE(1443), - [sym_fixed_array_type] = STATE(1507), - [sym_array_type] = STATE(1507), - [sym_pointer_type] = STATE(1507), - [sym_wrong_pointer_type] = STATE(1507), - [sym_map_type] = STATE(1507), - [sym_channel_type] = STATE(1507), - [sym_shared_type] = STATE(1507), - [sym_thread_type] = STATE(1507), - [sym_atomic_type] = STATE(1507), - [sym_generic_type] = STATE(1507), - [sym_function_type] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(625), + [sym_block_comment] = STATE(1130), + [sym_reference_expression] = STATE(4534), + [sym_type_reference_expression] = STATE(1442), + [sym_plain_type] = STATE(1512), + [sym__plain_type_without_special] = STATE(1495), + [sym_anon_struct_type] = STATE(1496), + [sym_multi_return_type] = STATE(1495), + [sym_result_type] = STATE(1495), + [sym_option_type] = STATE(1495), + [sym_qualified_type] = STATE(1442), + [sym_fixed_array_type] = STATE(1496), + [sym_array_type] = STATE(1496), + [sym_pointer_type] = STATE(1496), + [sym_wrong_pointer_type] = STATE(1496), + [sym_map_type] = STATE(1496), + [sym_channel_type] = STATE(1496), + [sym_shared_type] = STATE(1496), + [sym_thread_type] = STATE(1496), + [sym_atomic_type] = STATE(1496), + [sym_generic_type] = STATE(1496), + [sym_function_type] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(603), [sym_identifier] = ACTIONS(3628), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_const] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(605), + [anon_sym_const] = ACTIONS(605), [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym___global] = ACTIONS(627), - [anon_sym_type] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), + [anon_sym___global] = ACTIONS(605), + [anon_sym_type] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), [anon_sym_fn] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), [anon_sym_STAR] = ACTIONS(3634), [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(627), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_enum] = ACTIONS(627), - [anon_sym_interface] = ACTIONS(627), + [anon_sym_union] = ACTIONS(605), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_enum] = ACTIONS(605), + [anon_sym_interface] = ACTIONS(605), [anon_sym_QMARK] = ACTIONS(3638), [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_go] = ACTIONS(627), - [anon_sym_spawn] = ACTIONS(627), - [anon_sym_json_DOTdecode] = ACTIONS(627), + [anon_sym_go] = ACTIONS(605), + [anon_sym_spawn] = ACTIONS(605), + [anon_sym_json_DOTdecode] = ACTIONS(605), [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), + [anon_sym_TILDE] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(627), - [sym_none] = ACTIONS(627), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_nil] = ACTIONS(627), - [anon_sym_if] = ACTIONS(627), - [anon_sym_DOLLARif] = ACTIONS(627), - [anon_sym_match] = ACTIONS(627), - [anon_sym_select] = ACTIONS(627), - [anon_sym_lock] = ACTIONS(627), - [anon_sym_rlock] = ACTIONS(627), - [anon_sym_unsafe] = ACTIONS(627), - [anon_sym_sql] = ACTIONS(627), - [sym_int_literal] = ACTIONS(627), - [sym_float_literal] = ACTIONS(627), - [sym_rune_literal] = ACTIONS(627), - [sym_pseudo_compile_time_identifier] = ACTIONS(627), + [anon_sym_LT_DASH] = ACTIONS(605), + [sym_none] = ACTIONS(605), + [sym_true] = ACTIONS(605), + [sym_false] = ACTIONS(605), + [sym_nil] = ACTIONS(605), + [anon_sym_if] = ACTIONS(605), + [anon_sym_DOLLARif] = ACTIONS(605), + [anon_sym_match] = ACTIONS(605), + [anon_sym_select] = ACTIONS(605), + [anon_sym_lock] = ACTIONS(605), + [anon_sym_rlock] = ACTIONS(605), + [anon_sym_unsafe] = ACTIONS(605), + [anon_sym_sql] = ACTIONS(605), + [sym_int_literal] = ACTIONS(605), + [sym_float_literal] = ACTIONS(605), + [sym_rune_literal] = ACTIONS(605), + [sym_pseudo_compile_time_identifier] = ACTIONS(605), [anon_sym_shared] = ACTIONS(3646), [anon_sym_map_LBRACK] = ACTIONS(3648), [anon_sym_chan] = ACTIONS(3650), [anon_sym_thread] = ACTIONS(3652), [anon_sym_atomic] = ACTIONS(3654), - [anon_sym_assert] = ACTIONS(627), - [anon_sym_defer] = ACTIONS(627), - [anon_sym_goto] = ACTIONS(627), - [anon_sym_break] = ACTIONS(627), - [anon_sym_continue] = ACTIONS(627), - [anon_sym_return] = ACTIONS(627), - [anon_sym_DOLLARfor] = ACTIONS(627), - [anon_sym_for] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_asm] = ACTIONS(627), - [anon_sym_AT_LBRACK] = ACTIONS(627), - [sym___double_quote] = ACTIONS(627), - [sym___single_quote] = ACTIONS(627), - [sym___c_double_quote] = ACTIONS(627), - [sym___c_single_quote] = ACTIONS(627), - [sym___r_double_quote] = ACTIONS(627), - [sym___r_single_quote] = ACTIONS(627), + [anon_sym_assert] = ACTIONS(605), + [anon_sym_defer] = ACTIONS(605), + [anon_sym_goto] = ACTIONS(605), + [anon_sym_break] = ACTIONS(605), + [anon_sym_continue] = ACTIONS(605), + [anon_sym_return] = ACTIONS(605), + [anon_sym_DOLLARfor] = ACTIONS(605), + [anon_sym_for] = ACTIONS(605), + [anon_sym_POUND] = ACTIONS(605), + [anon_sym_asm] = ACTIONS(605), + [anon_sym_AT_LBRACK] = ACTIONS(605), + [sym___double_quote] = ACTIONS(605), + [sym___single_quote] = ACTIONS(605), + [sym___c_double_quote] = ACTIONS(605), + [sym___c_single_quote] = ACTIONS(605), + [sym___r_double_quote] = ACTIONS(605), + [sym___r_single_quote] = ACTIONS(605), }, [1131] = { [sym_line_comment] = STATE(1131), - [sym_reference_expression] = STATE(4518), - [sym_type_reference_expression] = STATE(1443), - [sym_plain_type] = STATE(1467), - [sym__plain_type_without_special] = STATE(1506), - [sym_anon_struct_type] = STATE(1507), - [sym_multi_return_type] = STATE(1506), - [sym_result_type] = STATE(1506), - [sym_option_type] = STATE(1506), - [sym_qualified_type] = STATE(1443), - [sym_fixed_array_type] = STATE(1507), - [sym_array_type] = STATE(1507), - [sym_pointer_type] = STATE(1507), - [sym_wrong_pointer_type] = STATE(1507), - [sym_map_type] = STATE(1507), - [sym_channel_type] = STATE(1507), - [sym_shared_type] = STATE(1507), - [sym_thread_type] = STATE(1507), - [sym_atomic_type] = STATE(1507), - [sym_generic_type] = STATE(1507), - [sym_function_type] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(585), + [sym_block_comment] = STATE(1131), + [sym_reference_expression] = STATE(4534), + [sym_type_reference_expression] = STATE(1442), + [sym_plain_type] = STATE(1498), + [sym__plain_type_without_special] = STATE(1495), + [sym_anon_struct_type] = STATE(1496), + [sym_multi_return_type] = STATE(1495), + [sym_result_type] = STATE(1495), + [sym_option_type] = STATE(1495), + [sym_qualified_type] = STATE(1442), + [sym_fixed_array_type] = STATE(1496), + [sym_array_type] = STATE(1496), + [sym_pointer_type] = STATE(1496), + [sym_wrong_pointer_type] = STATE(1496), + [sym_map_type] = STATE(1496), + [sym_channel_type] = STATE(1496), + [sym_shared_type] = STATE(1496), + [sym_thread_type] = STATE(1496), + [sym_atomic_type] = STATE(1496), + [sym_generic_type] = STATE(1496), + [sym_function_type] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(599), [sym_identifier] = ACTIONS(3628), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), + [anon_sym___global] = ACTIONS(601), + [anon_sym_type] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), [anon_sym_fn] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), [anon_sym_STAR] = ACTIONS(3634), [anon_sym_struct] = ACTIONS(3636), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), + [anon_sym_union] = ACTIONS(601), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_enum] = ACTIONS(601), + [anon_sym_interface] = ACTIONS(601), [anon_sym_QMARK] = ACTIONS(3638), [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), + [anon_sym_go] = ACTIONS(601), + [anon_sym_spawn] = ACTIONS(601), + [anon_sym_json_DOTdecode] = ACTIONS(601), [anon_sym_LBRACK2] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), + [anon_sym_TILDE] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(601), [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_DASH] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [sym_pseudo_compile_time_identifier] = ACTIONS(589), + [anon_sym_LT_DASH] = ACTIONS(601), + [sym_none] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_nil] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_DOLLARif] = ACTIONS(601), + [anon_sym_match] = ACTIONS(601), + [anon_sym_select] = ACTIONS(601), + [anon_sym_lock] = ACTIONS(601), + [anon_sym_rlock] = ACTIONS(601), + [anon_sym_unsafe] = ACTIONS(601), + [anon_sym_sql] = ACTIONS(601), + [sym_int_literal] = ACTIONS(601), + [sym_float_literal] = ACTIONS(601), + [sym_rune_literal] = ACTIONS(601), + [sym_pseudo_compile_time_identifier] = ACTIONS(601), [anon_sym_shared] = ACTIONS(3646), [anon_sym_map_LBRACK] = ACTIONS(3648), [anon_sym_chan] = ACTIONS(3650), [anon_sym_thread] = ACTIONS(3652), [anon_sym_atomic] = ACTIONS(3654), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), + [anon_sym_assert] = ACTIONS(601), + [anon_sym_defer] = ACTIONS(601), + [anon_sym_goto] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_DOLLARfor] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_POUND] = ACTIONS(601), + [anon_sym_asm] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(601), + [sym___double_quote] = ACTIONS(601), + [sym___single_quote] = ACTIONS(601), + [sym___c_double_quote] = ACTIONS(601), + [sym___c_single_quote] = ACTIONS(601), + [sym___r_double_quote] = ACTIONS(601), + [sym___r_single_quote] = ACTIONS(601), }, [1132] = { [sym_line_comment] = STATE(1132), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(583), + [sym_block_comment] = STATE(1132), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1133] = { [sym_line_comment] = STATE(1133), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1133), + [sym_reference_expression] = STATE(4451), + [sym_type_reference_expression] = STATE(1703), + [sym_plain_type] = STATE(1694), + [sym__plain_type_without_special] = STATE(1667), + [sym_anon_struct_type] = STATE(1710), + [sym_multi_return_type] = STATE(1667), + [sym_result_type] = STATE(1667), + [sym_option_type] = STATE(1667), + [sym_qualified_type] = STATE(1703), + [sym_fixed_array_type] = STATE(1710), + [sym_array_type] = STATE(1710), + [sym_pointer_type] = STATE(1710), + [sym_wrong_pointer_type] = STATE(1710), + [sym_map_type] = STATE(1710), + [sym_channel_type] = STATE(1710), + [sym_shared_type] = STATE(1710), + [sym_thread_type] = STATE(1710), + [sym_atomic_type] = STATE(1710), + [sym_generic_type] = STATE(1710), + [sym_function_type] = STATE(1710), + [sym_identifier] = ACTIONS(3656), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_LT_DASH] = ACTIONS(605), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3674), + [anon_sym_map_LBRACK] = ACTIONS(3676), + [anon_sym_chan] = ACTIONS(3678), + [anon_sym_thread] = ACTIONS(3680), + [anon_sym_atomic] = ACTIONS(3682), + }, + [1134] = { + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [aux_sym_strictly_expression_list_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_identifier] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1763), + [anon_sym_CR] = ACTIONS(1763), + [anon_sym_CR_LF] = ACTIONS(1763), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1763), + [anon_sym_type] = ACTIONS(1763), + [anon_sym_fn] = ACTIONS(1763), + [anon_sym_PLUS] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_struct] = ACTIONS(1763), + [anon_sym_union] = ACTIONS(1763), + [anon_sym_pub] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_enum] = ACTIONS(1763), + [anon_sym_interface] = ACTIONS(1763), + [anon_sym_QMARK] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1763), + [anon_sym_go] = ACTIONS(1763), + [anon_sym_spawn] = ACTIONS(1763), + [anon_sym_json_DOTdecode] = ACTIONS(1763), + [anon_sym_LBRACK2] = ACTIONS(1763), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1763), + [anon_sym_LT_DASH] = ACTIONS(1763), + [sym_none] = ACTIONS(1763), + [sym_true] = ACTIONS(1763), + [sym_false] = ACTIONS(1763), + [sym_nil] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_DOLLARif] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_select] = ACTIONS(1763), + [anon_sym_STAR_EQ] = ACTIONS(1765), + [anon_sym_SLASH_EQ] = ACTIONS(1765), + [anon_sym_PERCENT_EQ] = ACTIONS(1765), + [anon_sym_LT_LT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1765), + [anon_sym_AMP_EQ] = ACTIONS(1765), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1765), + [anon_sym_PLUS_EQ] = ACTIONS(1765), + [anon_sym_DASH_EQ] = ACTIONS(1765), + [anon_sym_PIPE_EQ] = ACTIONS(1765), + [anon_sym_CARET_EQ] = ACTIONS(1765), + [anon_sym_COLON_EQ] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1763), + [anon_sym_rlock] = ACTIONS(1763), + [anon_sym_unsafe] = ACTIONS(1763), + [anon_sym_sql] = ACTIONS(1763), + [sym_int_literal] = ACTIONS(1763), + [sym_float_literal] = ACTIONS(1763), + [sym_rune_literal] = ACTIONS(1763), + [sym_pseudo_compile_time_identifier] = ACTIONS(1763), + [anon_sym_shared] = ACTIONS(1763), + [anon_sym_map_LBRACK] = ACTIONS(1763), + [anon_sym_chan] = ACTIONS(1763), + [anon_sym_thread] = ACTIONS(1763), + [anon_sym_atomic] = ACTIONS(1763), + [anon_sym_assert] = ACTIONS(1763), + [anon_sym_defer] = ACTIONS(1763), + [anon_sym_goto] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_DOLLARfor] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_asm] = ACTIONS(1763), + [anon_sym_AT_LBRACK] = ACTIONS(1763), + [sym___double_quote] = ACTIONS(1763), + [sym___single_quote] = ACTIONS(1763), + [sym___c_double_quote] = ACTIONS(1763), + [sym___c_single_quote] = ACTIONS(1763), + [sym___r_double_quote] = ACTIONS(1763), + [sym___r_single_quote] = ACTIONS(1763), + }, + [1135] = { + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [sym_reference_expression] = STATE(4451), + [sym_type_reference_expression] = STATE(1703), + [sym_plain_type] = STATE(1685), + [sym__plain_type_without_special] = STATE(1667), + [sym_anon_struct_type] = STATE(1710), + [sym_multi_return_type] = STATE(1667), + [sym_result_type] = STATE(1667), + [sym_option_type] = STATE(1667), + [sym_qualified_type] = STATE(1703), + [sym_fixed_array_type] = STATE(1710), + [sym_array_type] = STATE(1710), + [sym_pointer_type] = STATE(1710), + [sym_wrong_pointer_type] = STATE(1710), + [sym_map_type] = STATE(1710), + [sym_channel_type] = STATE(1710), + [sym_shared_type] = STATE(1710), + [sym_thread_type] = STATE(1710), + [sym_atomic_type] = STATE(1710), + [sym_generic_type] = STATE(1710), + [sym_function_type] = STATE(1710), + [sym_identifier] = ACTIONS(3656), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_LT_DASH] = ACTIONS(601), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3674), + [anon_sym_map_LBRACK] = ACTIONS(3676), + [anon_sym_chan] = ACTIONS(3678), + [anon_sym_thread] = ACTIONS(3680), + [anon_sym_atomic] = ACTIONS(3682), + }, + [1136] = { + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [sym_reference_expression] = STATE(4451), + [sym_type_reference_expression] = STATE(1703), + [sym_plain_type] = STATE(1700), + [sym__plain_type_without_special] = STATE(1667), + [sym_anon_struct_type] = STATE(1710), + [sym_multi_return_type] = STATE(1667), + [sym_result_type] = STATE(1667), + [sym_option_type] = STATE(1667), + [sym_qualified_type] = STATE(1703), + [sym_fixed_array_type] = STATE(1710), + [sym_array_type] = STATE(1710), + [sym_pointer_type] = STATE(1710), + [sym_wrong_pointer_type] = STATE(1710), + [sym_map_type] = STATE(1710), + [sym_channel_type] = STATE(1710), + [sym_shared_type] = STATE(1710), + [sym_thread_type] = STATE(1710), + [sym_atomic_type] = STATE(1710), + [sym_generic_type] = STATE(1710), + [sym_function_type] = STATE(1710), + [sym_identifier] = ACTIONS(3656), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3658), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3660), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3662), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -158889,15 +153536,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3664), [anon_sym_COLON] = ACTIONS(567), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3670), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3672), [anon_sym_LT_DASH] = ACTIONS(567), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), @@ -158925,393 +153572,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1134] = { - [sym_line_comment] = STATE(1134), - [aux_sym_strictly_expression_list_repeat1] = STATE(1446), - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_LF] = ACTIONS(1713), - [anon_sym_CR] = ACTIONS(1713), - [anon_sym_CR_LF] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_EQ] = ACTIONS(1719), - [anon_sym___global] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_mut] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_interface] = ACTIONS(1713), - [anon_sym_QMARK] = ACTIONS(1713), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_go] = ACTIONS(1713), - [anon_sym_spawn] = ACTIONS(1713), - [anon_sym_json_DOTdecode] = ACTIONS(1713), - [anon_sym_LBRACK2] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1713), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_LT_DASH] = ACTIONS(1713), - [sym_none] = ACTIONS(1713), - [sym_true] = ACTIONS(1713), - [sym_false] = ACTIONS(1713), - [sym_nil] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_DOLLARif] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_select] = ACTIONS(1713), - [anon_sym_STAR_EQ] = ACTIONS(1719), - [anon_sym_SLASH_EQ] = ACTIONS(1719), - [anon_sym_PERCENT_EQ] = ACTIONS(1719), - [anon_sym_LT_LT_EQ] = ACTIONS(1719), - [anon_sym_GT_GT_EQ] = ACTIONS(1719), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1719), - [anon_sym_AMP_EQ] = ACTIONS(1719), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1719), - [anon_sym_PLUS_EQ] = ACTIONS(1719), - [anon_sym_DASH_EQ] = ACTIONS(1719), - [anon_sym_PIPE_EQ] = ACTIONS(1719), - [anon_sym_CARET_EQ] = ACTIONS(1719), - [anon_sym_COLON_EQ] = ACTIONS(1719), - [anon_sym_lock] = ACTIONS(1713), - [anon_sym_rlock] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_sql] = ACTIONS(1713), - [sym_int_literal] = ACTIONS(1713), - [sym_float_literal] = ACTIONS(1713), - [sym_rune_literal] = ACTIONS(1713), - [sym_pseudo_compile_time_identifier] = ACTIONS(1713), - [anon_sym_shared] = ACTIONS(1713), - [anon_sym_map_LBRACK] = ACTIONS(1713), - [anon_sym_chan] = ACTIONS(1713), - [anon_sym_thread] = ACTIONS(1713), - [anon_sym_atomic] = ACTIONS(1713), - [anon_sym_assert] = ACTIONS(1713), - [anon_sym_defer] = ACTIONS(1713), - [anon_sym_goto] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_DOLLARfor] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_asm] = ACTIONS(1713), - [anon_sym_AT_LBRACK] = ACTIONS(1713), - [sym___double_quote] = ACTIONS(1713), - [sym___single_quote] = ACTIONS(1713), - [sym___c_double_quote] = ACTIONS(1713), - [sym___c_single_quote] = ACTIONS(1713), - [sym___r_double_quote] = ACTIONS(1713), - [sym___r_single_quote] = ACTIONS(1713), - }, - [1135] = { - [sym_line_comment] = STATE(1135), - [sym_reference_expression] = STATE(4447), - [sym_type_reference_expression] = STATE(1691), - [sym_plain_type] = STATE(1708), - [sym__plain_type_without_special] = STATE(1669), - [sym_anon_struct_type] = STATE(1672), - [sym_multi_return_type] = STATE(1669), - [sym_result_type] = STATE(1669), - [sym_option_type] = STATE(1669), - [sym_qualified_type] = STATE(1691), - [sym_fixed_array_type] = STATE(1672), - [sym_array_type] = STATE(1672), - [sym_pointer_type] = STATE(1672), - [sym_wrong_pointer_type] = STATE(1672), - [sym_map_type] = STATE(1672), - [sym_channel_type] = STATE(1672), - [sym_shared_type] = STATE(1672), - [sym_thread_type] = STATE(1672), - [sym_atomic_type] = STATE(1672), - [sym_generic_type] = STATE(1672), - [sym_function_type] = STATE(1672), - [sym_identifier] = ACTIONS(3658), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_DASH] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_LT_LT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), - }, - [1136] = { - [sym_line_comment] = STATE(1136), - [sym_reference_expression] = STATE(4447), - [sym_type_reference_expression] = STATE(1691), - [sym_plain_type] = STATE(1709), - [sym__plain_type_without_special] = STATE(1669), - [sym_anon_struct_type] = STATE(1672), - [sym_multi_return_type] = STATE(1669), - [sym_result_type] = STATE(1669), - [sym_option_type] = STATE(1669), - [sym_qualified_type] = STATE(1691), - [sym_fixed_array_type] = STATE(1672), - [sym_array_type] = STATE(1672), - [sym_pointer_type] = STATE(1672), - [sym_wrong_pointer_type] = STATE(1672), - [sym_map_type] = STATE(1672), - [sym_channel_type] = STATE(1672), - [sym_shared_type] = STATE(1672), - [sym_thread_type] = STATE(1672), - [sym_atomic_type] = STATE(1672), - [sym_generic_type] = STATE(1672), - [sym_function_type] = STATE(1672), - [sym_identifier] = ACTIONS(3658), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_DASH] = ACTIONS(619), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), + [anon_sym_shared] = ACTIONS(3674), + [anon_sym_map_LBRACK] = ACTIONS(3676), + [anon_sym_chan] = ACTIONS(3678), + [anon_sym_thread] = ACTIONS(3680), + [anon_sym_atomic] = ACTIONS(3682), }, [1137] = { [sym_line_comment] = STATE(1137), - [sym_reference_expression] = STATE(4447), - [sym_type_reference_expression] = STATE(1691), - [sym_plain_type] = STATE(1677), - [sym__plain_type_without_special] = STATE(1669), - [sym_anon_struct_type] = STATE(1672), - [sym_multi_return_type] = STATE(1669), - [sym_result_type] = STATE(1669), - [sym_option_type] = STATE(1669), - [sym_qualified_type] = STATE(1691), - [sym_fixed_array_type] = STATE(1672), - [sym_array_type] = STATE(1672), - [sym_pointer_type] = STATE(1672), - [sym_wrong_pointer_type] = STATE(1672), - [sym_map_type] = STATE(1672), - [sym_channel_type] = STATE(1672), - [sym_shared_type] = STATE(1672), - [sym_thread_type] = STATE(1672), - [sym_atomic_type] = STATE(1672), - [sym_generic_type] = STATE(1672), - [sym_function_type] = STATE(1672), - [sym_identifier] = ACTIONS(3658), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), + [sym_block_comment] = STATE(1137), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(611), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1138] = { [sym_line_comment] = STATE(1138), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), + [sym_block_comment] = STATE(1138), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1849), [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1849), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), @@ -159323,430 +153702,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3694), [anon_sym_LT_EQ] = ACTIONS(3694), [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1849), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), [anon_sym_AMP_CARET] = ACTIONS(3692), [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), [anon_sym_in] = ACTIONS(3706), [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [1139] = { [sym_line_comment] = STATE(1139), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1837), - [anon_sym_LF] = ACTIONS(1837), - [anon_sym_CR] = ACTIONS(1837), - [anon_sym_CR_LF] = ACTIONS(1837), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1837), - [anon_sym_BANG_EQ] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_mut] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(1837), - [anon_sym_DASH_DASH] = ACTIONS(1837), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1837), - [anon_sym_spawn] = ACTIONS(1837), - [anon_sym_json_DOTdecode] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_LT_DASH] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(1837), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1837), - [anon_sym_AMP_CARET] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1837), - [anon_sym_PIPE_PIPE] = ACTIONS(1837), - [anon_sym_or] = ACTIONS(1837), - [sym_none] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_nil] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_DOLLARif] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1837), - [anon_sym_BANGis] = ACTIONS(1837), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_BANGin] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_select] = ACTIONS(1837), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_sql] = ACTIONS(1837), - [sym_int_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1837), - [sym_rune_literal] = ACTIONS(1837), - [sym_pseudo_compile_time_identifier] = ACTIONS(1837), - [anon_sym_shared] = ACTIONS(1837), - [anon_sym_map_LBRACK] = ACTIONS(1837), - [anon_sym_chan] = ACTIONS(1837), - [anon_sym_thread] = ACTIONS(1837), - [anon_sym_atomic] = ACTIONS(1837), - [sym___double_quote] = ACTIONS(1837), - [sym___single_quote] = ACTIONS(1837), - [sym___c_double_quote] = ACTIONS(1837), - [sym___c_single_quote] = ACTIONS(1837), - [sym___r_double_quote] = ACTIONS(1837), - [sym___r_single_quote] = ACTIONS(1837), - }, - [1140] = { - [sym_line_comment] = STATE(1140), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1899), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_CR] = ACTIONS(1899), - [anon_sym_CR_LF] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1899), - [anon_sym_COMMA] = ACTIONS(1899), - [anon_sym_RBRACE] = ACTIONS(1899), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_STAR] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1899), - [anon_sym_BANG_EQ] = ACTIONS(1899), - [anon_sym_LT_EQ] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(1899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1899), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1899), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_CARET] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1899), - [anon_sym_LT_LT] = ACTIONS(3692), - [anon_sym_GT_GT] = ACTIONS(3692), - [anon_sym_GT_GT_GT] = ACTIONS(3692), - [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(1899), - [anon_sym_PIPE_PIPE] = ACTIONS(1899), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1899), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1899), - [sym_rune_literal] = ACTIONS(1899), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1899), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1899), - [sym___single_quote] = ACTIONS(1899), - [sym___c_double_quote] = ACTIONS(1899), - [sym___c_single_quote] = ACTIONS(1899), - [sym___r_double_quote] = ACTIONS(1899), - [sym___r_single_quote] = ACTIONS(1899), - }, - [1141] = { - [sym_line_comment] = STATE(1141), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(3692), - [anon_sym_GT_GT] = ACTIONS(3692), - [anon_sym_GT_GT_GT] = ACTIONS(3692), - [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [1142] = { - [sym_line_comment] = STATE(1142), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1889), - [anon_sym_LT_LT] = ACTIONS(1889), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1889), - [anon_sym_AMP_CARET] = ACTIONS(1889), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), - }, - [1143] = { - [sym_line_comment] = STATE(1143), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), + [sym_block_comment] = STATE(1139), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), [sym_identifier] = ACTIONS(1925), [anon_sym_LF] = ACTIONS(1925), [anon_sym_CR] = ACTIONS(1925), [anon_sym_CR_LF] = ACTIONS(1925), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(1925), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(1925), @@ -159825,294 +153849,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1925), [sym___r_single_quote] = ACTIONS(1925), }, - [1144] = { - [sym_line_comment] = STATE(1144), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1769), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_CR] = ACTIONS(1769), - [anon_sym_CR_LF] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1769), + [1140] = { + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1877), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_CR] = ACTIONS(1877), + [anon_sym_CR_LF] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1877), [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_COMMA] = ACTIONS(1769), - [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1877), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), [anon_sym_SLASH] = ACTIONS(3692), [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3694), - [anon_sym_BANG_EQ] = ACTIONS(3694), - [anon_sym_LT_EQ] = ACTIONS(3694), - [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1877), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_TILDE] = ACTIONS(1877), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1769), + [anon_sym_LT_DASH] = ACTIONS(1877), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(3720), - [anon_sym_BANGis] = ACTIONS(3722), - [anon_sym_in] = ACTIONS(3706), - [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1769), - [sym_rune_literal] = ACTIONS(1769), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1769), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1769), - [sym___single_quote] = ACTIONS(1769), - [sym___c_double_quote] = ACTIONS(1769), - [sym___c_single_quote] = ACTIONS(1769), - [sym___r_double_quote] = ACTIONS(1769), - [sym___r_single_quote] = ACTIONS(1769), - }, - [1145] = { - [sym_line_comment] = STATE(1145), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_STAR_EQ] = ACTIONS(623), - [anon_sym_SLASH_EQ] = ACTIONS(623), - [anon_sym_PERCENT_EQ] = ACTIONS(623), - [anon_sym_LT_LT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_EQ] = ACTIONS(623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), - [anon_sym_AMP_EQ] = ACTIONS(623), - [anon_sym_AMP_CARET_EQ] = ACTIONS(623), - [anon_sym_PLUS_EQ] = ACTIONS(623), - [anon_sym_DASH_EQ] = ACTIONS(623), - [anon_sym_PIPE_EQ] = ACTIONS(623), - [anon_sym_CARET_EQ] = ACTIONS(623), - [anon_sym_COLON_EQ] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1877), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1877), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1877), + [sym_rune_literal] = ACTIONS(1877), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1877), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1877), + [sym___single_quote] = ACTIONS(1877), + [sym___c_double_quote] = ACTIONS(1877), + [sym___c_single_quote] = ACTIONS(1877), + [sym___r_double_quote] = ACTIONS(1877), + [sym___r_single_quote] = ACTIONS(1877), }, - [1146] = { - [sym_line_comment] = STATE(1146), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1807), - [anon_sym_LF] = ACTIONS(1807), - [anon_sym_CR] = ACTIONS(1807), - [anon_sym_CR_LF] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1807), + [1141] = { + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1881), [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_COMMA] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1881), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1881), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), [anon_sym_SLASH] = ACTIONS(3692), [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1807), - [anon_sym_BANG_EQ] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1807), - [anon_sym_GT_EQ] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1881), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1807), + [anon_sym_LT_DASH] = ACTIONS(1881), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1807), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1807), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), - [sym_rune_literal] = ACTIONS(1807), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1807), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1807), - [sym___single_quote] = ACTIONS(1807), - [sym___c_double_quote] = ACTIONS(1807), - [sym___c_single_quote] = ACTIONS(1807), - [sym___r_double_quote] = ACTIONS(1807), - [sym___r_single_quote] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, - [1147] = { - [sym_line_comment] = STATE(1147), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1871), - [anon_sym_LF] = ACTIONS(1871), - [anon_sym_CR] = ACTIONS(1871), - [anon_sym_CR_LF] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1871), + [1142] = { + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2071), + [anon_sym_LF] = ACTIONS(2071), + [anon_sym_CR] = ACTIONS(2071), + [anon_sym_CR_LF] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2071), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(1871), - [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_COMMA] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(2071), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), @@ -160124,22 +154062,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3694), [anon_sym_LT_EQ] = ACTIONS(3694), [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2071), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), [anon_sym_PLUS_PLUS] = ACTIONS(3712), [anon_sym_DASH_DASH] = ACTIONS(3714), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1871), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2071), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(2071), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1871), + [anon_sym_LT_DASH] = ACTIONS(2071), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), @@ -160147,61 +154085,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3704), [anon_sym_PIPE_PIPE] = ACTIONS(3716), [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), [anon_sym_is] = ACTIONS(3720), [anon_sym_BANGis] = ACTIONS(3722), [anon_sym_in] = ACTIONS(3706), [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1871), - [sym_rune_literal] = ACTIONS(1871), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1871), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1871), - [sym___single_quote] = ACTIONS(1871), - [sym___c_double_quote] = ACTIONS(1871), - [sym___c_single_quote] = ACTIONS(1871), - [sym___r_double_quote] = ACTIONS(1871), - [sym___r_single_quote] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), + [sym_rune_literal] = ACTIONS(2071), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2071), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2071), + [sym___single_quote] = ACTIONS(2071), + [sym___c_double_quote] = ACTIONS(2071), + [sym___c_single_quote] = ACTIONS(2071), + [sym___r_double_quote] = ACTIONS(2071), + [sym___r_single_quote] = ACTIONS(2071), }, - [1148] = { - [sym_line_comment] = STATE(1148), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), + [1143] = { + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1849), [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3692), + [anon_sym_GT_GT] = ACTIONS(3692), + [anon_sym_GT_GT_GT] = ACTIONS(3692), + [anon_sym_AMP_CARET] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [1144] = { + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [1145] = { + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_CR] = ACTIONS(1913), + [anon_sym_CR_LF] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1913), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1913), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1913), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1913), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1913), + [sym_rune_literal] = ACTIONS(1913), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1913), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1913), + [sym___single_quote] = ACTIONS(1913), + [sym___c_double_quote] = ACTIONS(1913), + [sym___c_single_quote] = ACTIONS(1913), + [sym___r_double_quote] = ACTIONS(1913), + [sym___r_single_quote] = ACTIONS(1913), + }, + [1146] = { + [sym_line_comment] = STATE(1146), + [sym_block_comment] = STATE(1146), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_STAR_EQ] = ACTIONS(597), + [anon_sym_SLASH_EQ] = ACTIONS(597), + [anon_sym_PERCENT_EQ] = ACTIONS(597), + [anon_sym_LT_LT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_EQ] = ACTIONS(597), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), + [anon_sym_AMP_EQ] = ACTIONS(597), + [anon_sym_AMP_CARET_EQ] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(597), + [anon_sym_DASH_EQ] = ACTIONS(597), + [anon_sym_PIPE_EQ] = ACTIONS(597), + [anon_sym_CARET_EQ] = ACTIONS(597), + [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + }, + [1147] = { + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1849), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), @@ -160213,279 +154512,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3694), [anon_sym_LT_EQ] = ACTIONS(3694), [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1849), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1849), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), [anon_sym_in] = ACTIONS(3706), [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [1148] = { + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3692), + [anon_sym_GT_GT] = ACTIONS(3692), + [anon_sym_GT_GT_GT] = ACTIONS(3692), + [anon_sym_AMP_CARET] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1849), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1849), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [1149] = { [sym_line_comment] = STATE(1149), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1889), - [anon_sym_CR] = ACTIONS(1889), - [anon_sym_CR_LF] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1889), + [sym_block_comment] = STATE(1149), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(1933), [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_COMMA] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_as] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_RBRACE] = ACTIONS(1933), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1889), + [anon_sym_RPAREN] = ACTIONS(1933), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1933), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), [anon_sym_SLASH] = ACTIONS(3692), [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1889), - [anon_sym_BANG_EQ] = ACTIONS(1889), - [anon_sym_LT_EQ] = ACTIONS(1889), - [anon_sym_GT_EQ] = ACTIONS(1889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1889), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1889), - [anon_sym_DASH_DASH] = ACTIONS(1889), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1889), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1889), + [anon_sym_TILDE] = ACTIONS(1933), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1889), + [anon_sym_LT_DASH] = ACTIONS(1933), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(1889), - [anon_sym_PIPE_PIPE] = ACTIONS(1889), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1889), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), - [sym_rune_literal] = ACTIONS(1889), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1889), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1889), - [sym___single_quote] = ACTIONS(1889), - [sym___c_double_quote] = ACTIONS(1889), - [sym___c_single_quote] = ACTIONS(1889), - [sym___r_double_quote] = ACTIONS(1889), - [sym___r_single_quote] = ACTIONS(1889), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3706), + [anon_sym_BANGin] = ACTIONS(3708), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), }, [1150] = { [sym_line_comment] = STATE(1150), - [sym_reference_expression] = STATE(4546), - [sym_type_reference_expression] = STATE(1816), - [sym_plain_type] = STATE(1844), - [sym__plain_type_without_special] = STATE(1832), - [sym_anon_struct_type] = STATE(1838), - [sym_multi_return_type] = STATE(1832), - [sym_result_type] = STATE(1832), - [sym_option_type] = STATE(1832), - [sym_qualified_type] = STATE(1816), - [sym_fixed_array_type] = STATE(1838), - [sym_array_type] = STATE(1838), - [sym_pointer_type] = STATE(1838), - [sym_wrong_pointer_type] = STATE(1838), - [sym_map_type] = STATE(1838), - [sym_channel_type] = STATE(1838), - [sym_shared_type] = STATE(1838), - [sym_thread_type] = STATE(1838), - [sym_atomic_type] = STATE(1838), - [sym_generic_type] = STATE(1838), - [sym_function_type] = STATE(1838), + [sym_block_comment] = STATE(1150), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), [sym_identifier] = ACTIONS(3724), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3736), - [anon_sym_LBRACK2] = ACTIONS(3738), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3744), - [anon_sym_chan] = ACTIONS(3746), - [anon_sym_thread] = ACTIONS(3748), - [anon_sym_atomic] = ACTIONS(3750), + [anon_sym_LF] = ACTIONS(3724), + [anon_sym_CR] = ACTIONS(3724), + [anon_sym_CR_LF] = ACTIONS(3724), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(3724), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_fn] = ACTIONS(3724), + [anon_sym_PLUS] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3724), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3724), + [anon_sym_mut] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(3724), + [anon_sym_spawn] = ACTIONS(3724), + [anon_sym_json_DOTdecode] = ACTIONS(3724), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_CARET] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3724), + [anon_sym_LT_DASH] = ACTIONS(3724), + [anon_sym_LT_LT] = ACTIONS(3692), + [anon_sym_GT_GT] = ACTIONS(3692), + [anon_sym_GT_GT_GT] = ACTIONS(3692), + [anon_sym_AMP_CARET] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(3724), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [sym_nil] = ACTIONS(3724), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3724), + [anon_sym_DOLLARif] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3706), + [anon_sym_BANGin] = ACTIONS(3708), + [anon_sym_match] = ACTIONS(3724), + [anon_sym_select] = ACTIONS(3724), + [anon_sym_lock] = ACTIONS(3724), + [anon_sym_rlock] = ACTIONS(3724), + [anon_sym_unsafe] = ACTIONS(3724), + [anon_sym_sql] = ACTIONS(3724), + [sym_int_literal] = ACTIONS(3724), + [sym_float_literal] = ACTIONS(3724), + [sym_rune_literal] = ACTIONS(3724), + [sym_pseudo_compile_time_identifier] = ACTIONS(3724), + [anon_sym_shared] = ACTIONS(3724), + [anon_sym_map_LBRACK] = ACTIONS(3724), + [anon_sym_chan] = ACTIONS(3724), + [anon_sym_thread] = ACTIONS(3724), + [anon_sym_atomic] = ACTIONS(3724), + [sym___double_quote] = ACTIONS(3724), + [sym___single_quote] = ACTIONS(3724), + [sym___c_double_quote] = ACTIONS(3724), + [sym___c_single_quote] = ACTIONS(3724), + [sym___r_double_quote] = ACTIONS(3724), + [sym___r_single_quote] = ACTIONS(3724), }, [1151] = { [sym_line_comment] = STATE(1151), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1151), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1812), + [sym_plain_type] = STATE(1932), + [sym__plain_type_without_special] = STATE(1940), + [sym_anon_struct_type] = STATE(1948), + [sym_multi_return_type] = STATE(1940), + [sym_result_type] = STATE(1940), + [sym_option_type] = STATE(1940), + [sym_qualified_type] = STATE(1812), + [sym_fixed_array_type] = STATE(1948), + [sym_array_type] = STATE(1948), + [sym_pointer_type] = STATE(1948), + [sym_wrong_pointer_type] = STATE(1948), + [sym_map_type] = STATE(1948), + [sym_channel_type] = STATE(1948), + [sym_shared_type] = STATE(1948), + [sym_thread_type] = STATE(1948), + [sym_atomic_type] = STATE(1948), + [sym_generic_type] = STATE(1948), + [sym_function_type] = STATE(1948), + [sym_identifier] = ACTIONS(3726), [anon_sym_LF] = ACTIONS(567), [anon_sym_CR] = ACTIONS(567), [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_COMMA] = ACTIONS(567), [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_LPAREN] = ACTIONS(3728), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3730), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3732), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -160495,14 +154887,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(567), [anon_sym_GT_EQ] = ACTIONS(567), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3734), [anon_sym_PLUS_PLUS] = ACTIONS(567), [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3752), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3742), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -160529,199 +154921,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(567), [anon_sym_CARET_EQ] = ACTIONS(567), [anon_sym_COLON_EQ] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3744), + [anon_sym_map_LBRACK] = ACTIONS(3746), + [anon_sym_chan] = ACTIONS(3748), + [anon_sym_thread] = ACTIONS(3750), + [anon_sym_atomic] = ACTIONS(3752), }, [1152] = { [sym_line_comment] = STATE(1152), - [sym_reference_expression] = STATE(4546), - [sym_type_reference_expression] = STATE(1816), - [sym_plain_type] = STATE(1873), - [sym__plain_type_without_special] = STATE(1832), - [sym_anon_struct_type] = STATE(1838), - [sym_multi_return_type] = STATE(1832), - [sym_result_type] = STATE(1832), - [sym_option_type] = STATE(1832), - [sym_qualified_type] = STATE(1816), - [sym_fixed_array_type] = STATE(1838), - [sym_array_type] = STATE(1838), - [sym_pointer_type] = STATE(1838), - [sym_wrong_pointer_type] = STATE(1838), - [sym_map_type] = STATE(1838), - [sym_channel_type] = STATE(1838), - [sym_shared_type] = STATE(1838), - [sym_thread_type] = STATE(1838), - [sym_atomic_type] = STATE(1838), - [sym_generic_type] = STATE(1838), - [sym_function_type] = STATE(1838), - [sym_identifier] = ACTIONS(3724), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3736), - [anon_sym_LBRACK2] = ACTIONS(3738), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_STAR_EQ] = ACTIONS(619), - [anon_sym_SLASH_EQ] = ACTIONS(619), - [anon_sym_PERCENT_EQ] = ACTIONS(619), - [anon_sym_LT_LT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_EQ] = ACTIONS(619), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), - [anon_sym_AMP_EQ] = ACTIONS(619), - [anon_sym_AMP_CARET_EQ] = ACTIONS(619), - [anon_sym_PLUS_EQ] = ACTIONS(619), - [anon_sym_DASH_EQ] = ACTIONS(619), - [anon_sym_PIPE_EQ] = ACTIONS(619), - [anon_sym_CARET_EQ] = ACTIONS(619), - [anon_sym_COLON_EQ] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3744), - [anon_sym_chan] = ACTIONS(3746), - [anon_sym_thread] = ACTIONS(3748), - [anon_sym_atomic] = ACTIONS(3750), + [sym_block_comment] = STATE(1152), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1812), + [sym_plain_type] = STATE(1936), + [sym__plain_type_without_special] = STATE(1940), + [sym_anon_struct_type] = STATE(1948), + [sym_multi_return_type] = STATE(1940), + [sym_result_type] = STATE(1940), + [sym_option_type] = STATE(1940), + [sym_qualified_type] = STATE(1812), + [sym_fixed_array_type] = STATE(1948), + [sym_array_type] = STATE(1948), + [sym_pointer_type] = STATE(1948), + [sym_wrong_pointer_type] = STATE(1948), + [sym_map_type] = STATE(1948), + [sym_channel_type] = STATE(1948), + [sym_shared_type] = STATE(1948), + [sym_thread_type] = STATE(1948), + [sym_atomic_type] = STATE(1948), + [sym_generic_type] = STATE(1948), + [sym_function_type] = STATE(1948), + [sym_identifier] = ACTIONS(3726), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_STAR_EQ] = ACTIONS(605), + [anon_sym_SLASH_EQ] = ACTIONS(605), + [anon_sym_PERCENT_EQ] = ACTIONS(605), + [anon_sym_LT_LT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_EQ] = ACTIONS(605), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(605), + [anon_sym_AMP_EQ] = ACTIONS(605), + [anon_sym_AMP_CARET_EQ] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(605), + [anon_sym_DASH_EQ] = ACTIONS(605), + [anon_sym_PIPE_EQ] = ACTIONS(605), + [anon_sym_CARET_EQ] = ACTIONS(605), + [anon_sym_COLON_EQ] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(3744), + [anon_sym_map_LBRACK] = ACTIONS(3746), + [anon_sym_chan] = ACTIONS(3748), + [anon_sym_thread] = ACTIONS(3750), + [anon_sym_atomic] = ACTIONS(3752), }, [1153] = { [sym_line_comment] = STATE(1153), - [sym_reference_expression] = STATE(4546), - [sym_type_reference_expression] = STATE(1816), - [sym_plain_type] = STATE(1879), - [sym__plain_type_without_special] = STATE(1832), - [sym_anon_struct_type] = STATE(1838), - [sym_multi_return_type] = STATE(1832), - [sym_result_type] = STATE(1832), - [sym_option_type] = STATE(1832), - [sym_qualified_type] = STATE(1816), - [sym_fixed_array_type] = STATE(1838), - [sym_array_type] = STATE(1838), - [sym_pointer_type] = STATE(1838), - [sym_wrong_pointer_type] = STATE(1838), - [sym_map_type] = STATE(1838), - [sym_channel_type] = STATE(1838), - [sym_shared_type] = STATE(1838), - [sym_thread_type] = STATE(1838), - [sym_atomic_type] = STATE(1838), - [sym_generic_type] = STATE(1838), - [sym_function_type] = STATE(1838), - [sym_identifier] = ACTIONS(3724), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3728), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3730), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3732), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(3734), - [anon_sym_BANG] = ACTIONS(3736), - [anon_sym_LBRACK2] = ACTIONS(3738), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3740), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_LT_LT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_AMP_CARET_EQ] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_COLON_EQ] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(3742), - [anon_sym_map_LBRACK] = ACTIONS(3744), - [anon_sym_chan] = ACTIONS(3746), - [anon_sym_thread] = ACTIONS(3748), - [anon_sym_atomic] = ACTIONS(3750), - }, - [1154] = { - [sym_line_comment] = STATE(1154), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), + [sym_block_comment] = STATE(1153), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), [sym_identifier] = ACTIONS(3754), [anon_sym_LF] = ACTIONS(3754), [anon_sym_CR] = ACTIONS(3754), [anon_sym_CR_LF] = ACTIONS(3754), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(3754), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(3710), @@ -160799,191 +155105,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3754), [sym___r_single_quote] = ACTIONS(3754), }, + [1154] = { + [sym_line_comment] = STATE(1154), + [sym_block_comment] = STATE(1154), + [sym_reference_expression] = STATE(4554), + [sym_type_reference_expression] = STATE(1812), + [sym_plain_type] = STATE(1946), + [sym__plain_type_without_special] = STATE(1940), + [sym_anon_struct_type] = STATE(1948), + [sym_multi_return_type] = STATE(1940), + [sym_result_type] = STATE(1940), + [sym_option_type] = STATE(1940), + [sym_qualified_type] = STATE(1812), + [sym_fixed_array_type] = STATE(1948), + [sym_array_type] = STATE(1948), + [sym_pointer_type] = STATE(1948), + [sym_wrong_pointer_type] = STATE(1948), + [sym_map_type] = STATE(1948), + [sym_channel_type] = STATE(1948), + [sym_shared_type] = STATE(1948), + [sym_thread_type] = STATE(1948), + [sym_atomic_type] = STATE(1948), + [sym_generic_type] = STATE(1948), + [sym_function_type] = STATE(1948), + [sym_identifier] = ACTIONS(3726), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3738), + [anon_sym_LBRACK2] = ACTIONS(3740), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_STAR_EQ] = ACTIONS(601), + [anon_sym_SLASH_EQ] = ACTIONS(601), + [anon_sym_PERCENT_EQ] = ACTIONS(601), + [anon_sym_LT_LT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_EQ] = ACTIONS(601), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), + [anon_sym_AMP_EQ] = ACTIONS(601), + [anon_sym_AMP_CARET_EQ] = ACTIONS(601), + [anon_sym_PLUS_EQ] = ACTIONS(601), + [anon_sym_DASH_EQ] = ACTIONS(601), + [anon_sym_PIPE_EQ] = ACTIONS(601), + [anon_sym_CARET_EQ] = ACTIONS(601), + [anon_sym_COLON_EQ] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(3744), + [anon_sym_map_LBRACK] = ACTIONS(3746), + [anon_sym_chan] = ACTIONS(3748), + [anon_sym_thread] = ACTIONS(3750), + [anon_sym_atomic] = ACTIONS(3752), + }, [1155] = { [sym_line_comment] = STATE(1155), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(3756), - [anon_sym_LF] = ACTIONS(3756), - [anon_sym_CR] = ACTIONS(3756), - [anon_sym_CR_LF] = ACTIONS(3756), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(3756), - [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(3756), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_STAR] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3694), - [anon_sym_BANG_EQ] = ACTIONS(3694), - [anon_sym_LT_EQ] = ACTIONS(3694), - [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3756), - [anon_sym_mut] = ACTIONS(3756), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(3756), - [anon_sym_spawn] = ACTIONS(3756), - [anon_sym_json_DOTdecode] = ACTIONS(3756), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3756), - [anon_sym_CARET] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(3756), - [anon_sym_LT_LT] = ACTIONS(3692), - [anon_sym_GT_GT] = ACTIONS(3692), - [anon_sym_GT_GT_GT] = ACTIONS(3692), - [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(3756), - [sym_true] = ACTIONS(3756), - [sym_false] = ACTIONS(3756), - [sym_nil] = ACTIONS(3756), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(3756), - [anon_sym_DOLLARif] = ACTIONS(3756), - [anon_sym_is] = ACTIONS(3720), - [anon_sym_BANGis] = ACTIONS(3722), - [anon_sym_in] = ACTIONS(3706), - [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3756), - [anon_sym_select] = ACTIONS(3756), - [anon_sym_lock] = ACTIONS(3756), - [anon_sym_rlock] = ACTIONS(3756), - [anon_sym_unsafe] = ACTIONS(3756), - [anon_sym_sql] = ACTIONS(3756), - [sym_int_literal] = ACTIONS(3756), - [sym_float_literal] = ACTIONS(3756), - [sym_rune_literal] = ACTIONS(3756), - [sym_pseudo_compile_time_identifier] = ACTIONS(3756), - [anon_sym_shared] = ACTIONS(3756), - [anon_sym_map_LBRACK] = ACTIONS(3756), - [anon_sym_chan] = ACTIONS(3756), - [anon_sym_thread] = ACTIONS(3756), - [anon_sym_atomic] = ACTIONS(3756), - [sym___double_quote] = ACTIONS(3756), - [sym___single_quote] = ACTIONS(3756), - [sym___c_double_quote] = ACTIONS(3756), - [sym___c_single_quote] = ACTIONS(3756), - [sym___r_double_quote] = ACTIONS(3756), - [sym___r_single_quote] = ACTIONS(3756), + [sym_block_comment] = STATE(1155), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_STAR_EQ] = ACTIONS(611), + [anon_sym_SLASH_EQ] = ACTIONS(611), + [anon_sym_PERCENT_EQ] = ACTIONS(611), + [anon_sym_LT_LT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_EQ] = ACTIONS(611), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(611), + [anon_sym_AMP_EQ] = ACTIONS(611), + [anon_sym_AMP_CARET_EQ] = ACTIONS(611), + [anon_sym_PLUS_EQ] = ACTIONS(611), + [anon_sym_DASH_EQ] = ACTIONS(611), + [anon_sym_PIPE_EQ] = ACTIONS(611), + [anon_sym_CARET_EQ] = ACTIONS(611), + [anon_sym_COLON_EQ] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1156] = { [sym_line_comment] = STATE(1156), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_CR] = ACTIONS(1841), - [anon_sym_CR_LF] = ACTIONS(1841), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_DOT] = ACTIONS(3686), - [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_COMMA] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_STAR] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_PERCENT] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_GT] = ACTIONS(3694), - [anon_sym_EQ_EQ] = ACTIONS(3694), - [anon_sym_BANG_EQ] = ACTIONS(3694), - [anon_sym_LT_EQ] = ACTIONS(3694), - [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_mut] = ACTIONS(1841), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(1841), - [anon_sym_spawn] = ACTIONS(1841), - [anon_sym_json_DOTdecode] = ACTIONS(1841), - [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(1841), - [anon_sym_CARET] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(1841), - [anon_sym_LT_LT] = ACTIONS(3692), - [anon_sym_GT_GT] = ACTIONS(3692), - [anon_sym_GT_GT_GT] = ACTIONS(3692), - [anon_sym_AMP_CARET] = ACTIONS(3692), - [anon_sym_AMP_AMP] = ACTIONS(3704), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(1841), - [sym_true] = ACTIONS(1841), - [sym_false] = ACTIONS(1841), - [sym_nil] = ACTIONS(1841), - [anon_sym_QMARK_DOT] = ACTIONS(3686), - [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_DOLLARif] = ACTIONS(1841), - [anon_sym_is] = ACTIONS(3758), - [anon_sym_BANGis] = ACTIONS(3760), - [anon_sym_in] = ACTIONS(3706), - [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_select] = ACTIONS(1841), - [anon_sym_lock] = ACTIONS(1841), - [anon_sym_rlock] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_sql] = ACTIONS(1841), - [sym_int_literal] = ACTIONS(1841), - [sym_float_literal] = ACTIONS(1841), - [sym_rune_literal] = ACTIONS(1841), - [sym_pseudo_compile_time_identifier] = ACTIONS(1841), - [anon_sym_shared] = ACTIONS(1841), - [anon_sym_map_LBRACK] = ACTIONS(1841), - [anon_sym_chan] = ACTIONS(1841), - [anon_sym_thread] = ACTIONS(1841), - [anon_sym_atomic] = ACTIONS(1841), - [sym___double_quote] = ACTIONS(1841), - [sym___single_quote] = ACTIONS(1841), - [sym___c_double_quote] = ACTIONS(1841), - [sym___c_single_quote] = ACTIONS(1841), - [sym___r_double_quote] = ACTIONS(1841), - [sym___r_single_quote] = ACTIONS(1841), + [sym_block_comment] = STATE(1156), + [sym_else_branch] = STATE(1193), + [sym_identifier] = ACTIONS(2491), + [anon_sym_LF] = ACTIONS(2491), + [anon_sym_CR] = ACTIONS(2491), + [anon_sym_CR_LF] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_COMMA] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_RPAREN] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2491), + [anon_sym_BANG_EQ] = ACTIONS(2491), + [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_GT_EQ] = ACTIONS(2491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2491), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2491), + [anon_sym_LT_LT] = ACTIONS(2491), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2491), + [anon_sym_AMP_CARET] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_PIPE_PIPE] = ACTIONS(2491), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2491), + [anon_sym_POUND_LBRACK] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(3758), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2491), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), + [sym_rune_literal] = ACTIONS(2491), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2491), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [sym___double_quote] = ACTIONS(2491), + [sym___single_quote] = ACTIONS(2491), + [sym___c_double_quote] = ACTIONS(2491), + [sym___c_single_quote] = ACTIONS(2491), + [sym___r_double_quote] = ACTIONS(2491), + [sym___r_single_quote] = ACTIONS(2491), }, [1157] = { [sym_line_comment] = STATE(1157), - [sym_else_branch] = STATE(1216), + [sym_block_comment] = STATE(1157), + [sym_else_branch] = STATE(1190), [sym_identifier] = ACTIONS(2481), [anon_sym_LF] = ACTIONS(2481), [anon_sym_CR] = ACTIONS(2481), [anon_sym_CR_LF] = ACTIONS(2481), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(2481), [anon_sym_DOT] = ACTIONS(2481), [anon_sym_as] = ACTIONS(2481), @@ -161035,7 +155433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK_DOT] = ACTIONS(2481), [anon_sym_POUND_LBRACK] = ACTIONS(2481), [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(3762), + [anon_sym_else] = ACTIONS(3758), [anon_sym_DOLLARif] = ACTIONS(2481), [anon_sym_is] = ACTIONS(2481), [anon_sym_BANGis] = ACTIONS(2481), @@ -161065,115 +155463,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1158] = { [sym_line_comment] = STATE(1158), - [sym_else_branch] = STATE(1218), - [sym_identifier] = ACTIONS(2475), - [anon_sym_LF] = ACTIONS(2475), - [anon_sym_CR] = ACTIONS(2475), - [anon_sym_CR_LF] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2475), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_COMMA] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_RPAREN] = ACTIONS(2475), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2475), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2475), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2475), - [anon_sym_BANG_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2475), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_PLUS_PLUS] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2475), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2475), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2475), - [anon_sym_CARET] = ACTIONS(2475), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2475), - [anon_sym_LT_LT] = ACTIONS(2475), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2475), - [anon_sym_AMP_CARET] = ACTIONS(2475), - [anon_sym_AMP_AMP] = ACTIONS(2475), - [anon_sym_PIPE_PIPE] = ACTIONS(2475), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2475), - [anon_sym_POUND_LBRACK] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(3762), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2475), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2475), - [sym_rune_literal] = ACTIONS(2475), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2475), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2475), - [sym___single_quote] = ACTIONS(2475), - [sym___c_double_quote] = ACTIONS(2475), - [sym___c_single_quote] = ACTIONS(2475), - [sym___r_double_quote] = ACTIONS(2475), - [sym___r_single_quote] = ACTIONS(2475), + [sym_block_comment] = STATE(1158), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(3760), + [anon_sym_LF] = ACTIONS(3760), + [anon_sym_CR] = ACTIONS(3760), + [anon_sym_CR_LF] = ACTIONS(3760), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym_DOT] = ACTIONS(3686), + [anon_sym_as] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_COMMA] = ACTIONS(3760), + [anon_sym_LPAREN] = ACTIONS(3688), + [anon_sym_RPAREN] = ACTIONS(3760), + [anon_sym_PIPE] = ACTIONS(3690), + [anon_sym_fn] = ACTIONS(3760), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_PERCENT] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_GT] = ACTIONS(3694), + [anon_sym_EQ_EQ] = ACTIONS(3694), + [anon_sym_BANG_EQ] = ACTIONS(3694), + [anon_sym_LT_EQ] = ACTIONS(3694), + [anon_sym_GT_EQ] = ACTIONS(3694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3760), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_struct] = ACTIONS(3760), + [anon_sym_mut] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_QMARK] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_go] = ACTIONS(3760), + [anon_sym_spawn] = ACTIONS(3760), + [anon_sym_json_DOTdecode] = ACTIONS(3760), + [anon_sym_LBRACK2] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_LT_DASH] = ACTIONS(3760), + [anon_sym_LT_LT] = ACTIONS(3692), + [anon_sym_GT_GT] = ACTIONS(3692), + [anon_sym_GT_GT_GT] = ACTIONS(3692), + [anon_sym_AMP_CARET] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_PIPE_PIPE] = ACTIONS(3716), + [anon_sym_or] = ACTIONS(3718), + [sym_none] = ACTIONS(3760), + [sym_true] = ACTIONS(3760), + [sym_false] = ACTIONS(3760), + [sym_nil] = ACTIONS(3760), + [anon_sym_QMARK_DOT] = ACTIONS(3686), + [anon_sym_POUND_LBRACK] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3760), + [anon_sym_DOLLARif] = ACTIONS(3760), + [anon_sym_is] = ACTIONS(3720), + [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_in] = ACTIONS(3706), + [anon_sym_BANGin] = ACTIONS(3708), + [anon_sym_match] = ACTIONS(3760), + [anon_sym_select] = ACTIONS(3760), + [anon_sym_lock] = ACTIONS(3760), + [anon_sym_rlock] = ACTIONS(3760), + [anon_sym_unsafe] = ACTIONS(3760), + [anon_sym_sql] = ACTIONS(3760), + [sym_int_literal] = ACTIONS(3760), + [sym_float_literal] = ACTIONS(3760), + [sym_rune_literal] = ACTIONS(3760), + [sym_pseudo_compile_time_identifier] = ACTIONS(3760), + [anon_sym_shared] = ACTIONS(3760), + [anon_sym_map_LBRACK] = ACTIONS(3760), + [anon_sym_chan] = ACTIONS(3760), + [anon_sym_thread] = ACTIONS(3760), + [anon_sym_atomic] = ACTIONS(3760), + [sym___double_quote] = ACTIONS(3760), + [sym___single_quote] = ACTIONS(3760), + [sym___c_double_quote] = ACTIONS(3760), + [sym___c_single_quote] = ACTIONS(3760), + [sym___r_double_quote] = ACTIONS(3760), + [sym___r_single_quote] = ACTIONS(3760), }, [1159] = { [sym_line_comment] = STATE(1159), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(3764), - [anon_sym_LF] = ACTIONS(3764), - [anon_sym_CR] = ACTIONS(3764), - [anon_sym_CR_LF] = ACTIONS(3764), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3764), + [sym_block_comment] = STATE(1159), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(2055), + [anon_sym_LF] = ACTIONS(2055), + [anon_sym_CR] = ACTIONS(2055), + [anon_sym_CR_LF] = ACTIONS(2055), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2055), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_COMMA] = ACTIONS(2055), [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(2055), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(3764), - [anon_sym_PLUS] = ACTIONS(3764), - [anon_sym_DASH] = ACTIONS(3764), - [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_fn] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), [anon_sym_SLASH] = ACTIONS(3692), [anon_sym_PERCENT] = ACTIONS(3692), [anon_sym_LT] = ACTIONS(3694), @@ -161182,22 +155582,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3694), [anon_sym_LT_EQ] = ACTIONS(3694), [anon_sym_GT_EQ] = ACTIONS(3694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2055), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3764), - [anon_sym_mut] = ACTIONS(3764), + [anon_sym_struct] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), [anon_sym_PLUS_PLUS] = ACTIONS(3712), [anon_sym_DASH_DASH] = ACTIONS(3714), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(3764), - [anon_sym_spawn] = ACTIONS(3764), - [anon_sym_json_DOTdecode] = ACTIONS(3764), + [anon_sym_go] = ACTIONS(2055), + [anon_sym_spawn] = ACTIONS(2055), + [anon_sym_json_DOTdecode] = ACTIONS(2055), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3764), - [anon_sym_CARET] = ACTIONS(3764), - [anon_sym_AMP] = ACTIONS(3764), - [anon_sym_LT_DASH] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(3690), + [anon_sym_AMP] = ACTIONS(3692), + [anon_sym_LT_DASH] = ACTIONS(2055), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), @@ -161205,60 +155605,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3704), [anon_sym_PIPE_PIPE] = ACTIONS(3716), [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(3764), - [sym_true] = ACTIONS(3764), - [sym_false] = ACTIONS(3764), - [sym_nil] = ACTIONS(3764), + [sym_none] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_nil] = ACTIONS(2055), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(3764), - [anon_sym_DOLLARif] = ACTIONS(3764), - [anon_sym_is] = ACTIONS(3720), - [anon_sym_BANGis] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_DOLLARif] = ACTIONS(2055), + [anon_sym_is] = ACTIONS(3762), + [anon_sym_BANGis] = ACTIONS(3764), [anon_sym_in] = ACTIONS(3706), [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3764), - [anon_sym_select] = ACTIONS(3764), - [anon_sym_lock] = ACTIONS(3764), - [anon_sym_rlock] = ACTIONS(3764), - [anon_sym_unsafe] = ACTIONS(3764), - [anon_sym_sql] = ACTIONS(3764), - [sym_int_literal] = ACTIONS(3764), - [sym_float_literal] = ACTIONS(3764), - [sym_rune_literal] = ACTIONS(3764), - [sym_pseudo_compile_time_identifier] = ACTIONS(3764), - [anon_sym_shared] = ACTIONS(3764), - [anon_sym_map_LBRACK] = ACTIONS(3764), - [anon_sym_chan] = ACTIONS(3764), - [anon_sym_thread] = ACTIONS(3764), - [anon_sym_atomic] = ACTIONS(3764), - [sym___double_quote] = ACTIONS(3764), - [sym___single_quote] = ACTIONS(3764), - [sym___c_double_quote] = ACTIONS(3764), - [sym___c_single_quote] = ACTIONS(3764), - [sym___r_double_quote] = ACTIONS(3764), - [sym___r_single_quote] = ACTIONS(3764), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_select] = ACTIONS(2055), + [anon_sym_lock] = ACTIONS(2055), + [anon_sym_rlock] = ACTIONS(2055), + [anon_sym_unsafe] = ACTIONS(2055), + [anon_sym_sql] = ACTIONS(2055), + [sym_int_literal] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), + [sym_rune_literal] = ACTIONS(2055), + [sym_pseudo_compile_time_identifier] = ACTIONS(2055), + [anon_sym_shared] = ACTIONS(2055), + [anon_sym_map_LBRACK] = ACTIONS(2055), + [anon_sym_chan] = ACTIONS(2055), + [anon_sym_thread] = ACTIONS(2055), + [anon_sym_atomic] = ACTIONS(2055), + [sym___double_quote] = ACTIONS(2055), + [sym___single_quote] = ACTIONS(2055), + [sym___c_double_quote] = ACTIONS(2055), + [sym___c_single_quote] = ACTIONS(2055), + [sym___r_double_quote] = ACTIONS(2055), + [sym___r_single_quote] = ACTIONS(2055), }, [1160] = { [sym_line_comment] = STATE(1160), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), - [sym_identifier] = ACTIONS(3766), + [sym_block_comment] = STATE(1160), + [sym_identifier] = ACTIONS(2751), + [anon_sym_LF] = ACTIONS(2751), + [anon_sym_CR] = ACTIONS(2751), + [anon_sym_CR_LF] = ACTIONS(2751), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_as] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_COMMA] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_RPAREN] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_fn] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_QMARK] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_go] = ACTIONS(2751), + [anon_sym_spawn] = ACTIONS(2751), + [anon_sym_json_DOTdecode] = ACTIONS(2751), + [anon_sym_LBRACK2] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_LT_DASH] = ACTIONS(2751), + [anon_sym_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_AMP_CARET] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_or] = ACTIONS(2751), + [sym_none] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_nil] = ACTIONS(2751), + [anon_sym_QMARK_DOT] = ACTIONS(2751), + [anon_sym_POUND_LBRACK] = ACTIONS(2751), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_DOLLARif] = ACTIONS(2751), + [anon_sym_DOLLARelse] = ACTIONS(3766), + [anon_sym_is] = ACTIONS(2751), + [anon_sym_BANGis] = ACTIONS(2751), + [anon_sym_in] = ACTIONS(2751), + [anon_sym_BANGin] = ACTIONS(2751), + [anon_sym_match] = ACTIONS(2751), + [anon_sym_select] = ACTIONS(2751), + [anon_sym_lock] = ACTIONS(2751), + [anon_sym_rlock] = ACTIONS(2751), + [anon_sym_unsafe] = ACTIONS(2751), + [anon_sym_sql] = ACTIONS(2751), + [sym_int_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), + [sym_rune_literal] = ACTIONS(2751), + [sym_pseudo_compile_time_identifier] = ACTIONS(2751), + [anon_sym_shared] = ACTIONS(2751), + [anon_sym_map_LBRACK] = ACTIONS(2751), + [anon_sym_chan] = ACTIONS(2751), + [anon_sym_thread] = ACTIONS(2751), + [anon_sym_atomic] = ACTIONS(2751), + [sym___double_quote] = ACTIONS(2751), + [sym___single_quote] = ACTIONS(2751), + [sym___c_double_quote] = ACTIONS(2751), + [sym___c_single_quote] = ACTIONS(2751), + [sym___r_double_quote] = ACTIONS(2751), + [sym___r_single_quote] = ACTIONS(2751), + }, + [1161] = { + [sym_line_comment] = STATE(1161), + [sym_block_comment] = STATE(1161), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), + }, + [1162] = { + [sym_line_comment] = STATE(1162), + [sym_block_comment] = STATE(1162), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), + [sym_identifier] = ACTIONS(3768), [anon_sym_LF] = ACTIONS(3768), [anon_sym_CR] = ACTIONS(3768), [anon_sym_CR_LF] = ACTIONS(3768), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_SEMI] = ACTIONS(3768), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(3710), - [anon_sym_LBRACE] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3768), [anon_sym_COMMA] = ACTIONS(3768), - [anon_sym_RBRACE] = ACTIONS(3766), + [anon_sym_RBRACE] = ACTIONS(3768), [anon_sym_LPAREN] = ACTIONS(3688), [anon_sym_PIPE] = ACTIONS(3690), - [anon_sym_fn] = ACTIONS(3766), + [anon_sym_fn] = ACTIONS(3768), [anon_sym_PLUS] = ACTIONS(3690), [anon_sym_DASH] = ACTIONS(3690), [anon_sym_STAR] = ACTIONS(3692), @@ -161271,20 +155848,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(3694), [anon_sym_GT_EQ] = ACTIONS(3694), [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_struct] = ACTIONS(3766), - [anon_sym_mut] = ACTIONS(3766), + [anon_sym_struct] = ACTIONS(3768), + [anon_sym_mut] = ACTIONS(3768), [anon_sym_PLUS_PLUS] = ACTIONS(3712), [anon_sym_DASH_DASH] = ACTIONS(3714), [anon_sym_QMARK] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_go] = ACTIONS(3766), - [anon_sym_spawn] = ACTIONS(3766), - [anon_sym_json_DOTdecode] = ACTIONS(3766), + [anon_sym_go] = ACTIONS(3768), + [anon_sym_spawn] = ACTIONS(3768), + [anon_sym_json_DOTdecode] = ACTIONS(3768), [anon_sym_LBRACK2] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3766), + [anon_sym_TILDE] = ACTIONS(3768), [anon_sym_CARET] = ACTIONS(3690), [anon_sym_AMP] = ACTIONS(3692), - [anon_sym_LT_DASH] = ACTIONS(3766), + [anon_sym_LT_DASH] = ACTIONS(3768), [anon_sym_LT_LT] = ACTIONS(3692), [anon_sym_GT_GT] = ACTIONS(3692), [anon_sym_GT_GT_GT] = ACTIONS(3692), @@ -161292,56 +155869,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3704), [anon_sym_PIPE_PIPE] = ACTIONS(3716), [anon_sym_or] = ACTIONS(3718), - [sym_none] = ACTIONS(3766), - [sym_true] = ACTIONS(3766), - [sym_false] = ACTIONS(3766), - [sym_nil] = ACTIONS(3766), + [sym_none] = ACTIONS(3768), + [sym_true] = ACTIONS(3768), + [sym_false] = ACTIONS(3768), + [sym_nil] = ACTIONS(3768), [anon_sym_QMARK_DOT] = ACTIONS(3686), [anon_sym_POUND_LBRACK] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(3766), - [anon_sym_DOLLARif] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3768), + [anon_sym_DOLLARif] = ACTIONS(3768), [anon_sym_is] = ACTIONS(3720), [anon_sym_BANGis] = ACTIONS(3722), [anon_sym_in] = ACTIONS(3706), [anon_sym_BANGin] = ACTIONS(3708), - [anon_sym_match] = ACTIONS(3766), - [anon_sym_select] = ACTIONS(3766), - [anon_sym_lock] = ACTIONS(3766), - [anon_sym_rlock] = ACTIONS(3766), - [anon_sym_unsafe] = ACTIONS(3766), - [anon_sym_sql] = ACTIONS(3766), - [sym_int_literal] = ACTIONS(3766), - [sym_float_literal] = ACTIONS(3766), - [sym_rune_literal] = ACTIONS(3766), - [sym_pseudo_compile_time_identifier] = ACTIONS(3766), - [anon_sym_shared] = ACTIONS(3766), - [anon_sym_map_LBRACK] = ACTIONS(3766), - [anon_sym_chan] = ACTIONS(3766), - [anon_sym_thread] = ACTIONS(3766), - [anon_sym_atomic] = ACTIONS(3766), - [sym___double_quote] = ACTIONS(3766), - [sym___single_quote] = ACTIONS(3766), - [sym___c_double_quote] = ACTIONS(3766), - [sym___c_single_quote] = ACTIONS(3766), - [sym___r_double_quote] = ACTIONS(3766), - [sym___r_single_quote] = ACTIONS(3766), + [anon_sym_match] = ACTIONS(3768), + [anon_sym_select] = ACTIONS(3768), + [anon_sym_lock] = ACTIONS(3768), + [anon_sym_rlock] = ACTIONS(3768), + [anon_sym_unsafe] = ACTIONS(3768), + [anon_sym_sql] = ACTIONS(3768), + [sym_int_literal] = ACTIONS(3768), + [sym_float_literal] = ACTIONS(3768), + [sym_rune_literal] = ACTIONS(3768), + [sym_pseudo_compile_time_identifier] = ACTIONS(3768), + [anon_sym_shared] = ACTIONS(3768), + [anon_sym_map_LBRACK] = ACTIONS(3768), + [anon_sym_chan] = ACTIONS(3768), + [anon_sym_thread] = ACTIONS(3768), + [anon_sym_atomic] = ACTIONS(3768), + [sym___double_quote] = ACTIONS(3768), + [sym___single_quote] = ACTIONS(3768), + [sym___c_double_quote] = ACTIONS(3768), + [sym___c_single_quote] = ACTIONS(3768), + [sym___r_double_quote] = ACTIONS(3768), + [sym___r_single_quote] = ACTIONS(3768), }, - [1161] = { - [sym_line_comment] = STATE(1161), - [sym_type_parameters] = STATE(4157), - [sym_argument_list] = STATE(1273), - [sym_or_block] = STATE(1271), + [1163] = { + [sym_line_comment] = STATE(1163), + [sym_block_comment] = STATE(1163), + [sym_type_parameters] = STATE(4388), + [sym_argument_list] = STATE(1278), + [sym_or_block] = STATE(1277), [sym_identifier] = ACTIONS(3770), - [anon_sym_LF] = ACTIONS(3770), - [anon_sym_CR] = ACTIONS(3770), - [anon_sym_CR_LF] = ACTIONS(3770), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3770), + [anon_sym_LF] = ACTIONS(3772), + [anon_sym_CR] = ACTIONS(3772), + [anon_sym_CR_LF] = ACTIONS(3772), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3772), [anon_sym_DOT] = ACTIONS(3686), [anon_sym_as] = ACTIONS(3710), [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_COMMA] = ACTIONS(3772), [anon_sym_RBRACE] = ACTIONS(3770), [anon_sym_LPAREN] = ACTIONS(3688), [anon_sym_PIPE] = ACTIONS(3690), @@ -161413,8393 +155991,7879 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3770), [sym___r_single_quote] = ACTIONS(3770), }, - [1162] = { - [sym_line_comment] = STATE(1162), - [sym_type_parameters] = STATE(1264), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), - }, - [1163] = { - [sym_line_comment] = STATE(1163), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), - }, [1164] = { [sym_line_comment] = STATE(1164), - [sym_identifier] = ACTIONS(2861), - [anon_sym_LF] = ACTIONS(2861), - [anon_sym_CR] = ACTIONS(2861), - [anon_sym_CR_LF] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2861), - [anon_sym_as] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2861), - [anon_sym_RBRACE] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_RPAREN] = ACTIONS(2861), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2861), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_PERCENT] = ACTIONS(2861), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_GT] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2861), - [anon_sym_BANG_EQ] = ACTIONS(2861), - [anon_sym_LT_EQ] = ACTIONS(2861), - [anon_sym_GT_EQ] = ACTIONS(2861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_mut] = ACTIONS(2861), - [anon_sym_PLUS_PLUS] = ACTIONS(2861), - [anon_sym_DASH_DASH] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_go] = ACTIONS(2861), - [anon_sym_spawn] = ACTIONS(2861), - [anon_sym_json_DOTdecode] = ACTIONS(2861), - [anon_sym_LBRACK2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_CARET] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT_DASH] = ACTIONS(2861), - [anon_sym_LT_LT] = ACTIONS(2861), - [anon_sym_GT_GT] = ACTIONS(2861), - [anon_sym_GT_GT_GT] = ACTIONS(2861), - [anon_sym_AMP_CARET] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [sym_none] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_nil] = ACTIONS(2861), - [anon_sym_QMARK_DOT] = ACTIONS(2861), - [anon_sym_POUND_LBRACK] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_DOLLARif] = ACTIONS(2861), - [anon_sym_DOLLARelse] = ACTIONS(3772), - [anon_sym_is] = ACTIONS(2861), - [anon_sym_BANGis] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_BANGin] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_select] = ACTIONS(2861), - [anon_sym_lock] = ACTIONS(2861), - [anon_sym_rlock] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_sql] = ACTIONS(2861), - [sym_int_literal] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(2861), - [sym_rune_literal] = ACTIONS(2861), - [sym_pseudo_compile_time_identifier] = ACTIONS(2861), - [anon_sym_shared] = ACTIONS(2861), - [anon_sym_map_LBRACK] = ACTIONS(2861), - [anon_sym_chan] = ACTIONS(2861), - [anon_sym_thread] = ACTIONS(2861), - [anon_sym_atomic] = ACTIONS(2861), - [sym___double_quote] = ACTIONS(2861), - [sym___single_quote] = ACTIONS(2861), - [sym___c_double_quote] = ACTIONS(2861), - [sym___c_single_quote] = ACTIONS(2861), - [sym___r_double_quote] = ACTIONS(2861), - [sym___r_single_quote] = ACTIONS(2861), + [sym_block_comment] = STATE(1164), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_DOLLARelse] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1165] = { [sym_line_comment] = STATE(1165), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_RPAREN] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_DOLLARelse] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1165), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_COMMA] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_RPAREN] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2669), + [anon_sym_POUND_LBRACK] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_DOLLARelse] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2669), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), }, [1166] = { [sym_line_comment] = STATE(1166), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym_block_comment] = STATE(1166), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_COLON] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [1167] = { [sym_line_comment] = STATE(1167), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_RPAREN] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1167), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_RPAREN] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_DOLLARelse] = ACTIONS(3774), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), }, [1168] = { [sym_line_comment] = STATE(1168), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2663), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_RBRACE] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym_RPAREN] = ACTIONS(2663), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2663), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2663), - [anon_sym_BANG_EQ] = ACTIONS(2663), - [anon_sym_LT_EQ] = ACTIONS(2663), - [anon_sym_GT_EQ] = ACTIONS(2663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_PLUS_PLUS] = ACTIONS(2663), - [anon_sym_DASH_DASH] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [anon_sym_LT_LT] = ACTIONS(2663), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2663), - [anon_sym_AMP_CARET] = ACTIONS(2663), - [anon_sym_AMP_AMP] = ACTIONS(2663), - [anon_sym_PIPE_PIPE] = ACTIONS(2663), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2663), - [anon_sym_POUND_LBRACK] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_DOLLARelse] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2663), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym_block_comment] = STATE(1168), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1169] = { [sym_line_comment] = STATE(1169), - [sym_identifier] = ACTIONS(2691), - [anon_sym_LF] = ACTIONS(2691), - [anon_sym_CR] = ACTIONS(2691), - [anon_sym_CR_LF] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2691), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2691), - [anon_sym_COMMA] = ACTIONS(2691), - [anon_sym_RBRACE] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(2691), - [anon_sym_RPAREN] = ACTIONS(2691), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2691), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2691), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2691), - [anon_sym_BANG_EQ] = ACTIONS(2691), - [anon_sym_LT_EQ] = ACTIONS(2691), - [anon_sym_GT_EQ] = ACTIONS(2691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_PLUS_PLUS] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2691), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2691), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2691), - [anon_sym_CARET] = ACTIONS(2691), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2691), - [anon_sym_LT_LT] = ACTIONS(2691), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2691), - [anon_sym_AMP_CARET] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(2691), - [anon_sym_PIPE_PIPE] = ACTIONS(2691), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2691), - [anon_sym_POUND_LBRACK] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_DOLLARelse] = ACTIONS(3774), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2691), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2691), - [sym_rune_literal] = ACTIONS(2691), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2691), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2691), - [sym___single_quote] = ACTIONS(2691), - [sym___c_double_quote] = ACTIONS(2691), - [sym___c_single_quote] = ACTIONS(2691), - [sym___r_double_quote] = ACTIONS(2691), - [sym___r_single_quote] = ACTIONS(2691), + [sym_block_comment] = STATE(1169), + [sym_type_parameters] = STATE(1276), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), }, [1170] = { [sym_line_comment] = STATE(1170), - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [sym_block_comment] = STATE(1170), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), }, [1171] = { [sym_line_comment] = STATE(1171), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [sym_block_comment] = STATE(1171), + [sym_identifier] = ACTIONS(2913), + [anon_sym_LF] = ACTIONS(2913), + [anon_sym_CR] = ACTIONS(2913), + [anon_sym_CR_LF] = ACTIONS(2913), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(2913), + [anon_sym_as] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_RPAREN] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_fn] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PERCENT] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_mut] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_go] = ACTIONS(2913), + [anon_sym_spawn] = ACTIONS(2913), + [anon_sym_json_DOTdecode] = ACTIONS(2913), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2913), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_CARET] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_or] = ACTIONS(2913), + [sym_none] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_nil] = ACTIONS(2913), + [anon_sym_QMARK_DOT] = ACTIONS(2913), + [anon_sym_POUND_LBRACK] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_DOLLARif] = ACTIONS(2913), + [anon_sym_is] = ACTIONS(2913), + [anon_sym_BANGis] = ACTIONS(2913), + [anon_sym_in] = ACTIONS(2913), + [anon_sym_BANGin] = ACTIONS(2913), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_select] = ACTIONS(2913), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2913), + [anon_sym_sql] = ACTIONS(2913), + [sym_int_literal] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2913), + [sym_rune_literal] = ACTIONS(2913), + [sym_pseudo_compile_time_identifier] = ACTIONS(2913), + [anon_sym_shared] = ACTIONS(2913), + [anon_sym_map_LBRACK] = ACTIONS(2913), + [anon_sym_chan] = ACTIONS(2913), + [anon_sym_thread] = ACTIONS(2913), + [anon_sym_atomic] = ACTIONS(2913), + [sym___double_quote] = ACTIONS(2913), + [sym___single_quote] = ACTIONS(2913), + [sym___c_double_quote] = ACTIONS(2913), + [sym___c_single_quote] = ACTIONS(2913), + [sym___r_double_quote] = ACTIONS(2913), + [sym___r_single_quote] = ACTIONS(2913), }, [1172] = { [sym_line_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), + [sym_block_comment] = STATE(1172), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1173] = { [sym_line_comment] = STATE(1173), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_RPAREN] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [sym_block_comment] = STATE(1173), + [sym_identifier] = ACTIONS(3410), + [anon_sym_LF] = ACTIONS(3410), + [anon_sym_CR] = ACTIONS(3410), + [anon_sym_CR_LF] = ACTIONS(3410), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_DOT] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_COMMA] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_PERCENT] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_GT] = ACTIONS(3410), + [anon_sym_EQ_EQ] = ACTIONS(3410), + [anon_sym_BANG_EQ] = ACTIONS(3410), + [anon_sym_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_EQ] = ACTIONS(3410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_QMARK] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3410), + [anon_sym_json_DOTdecode] = ACTIONS(3410), + [anon_sym_LBRACK2] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(3410), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_GT_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_CARET] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_or] = ACTIONS(3410), + [sym_none] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_nil] = ACTIONS(3410), + [anon_sym_QMARK_DOT] = ACTIONS(3410), + [anon_sym_POUND_LBRACK] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_DOLLARif] = ACTIONS(3410), + [anon_sym_is] = ACTIONS(3410), + [anon_sym_BANGis] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3410), + [anon_sym_BANGin] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_select] = ACTIONS(3410), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3410), + [sym_int_literal] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3410), + [sym_rune_literal] = ACTIONS(3410), + [sym_pseudo_compile_time_identifier] = ACTIONS(3410), + [anon_sym_shared] = ACTIONS(3410), + [anon_sym_map_LBRACK] = ACTIONS(3410), + [anon_sym_chan] = ACTIONS(3410), + [anon_sym_thread] = ACTIONS(3410), + [anon_sym_atomic] = ACTIONS(3410), + [sym___double_quote] = ACTIONS(3410), + [sym___single_quote] = ACTIONS(3410), + [sym___c_double_quote] = ACTIONS(3410), + [sym___c_single_quote] = ACTIONS(3410), + [sym___r_double_quote] = ACTIONS(3410), + [sym___r_single_quote] = ACTIONS(3410), }, [1174] = { [sym_line_comment] = STATE(1174), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), + [sym_block_comment] = STATE(1174), + [sym_reference_expression] = STATE(4470), + [sym_type_reference_expression] = STATE(1950), + [sym_plain_type] = STATE(2093), + [sym__plain_type_without_special] = STATE(2111), + [sym_anon_struct_type] = STATE(2110), + [sym_multi_return_type] = STATE(2111), + [sym_result_type] = STATE(2111), + [sym_option_type] = STATE(2111), + [sym_qualified_type] = STATE(1950), + [sym_fixed_array_type] = STATE(2110), + [sym_array_type] = STATE(2110), + [sym_pointer_type] = STATE(2110), + [sym_wrong_pointer_type] = STATE(2110), + [sym_map_type] = STATE(2110), + [sym_channel_type] = STATE(2110), + [sym_shared_type] = STATE(2110), + [sym_thread_type] = STATE(2110), + [sym_atomic_type] = STATE(2110), + [sym_generic_type] = STATE(2110), + [sym_function_type] = STATE(2110), + [sym_identifier] = ACTIONS(3778), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_LBRACK2] = ACTIONS(3792), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_AMP_CARET_EQ] = ACTIONS(599), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3796), + [anon_sym_map_LBRACK] = ACTIONS(3798), + [anon_sym_chan] = ACTIONS(3800), + [anon_sym_thread] = ACTIONS(3802), + [anon_sym_atomic] = ACTIONS(3804), }, [1175] = { [sym_line_comment] = STATE(1175), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_RPAREN] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), + [sym_block_comment] = STATE(1175), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LF] = ACTIONS(3326), + [anon_sym_CR] = ACTIONS(3326), + [anon_sym_CR_LF] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_as] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_mut] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_go] = ACTIONS(3326), + [anon_sym_spawn] = ACTIONS(3326), + [anon_sym_json_DOTdecode] = ACTIONS(3326), + [anon_sym_LBRACK2] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [sym_none] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_nil] = ACTIONS(3326), + [anon_sym_QMARK_DOT] = ACTIONS(3326), + [anon_sym_POUND_LBRACK] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_is] = ACTIONS(3326), + [anon_sym_BANGis] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_BANGin] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_select] = ACTIONS(3326), + [anon_sym_lock] = ACTIONS(3326), + [anon_sym_rlock] = ACTIONS(3326), + [anon_sym_unsafe] = ACTIONS(3326), + [anon_sym_sql] = ACTIONS(3326), + [sym_int_literal] = ACTIONS(3326), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [sym_pseudo_compile_time_identifier] = ACTIONS(3326), + [anon_sym_shared] = ACTIONS(3326), + [anon_sym_map_LBRACK] = ACTIONS(3326), + [anon_sym_chan] = ACTIONS(3326), + [anon_sym_thread] = ACTIONS(3326), + [anon_sym_atomic] = ACTIONS(3326), + [sym___double_quote] = ACTIONS(3326), + [sym___single_quote] = ACTIONS(3326), + [sym___c_double_quote] = ACTIONS(3326), + [sym___c_single_quote] = ACTIONS(3326), + [sym___r_double_quote] = ACTIONS(3326), + [sym___r_single_quote] = ACTIONS(3326), }, [1176] = { [sym_line_comment] = STATE(1176), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1176), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, [1177] = { [sym_line_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_RPAREN] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), + [sym_block_comment] = STATE(1177), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3040), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_COMMA] = ACTIONS(3040), + [anon_sym_RBRACE] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3040), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3040), + [anon_sym_BANG_EQ] = ACTIONS(3040), + [anon_sym_LT_EQ] = ACTIONS(3040), + [anon_sym_GT_EQ] = ACTIONS(3040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_PLUS_PLUS] = ACTIONS(3040), + [anon_sym_DASH_DASH] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [anon_sym_LT_LT] = ACTIONS(3040), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3040), + [anon_sym_AMP_CARET] = ACTIONS(3040), + [anon_sym_AMP_AMP] = ACTIONS(3040), + [anon_sym_PIPE_PIPE] = ACTIONS(3040), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3040), + [anon_sym_POUND_LBRACK] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3040), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [sym_pseudo_compile_time_identifier] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, [1178] = { [sym_line_comment] = STATE(1178), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_RPAREN] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3776), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [sym_pseudo_compile_time_identifier] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), + [sym_block_comment] = STATE(1178), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LF] = ACTIONS(3230), + [anon_sym_CR] = ACTIONS(3230), + [anon_sym_CR_LF] = ACTIONS(3230), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3230), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_CARET] = ACTIONS(3230), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3230), + [anon_sym_LT_LT] = ACTIONS(3230), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3230), + [anon_sym_AMP_CARET] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3230), + [anon_sym_POUND_LBRACK] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3230), + [sym_rune_literal] = ACTIONS(3230), + [sym_pseudo_compile_time_identifier] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3230), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3230), + [sym___single_quote] = ACTIONS(3230), + [sym___c_double_quote] = ACTIONS(3230), + [sym___c_single_quote] = ACTIONS(3230), + [sym___r_double_quote] = ACTIONS(3230), + [sym___r_single_quote] = ACTIONS(3230), }, [1179] = { [sym_line_comment] = STATE(1179), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [sym_pseudo_compile_time_identifier] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), + [sym_block_comment] = STATE(1179), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), }, [1180] = { [sym_line_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [sym_pseudo_compile_time_identifier] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), + [sym_block_comment] = STATE(1180), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LF] = ACTIONS(3226), + [anon_sym_CR] = ACTIONS(3226), + [anon_sym_CR_LF] = ACTIONS(3226), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_COMMA] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_RPAREN] = ACTIONS(3226), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_LT_EQ] = ACTIONS(3226), + [anon_sym_GT_EQ] = ACTIONS(3226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3226), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_CARET] = ACTIONS(3226), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3226), + [anon_sym_LT_LT] = ACTIONS(3226), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3226), + [anon_sym_AMP_CARET] = ACTIONS(3226), + [anon_sym_AMP_AMP] = ACTIONS(3226), + [anon_sym_PIPE_PIPE] = ACTIONS(3226), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3226), + [anon_sym_POUND_LBRACK] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3226), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3226), + [sym_rune_literal] = ACTIONS(3226), + [sym_pseudo_compile_time_identifier] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3226), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3226), + [sym___single_quote] = ACTIONS(3226), + [sym___c_double_quote] = ACTIONS(3226), + [sym___c_single_quote] = ACTIONS(3226), + [sym___r_double_quote] = ACTIONS(3226), + [sym___r_single_quote] = ACTIONS(3226), }, [1181] = { [sym_line_comment] = STATE(1181), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), + [sym_block_comment] = STATE(1181), + [sym_identifier] = ACTIONS(3142), + [anon_sym_LF] = ACTIONS(3142), + [anon_sym_CR] = ACTIONS(3142), + [anon_sym_CR_LF] = ACTIONS(3142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_DOT] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_RPAREN] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_fn] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PERCENT] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3142), + [anon_sym_BANG_EQ] = ACTIONS(3142), + [anon_sym_LT_EQ] = ACTIONS(3142), + [anon_sym_GT_EQ] = ACTIONS(3142), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3142), + [anon_sym_mut] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_go] = ACTIONS(3142), + [anon_sym_spawn] = ACTIONS(3142), + [anon_sym_json_DOTdecode] = ACTIONS(3142), + [anon_sym_LBRACK2] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_LT_DASH] = ACTIONS(3142), + [anon_sym_LT_LT] = ACTIONS(3142), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3142), + [anon_sym_AMP_CARET] = ACTIONS(3142), + [anon_sym_AMP_AMP] = ACTIONS(3142), + [anon_sym_PIPE_PIPE] = ACTIONS(3142), + [anon_sym_or] = ACTIONS(3142), + [sym_none] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nil] = ACTIONS(3142), + [anon_sym_QMARK_DOT] = ACTIONS(3142), + [anon_sym_POUND_LBRACK] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_DOLLARif] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3142), + [anon_sym_BANGis] = ACTIONS(3142), + [anon_sym_in] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3142), + [anon_sym_match] = ACTIONS(3142), + [anon_sym_select] = ACTIONS(3142), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(3142), + [anon_sym_sql] = ACTIONS(3142), + [sym_int_literal] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3142), + [sym_rune_literal] = ACTIONS(3142), + [sym_pseudo_compile_time_identifier] = ACTIONS(3142), + [anon_sym_shared] = ACTIONS(3142), + [anon_sym_map_LBRACK] = ACTIONS(3142), + [anon_sym_chan] = ACTIONS(3142), + [anon_sym_thread] = ACTIONS(3142), + [anon_sym_atomic] = ACTIONS(3142), + [sym___double_quote] = ACTIONS(3142), + [sym___single_quote] = ACTIONS(3142), + [sym___c_double_quote] = ACTIONS(3142), + [sym___c_single_quote] = ACTIONS(3142), + [sym___r_double_quote] = ACTIONS(3142), + [sym___r_single_quote] = ACTIONS(3142), }, [1182] = { [sym_line_comment] = STATE(1182), - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_RPAREN] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [anon_sym_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_EQ] = ACTIONS(3287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3287), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3287), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3287), - [anon_sym_AMP_CARET] = ACTIONS(3287), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3287), - [anon_sym_POUND_LBRACK] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3287), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3287), - [sym_rune_literal] = ACTIONS(3287), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3287), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3287), - [sym___single_quote] = ACTIONS(3287), - [sym___c_double_quote] = ACTIONS(3287), - [sym___c_single_quote] = ACTIONS(3287), - [sym___r_double_quote] = ACTIONS(3287), - [sym___r_single_quote] = ACTIONS(3287), + [sym_block_comment] = STATE(1182), + [sym_identifier] = ACTIONS(3206), + [anon_sym_LF] = ACTIONS(3206), + [anon_sym_CR] = ACTIONS(3206), + [anon_sym_CR_LF] = ACTIONS(3206), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3206), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3206), + [anon_sym_COMMA] = ACTIONS(3206), + [anon_sym_RBRACE] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3206), + [anon_sym_RPAREN] = ACTIONS(3206), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3206), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3206), + [anon_sym_BANG_EQ] = ACTIONS(3206), + [anon_sym_LT_EQ] = ACTIONS(3206), + [anon_sym_GT_EQ] = ACTIONS(3206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3206), + [anon_sym_DASH_DASH] = ACTIONS(3206), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3206), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3206), + [anon_sym_CARET] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3206), + [anon_sym_LT_LT] = ACTIONS(3206), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3206), + [anon_sym_AMP_CARET] = ACTIONS(3206), + [anon_sym_AMP_AMP] = ACTIONS(3206), + [anon_sym_PIPE_PIPE] = ACTIONS(3206), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3206), + [anon_sym_POUND_LBRACK] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3206), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3206), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3206), + [sym_rune_literal] = ACTIONS(3206), + [sym_pseudo_compile_time_identifier] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3206), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3206), + [sym___single_quote] = ACTIONS(3206), + [sym___c_double_quote] = ACTIONS(3206), + [sym___c_single_quote] = ACTIONS(3206), + [sym___r_double_quote] = ACTIONS(3206), + [sym___r_single_quote] = ACTIONS(3206), }, [1183] = { [sym_line_comment] = STATE(1183), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_RPAREN] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [sym_block_comment] = STATE(1183), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1184] = { [sym_line_comment] = STATE(1184), - [sym_identifier] = ACTIONS(2883), - [anon_sym_LF] = ACTIONS(2883), - [anon_sym_CR] = ACTIONS(2883), - [anon_sym_CR_LF] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2883), - [anon_sym_RBRACE] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2883), - [anon_sym_RPAREN] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2883), - [anon_sym_BANG_EQ] = ACTIONS(2883), - [anon_sym_LT_EQ] = ACTIONS(2883), - [anon_sym_GT_EQ] = ACTIONS(2883), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_PLUS_PLUS] = ACTIONS(2883), - [anon_sym_DASH_DASH] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2883), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2883), - [anon_sym_LT_LT] = ACTIONS(2883), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2883), - [anon_sym_AMP_CARET] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2883), - [anon_sym_POUND_LBRACK] = ACTIONS(2883), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2883), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2883), - [sym_rune_literal] = ACTIONS(2883), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2883), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [sym___double_quote] = ACTIONS(2883), - [sym___single_quote] = ACTIONS(2883), - [sym___c_double_quote] = ACTIONS(2883), - [sym___c_single_quote] = ACTIONS(2883), - [sym___r_double_quote] = ACTIONS(2883), - [sym___r_single_quote] = ACTIONS(2883), + [sym_block_comment] = STATE(1184), + [sym_identifier] = ACTIONS(2867), + [anon_sym_LF] = ACTIONS(2867), + [anon_sym_CR] = ACTIONS(2867), + [anon_sym_CR_LF] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_COMMA] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_RPAREN] = ACTIONS(2867), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2867), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2867), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2867), + [anon_sym_POUND_LBRACK] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2867), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2867), + [sym_rune_literal] = ACTIONS(2867), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2867), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2867), + [sym___single_quote] = ACTIONS(2867), + [sym___c_double_quote] = ACTIONS(2867), + [sym___c_single_quote] = ACTIONS(2867), + [sym___r_double_quote] = ACTIONS(2867), + [sym___r_single_quote] = ACTIONS(2867), }, [1185] = { [sym_line_comment] = STATE(1185), - [sym_identifier] = ACTIONS(2887), - [anon_sym_LF] = ACTIONS(2887), - [anon_sym_CR] = ACTIONS(2887), - [anon_sym_CR_LF] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2887), - [anon_sym_RBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2887), - [anon_sym_RPAREN] = ACTIONS(2887), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2887), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2887), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2887), - [anon_sym_BANG_EQ] = ACTIONS(2887), - [anon_sym_LT_EQ] = ACTIONS(2887), - [anon_sym_GT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_PLUS_PLUS] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2887), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_CARET] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2887), - [anon_sym_LT_LT] = ACTIONS(2887), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2887), - [anon_sym_AMP_CARET] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2887), - [anon_sym_POUND_LBRACK] = ACTIONS(2887), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2887), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2887), - [sym_rune_literal] = ACTIONS(2887), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2887), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [sym___double_quote] = ACTIONS(2887), - [sym___single_quote] = ACTIONS(2887), - [sym___c_double_quote] = ACTIONS(2887), - [sym___c_single_quote] = ACTIONS(2887), - [sym___r_double_quote] = ACTIONS(2887), - [sym___r_single_quote] = ACTIONS(2887), + [sym_block_comment] = STATE(1185), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LF] = ACTIONS(3194), + [anon_sym_CR] = ACTIONS(3194), + [anon_sym_CR_LF] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_COMMA] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_RPAREN] = ACTIONS(3194), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3194), + [anon_sym_BANG_EQ] = ACTIONS(3194), + [anon_sym_LT_EQ] = ACTIONS(3194), + [anon_sym_GT_EQ] = ACTIONS(3194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3194), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_CARET] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3194), + [anon_sym_LT_LT] = ACTIONS(3194), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3194), + [anon_sym_AMP_CARET] = ACTIONS(3194), + [anon_sym_AMP_AMP] = ACTIONS(3194), + [anon_sym_PIPE_PIPE] = ACTIONS(3194), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3194), + [anon_sym_POUND_LBRACK] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3194), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3194), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3194), + [sym_rune_literal] = ACTIONS(3194), + [sym_pseudo_compile_time_identifier] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3194), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3194), + [sym___single_quote] = ACTIONS(3194), + [sym___c_double_quote] = ACTIONS(3194), + [sym___c_single_quote] = ACTIONS(3194), + [sym___r_double_quote] = ACTIONS(3194), + [sym___r_single_quote] = ACTIONS(3194), }, [1186] = { [sym_line_comment] = STATE(1186), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_RPAREN] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [sym_pseudo_compile_time_identifier] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), + [sym_block_comment] = STATE(1186), + [sym_identifier] = ACTIONS(3186), + [anon_sym_LF] = ACTIONS(3186), + [anon_sym_CR] = ACTIONS(3186), + [anon_sym_CR_LF] = ACTIONS(3186), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3186), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_CARET] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3186), + [anon_sym_LT_LT] = ACTIONS(3186), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3186), + [anon_sym_AMP_CARET] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3186), + [anon_sym_POUND_LBRACK] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3186), + [sym_rune_literal] = ACTIONS(3186), + [sym_pseudo_compile_time_identifier] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3186), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3186), + [sym___single_quote] = ACTIONS(3186), + [sym___c_double_quote] = ACTIONS(3186), + [sym___c_single_quote] = ACTIONS(3186), + [sym___r_double_quote] = ACTIONS(3186), + [sym___r_single_quote] = ACTIONS(3186), }, [1187] = { [sym_line_comment] = STATE(1187), - [sym_identifier] = ACTIONS(3427), - [anon_sym_LF] = ACTIONS(3427), - [anon_sym_CR] = ACTIONS(3427), - [anon_sym_CR_LF] = ACTIONS(3427), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3427), - [anon_sym_fn] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_EQ_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_LT_EQ] = ACTIONS(3427), - [anon_sym_GT_EQ] = ACTIONS(3427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_mut] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_go] = ACTIONS(3427), - [anon_sym_spawn] = ACTIONS(3427), - [anon_sym_json_DOTdecode] = ACTIONS(3427), - [anon_sym_LBRACK2] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3427), - [anon_sym_GT_GT] = ACTIONS(3427), - [anon_sym_GT_GT_GT] = ACTIONS(3427), - [anon_sym_AMP_CARET] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3427), - [sym_none] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_nil] = ACTIONS(3427), - [anon_sym_QMARK_DOT] = ACTIONS(3427), - [anon_sym_POUND_LBRACK] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOLLARif] = ACTIONS(3427), - [anon_sym_is] = ACTIONS(3427), - [anon_sym_BANGis] = ACTIONS(3427), - [anon_sym_in] = ACTIONS(3427), - [anon_sym_BANGin] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_rlock] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_sql] = ACTIONS(3427), - [sym_int_literal] = ACTIONS(3427), - [sym_float_literal] = ACTIONS(3427), - [sym_rune_literal] = ACTIONS(3427), - [sym_pseudo_compile_time_identifier] = ACTIONS(3427), - [anon_sym_shared] = ACTIONS(3427), - [anon_sym_map_LBRACK] = ACTIONS(3427), - [anon_sym_chan] = ACTIONS(3427), - [anon_sym_thread] = ACTIONS(3427), - [anon_sym_atomic] = ACTIONS(3427), - [sym___double_quote] = ACTIONS(3427), - [sym___single_quote] = ACTIONS(3427), - [sym___c_double_quote] = ACTIONS(3427), - [sym___c_single_quote] = ACTIONS(3427), - [sym___r_double_quote] = ACTIONS(3427), - [sym___r_single_quote] = ACTIONS(3427), + [sym_block_comment] = STATE(1187), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_COMMA] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_RPAREN] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2703), + [anon_sym_POUND_LBRACK] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1188] = { [sym_line_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1188), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), }, [1189] = { [sym_line_comment] = STATE(1189), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_RPAREN] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [sym_pseudo_compile_time_identifier] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), + [sym_block_comment] = STATE(1189), + [sym_identifier] = ACTIONS(3806), + [anon_sym_LF] = ACTIONS(3809), + [anon_sym_CR] = ACTIONS(3809), + [anon_sym_CR_LF] = ACTIONS(3809), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3812), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1190] = { [sym_line_comment] = STATE(1190), - [sym_identifier] = ACTIONS(3435), - [anon_sym_LF] = ACTIONS(3435), - [anon_sym_CR] = ACTIONS(3435), - [anon_sym_CR_LF] = ACTIONS(3435), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3435), - [anon_sym_fn] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_mut] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_go] = ACTIONS(3435), - [anon_sym_spawn] = ACTIONS(3435), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3435), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3435), - [sym_none] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_nil] = ACTIONS(3435), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOLLARif] = ACTIONS(3435), - [anon_sym_is] = ACTIONS(3435), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3435), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_rlock] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_sql] = ACTIONS(3435), - [sym_int_literal] = ACTIONS(3435), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3435), - [anon_sym_shared] = ACTIONS(3435), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3435), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3435), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), + [sym_block_comment] = STATE(1190), + [sym_identifier] = ACTIONS(3182), + [anon_sym_LF] = ACTIONS(3182), + [anon_sym_CR] = ACTIONS(3182), + [anon_sym_CR_LF] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_RPAREN] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3182), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_CARET] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3182), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3182), + [anon_sym_AMP_CARET] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3182), + [anon_sym_POUND_LBRACK] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3182), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3182), + [sym_rune_literal] = ACTIONS(3182), + [sym_pseudo_compile_time_identifier] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3182), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3182), + [sym___single_quote] = ACTIONS(3182), + [sym___c_double_quote] = ACTIONS(3182), + [sym___c_single_quote] = ACTIONS(3182), + [sym___r_double_quote] = ACTIONS(3182), + [sym___r_single_quote] = ACTIONS(3182), }, [1191] = { [sym_line_comment] = STATE(1191), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LF] = ACTIONS(2961), - [anon_sym_CR] = ACTIONS(2961), - [anon_sym_CR_LF] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [sym___double_quote] = ACTIONS(2961), - [sym___single_quote] = ACTIONS(2961), - [sym___c_double_quote] = ACTIONS(2961), - [sym___c_single_quote] = ACTIONS(2961), - [sym___r_double_quote] = ACTIONS(2961), - [sym___r_single_quote] = ACTIONS(2961), + [sym_block_comment] = STATE(1191), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LF] = ACTIONS(3116), + [anon_sym_CR] = ACTIONS(3116), + [anon_sym_CR_LF] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_mut] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3116), + [anon_sym_spawn] = ACTIONS(3116), + [anon_sym_json_DOTdecode] = ACTIONS(3116), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3116), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_nil] = ACTIONS(3116), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_DOLLARif] = ACTIONS(3116), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_select] = ACTIONS(3116), + [anon_sym_lock] = ACTIONS(3116), + [anon_sym_rlock] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_sql] = ACTIONS(3116), + [sym_int_literal] = ACTIONS(3116), + [sym_float_literal] = ACTIONS(3116), + [sym_rune_literal] = ACTIONS(3116), + [sym_pseudo_compile_time_identifier] = ACTIONS(3116), + [anon_sym_shared] = ACTIONS(3116), + [anon_sym_map_LBRACK] = ACTIONS(3116), + [anon_sym_chan] = ACTIONS(3116), + [anon_sym_thread] = ACTIONS(3116), + [anon_sym_atomic] = ACTIONS(3116), + [sym___double_quote] = ACTIONS(3116), + [sym___single_quote] = ACTIONS(3116), + [sym___c_double_quote] = ACTIONS(3116), + [sym___c_single_quote] = ACTIONS(3116), + [sym___r_double_quote] = ACTIONS(3116), + [sym___r_single_quote] = ACTIONS(3116), }, [1192] = { [sym_line_comment] = STATE(1192), - [sym_identifier] = ACTIONS(3407), - [anon_sym_LF] = ACTIONS(3407), - [anon_sym_CR] = ACTIONS(3407), - [anon_sym_CR_LF] = ACTIONS(3407), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_fn] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_EQ_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_LT_EQ] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_mut] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_go] = ACTIONS(3407), - [anon_sym_spawn] = ACTIONS(3407), - [anon_sym_json_DOTdecode] = ACTIONS(3407), - [anon_sym_LBRACK2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_LT_DASH] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3407), - [anon_sym_GT_GT] = ACTIONS(3407), - [anon_sym_GT_GT_GT] = ACTIONS(3407), - [anon_sym_AMP_CARET] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_PIPE_PIPE] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_nil] = ACTIONS(3407), - [anon_sym_QMARK_DOT] = ACTIONS(3407), - [anon_sym_POUND_LBRACK] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOLLARif] = ACTIONS(3407), - [anon_sym_is] = ACTIONS(3407), - [anon_sym_BANGis] = ACTIONS(3407), - [anon_sym_in] = ACTIONS(3407), - [anon_sym_BANGin] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_rlock] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_sql] = ACTIONS(3407), - [sym_int_literal] = ACTIONS(3407), - [sym_float_literal] = ACTIONS(3407), - [sym_rune_literal] = ACTIONS(3407), - [sym_pseudo_compile_time_identifier] = ACTIONS(3407), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3407), - [anon_sym_chan] = ACTIONS(3407), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3407), - [sym___double_quote] = ACTIONS(3407), - [sym___single_quote] = ACTIONS(3407), - [sym___c_double_quote] = ACTIONS(3407), - [sym___c_single_quote] = ACTIONS(3407), - [sym___r_double_quote] = ACTIONS(3407), - [sym___r_single_quote] = ACTIONS(3407), + [sym_block_comment] = STATE(1192), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LF] = ACTIONS(3330), + [anon_sym_CR] = ACTIONS(3330), + [anon_sym_CR_LF] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_as] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_RPAREN] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3330), + [anon_sym_mut] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_QMARK] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_go] = ACTIONS(3330), + [anon_sym_spawn] = ACTIONS(3330), + [anon_sym_json_DOTdecode] = ACTIONS(3330), + [anon_sym_LBRACK2] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [sym_none] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_nil] = ACTIONS(3330), + [anon_sym_QMARK_DOT] = ACTIONS(3330), + [anon_sym_POUND_LBRACK] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_DOLLARif] = ACTIONS(3330), + [anon_sym_is] = ACTIONS(3330), + [anon_sym_BANGis] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_BANGin] = ACTIONS(3330), + [anon_sym_match] = ACTIONS(3330), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3330), + [anon_sym_rlock] = ACTIONS(3330), + [anon_sym_unsafe] = ACTIONS(3330), + [anon_sym_sql] = ACTIONS(3330), + [sym_int_literal] = ACTIONS(3330), + [sym_float_literal] = ACTIONS(3330), + [sym_rune_literal] = ACTIONS(3330), + [sym_pseudo_compile_time_identifier] = ACTIONS(3330), + [anon_sym_shared] = ACTIONS(3330), + [anon_sym_map_LBRACK] = ACTIONS(3330), + [anon_sym_chan] = ACTIONS(3330), + [anon_sym_thread] = ACTIONS(3330), + [anon_sym_atomic] = ACTIONS(3330), + [sym___double_quote] = ACTIONS(3330), + [sym___single_quote] = ACTIONS(3330), + [sym___c_double_quote] = ACTIONS(3330), + [sym___c_single_quote] = ACTIONS(3330), + [sym___r_double_quote] = ACTIONS(3330), + [sym___r_single_quote] = ACTIONS(3330), }, [1193] = { [sym_line_comment] = STATE(1193), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_COMMA] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_RPAREN] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2741), - [anon_sym_BANG_EQ] = ACTIONS(2741), - [anon_sym_LT_EQ] = ACTIONS(2741), - [anon_sym_GT_EQ] = ACTIONS(2741), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [anon_sym_LT_LT] = ACTIONS(2741), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2741), - [anon_sym_AMP_CARET] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_PIPE_PIPE] = ACTIONS(2741), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2741), - [anon_sym_POUND_LBRACK] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2741), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), + [sym_block_comment] = STATE(1193), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LF] = ACTIONS(3178), + [anon_sym_CR] = ACTIONS(3178), + [anon_sym_CR_LF] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_RPAREN] = ACTIONS(3178), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3178), + [anon_sym_BANG_EQ] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3178), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3178), + [anon_sym_AMP_CARET] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3178), + [anon_sym_POUND_LBRACK] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3178), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3178), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3178), + [sym_rune_literal] = ACTIONS(3178), + [sym_pseudo_compile_time_identifier] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3178), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3178), + [sym___single_quote] = ACTIONS(3178), + [sym___c_double_quote] = ACTIONS(3178), + [sym___c_single_quote] = ACTIONS(3178), + [sym___r_double_quote] = ACTIONS(3178), + [sym___r_single_quote] = ACTIONS(3178), }, [1194] = { [sym_line_comment] = STATE(1194), - [sym_identifier] = ACTIONS(3011), - [anon_sym_LF] = ACTIONS(3011), - [anon_sym_CR] = ACTIONS(3011), - [anon_sym_CR_LF] = ACTIONS(3011), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_RPAREN] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [sym_pseudo_compile_time_identifier] = ACTIONS(3011), - [anon_sym_shared] = ACTIONS(3011), - [anon_sym_map_LBRACK] = ACTIONS(3011), - [anon_sym_chan] = ACTIONS(3011), - [anon_sym_thread] = ACTIONS(3011), - [anon_sym_atomic] = ACTIONS(3011), - [sym___double_quote] = ACTIONS(3011), - [sym___single_quote] = ACTIONS(3011), - [sym___c_double_quote] = ACTIONS(3011), - [sym___c_single_quote] = ACTIONS(3011), - [sym___r_double_quote] = ACTIONS(3011), - [sym___r_single_quote] = ACTIONS(3011), + [sym_block_comment] = STATE(1194), + [sym_reference_expression] = STATE(4470), + [sym_type_reference_expression] = STATE(1950), + [sym_plain_type] = STATE(2069), + [sym__plain_type_without_special] = STATE(2111), + [sym_anon_struct_type] = STATE(2110), + [sym_multi_return_type] = STATE(2111), + [sym_result_type] = STATE(2111), + [sym_option_type] = STATE(2111), + [sym_qualified_type] = STATE(1950), + [sym_fixed_array_type] = STATE(2110), + [sym_array_type] = STATE(2110), + [sym_pointer_type] = STATE(2110), + [sym_wrong_pointer_type] = STATE(2110), + [sym_map_type] = STATE(2110), + [sym_channel_type] = STATE(2110), + [sym_shared_type] = STATE(2110), + [sym_thread_type] = STATE(2110), + [sym_atomic_type] = STATE(2110), + [sym_generic_type] = STATE(2110), + [sym_function_type] = STATE(2110), + [sym_identifier] = ACTIONS(3778), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_LBRACK2] = ACTIONS(3792), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(3796), + [anon_sym_map_LBRACK] = ACTIONS(3798), + [anon_sym_chan] = ACTIONS(3800), + [anon_sym_thread] = ACTIONS(3802), + [anon_sym_atomic] = ACTIONS(3804), }, [1195] = { [sym_line_comment] = STATE(1195), - [sym_identifier] = ACTIONS(3015), - [anon_sym_LF] = ACTIONS(3015), - [anon_sym_CR] = ACTIONS(3015), - [anon_sym_CR_LF] = ACTIONS(3015), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_RPAREN] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), - [sym___double_quote] = ACTIONS(3015), - [sym___single_quote] = ACTIONS(3015), - [sym___c_double_quote] = ACTIONS(3015), - [sym___c_single_quote] = ACTIONS(3015), - [sym___r_double_quote] = ACTIONS(3015), - [sym___r_single_quote] = ACTIONS(3015), + [sym_block_comment] = STATE(1195), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), }, [1196] = { [sym_line_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3778), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1196), + [sym_identifier] = ACTIONS(3386), + [anon_sym_LF] = ACTIONS(3386), + [anon_sym_CR] = ACTIONS(3386), + [anon_sym_CR_LF] = ACTIONS(3386), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3386), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_as] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_RPAREN] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_fn] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PERCENT] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3386), + [anon_sym_BANG_EQ] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_mut] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_go] = ACTIONS(3386), + [anon_sym_spawn] = ACTIONS(3386), + [anon_sym_json_DOTdecode] = ACTIONS(3386), + [anon_sym_LBRACK2] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3386), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3386), + [anon_sym_AMP_CARET] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_PIPE_PIPE] = ACTIONS(3386), + [anon_sym_or] = ACTIONS(3386), + [sym_none] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_nil] = ACTIONS(3386), + [anon_sym_QMARK_DOT] = ACTIONS(3386), + [anon_sym_POUND_LBRACK] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_DOLLARif] = ACTIONS(3386), + [anon_sym_is] = ACTIONS(3386), + [anon_sym_BANGis] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_BANGin] = ACTIONS(3386), + [anon_sym_match] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [anon_sym_lock] = ACTIONS(3386), + [anon_sym_rlock] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_sql] = ACTIONS(3386), + [sym_int_literal] = ACTIONS(3386), + [sym_float_literal] = ACTIONS(3386), + [sym_rune_literal] = ACTIONS(3386), + [sym_pseudo_compile_time_identifier] = ACTIONS(3386), + [anon_sym_shared] = ACTIONS(3386), + [anon_sym_map_LBRACK] = ACTIONS(3386), + [anon_sym_chan] = ACTIONS(3386), + [anon_sym_thread] = ACTIONS(3386), + [anon_sym_atomic] = ACTIONS(3386), + [sym___double_quote] = ACTIONS(3386), + [sym___single_quote] = ACTIONS(3386), + [sym___c_double_quote] = ACTIONS(3386), + [sym___c_single_quote] = ACTIONS(3386), + [sym___r_double_quote] = ACTIONS(3386), + [sym___r_single_quote] = ACTIONS(3386), }, [1197] = { [sym_line_comment] = STATE(1197), - [sym_identifier] = ACTIONS(3442), - [anon_sym_LF] = ACTIONS(3442), - [anon_sym_CR] = ACTIONS(3442), - [anon_sym_CR_LF] = ACTIONS(3442), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_DOT] = ACTIONS(3442), - [anon_sym_as] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_COMMA] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_RPAREN] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3442), - [anon_sym_fn] = ACTIONS(3442), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3442), - [anon_sym_PERCENT] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_GT] = ACTIONS(3442), - [anon_sym_EQ_EQ] = ACTIONS(3442), - [anon_sym_BANG_EQ] = ACTIONS(3442), - [anon_sym_LT_EQ] = ACTIONS(3442), - [anon_sym_GT_EQ] = ACTIONS(3442), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_struct] = ACTIONS(3442), - [anon_sym_mut] = ACTIONS(3442), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_QMARK] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_go] = ACTIONS(3442), - [anon_sym_spawn] = ACTIONS(3442), - [anon_sym_json_DOTdecode] = ACTIONS(3442), - [anon_sym_LBRACK2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_CARET] = ACTIONS(3442), - [anon_sym_AMP] = ACTIONS(3442), - [anon_sym_LT_DASH] = ACTIONS(3442), - [anon_sym_LT_LT] = ACTIONS(3442), - [anon_sym_GT_GT] = ACTIONS(3442), - [anon_sym_GT_GT_GT] = ACTIONS(3442), - [anon_sym_AMP_CARET] = ACTIONS(3442), - [anon_sym_AMP_AMP] = ACTIONS(3442), - [anon_sym_PIPE_PIPE] = ACTIONS(3442), - [anon_sym_or] = ACTIONS(3442), - [sym_none] = ACTIONS(3442), - [sym_true] = ACTIONS(3442), - [sym_false] = ACTIONS(3442), - [sym_nil] = ACTIONS(3442), - [anon_sym_QMARK_DOT] = ACTIONS(3442), - [anon_sym_POUND_LBRACK] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3442), - [anon_sym_DOLLARif] = ACTIONS(3442), - [anon_sym_is] = ACTIONS(3442), - [anon_sym_BANGis] = ACTIONS(3442), - [anon_sym_in] = ACTIONS(3442), - [anon_sym_BANGin] = ACTIONS(3442), - [anon_sym_match] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_lock] = ACTIONS(3442), - [anon_sym_rlock] = ACTIONS(3442), - [anon_sym_unsafe] = ACTIONS(3442), - [anon_sym_sql] = ACTIONS(3442), - [sym_int_literal] = ACTIONS(3442), - [sym_float_literal] = ACTIONS(3442), - [sym_rune_literal] = ACTIONS(3442), - [sym_pseudo_compile_time_identifier] = ACTIONS(3442), - [anon_sym_shared] = ACTIONS(3442), - [anon_sym_map_LBRACK] = ACTIONS(3442), - [anon_sym_chan] = ACTIONS(3442), - [anon_sym_thread] = ACTIONS(3442), - [anon_sym_atomic] = ACTIONS(3442), - [sym___double_quote] = ACTIONS(3442), - [sym___single_quote] = ACTIONS(3442), - [sym___c_double_quote] = ACTIONS(3442), - [sym___c_single_quote] = ACTIONS(3442), - [sym___r_double_quote] = ACTIONS(3442), - [sym___r_single_quote] = ACTIONS(3442), + [sym_block_comment] = STATE(1197), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LF] = ACTIONS(3170), + [anon_sym_CR] = ACTIONS(3170), + [anon_sym_CR_LF] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_COMMA] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_RPAREN] = ACTIONS(3170), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT_EQ] = ACTIONS(3170), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3170), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_CARET] = ACTIONS(3170), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3170), + [anon_sym_LT_LT] = ACTIONS(3170), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3170), + [anon_sym_AMP_CARET] = ACTIONS(3170), + [anon_sym_AMP_AMP] = ACTIONS(3170), + [anon_sym_PIPE_PIPE] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3170), + [anon_sym_POUND_LBRACK] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3170), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3170), + [sym_rune_literal] = ACTIONS(3170), + [sym_pseudo_compile_time_identifier] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3170), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3170), + [sym___single_quote] = ACTIONS(3170), + [sym___c_double_quote] = ACTIONS(3170), + [sym___c_single_quote] = ACTIONS(3170), + [sym___r_double_quote] = ACTIONS(3170), + [sym___r_single_quote] = ACTIONS(3170), }, [1198] = { [sym_line_comment] = STATE(1198), - [sym_identifier] = ACTIONS(3019), - [anon_sym_LF] = ACTIONS(3019), - [anon_sym_CR] = ACTIONS(3019), - [anon_sym_CR_LF] = ACTIONS(3019), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [sym___double_quote] = ACTIONS(3019), - [sym___single_quote] = ACTIONS(3019), - [sym___c_double_quote] = ACTIONS(3019), - [sym___c_single_quote] = ACTIONS(3019), - [sym___r_double_quote] = ACTIONS(3019), - [sym___r_single_quote] = ACTIONS(3019), + [sym_block_comment] = STATE(1198), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_COMMA] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_RPAREN] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3174), + [anon_sym_BANG_EQ] = ACTIONS(3174), + [anon_sym_LT_EQ] = ACTIONS(3174), + [anon_sym_GT_EQ] = ACTIONS(3174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [anon_sym_LT_LT] = ACTIONS(3174), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3174), + [anon_sym_AMP_CARET] = ACTIONS(3174), + [anon_sym_AMP_AMP] = ACTIONS(3174), + [anon_sym_PIPE_PIPE] = ACTIONS(3174), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3174), + [anon_sym_POUND_LBRACK] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3174), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [sym_pseudo_compile_time_identifier] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), }, [1199] = { [sym_line_comment] = STATE(1199), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1199), + [sym_identifier] = ACTIONS(3166), + [anon_sym_LF] = ACTIONS(3166), + [anon_sym_CR] = ACTIONS(3166), + [anon_sym_CR_LF] = ACTIONS(3166), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PERCENT] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3166), + [anon_sym_mut] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_QMARK] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3166), + [anon_sym_json_DOTdecode] = ACTIONS(3166), + [anon_sym_LBRACK2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_CARET] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT_DASH] = ACTIONS(3166), + [anon_sym_LT_LT] = ACTIONS(3166), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3166), + [anon_sym_AMP_CARET] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_or] = ACTIONS(3166), + [sym_none] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_nil] = ACTIONS(3166), + [anon_sym_QMARK_DOT] = ACTIONS(3166), + [anon_sym_POUND_LBRACK] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_DOLLARif] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3166), + [anon_sym_BANGis] = ACTIONS(3166), + [anon_sym_in] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3166), + [anon_sym_match] = ACTIONS(3166), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3166), + [anon_sym_rlock] = ACTIONS(3166), + [anon_sym_unsafe] = ACTIONS(3166), + [anon_sym_sql] = ACTIONS(3166), + [sym_int_literal] = ACTIONS(3166), + [sym_float_literal] = ACTIONS(3166), + [sym_rune_literal] = ACTIONS(3166), + [sym_pseudo_compile_time_identifier] = ACTIONS(3166), + [anon_sym_shared] = ACTIONS(3166), + [anon_sym_map_LBRACK] = ACTIONS(3166), + [anon_sym_chan] = ACTIONS(3166), + [anon_sym_thread] = ACTIONS(3166), + [anon_sym_atomic] = ACTIONS(3166), + [sym___double_quote] = ACTIONS(3166), + [sym___single_quote] = ACTIONS(3166), + [sym___c_double_quote] = ACTIONS(3166), + [sym___c_single_quote] = ACTIONS(3166), + [sym___r_double_quote] = ACTIONS(3166), + [sym___r_single_quote] = ACTIONS(3166), }, [1200] = { [sym_line_comment] = STATE(1200), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LF] = ACTIONS(3139), - [anon_sym_CR] = ACTIONS(3139), - [anon_sym_CR_LF] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_fn] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3139), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_mut] = ACTIONS(3139), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_go] = ACTIONS(3139), - [anon_sym_spawn] = ACTIONS(3139), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_nil] = ACTIONS(3139), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_DOLLARif] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_rlock] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_sql] = ACTIONS(3139), - [sym_int_literal] = ACTIONS(3139), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [sym_pseudo_compile_time_identifier] = ACTIONS(3139), - [anon_sym_shared] = ACTIONS(3139), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3139), - [anon_sym_thread] = ACTIONS(3139), - [anon_sym_atomic] = ACTIONS(3139), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [sym_block_comment] = STATE(1200), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3190), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_COMMA] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym_RPAREN] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3190), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3190), + [anon_sym_BANG_EQ] = ACTIONS(3190), + [anon_sym_LT_EQ] = ACTIONS(3190), + [anon_sym_GT_EQ] = ACTIONS(3190), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3190), + [anon_sym_DASH_DASH] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [anon_sym_LT_LT] = ACTIONS(3190), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3190), + [anon_sym_AMP_CARET] = ACTIONS(3190), + [anon_sym_AMP_AMP] = ACTIONS(3190), + [anon_sym_PIPE_PIPE] = ACTIONS(3190), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3190), + [anon_sym_POUND_LBRACK] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3190), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [sym_pseudo_compile_time_identifier] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), }, [1201] = { [sym_line_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LF] = ACTIONS(3051), - [anon_sym_CR] = ACTIONS(3051), - [anon_sym_CR_LF] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_RPAREN] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [sym___double_quote] = ACTIONS(3051), - [sym___single_quote] = ACTIONS(3051), - [sym___c_double_quote] = ACTIONS(3051), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3051), - [sym___r_single_quote] = ACTIONS(3051), + [sym_block_comment] = STATE(1201), + [sym_identifier] = ACTIONS(3162), + [anon_sym_LF] = ACTIONS(3162), + [anon_sym_CR] = ACTIONS(3162), + [anon_sym_CR_LF] = ACTIONS(3162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_COMMA] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3162), + [anon_sym_BANG_EQ] = ACTIONS(3162), + [anon_sym_LT_EQ] = ACTIONS(3162), + [anon_sym_GT_EQ] = ACTIONS(3162), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3162), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_CARET] = ACTIONS(3162), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3162), + [anon_sym_LT_LT] = ACTIONS(3162), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3162), + [anon_sym_AMP_CARET] = ACTIONS(3162), + [anon_sym_AMP_AMP] = ACTIONS(3162), + [anon_sym_PIPE_PIPE] = ACTIONS(3162), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3162), + [anon_sym_POUND_LBRACK] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3162), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3162), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3162), + [sym_rune_literal] = ACTIONS(3162), + [sym_pseudo_compile_time_identifier] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3162), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3162), + [sym___single_quote] = ACTIONS(3162), + [sym___c_double_quote] = ACTIONS(3162), + [sym___c_single_quote] = ACTIONS(3162), + [sym___r_double_quote] = ACTIONS(3162), + [sym___r_single_quote] = ACTIONS(3162), }, [1202] = { [sym_line_comment] = STATE(1202), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [sym_pseudo_compile_time_identifier] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [sym_block_comment] = STATE(1202), + [sym_identifier] = ACTIONS(3158), + [anon_sym_LF] = ACTIONS(3158), + [anon_sym_CR] = ACTIONS(3158), + [anon_sym_CR_LF] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_COMMA] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_fn] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PERCENT] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3158), + [anon_sym_BANG_EQ] = ACTIONS(3158), + [anon_sym_LT_EQ] = ACTIONS(3158), + [anon_sym_GT_EQ] = ACTIONS(3158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_mut] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_go] = ACTIONS(3158), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(3158), + [anon_sym_LBRACK2] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_CARET] = ACTIONS(3158), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_LT_DASH] = ACTIONS(3158), + [anon_sym_LT_LT] = ACTIONS(3158), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3158), + [anon_sym_AMP_CARET] = ACTIONS(3158), + [anon_sym_AMP_AMP] = ACTIONS(3158), + [anon_sym_PIPE_PIPE] = ACTIONS(3158), + [anon_sym_or] = ACTIONS(3158), + [sym_none] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_nil] = ACTIONS(3158), + [anon_sym_QMARK_DOT] = ACTIONS(3158), + [anon_sym_POUND_LBRACK] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_DOLLARif] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_BANGis] = ACTIONS(3158), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_BANGin] = ACTIONS(3158), + [anon_sym_match] = ACTIONS(3158), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3158), + [anon_sym_rlock] = ACTIONS(3158), + [anon_sym_unsafe] = ACTIONS(3158), + [anon_sym_sql] = ACTIONS(3158), + [sym_int_literal] = ACTIONS(3158), + [sym_float_literal] = ACTIONS(3158), + [sym_rune_literal] = ACTIONS(3158), + [sym_pseudo_compile_time_identifier] = ACTIONS(3158), + [anon_sym_shared] = ACTIONS(3158), + [anon_sym_map_LBRACK] = ACTIONS(3158), + [anon_sym_chan] = ACTIONS(3158), + [anon_sym_thread] = ACTIONS(3158), + [anon_sym_atomic] = ACTIONS(3158), + [sym___double_quote] = ACTIONS(3158), + [sym___single_quote] = ACTIONS(3158), + [sym___c_double_quote] = ACTIONS(3158), + [sym___c_single_quote] = ACTIONS(3158), + [sym___r_double_quote] = ACTIONS(3158), + [sym___r_single_quote] = ACTIONS(3158), }, [1203] = { [sym_line_comment] = STATE(1203), - [sym_identifier] = ACTIONS(3179), - [anon_sym_LF] = ACTIONS(3179), - [anon_sym_CR] = ACTIONS(3179), - [anon_sym_CR_LF] = ACTIONS(3179), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_RPAREN] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [sym_pseudo_compile_time_identifier] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), + [sym_block_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_CR] = ACTIONS(3120), + [anon_sym_CR_LF] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_COMMA] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3120), + [anon_sym_BANG_EQ] = ACTIONS(3120), + [anon_sym_LT_EQ] = ACTIONS(3120), + [anon_sym_GT_EQ] = ACTIONS(3120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_mut] = ACTIONS(3120), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3120), + [anon_sym_spawn] = ACTIONS(3120), + [anon_sym_json_DOTdecode] = ACTIONS(3120), + [anon_sym_LBRACK2] = ACTIONS(3120), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_DASH] = ACTIONS(3120), + [anon_sym_LT_LT] = ACTIONS(3120), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_GT_GT_GT] = ACTIONS(3120), + [anon_sym_AMP_CARET] = ACTIONS(3120), + [anon_sym_AMP_AMP] = ACTIONS(3120), + [anon_sym_PIPE_PIPE] = ACTIONS(3120), + [anon_sym_or] = ACTIONS(3120), + [sym_none] = ACTIONS(3120), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [sym_nil] = ACTIONS(3120), + [anon_sym_QMARK_DOT] = ACTIONS(3120), + [anon_sym_POUND_LBRACK] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_DOLLARif] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3120), + [anon_sym_BANGis] = ACTIONS(3120), + [anon_sym_in] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_select] = ACTIONS(3120), + [anon_sym_lock] = ACTIONS(3120), + [anon_sym_rlock] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_sql] = ACTIONS(3120), + [sym_int_literal] = ACTIONS(3120), + [sym_float_literal] = ACTIONS(3120), + [sym_rune_literal] = ACTIONS(3120), + [sym_pseudo_compile_time_identifier] = ACTIONS(3120), + [anon_sym_shared] = ACTIONS(3120), + [anon_sym_map_LBRACK] = ACTIONS(3120), + [anon_sym_chan] = ACTIONS(3120), + [anon_sym_thread] = ACTIONS(3120), + [anon_sym_atomic] = ACTIONS(3120), + [sym___double_quote] = ACTIONS(3120), + [sym___single_quote] = ACTIONS(3120), + [sym___c_double_quote] = ACTIONS(3120), + [sym___c_single_quote] = ACTIONS(3120), + [sym___r_double_quote] = ACTIONS(3120), + [sym___r_single_quote] = ACTIONS(3120), }, [1204] = { [sym_line_comment] = STATE(1204), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1204), + [sym_identifier] = ACTIONS(2905), + [anon_sym_LF] = ACTIONS(2905), + [anon_sym_CR] = ACTIONS(2905), + [anon_sym_CR_LF] = ACTIONS(2905), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_DASH] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_DOT] = ACTIONS(2905), + [anon_sym_as] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_COMMA] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_RPAREN] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_fn] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_mut] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_go] = ACTIONS(2905), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(2905), + [anon_sym_LBRACK2] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_CARET] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_or] = ACTIONS(2905), + [sym_none] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_nil] = ACTIONS(2905), + [anon_sym_QMARK_DOT] = ACTIONS(2905), + [anon_sym_POUND_LBRACK] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_DOLLARif] = ACTIONS(2905), + [anon_sym_is] = ACTIONS(2905), + [anon_sym_BANGis] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_BANGin] = ACTIONS(2905), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_select] = ACTIONS(2905), + [anon_sym_lock] = ACTIONS(2905), + [anon_sym_rlock] = ACTIONS(2905), + [anon_sym_unsafe] = ACTIONS(2905), + [anon_sym_sql] = ACTIONS(2905), + [sym_int_literal] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2905), + [sym_rune_literal] = ACTIONS(2905), + [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_shared] = ACTIONS(2905), + [anon_sym_map_LBRACK] = ACTIONS(2905), + [anon_sym_chan] = ACTIONS(2905), + [anon_sym_thread] = ACTIONS(2905), + [anon_sym_atomic] = ACTIONS(2905), + [sym___double_quote] = ACTIONS(2905), + [sym___single_quote] = ACTIONS(2905), + [sym___c_double_quote] = ACTIONS(2905), + [sym___c_single_quote] = ACTIONS(2905), + [sym___r_double_quote] = ACTIONS(2905), + [sym___r_single_quote] = ACTIONS(2905), }, [1205] = { [sym_line_comment] = STATE(1205), - [sym_identifier] = ACTIONS(3159), - [anon_sym_LF] = ACTIONS(3159), - [anon_sym_CR] = ACTIONS(3159), - [anon_sym_CR_LF] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3159), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_RBRACE] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_RPAREN] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [sym_pseudo_compile_time_identifier] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), + [sym_block_comment] = STATE(1205), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LF] = ACTIONS(3150), + [anon_sym_CR] = ACTIONS(3150), + [anon_sym_CR_LF] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_DOT] = ACTIONS(3150), + [anon_sym_as] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_COMMA] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PERCENT] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_EQ_EQ] = ACTIONS(3150), + [anon_sym_BANG_EQ] = ACTIONS(3150), + [anon_sym_LT_EQ] = ACTIONS(3150), + [anon_sym_GT_EQ] = ACTIONS(3150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_mut] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [anon_sym_QMARK] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3150), + [anon_sym_json_DOTdecode] = ACTIONS(3150), + [anon_sym_LBRACK2] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_CARET] = ACTIONS(3150), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_LT_DASH] = ACTIONS(3150), + [anon_sym_LT_LT] = ACTIONS(3150), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3150), + [anon_sym_AMP_CARET] = ACTIONS(3150), + [anon_sym_AMP_AMP] = ACTIONS(3150), + [anon_sym_PIPE_PIPE] = ACTIONS(3150), + [anon_sym_or] = ACTIONS(3150), + [sym_none] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_nil] = ACTIONS(3150), + [anon_sym_QMARK_DOT] = ACTIONS(3150), + [anon_sym_POUND_LBRACK] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_DOLLARif] = ACTIONS(3150), + [anon_sym_is] = ACTIONS(3150), + [anon_sym_BANGis] = ACTIONS(3150), + [anon_sym_in] = ACTIONS(3150), + [anon_sym_BANGin] = ACTIONS(3150), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_rlock] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_sql] = ACTIONS(3150), + [sym_int_literal] = ACTIONS(3150), + [sym_float_literal] = ACTIONS(3150), + [sym_rune_literal] = ACTIONS(3150), + [sym_pseudo_compile_time_identifier] = ACTIONS(3150), + [anon_sym_shared] = ACTIONS(3150), + [anon_sym_map_LBRACK] = ACTIONS(3150), + [anon_sym_chan] = ACTIONS(3150), + [anon_sym_thread] = ACTIONS(3150), + [anon_sym_atomic] = ACTIONS(3150), + [sym___double_quote] = ACTIONS(3150), + [sym___single_quote] = ACTIONS(3150), + [sym___c_double_quote] = ACTIONS(3150), + [sym___c_single_quote] = ACTIONS(3150), + [sym___r_double_quote] = ACTIONS(3150), + [sym___r_single_quote] = ACTIONS(3150), }, [1206] = { [sym_line_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3163), - [anon_sym_LF] = ACTIONS(3163), - [anon_sym_CR] = ACTIONS(3163), - [anon_sym_CR_LF] = ACTIONS(3163), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [sym_pseudo_compile_time_identifier] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), + [sym_block_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3146), + [anon_sym_LF] = ACTIONS(3146), + [anon_sym_CR] = ACTIONS(3146), + [anon_sym_CR_LF] = ACTIONS(3146), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_DOT] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_COMMA] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_RPAREN] = ACTIONS(3146), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_fn] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PERCENT] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3146), + [anon_sym_BANG_EQ] = ACTIONS(3146), + [anon_sym_LT_EQ] = ACTIONS(3146), + [anon_sym_GT_EQ] = ACTIONS(3146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_mut] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_go] = ACTIONS(3146), + [anon_sym_spawn] = ACTIONS(3146), + [anon_sym_json_DOTdecode] = ACTIONS(3146), + [anon_sym_LBRACK2] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_CARET] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT_DASH] = ACTIONS(3146), + [anon_sym_LT_LT] = ACTIONS(3146), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3146), + [anon_sym_AMP_CARET] = ACTIONS(3146), + [anon_sym_AMP_AMP] = ACTIONS(3146), + [anon_sym_PIPE_PIPE] = ACTIONS(3146), + [anon_sym_or] = ACTIONS(3146), + [sym_none] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_nil] = ACTIONS(3146), + [anon_sym_QMARK_DOT] = ACTIONS(3146), + [anon_sym_POUND_LBRACK] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_DOLLARif] = ACTIONS(3146), + [anon_sym_is] = ACTIONS(3146), + [anon_sym_BANGis] = ACTIONS(3146), + [anon_sym_in] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3146), + [anon_sym_match] = ACTIONS(3146), + [anon_sym_select] = ACTIONS(3146), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(3146), + [anon_sym_sql] = ACTIONS(3146), + [sym_int_literal] = ACTIONS(3146), + [sym_float_literal] = ACTIONS(3146), + [sym_rune_literal] = ACTIONS(3146), + [sym_pseudo_compile_time_identifier] = ACTIONS(3146), + [anon_sym_shared] = ACTIONS(3146), + [anon_sym_map_LBRACK] = ACTIONS(3146), + [anon_sym_chan] = ACTIONS(3146), + [anon_sym_thread] = ACTIONS(3146), + [anon_sym_atomic] = ACTIONS(3146), + [sym___double_quote] = ACTIONS(3146), + [sym___single_quote] = ACTIONS(3146), + [sym___c_double_quote] = ACTIONS(3146), + [sym___c_single_quote] = ACTIONS(3146), + [sym___r_double_quote] = ACTIONS(3146), + [sym___r_single_quote] = ACTIONS(3146), }, [1207] = { [sym_line_comment] = STATE(1207), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LF] = ACTIONS(3171), - [anon_sym_CR] = ACTIONS(3171), - [anon_sym_CR_LF] = ACTIONS(3171), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_RPAREN] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [sym_pseudo_compile_time_identifier] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), + [sym_block_comment] = STATE(1207), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_COMMA] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_RPAREN] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3214), + [anon_sym_BANG_EQ] = ACTIONS(3214), + [anon_sym_LT_EQ] = ACTIONS(3214), + [anon_sym_GT_EQ] = ACTIONS(3214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [anon_sym_LT_LT] = ACTIONS(3214), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3214), + [anon_sym_AMP_CARET] = ACTIONS(3214), + [anon_sym_AMP_AMP] = ACTIONS(3214), + [anon_sym_PIPE_PIPE] = ACTIONS(3214), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3214), + [anon_sym_POUND_LBRACK] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3214), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [sym_pseudo_compile_time_identifier] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), }, [1208] = { [sym_line_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3175), - [anon_sym_LF] = ACTIONS(3175), - [anon_sym_CR] = ACTIONS(3175), - [anon_sym_CR_LF] = ACTIONS(3175), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [sym_pseudo_compile_time_identifier] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), + [sym_block_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), }, [1209] = { [sym_line_comment] = STATE(1209), - [sym_identifier] = ACTIONS(3780), - [anon_sym_LF] = ACTIONS(3783), - [anon_sym_CR] = ACTIONS(3783), - [anon_sym_CR_LF] = ACTIONS(3783), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3783), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3783), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3786), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3788), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1209), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3024), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_COMMA] = ACTIONS(3024), + [anon_sym_RBRACE] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym_RPAREN] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3024), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3024), + [anon_sym_BANG_EQ] = ACTIONS(3024), + [anon_sym_LT_EQ] = ACTIONS(3024), + [anon_sym_GT_EQ] = ACTIONS(3024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_PLUS_PLUS] = ACTIONS(3024), + [anon_sym_DASH_DASH] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [anon_sym_LT_LT] = ACTIONS(3024), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3024), + [anon_sym_AMP_CARET] = ACTIONS(3024), + [anon_sym_AMP_AMP] = ACTIONS(3024), + [anon_sym_PIPE_PIPE] = ACTIONS(3024), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3024), + [anon_sym_POUND_LBRACK] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3024), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [sym_pseudo_compile_time_identifier] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), }, [1210] = { [sym_line_comment] = STATE(1210), - [sym_identifier] = ACTIONS(3131), - [anon_sym_LF] = ACTIONS(3131), - [anon_sym_CR] = ACTIONS(3131), - [anon_sym_CR_LF] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_fn] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_mut] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_go] = ACTIONS(3131), - [anon_sym_spawn] = ACTIONS(3131), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_nil] = ACTIONS(3131), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_DOLLARif] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3131), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_rlock] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_sql] = ACTIONS(3131), - [sym_int_literal] = ACTIONS(3131), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3131), - [anon_sym_shared] = ACTIONS(3131), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3131), - [anon_sym_thread] = ACTIONS(3131), - [anon_sym_atomic] = ACTIONS(3131), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), + [sym_block_comment] = STATE(1210), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3816), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1211] = { [sym_line_comment] = STATE(1211), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), + [sym_block_comment] = STATE(1211), + [sym_identifier] = ACTIONS(3394), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_CR] = ACTIONS(3394), + [anon_sym_CR_LF] = ACTIONS(3394), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_as] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_COMMA] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_RPAREN] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_fn] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PERCENT] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_BANG_EQ] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3394), + [anon_sym_mut] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_QMARK] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_go] = ACTIONS(3394), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(3394), + [anon_sym_LBRACK2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_CARET] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_or] = ACTIONS(3394), + [sym_none] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_nil] = ACTIONS(3394), + [anon_sym_QMARK_DOT] = ACTIONS(3394), + [anon_sym_POUND_LBRACK] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_DOLLARif] = ACTIONS(3394), + [anon_sym_is] = ACTIONS(3394), + [anon_sym_BANGis] = ACTIONS(3394), + [anon_sym_in] = ACTIONS(3394), + [anon_sym_BANGin] = ACTIONS(3394), + [anon_sym_match] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_rlock] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_sql] = ACTIONS(3394), + [sym_int_literal] = ACTIONS(3394), + [sym_float_literal] = ACTIONS(3394), + [sym_rune_literal] = ACTIONS(3394), + [sym_pseudo_compile_time_identifier] = ACTIONS(3394), + [anon_sym_shared] = ACTIONS(3394), + [anon_sym_map_LBRACK] = ACTIONS(3394), + [anon_sym_chan] = ACTIONS(3394), + [anon_sym_thread] = ACTIONS(3394), + [anon_sym_atomic] = ACTIONS(3394), + [sym___double_quote] = ACTIONS(3394), + [sym___single_quote] = ACTIONS(3394), + [sym___c_double_quote] = ACTIONS(3394), + [sym___c_single_quote] = ACTIONS(3394), + [sym___r_double_quote] = ACTIONS(3394), + [sym___r_single_quote] = ACTIONS(3394), }, [1212] = { [sym_line_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3403), - [anon_sym_LF] = ACTIONS(3403), - [anon_sym_CR] = ACTIONS(3403), - [anon_sym_CR_LF] = ACTIONS(3403), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_RPAREN] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_fn] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_EQ_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_LT_EQ] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_mut] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_go] = ACTIONS(3403), - [anon_sym_spawn] = ACTIONS(3403), - [anon_sym_json_DOTdecode] = ACTIONS(3403), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3403), - [anon_sym_GT_GT] = ACTIONS(3403), - [anon_sym_GT_GT_GT] = ACTIONS(3403), - [anon_sym_AMP_CARET] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_nil] = ACTIONS(3403), - [anon_sym_QMARK_DOT] = ACTIONS(3403), - [anon_sym_POUND_LBRACK] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOLLARif] = ACTIONS(3403), - [anon_sym_is] = ACTIONS(3403), - [anon_sym_BANGis] = ACTIONS(3403), - [anon_sym_in] = ACTIONS(3403), - [anon_sym_BANGin] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_rlock] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_sql] = ACTIONS(3403), - [sym_int_literal] = ACTIONS(3403), - [sym_float_literal] = ACTIONS(3403), - [sym_rune_literal] = ACTIONS(3403), - [sym_pseudo_compile_time_identifier] = ACTIONS(3403), - [anon_sym_shared] = ACTIONS(3403), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3403), - [anon_sym_thread] = ACTIONS(3403), - [anon_sym_atomic] = ACTIONS(3403), - [sym___double_quote] = ACTIONS(3403), - [sym___single_quote] = ACTIONS(3403), - [sym___c_double_quote] = ACTIONS(3403), - [sym___c_single_quote] = ACTIONS(3403), - [sym___r_double_quote] = ACTIONS(3403), - [sym___r_single_quote] = ACTIONS(3403), + [sym_block_comment] = STATE(1212), + [sym_reference_expression] = STATE(4470), + [sym_type_reference_expression] = STATE(1950), + [sym_plain_type] = STATE(2064), + [sym__plain_type_without_special] = STATE(2111), + [sym_anon_struct_type] = STATE(2110), + [sym_multi_return_type] = STATE(2111), + [sym_result_type] = STATE(2111), + [sym_option_type] = STATE(2111), + [sym_qualified_type] = STATE(1950), + [sym_fixed_array_type] = STATE(2110), + [sym_array_type] = STATE(2110), + [sym_pointer_type] = STATE(2110), + [sym_wrong_pointer_type] = STATE(2110), + [sym_map_type] = STATE(2110), + [sym_channel_type] = STATE(2110), + [sym_shared_type] = STATE(2110), + [sym_thread_type] = STATE(2110), + [sym_atomic_type] = STATE(2110), + [sym_generic_type] = STATE(2110), + [sym_function_type] = STATE(2110), + [sym_identifier] = ACTIONS(3778), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_EQ] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(3786), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), + [anon_sym_QMARK] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_LBRACK2] = ACTIONS(3792), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(3796), + [anon_sym_map_LBRACK] = ACTIONS(3798), + [anon_sym_chan] = ACTIONS(3800), + [anon_sym_thread] = ACTIONS(3802), + [anon_sym_atomic] = ACTIONS(3804), }, [1213] = { [sym_line_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3127), - [anon_sym_CR] = ACTIONS(3127), - [anon_sym_CR_LF] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_as] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_mut] = ACTIONS(3127), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3127), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_nil] = ACTIONS(3127), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_DOLLARif] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_rlock] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_sql] = ACTIONS(3127), - [sym_int_literal] = ACTIONS(3127), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [sym_pseudo_compile_time_identifier] = ACTIONS(3127), - [anon_sym_shared] = ACTIONS(3127), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3127), - [anon_sym_thread] = ACTIONS(3127), - [anon_sym_atomic] = ACTIONS(3127), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), + [sym_block_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), }, [1214] = { [sym_line_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), + [sym_block_comment] = STATE(1214), + [sym_identifier] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_CR] = ACTIONS(3402), + [anon_sym_CR_LF] = ACTIONS(3402), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_DOT] = ACTIONS(3402), + [anon_sym_as] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_fn] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PERCENT] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_BANG_EQ] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_mut] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_go] = ACTIONS(3402), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(3402), + [anon_sym_LBRACK2] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_CARET] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_or] = ACTIONS(3402), + [sym_none] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_nil] = ACTIONS(3402), + [anon_sym_QMARK_DOT] = ACTIONS(3402), + [anon_sym_POUND_LBRACK] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_is] = ACTIONS(3402), + [anon_sym_BANGis] = ACTIONS(3402), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_BANGin] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_select] = ACTIONS(3402), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_sql] = ACTIONS(3402), + [sym_int_literal] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3402), + [sym_rune_literal] = ACTIONS(3402), + [sym_pseudo_compile_time_identifier] = ACTIONS(3402), + [anon_sym_shared] = ACTIONS(3402), + [anon_sym_map_LBRACK] = ACTIONS(3402), + [anon_sym_chan] = ACTIONS(3402), + [anon_sym_thread] = ACTIONS(3402), + [anon_sym_atomic] = ACTIONS(3402), + [sym___double_quote] = ACTIONS(3402), + [sym___single_quote] = ACTIONS(3402), + [sym___c_double_quote] = ACTIONS(3402), + [sym___c_single_quote] = ACTIONS(3402), + [sym___r_double_quote] = ACTIONS(3402), + [sym___r_single_quote] = ACTIONS(3402), }, [1215] = { [sym_line_comment] = STATE(1215), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [sym_block_comment] = STATE(1215), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_RPAREN] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1216] = { [sym_line_comment] = STATE(1216), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [sym_block_comment] = STATE(1216), + [sym_identifier] = ACTIONS(3398), + [anon_sym_LF] = ACTIONS(3398), + [anon_sym_CR] = ACTIONS(3398), + [anon_sym_CR_LF] = ACTIONS(3398), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3398), + [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_as] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_COMMA] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_RPAREN] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_fn] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PERCENT] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_EQ_EQ] = ACTIONS(3398), + [anon_sym_BANG_EQ] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3398), + [anon_sym_mut] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_QMARK] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3398), + [anon_sym_spawn] = ACTIONS(3398), + [anon_sym_json_DOTdecode] = ACTIONS(3398), + [anon_sym_LBRACK2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_LT_DASH] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3398), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3398), + [anon_sym_AMP_CARET] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_or] = ACTIONS(3398), + [sym_none] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_nil] = ACTIONS(3398), + [anon_sym_QMARK_DOT] = ACTIONS(3398), + [anon_sym_POUND_LBRACK] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_DOLLARif] = ACTIONS(3398), + [anon_sym_is] = ACTIONS(3398), + [anon_sym_BANGis] = ACTIONS(3398), + [anon_sym_in] = ACTIONS(3398), + [anon_sym_BANGin] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_rlock] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_sql] = ACTIONS(3398), + [sym_int_literal] = ACTIONS(3398), + [sym_float_literal] = ACTIONS(3398), + [sym_rune_literal] = ACTIONS(3398), + [sym_pseudo_compile_time_identifier] = ACTIONS(3398), + [anon_sym_shared] = ACTIONS(3398), + [anon_sym_map_LBRACK] = ACTIONS(3398), + [anon_sym_chan] = ACTIONS(3398), + [anon_sym_thread] = ACTIONS(3398), + [anon_sym_atomic] = ACTIONS(3398), + [sym___double_quote] = ACTIONS(3398), + [sym___single_quote] = ACTIONS(3398), + [sym___c_double_quote] = ACTIONS(3398), + [sym___c_single_quote] = ACTIONS(3398), + [sym___r_double_quote] = ACTIONS(3398), + [sym___r_single_quote] = ACTIONS(3398), }, [1217] = { [sym_line_comment] = STATE(1217), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_mut] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3143), - [anon_sym_spawn] = ACTIONS(3143), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_nil] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_DOLLARif] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_rlock] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_sql] = ACTIONS(3143), - [sym_int_literal] = ACTIONS(3143), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [sym_pseudo_compile_time_identifier] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), + [sym_block_comment] = STATE(1217), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), }, [1218] = { [sym_line_comment] = STATE(1218), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_RPAREN] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), + [sym_block_comment] = STATE(1218), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), }, [1219] = { [sym_line_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [sym_block_comment] = STATE(1219), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LF] = ACTIONS(2971), + [anon_sym_CR] = ACTIONS(2971), + [anon_sym_CR_LF] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2971), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_COMMA] = ACTIONS(2971), + [anon_sym_RBRACE] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_RPAREN] = ACTIONS(2971), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2971), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2971), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2971), + [anon_sym_POUND_LBRACK] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2971), + [sym_rune_literal] = ACTIONS(2971), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2971), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2971), + [sym___single_quote] = ACTIONS(2971), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2971), + [sym___r_double_quote] = ACTIONS(2971), + [sym___r_single_quote] = ACTIONS(2971), }, [1220] = { [sym_line_comment] = STATE(1220), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_RPAREN] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), + [sym_block_comment] = STATE(1220), + [sym_identifier] = ACTIONS(3044), + [anon_sym_LF] = ACTIONS(3044), + [anon_sym_CR] = ACTIONS(3044), + [anon_sym_CR_LF] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3044), + [anon_sym_COMMA] = ACTIONS(3044), + [anon_sym_RBRACE] = ACTIONS(3044), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3044), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3044), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3044), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3044), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3044), + [sym_rune_literal] = ACTIONS(3044), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3044), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3044), + [sym___single_quote] = ACTIONS(3044), + [sym___c_double_quote] = ACTIONS(3044), + [sym___c_single_quote] = ACTIONS(3044), + [sym___r_double_quote] = ACTIONS(3044), + [sym___r_single_quote] = ACTIONS(3044), }, [1221] = { [sym_line_comment] = STATE(1221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), + [sym_block_comment] = STATE(1221), + [sym_identifier] = ACTIONS(3390), + [anon_sym_LF] = ACTIONS(3390), + [anon_sym_CR] = ACTIONS(3390), + [anon_sym_CR_LF] = ACTIONS(3390), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3390), + [anon_sym_DOT] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3390), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_RBRACE] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3390), + [anon_sym_RPAREN] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_fn] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PERCENT] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_EQ_EQ] = ACTIONS(3390), + [anon_sym_BANG_EQ] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(3390), + [anon_sym_mut] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3390), + [anon_sym_DASH_DASH] = ACTIONS(3390), + [anon_sym_QMARK] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3390), + [anon_sym_spawn] = ACTIONS(3390), + [anon_sym_json_DOTdecode] = ACTIONS(3390), + [anon_sym_LBRACK2] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_LT_DASH] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3390), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3390), + [anon_sym_AMP_CARET] = ACTIONS(3390), + [anon_sym_AMP_AMP] = ACTIONS(3390), + [anon_sym_PIPE_PIPE] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3390), + [sym_none] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_nil] = ACTIONS(3390), + [anon_sym_QMARK_DOT] = ACTIONS(3390), + [anon_sym_POUND_LBRACK] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_DOLLARif] = ACTIONS(3390), + [anon_sym_is] = ACTIONS(3390), + [anon_sym_BANGis] = ACTIONS(3390), + [anon_sym_in] = ACTIONS(3390), + [anon_sym_BANGin] = ACTIONS(3390), + [anon_sym_match] = ACTIONS(3390), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3390), + [anon_sym_rlock] = ACTIONS(3390), + [anon_sym_unsafe] = ACTIONS(3390), + [anon_sym_sql] = ACTIONS(3390), + [sym_int_literal] = ACTIONS(3390), + [sym_float_literal] = ACTIONS(3390), + [sym_rune_literal] = ACTIONS(3390), + [sym_pseudo_compile_time_identifier] = ACTIONS(3390), + [anon_sym_shared] = ACTIONS(3390), + [anon_sym_map_LBRACK] = ACTIONS(3390), + [anon_sym_chan] = ACTIONS(3390), + [anon_sym_thread] = ACTIONS(3390), + [anon_sym_atomic] = ACTIONS(3390), + [sym___double_quote] = ACTIONS(3390), + [sym___single_quote] = ACTIONS(3390), + [sym___c_double_quote] = ACTIONS(3390), + [sym___c_single_quote] = ACTIONS(3390), + [sym___r_double_quote] = ACTIONS(3390), + [sym___r_single_quote] = ACTIONS(3390), }, [1222] = { [sym_line_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3227), - [sym_rune_literal] = ACTIONS(3227), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3227), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3227), - [sym___single_quote] = ACTIONS(3227), - [sym___c_double_quote] = ACTIONS(3227), - [sym___c_single_quote] = ACTIONS(3227), - [sym___r_double_quote] = ACTIONS(3227), - [sym___r_single_quote] = ACTIONS(3227), + [sym_block_comment] = STATE(1222), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_COMMA] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_RPAREN] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2981), + [anon_sym_BANG_EQ] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2981), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2981), + [anon_sym_AMP_CARET] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_PIPE_PIPE] = ACTIONS(2981), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2981), + [anon_sym_POUND_LBRACK] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2981), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [sym___double_quote] = ACTIONS(2981), + [sym___single_quote] = ACTIONS(2981), + [sym___c_double_quote] = ACTIONS(2981), + [sym___c_single_quote] = ACTIONS(2981), + [sym___r_double_quote] = ACTIONS(2981), + [sym___r_single_quote] = ACTIONS(2981), }, [1223] = { [sym_line_comment] = STATE(1223), - [sym_identifier] = ACTIONS(3055), - [anon_sym_LF] = ACTIONS(3055), - [anon_sym_CR] = ACTIONS(3055), - [anon_sym_CR_LF] = ACTIONS(3055), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_RPAREN] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), + [sym_block_comment] = STATE(1223), + [sym_identifier] = ACTIONS(2935), + [anon_sym_LF] = ACTIONS(2935), + [anon_sym_CR] = ACTIONS(2935), + [anon_sym_CR_LF] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2935), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_COMMA] = ACTIONS(2935), + [anon_sym_RBRACE] = ACTIONS(2935), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_RPAREN] = ACTIONS(2935), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2935), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2935), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2935), + [anon_sym_POUND_LBRACK] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2935), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2935), + [sym_rune_literal] = ACTIONS(2935), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2935), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + [sym___double_quote] = ACTIONS(2935), + [sym___single_quote] = ACTIONS(2935), + [sym___c_double_quote] = ACTIONS(2935), + [sym___c_single_quote] = ACTIONS(2935), + [sym___r_double_quote] = ACTIONS(2935), + [sym___r_single_quote] = ACTIONS(2935), }, [1224] = { [sym_line_comment] = STATE(1224), - [sym_identifier] = ACTIONS(3123), - [anon_sym_LF] = ACTIONS(3123), - [anon_sym_CR] = ACTIONS(3123), - [anon_sym_CR_LF] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_as] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_fn] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_go] = ACTIONS(3123), - [anon_sym_spawn] = ACTIONS(3123), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_nil] = ACTIONS(3123), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_DOLLARif] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_sql] = ACTIONS(3123), - [sym_int_literal] = ACTIONS(3123), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [sym_pseudo_compile_time_identifier] = ACTIONS(3123), - [anon_sym_shared] = ACTIONS(3123), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3123), - [anon_sym_thread] = ACTIONS(3123), - [anon_sym_atomic] = ACTIONS(3123), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), + [sym_block_comment] = STATE(1224), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LF] = ACTIONS(2931), + [anon_sym_CR] = ACTIONS(2931), + [anon_sym_CR_LF] = ACTIONS(2931), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(2931), + [anon_sym_as] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_COMMA] = ACTIONS(2931), + [anon_sym_RBRACE] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_RPAREN] = ACTIONS(2931), + [anon_sym_PIPE] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_QMARK] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_go] = ACTIONS(2931), + [anon_sym_spawn] = ACTIONS(2931), + [anon_sym_json_DOTdecode] = ACTIONS(2931), + [anon_sym_LBRACK2] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2931), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2931), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_or] = ACTIONS(2931), + [sym_none] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_nil] = ACTIONS(2931), + [anon_sym_QMARK_DOT] = ACTIONS(2931), + [anon_sym_POUND_LBRACK] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_DOLLARif] = ACTIONS(2931), + [anon_sym_is] = ACTIONS(2931), + [anon_sym_BANGis] = ACTIONS(2931), + [anon_sym_in] = ACTIONS(2931), + [anon_sym_BANGin] = ACTIONS(2931), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_select] = ACTIONS(2931), + [anon_sym_lock] = ACTIONS(2931), + [anon_sym_rlock] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2931), + [anon_sym_sql] = ACTIONS(2931), + [sym_int_literal] = ACTIONS(2931), + [sym_float_literal] = ACTIONS(2931), + [sym_rune_literal] = ACTIONS(2931), + [sym_pseudo_compile_time_identifier] = ACTIONS(2931), + [anon_sym_shared] = ACTIONS(2931), + [anon_sym_map_LBRACK] = ACTIONS(2931), + [anon_sym_chan] = ACTIONS(2931), + [anon_sym_thread] = ACTIONS(2931), + [anon_sym_atomic] = ACTIONS(2931), + [sym___double_quote] = ACTIONS(2931), + [sym___single_quote] = ACTIONS(2931), + [sym___c_double_quote] = ACTIONS(2931), + [sym___c_single_quote] = ACTIONS(2931), + [sym___r_double_quote] = ACTIONS(2931), + [sym___r_single_quote] = ACTIONS(2931), }, [1225] = { [sym_line_comment] = STATE(1225), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_RPAREN] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), + [sym_block_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(3406), + [anon_sym_CR] = ACTIONS(3406), + [anon_sym_CR_LF] = ACTIONS(3406), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_DOT] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_RPAREN] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_fn] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PERCENT] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_EQ_EQ] = ACTIONS(3406), + [anon_sym_BANG_EQ] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_mut] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_QMARK] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_go] = ACTIONS(3406), + [anon_sym_spawn] = ACTIONS(3406), + [anon_sym_json_DOTdecode] = ACTIONS(3406), + [anon_sym_LBRACK2] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_LT_DASH] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3406), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3406), + [anon_sym_AMP_CARET] = ACTIONS(3406), + [anon_sym_AMP_AMP] = ACTIONS(3406), + [anon_sym_PIPE_PIPE] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3406), + [sym_none] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_nil] = ACTIONS(3406), + [anon_sym_QMARK_DOT] = ACTIONS(3406), + [anon_sym_POUND_LBRACK] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_DOLLARif] = ACTIONS(3406), + [anon_sym_is] = ACTIONS(3406), + [anon_sym_BANGis] = ACTIONS(3406), + [anon_sym_in] = ACTIONS(3406), + [anon_sym_BANGin] = ACTIONS(3406), + [anon_sym_match] = ACTIONS(3406), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3406), + [anon_sym_rlock] = ACTIONS(3406), + [anon_sym_unsafe] = ACTIONS(3406), + [anon_sym_sql] = ACTIONS(3406), + [sym_int_literal] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + [sym_rune_literal] = ACTIONS(3406), + [sym_pseudo_compile_time_identifier] = ACTIONS(3406), + [anon_sym_shared] = ACTIONS(3406), + [anon_sym_map_LBRACK] = ACTIONS(3406), + [anon_sym_chan] = ACTIONS(3406), + [anon_sym_thread] = ACTIONS(3406), + [anon_sym_atomic] = ACTIONS(3406), + [sym___double_quote] = ACTIONS(3406), + [sym___single_quote] = ACTIONS(3406), + [sym___c_double_quote] = ACTIONS(3406), + [sym___c_single_quote] = ACTIONS(3406), + [sym___r_double_quote] = ACTIONS(3406), + [sym___r_single_quote] = ACTIONS(3406), }, [1226] = { [sym_line_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), + [sym_block_comment] = STATE(1226), + [sym_identifier] = ACTIONS(2927), + [anon_sym_LF] = ACTIONS(2927), + [anon_sym_CR] = ACTIONS(2927), + [anon_sym_CR_LF] = ACTIONS(2927), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2927), + [anon_sym_DOT] = ACTIONS(2927), + [anon_sym_as] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_COMMA] = ACTIONS(2927), + [anon_sym_RBRACE] = ACTIONS(2927), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_RPAREN] = ACTIONS(2927), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2927), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_mut] = ACTIONS(2927), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2927), + [anon_sym_json_DOTdecode] = ACTIONS(2927), + [anon_sym_LBRACK2] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_LT_DASH] = ACTIONS(2927), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2927), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_or] = ACTIONS(2927), + [sym_none] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_nil] = ACTIONS(2927), + [anon_sym_QMARK_DOT] = ACTIONS(2927), + [anon_sym_POUND_LBRACK] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_DOLLARif] = ACTIONS(2927), + [anon_sym_is] = ACTIONS(2927), + [anon_sym_BANGis] = ACTIONS(2927), + [anon_sym_in] = ACTIONS(2927), + [anon_sym_BANGin] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_select] = ACTIONS(2927), + [anon_sym_lock] = ACTIONS(2927), + [anon_sym_rlock] = ACTIONS(2927), + [anon_sym_unsafe] = ACTIONS(2927), + [anon_sym_sql] = ACTIONS(2927), + [sym_int_literal] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2927), + [sym_rune_literal] = ACTIONS(2927), + [sym_pseudo_compile_time_identifier] = ACTIONS(2927), + [anon_sym_shared] = ACTIONS(2927), + [anon_sym_map_LBRACK] = ACTIONS(2927), + [anon_sym_chan] = ACTIONS(2927), + [anon_sym_thread] = ACTIONS(2927), + [anon_sym_atomic] = ACTIONS(2927), + [sym___double_quote] = ACTIONS(2927), + [sym___single_quote] = ACTIONS(2927), + [sym___c_double_quote] = ACTIONS(2927), + [sym___c_single_quote] = ACTIONS(2927), + [sym___r_double_quote] = ACTIONS(2927), + [sym___r_single_quote] = ACTIONS(2927), }, [1227] = { [sym_line_comment] = STATE(1227), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3155), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_RPAREN] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [sym_pseudo_compile_time_identifier] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), + [sym_block_comment] = STATE(1227), + [sym_identifier] = ACTIONS(3442), + [anon_sym_LF] = ACTIONS(3442), + [anon_sym_CR] = ACTIONS(3442), + [anon_sym_CR_LF] = ACTIONS(3442), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3442), + [anon_sym_as] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_RPAREN] = ACTIONS(3442), + [anon_sym_PIPE] = ACTIONS(3442), + [anon_sym_fn] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_PERCENT] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3442), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_struct] = ACTIONS(3442), + [anon_sym_mut] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_go] = ACTIONS(3442), + [anon_sym_spawn] = ACTIONS(3442), + [anon_sym_json_DOTdecode] = ACTIONS(3442), + [anon_sym_LBRACK2] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_CARET] = ACTIONS(3442), + [anon_sym_AMP] = ACTIONS(3442), + [anon_sym_LT_DASH] = ACTIONS(3442), + [anon_sym_LT_LT] = ACTIONS(3442), + [anon_sym_GT_GT] = ACTIONS(3442), + [anon_sym_GT_GT_GT] = ACTIONS(3442), + [anon_sym_AMP_CARET] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3442), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3442), + [sym_none] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_nil] = ACTIONS(3442), + [anon_sym_QMARK_DOT] = ACTIONS(3442), + [anon_sym_POUND_LBRACK] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_DOLLARif] = ACTIONS(3442), + [anon_sym_is] = ACTIONS(3442), + [anon_sym_BANGis] = ACTIONS(3442), + [anon_sym_in] = ACTIONS(3442), + [anon_sym_BANGin] = ACTIONS(3442), + [anon_sym_match] = ACTIONS(3442), + [anon_sym_select] = ACTIONS(3442), + [anon_sym_lock] = ACTIONS(3442), + [anon_sym_rlock] = ACTIONS(3442), + [anon_sym_unsafe] = ACTIONS(3442), + [anon_sym_sql] = ACTIONS(3442), + [sym_int_literal] = ACTIONS(3442), + [sym_float_literal] = ACTIONS(3442), + [sym_rune_literal] = ACTIONS(3442), + [sym_pseudo_compile_time_identifier] = ACTIONS(3442), + [anon_sym_shared] = ACTIONS(3442), + [anon_sym_map_LBRACK] = ACTIONS(3442), + [anon_sym_chan] = ACTIONS(3442), + [anon_sym_thread] = ACTIONS(3442), + [anon_sym_atomic] = ACTIONS(3442), + [sym___double_quote] = ACTIONS(3442), + [sym___single_quote] = ACTIONS(3442), + [sym___c_double_quote] = ACTIONS(3442), + [sym___c_single_quote] = ACTIONS(3442), + [sym___r_double_quote] = ACTIONS(3442), + [sym___r_single_quote] = ACTIONS(3442), }, [1228] = { [sym_line_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_RPAREN] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), + [sym_block_comment] = STATE(1228), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LF] = ACTIONS(2917), + [anon_sym_CR] = ACTIONS(2917), + [anon_sym_CR_LF] = ACTIONS(2917), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_COMMA] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_RPAREN] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2917), + [anon_sym_BANG_EQ] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), + [anon_sym_spawn] = ACTIONS(2917), + [anon_sym_json_DOTdecode] = ACTIONS(2917), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2917), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2917), + [anon_sym_AMP_CARET] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_PIPE_PIPE] = ACTIONS(2917), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2917), + [anon_sym_POUND_LBRACK] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2917), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), + [sym_rune_literal] = ACTIONS(2917), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2917), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + [sym___double_quote] = ACTIONS(2917), + [sym___single_quote] = ACTIONS(2917), + [sym___c_double_quote] = ACTIONS(2917), + [sym___c_single_quote] = ACTIONS(2917), + [sym___r_double_quote] = ACTIONS(2917), + [sym___r_single_quote] = ACTIONS(2917), }, [1229] = { [sym_line_comment] = STATE(1229), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_EQ] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_STAR_EQ] = ACTIONS(621), - [anon_sym_SLASH_EQ] = ACTIONS(621), - [anon_sym_PERCENT_EQ] = ACTIONS(621), - [anon_sym_LT_LT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_EQ] = ACTIONS(621), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), - [anon_sym_AMP_EQ] = ACTIONS(621), - [anon_sym_AMP_CARET_EQ] = ACTIONS(621), - [anon_sym_PLUS_EQ] = ACTIONS(621), - [anon_sym_DASH_EQ] = ACTIONS(621), - [anon_sym_PIPE_EQ] = ACTIONS(621), - [anon_sym_CARET_EQ] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1230] = { [sym_line_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_RPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), + [sym_block_comment] = STATE(1230), + [sym_identifier] = ACTIONS(2923), + [anon_sym_LF] = ACTIONS(2923), + [anon_sym_CR] = ACTIONS(2923), + [anon_sym_CR_LF] = ACTIONS(2923), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2923), + [anon_sym_DOT] = ACTIONS(2923), + [anon_sym_as] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_COMMA] = ACTIONS(2923), + [anon_sym_RBRACE] = ACTIONS(2923), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_RPAREN] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2923), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_mut] = ACTIONS(2923), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_go] = ACTIONS(2923), + [anon_sym_spawn] = ACTIONS(2923), + [anon_sym_json_DOTdecode] = ACTIONS(2923), + [anon_sym_LBRACK2] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_LT_DASH] = ACTIONS(2923), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_or] = ACTIONS(2923), + [sym_none] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_nil] = ACTIONS(2923), + [anon_sym_QMARK_DOT] = ACTIONS(2923), + [anon_sym_POUND_LBRACK] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_DOLLARif] = ACTIONS(2923), + [anon_sym_is] = ACTIONS(2923), + [anon_sym_BANGis] = ACTIONS(2923), + [anon_sym_in] = ACTIONS(2923), + [anon_sym_BANGin] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_select] = ACTIONS(2923), + [anon_sym_lock] = ACTIONS(2923), + [anon_sym_rlock] = ACTIONS(2923), + [anon_sym_unsafe] = ACTIONS(2923), + [anon_sym_sql] = ACTIONS(2923), + [sym_int_literal] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2923), + [sym_rune_literal] = ACTIONS(2923), + [sym_pseudo_compile_time_identifier] = ACTIONS(2923), + [anon_sym_shared] = ACTIONS(2923), + [anon_sym_map_LBRACK] = ACTIONS(2923), + [anon_sym_chan] = ACTIONS(2923), + [anon_sym_thread] = ACTIONS(2923), + [anon_sym_atomic] = ACTIONS(2923), + [sym___double_quote] = ACTIONS(2923), + [sym___single_quote] = ACTIONS(2923), + [sym___c_double_quote] = ACTIONS(2923), + [sym___c_single_quote] = ACTIONS(2923), + [sym___r_double_quote] = ACTIONS(2923), + [sym___r_single_quote] = ACTIONS(2923), }, [1231] = { [sym_line_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3395), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_CR] = ACTIONS(3395), - [anon_sym_CR_LF] = ACTIONS(3395), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_RPAREN] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_fn] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_LT_EQ] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_mut] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(3395), - [anon_sym_spawn] = ACTIONS(3395), - [anon_sym_json_DOTdecode] = ACTIONS(3395), - [anon_sym_LBRACK2] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_DASH] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_AMP_CARET] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3395), - [anon_sym_PIPE_PIPE] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_nil] = ACTIONS(3395), - [anon_sym_QMARK_DOT] = ACTIONS(3395), - [anon_sym_POUND_LBRACK] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOLLARif] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_BANGis] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_BANGin] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_rlock] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_sql] = ACTIONS(3395), - [sym_int_literal] = ACTIONS(3395), - [sym_float_literal] = ACTIONS(3395), - [sym_rune_literal] = ACTIONS(3395), - [sym_pseudo_compile_time_identifier] = ACTIONS(3395), - [anon_sym_shared] = ACTIONS(3395), - [anon_sym_map_LBRACK] = ACTIONS(3395), - [anon_sym_chan] = ACTIONS(3395), - [anon_sym_thread] = ACTIONS(3395), - [anon_sym_atomic] = ACTIONS(3395), - [sym___double_quote] = ACTIONS(3395), - [sym___single_quote] = ACTIONS(3395), - [sym___c_double_quote] = ACTIONS(3395), - [sym___c_single_quote] = ACTIONS(3395), - [sym___r_double_quote] = ACTIONS(3395), - [sym___r_single_quote] = ACTIONS(3395), + [sym_block_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), }, [1232] = { [sym_line_comment] = STATE(1232), - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3283), - [anon_sym_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3283), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_CARET] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3283), - [anon_sym_POUND_LBRACK] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3283), - [sym_rune_literal] = ACTIONS(3283), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3283), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3283), - [sym___single_quote] = ACTIONS(3283), - [sym___c_double_quote] = ACTIONS(3283), - [sym___c_single_quote] = ACTIONS(3283), - [sym___r_double_quote] = ACTIONS(3283), - [sym___r_single_quote] = ACTIONS(3283), + [sym_block_comment] = STATE(1232), + [sym_identifier] = ACTIONS(2901), + [anon_sym_LF] = ACTIONS(2901), + [anon_sym_CR] = ACTIONS(2901), + [anon_sym_CR_LF] = ACTIONS(2901), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_DOT] = ACTIONS(2901), + [anon_sym_as] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_RPAREN] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_fn] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PERCENT] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_mut] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2901), + [anon_sym_spawn] = ACTIONS(2901), + [anon_sym_json_DOTdecode] = ACTIONS(2901), + [anon_sym_LBRACK2] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_LT_DASH] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2901), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2901), + [anon_sym_AMP_CARET] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_PIPE_PIPE] = ACTIONS(2901), + [anon_sym_or] = ACTIONS(2901), + [sym_none] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_nil] = ACTIONS(2901), + [anon_sym_QMARK_DOT] = ACTIONS(2901), + [anon_sym_POUND_LBRACK] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_DOLLARif] = ACTIONS(2901), + [anon_sym_is] = ACTIONS(2901), + [anon_sym_BANGis] = ACTIONS(2901), + [anon_sym_in] = ACTIONS(2901), + [anon_sym_BANGin] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_select] = ACTIONS(2901), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2901), + [anon_sym_sql] = ACTIONS(2901), + [sym_int_literal] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2901), + [sym_rune_literal] = ACTIONS(2901), + [sym_pseudo_compile_time_identifier] = ACTIONS(2901), + [anon_sym_shared] = ACTIONS(2901), + [anon_sym_map_LBRACK] = ACTIONS(2901), + [anon_sym_chan] = ACTIONS(2901), + [anon_sym_thread] = ACTIONS(2901), + [anon_sym_atomic] = ACTIONS(2901), + [sym___double_quote] = ACTIONS(2901), + [sym___single_quote] = ACTIONS(2901), + [sym___c_double_quote] = ACTIONS(2901), + [sym___c_single_quote] = ACTIONS(2901), + [sym___r_double_quote] = ACTIONS(2901), + [sym___r_single_quote] = ACTIONS(2901), }, [1233] = { [sym_line_comment] = STATE(1233), - [sym_identifier] = ACTIONS(3119), - [anon_sym_LF] = ACTIONS(3119), - [anon_sym_CR] = ACTIONS(3119), - [anon_sym_CR_LF] = ACTIONS(3119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_as] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3119), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3119), - [anon_sym_GT] = ACTIONS(3119), - [anon_sym_EQ_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_mut] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_go] = ACTIONS(3119), - [anon_sym_spawn] = ACTIONS(3119), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3119), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_GT_GT_GT] = ACTIONS(3119), - [anon_sym_AMP_CARET] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(3119), - [anon_sym_or] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_nil] = ACTIONS(3119), - [anon_sym_QMARK_DOT] = ACTIONS(3119), - [anon_sym_POUND_LBRACK] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_DOLLARif] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_BANGis] = ACTIONS(3119), - [anon_sym_in] = ACTIONS(3119), - [anon_sym_BANGin] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_rlock] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_sql] = ACTIONS(3119), - [sym_int_literal] = ACTIONS(3119), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [sym_pseudo_compile_time_identifier] = ACTIONS(3119), - [anon_sym_shared] = ACTIONS(3119), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3119), - [anon_sym_thread] = ACTIONS(3119), - [anon_sym_atomic] = ACTIONS(3119), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), + [sym_block_comment] = STATE(1233), + [sym_identifier] = ACTIONS(3242), + [anon_sym_LF] = ACTIONS(3242), + [anon_sym_CR] = ACTIONS(3242), + [anon_sym_CR_LF] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3242), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_COMMA] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_RPAREN] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_fn] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_EQ_EQ] = ACTIONS(3242), + [anon_sym_BANG_EQ] = ACTIONS(3242), + [anon_sym_LT_EQ] = ACTIONS(3242), + [anon_sym_GT_EQ] = ACTIONS(3242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_mut] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3242), + [anon_sym_DASH_DASH] = ACTIONS(3242), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_go] = ACTIONS(3242), + [anon_sym_spawn] = ACTIONS(3242), + [anon_sym_json_DOTdecode] = ACTIONS(3242), + [anon_sym_LBRACK2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3242), + [anon_sym_CARET] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3242), + [anon_sym_LT_LT] = ACTIONS(3242), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3242), + [anon_sym_AMP_CARET] = ACTIONS(3242), + [anon_sym_AMP_AMP] = ACTIONS(3242), + [anon_sym_PIPE_PIPE] = ACTIONS(3242), + [anon_sym_or] = ACTIONS(3242), + [sym_none] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_nil] = ACTIONS(3242), + [anon_sym_QMARK_DOT] = ACTIONS(3242), + [anon_sym_POUND_LBRACK] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_DOLLARif] = ACTIONS(3242), + [anon_sym_is] = ACTIONS(3242), + [anon_sym_BANGis] = ACTIONS(3242), + [anon_sym_in] = ACTIONS(3242), + [anon_sym_BANGin] = ACTIONS(3242), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_lock] = ACTIONS(3242), + [anon_sym_rlock] = ACTIONS(3242), + [anon_sym_unsafe] = ACTIONS(3242), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3242), + [sym_rune_literal] = ACTIONS(3242), + [sym_pseudo_compile_time_identifier] = ACTIONS(3242), + [anon_sym_shared] = ACTIONS(3242), + [anon_sym_map_LBRACK] = ACTIONS(3242), + [anon_sym_chan] = ACTIONS(3242), + [anon_sym_thread] = ACTIONS(3242), + [anon_sym_atomic] = ACTIONS(3242), + [sym___double_quote] = ACTIONS(3242), + [sym___single_quote] = ACTIONS(3242), + [sym___c_double_quote] = ACTIONS(3242), + [sym___c_single_quote] = ACTIONS(3242), + [sym___r_double_quote] = ACTIONS(3242), + [sym___r_single_quote] = ACTIONS(3242), }, [1234] = { [sym_line_comment] = STATE(1234), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_RPAREN] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), + [sym_block_comment] = STATE(1234), + [sym_identifier] = ACTIONS(2943), + [anon_sym_LF] = ACTIONS(2943), + [anon_sym_CR] = ACTIONS(2943), + [anon_sym_CR_LF] = ACTIONS(2943), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2943), + [anon_sym_DOT] = ACTIONS(2943), + [anon_sym_as] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_COMMA] = ACTIONS(2943), + [anon_sym_RBRACE] = ACTIONS(2943), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_RPAREN] = ACTIONS(2943), + [anon_sym_PIPE] = ACTIONS(2943), + [anon_sym_fn] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_mut] = ACTIONS(2943), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_go] = ACTIONS(2943), + [anon_sym_spawn] = ACTIONS(2943), + [anon_sym_json_DOTdecode] = ACTIONS(2943), + [anon_sym_LBRACK2] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2943), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2943), + [anon_sym_GT_GT_GT] = ACTIONS(2943), + [anon_sym_AMP_CARET] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2943), + [anon_sym_or] = ACTIONS(2943), + [sym_none] = ACTIONS(2943), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [sym_nil] = ACTIONS(2943), + [anon_sym_QMARK_DOT] = ACTIONS(2943), + [anon_sym_POUND_LBRACK] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_DOLLARif] = ACTIONS(2943), + [anon_sym_is] = ACTIONS(2943), + [anon_sym_BANGis] = ACTIONS(2943), + [anon_sym_in] = ACTIONS(2943), + [anon_sym_BANGin] = ACTIONS(2943), + [anon_sym_match] = ACTIONS(2943), + [anon_sym_select] = ACTIONS(2943), + [anon_sym_lock] = ACTIONS(2943), + [anon_sym_rlock] = ACTIONS(2943), + [anon_sym_unsafe] = ACTIONS(2943), + [anon_sym_sql] = ACTIONS(2943), + [sym_int_literal] = ACTIONS(2943), + [sym_float_literal] = ACTIONS(2943), + [sym_rune_literal] = ACTIONS(2943), + [sym_pseudo_compile_time_identifier] = ACTIONS(2943), + [anon_sym_shared] = ACTIONS(2943), + [anon_sym_map_LBRACK] = ACTIONS(2943), + [anon_sym_chan] = ACTIONS(2943), + [anon_sym_thread] = ACTIONS(2943), + [anon_sym_atomic] = ACTIONS(2943), + [sym___double_quote] = ACTIONS(2943), + [sym___single_quote] = ACTIONS(2943), + [sym___c_double_quote] = ACTIONS(2943), + [sym___c_single_quote] = ACTIONS(2943), + [sym___r_double_quote] = ACTIONS(2943), + [sym___r_single_quote] = ACTIONS(2943), }, [1235] = { [sym_line_comment] = STATE(1235), - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(1957), - [sym_plain_type] = STATE(1988), - [sym__plain_type_without_special] = STATE(2010), - [sym_anon_struct_type] = STATE(2009), - [sym_multi_return_type] = STATE(2010), - [sym_result_type] = STATE(2010), - [sym_option_type] = STATE(2010), - [sym_qualified_type] = STATE(1957), - [sym_fixed_array_type] = STATE(2009), - [sym_array_type] = STATE(2009), - [sym_pointer_type] = STATE(2009), - [sym_wrong_pointer_type] = STATE(2009), - [sym_map_type] = STATE(2009), - [sym_channel_type] = STATE(2009), - [sym_shared_type] = STATE(2009), - [sym_thread_type] = STATE(2009), - [sym_atomic_type] = STATE(2009), - [sym_generic_type] = STATE(2009), - [sym_function_type] = STATE(2009), - [sym_identifier] = ACTIONS(3790), + [sym_block_comment] = STATE(1235), + [sym_identifier] = ACTIONS(2909), + [anon_sym_LF] = ACTIONS(2909), + [anon_sym_CR] = ACTIONS(2909), + [anon_sym_CR_LF] = ACTIONS(2909), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3796), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3798), - [anon_sym_COLON] = ACTIONS(625), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3800), - [anon_sym_BANG] = ACTIONS(3802), - [anon_sym_LBRACK2] = ACTIONS(3804), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3806), - [anon_sym_LT_DASH] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_AMP_CARET_EQ] = ACTIONS(625), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(3808), - [anon_sym_map_LBRACK] = ACTIONS(3810), - [anon_sym_chan] = ACTIONS(3812), - [anon_sym_thread] = ACTIONS(3814), - [anon_sym_atomic] = ACTIONS(3816), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2909), + [anon_sym_as] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_COMMA] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_RPAREN] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_fn] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PERCENT] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_EQ_EQ] = ACTIONS(2909), + [anon_sym_BANG_EQ] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_mut] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2909), + [anon_sym_json_DOTdecode] = ACTIONS(2909), + [anon_sym_LBRACK2] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2909), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2909), + [anon_sym_AMP_CARET] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_PIPE_PIPE] = ACTIONS(2909), + [anon_sym_or] = ACTIONS(2909), + [sym_none] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_nil] = ACTIONS(2909), + [anon_sym_QMARK_DOT] = ACTIONS(2909), + [anon_sym_POUND_LBRACK] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_DOLLARif] = ACTIONS(2909), + [anon_sym_is] = ACTIONS(2909), + [anon_sym_BANGis] = ACTIONS(2909), + [anon_sym_in] = ACTIONS(2909), + [anon_sym_BANGin] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_select] = ACTIONS(2909), + [anon_sym_lock] = ACTIONS(2909), + [anon_sym_rlock] = ACTIONS(2909), + [anon_sym_unsafe] = ACTIONS(2909), + [anon_sym_sql] = ACTIONS(2909), + [sym_int_literal] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), + [sym_rune_literal] = ACTIONS(2909), + [sym_pseudo_compile_time_identifier] = ACTIONS(2909), + [anon_sym_shared] = ACTIONS(2909), + [anon_sym_map_LBRACK] = ACTIONS(2909), + [anon_sym_chan] = ACTIONS(2909), + [anon_sym_thread] = ACTIONS(2909), + [anon_sym_atomic] = ACTIONS(2909), + [sym___double_quote] = ACTIONS(2909), + [sym___single_quote] = ACTIONS(2909), + [sym___c_double_quote] = ACTIONS(2909), + [sym___c_single_quote] = ACTIONS(2909), + [sym___r_double_quote] = ACTIONS(2909), + [sym___r_single_quote] = ACTIONS(2909), }, [1236] = { [sym_line_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3399), - [anon_sym_LF] = ACTIONS(3399), - [anon_sym_CR] = ACTIONS(3399), - [anon_sym_CR_LF] = ACTIONS(3399), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_RPAREN] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_fn] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_EQ_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_mut] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_go] = ACTIONS(3399), - [anon_sym_spawn] = ACTIONS(3399), - [anon_sym_json_DOTdecode] = ACTIONS(3399), - [anon_sym_LBRACK2] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3399), - [anon_sym_GT_GT] = ACTIONS(3399), - [anon_sym_GT_GT_GT] = ACTIONS(3399), - [anon_sym_AMP_CARET] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3399), - [sym_none] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_nil] = ACTIONS(3399), - [anon_sym_QMARK_DOT] = ACTIONS(3399), - [anon_sym_POUND_LBRACK] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOLLARif] = ACTIONS(3399), - [anon_sym_is] = ACTIONS(3399), - [anon_sym_BANGis] = ACTIONS(3399), - [anon_sym_in] = ACTIONS(3399), - [anon_sym_BANGin] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_rlock] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_sql] = ACTIONS(3399), - [sym_int_literal] = ACTIONS(3399), - [sym_float_literal] = ACTIONS(3399), - [sym_rune_literal] = ACTIONS(3399), - [sym_pseudo_compile_time_identifier] = ACTIONS(3399), - [anon_sym_shared] = ACTIONS(3399), - [anon_sym_map_LBRACK] = ACTIONS(3399), - [anon_sym_chan] = ACTIONS(3399), - [anon_sym_thread] = ACTIONS(3399), - [anon_sym_atomic] = ACTIONS(3399), - [sym___double_quote] = ACTIONS(3399), - [sym___single_quote] = ACTIONS(3399), - [sym___c_double_quote] = ACTIONS(3399), - [sym___c_single_quote] = ACTIONS(3399), - [sym___r_double_quote] = ACTIONS(3399), - [sym___r_single_quote] = ACTIONS(3399), + [sym_block_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_RPAREN] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), }, [1237] = { [sym_line_comment] = STATE(1237), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), + [sym_block_comment] = STATE(1237), + [sym_identifier] = ACTIONS(3418), + [anon_sym_LF] = ACTIONS(3418), + [anon_sym_CR] = ACTIONS(3418), + [anon_sym_CR_LF] = ACTIONS(3418), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3418), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_as] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_COMMA] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_RPAREN] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_fn] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_PERCENT] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_EQ_EQ] = ACTIONS(3418), + [anon_sym_BANG_EQ] = ACTIONS(3418), + [anon_sym_LT_EQ] = ACTIONS(3418), + [anon_sym_GT_EQ] = ACTIONS(3418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(3418), + [anon_sym_mut] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3418), + [anon_sym_spawn] = ACTIONS(3418), + [anon_sym_json_DOTdecode] = ACTIONS(3418), + [anon_sym_LBRACK2] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_LT_DASH] = ACTIONS(3418), + [anon_sym_LT_LT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(3418), + [anon_sym_GT_GT_GT] = ACTIONS(3418), + [anon_sym_AMP_CARET] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_or] = ACTIONS(3418), + [sym_none] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_nil] = ACTIONS(3418), + [anon_sym_QMARK_DOT] = ACTIONS(3418), + [anon_sym_POUND_LBRACK] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_DOLLARif] = ACTIONS(3418), + [anon_sym_is] = ACTIONS(3418), + [anon_sym_BANGis] = ACTIONS(3418), + [anon_sym_in] = ACTIONS(3418), + [anon_sym_BANGin] = ACTIONS(3418), + [anon_sym_match] = ACTIONS(3418), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3418), + [anon_sym_rlock] = ACTIONS(3418), + [anon_sym_unsafe] = ACTIONS(3418), + [anon_sym_sql] = ACTIONS(3418), + [sym_int_literal] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3418), + [sym_rune_literal] = ACTIONS(3418), + [sym_pseudo_compile_time_identifier] = ACTIONS(3418), + [anon_sym_shared] = ACTIONS(3418), + [anon_sym_map_LBRACK] = ACTIONS(3418), + [anon_sym_chan] = ACTIONS(3418), + [anon_sym_thread] = ACTIONS(3418), + [anon_sym_atomic] = ACTIONS(3418), + [sym___double_quote] = ACTIONS(3418), + [sym___single_quote] = ACTIONS(3418), + [sym___c_double_quote] = ACTIONS(3418), + [sym___c_single_quote] = ACTIONS(3418), + [sym___r_double_quote] = ACTIONS(3418), + [sym___r_single_quote] = ACTIONS(3418), }, [1238] = { [sym_line_comment] = STATE(1238), - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(1957), - [sym_plain_type] = STATE(1992), - [sym__plain_type_without_special] = STATE(2010), - [sym_anon_struct_type] = STATE(2009), - [sym_multi_return_type] = STATE(2010), - [sym_result_type] = STATE(2010), - [sym_option_type] = STATE(2010), - [sym_qualified_type] = STATE(1957), - [sym_fixed_array_type] = STATE(2009), - [sym_array_type] = STATE(2009), - [sym_pointer_type] = STATE(2009), - [sym_wrong_pointer_type] = STATE(2009), - [sym_map_type] = STATE(2009), - [sym_channel_type] = STATE(2009), - [sym_shared_type] = STATE(2009), - [sym_thread_type] = STATE(2009), - [sym_atomic_type] = STATE(2009), - [sym_generic_type] = STATE(2009), - [sym_function_type] = STATE(2009), - [sym_identifier] = ACTIONS(3790), + [sym_block_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3314), + [anon_sym_LF] = ACTIONS(3314), + [anon_sym_CR] = ACTIONS(3314), + [anon_sym_CR_LF] = ACTIONS(3314), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3796), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3798), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3800), - [anon_sym_BANG] = ACTIONS(3802), - [anon_sym_LBRACK2] = ACTIONS(3804), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3806), - [anon_sym_LT_DASH] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3808), - [anon_sym_map_LBRACK] = ACTIONS(3810), - [anon_sym_chan] = ACTIONS(3812), - [anon_sym_thread] = ACTIONS(3814), - [anon_sym_atomic] = ACTIONS(3816), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_COMMA] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_RPAREN] = ACTIONS(3314), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_EQ_EQ] = ACTIONS(3314), + [anon_sym_BANG_EQ] = ACTIONS(3314), + [anon_sym_LT_EQ] = ACTIONS(3314), + [anon_sym_GT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3314), + [anon_sym_mut] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_go] = ACTIONS(3314), + [anon_sym_spawn] = ACTIONS(3314), + [anon_sym_json_DOTdecode] = ACTIONS(3314), + [anon_sym_LBRACK2] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_CARET] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3314), + [anon_sym_LT_LT] = ACTIONS(3314), + [anon_sym_GT_GT] = ACTIONS(3314), + [anon_sym_GT_GT_GT] = ACTIONS(3314), + [anon_sym_AMP_CARET] = ACTIONS(3314), + [anon_sym_AMP_AMP] = ACTIONS(3314), + [anon_sym_PIPE_PIPE] = ACTIONS(3314), + [anon_sym_or] = ACTIONS(3314), + [sym_none] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_nil] = ACTIONS(3314), + [anon_sym_QMARK_DOT] = ACTIONS(3314), + [anon_sym_POUND_LBRACK] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_is] = ACTIONS(3314), + [anon_sym_BANGis] = ACTIONS(3314), + [anon_sym_in] = ACTIONS(3314), + [anon_sym_BANGin] = ACTIONS(3314), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3314), + [anon_sym_rlock] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(3314), + [anon_sym_sql] = ACTIONS(3314), + [sym_int_literal] = ACTIONS(3314), + [sym_float_literal] = ACTIONS(3314), + [sym_rune_literal] = ACTIONS(3314), + [sym_pseudo_compile_time_identifier] = ACTIONS(3314), + [anon_sym_shared] = ACTIONS(3314), + [anon_sym_map_LBRACK] = ACTIONS(3314), + [anon_sym_chan] = ACTIONS(3314), + [anon_sym_thread] = ACTIONS(3314), + [anon_sym_atomic] = ACTIONS(3314), + [sym___double_quote] = ACTIONS(3314), + [sym___single_quote] = ACTIONS(3314), + [sym___c_double_quote] = ACTIONS(3314), + [sym___c_single_quote] = ACTIONS(3314), + [sym___r_double_quote] = ACTIONS(3314), + [sym___r_single_quote] = ACTIONS(3314), }, [1239] = { [sym_line_comment] = STATE(1239), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_RPAREN] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), + [sym_block_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_RPAREN] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [sym_pseudo_compile_time_identifier] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), }, [1240] = { [sym_line_comment] = STATE(1240), - [sym_reference_expression] = STATE(4525), - [sym_type_reference_expression] = STATE(1957), - [sym_plain_type] = STATE(1963), - [sym__plain_type_without_special] = STATE(2010), - [sym_anon_struct_type] = STATE(2009), - [sym_multi_return_type] = STATE(2010), - [sym_result_type] = STATE(2010), - [sym_option_type] = STATE(2010), - [sym_qualified_type] = STATE(1957), - [sym_fixed_array_type] = STATE(2009), - [sym_array_type] = STATE(2009), - [sym_pointer_type] = STATE(2009), - [sym_wrong_pointer_type] = STATE(2009), - [sym_map_type] = STATE(2009), - [sym_channel_type] = STATE(2009), - [sym_shared_type] = STATE(2009), - [sym_thread_type] = STATE(2009), - [sym_atomic_type] = STATE(2009), - [sym_generic_type] = STATE(2009), - [sym_function_type] = STATE(2009), - [sym_identifier] = ACTIONS(3790), + [sym_block_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3794), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3796), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(3798), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(3800), - [anon_sym_BANG] = ACTIONS(3802), - [anon_sym_LBRACK2] = ACTIONS(3804), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3806), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(3808), - [anon_sym_map_LBRACK] = ACTIONS(3810), - [anon_sym_chan] = ACTIONS(3812), - [anon_sym_thread] = ACTIONS(3814), - [anon_sym_atomic] = ACTIONS(3816), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_RPAREN] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [sym_pseudo_compile_time_identifier] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), }, [1241] = { [sym_line_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), + [sym_block_comment] = STATE(1241), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_COMMA] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_RPAREN] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2695), + [anon_sym_POUND_LBRACK] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2695), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), }, [1242] = { [sym_line_comment] = STATE(1242), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), + [sym_block_comment] = STATE(1242), + [sym_identifier] = ACTIONS(3346), + [anon_sym_LF] = ACTIONS(3346), + [anon_sym_CR] = ACTIONS(3346), + [anon_sym_CR_LF] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3346), + [sym___single_quote] = ACTIONS(3346), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3346), + [sym___r_double_quote] = ACTIONS(3346), + [sym___r_single_quote] = ACTIONS(3346), }, [1243] = { [sym_line_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3007), - [anon_sym_LF] = ACTIONS(3007), - [anon_sym_CR] = ACTIONS(3007), - [anon_sym_CR_LF] = ACTIONS(3007), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_fn] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3007), - [anon_sym_GT] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_mut] = ACTIONS(3007), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_go] = ACTIONS(3007), - [anon_sym_spawn] = ACTIONS(3007), - [anon_sym_json_DOTdecode] = ACTIONS(3007), - [anon_sym_LBRACK2] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_GT_GT_GT] = ACTIONS(3007), - [anon_sym_AMP_CARET] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_or] = ACTIONS(3007), - [sym_none] = ACTIONS(3007), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_nil] = ACTIONS(3007), - [anon_sym_QMARK_DOT] = ACTIONS(3007), - [anon_sym_POUND_LBRACK] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_DOLLARif] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_in] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_select] = ACTIONS(3007), - [anon_sym_lock] = ACTIONS(3007), - [anon_sym_rlock] = ACTIONS(3007), - [anon_sym_unsafe] = ACTIONS(3007), - [anon_sym_sql] = ACTIONS(3007), - [sym_int_literal] = ACTIONS(3007), - [sym_float_literal] = ACTIONS(3007), - [sym_rune_literal] = ACTIONS(3007), - [sym_pseudo_compile_time_identifier] = ACTIONS(3007), - [anon_sym_shared] = ACTIONS(3007), - [anon_sym_map_LBRACK] = ACTIONS(3007), - [anon_sym_chan] = ACTIONS(3007), - [anon_sym_thread] = ACTIONS(3007), - [anon_sym_atomic] = ACTIONS(3007), - [sym___double_quote] = ACTIONS(3007), - [sym___single_quote] = ACTIONS(3007), - [sym___c_double_quote] = ACTIONS(3007), - [sym___c_single_quote] = ACTIONS(3007), - [sym___r_double_quote] = ACTIONS(3007), - [sym___r_single_quote] = ACTIONS(3007), + [sym_block_comment] = STATE(1243), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), }, [1244] = { [sym_line_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), + [sym_block_comment] = STATE(1244), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), }, [1245] = { [sym_line_comment] = STATE(1245), - [sym_identifier] = ACTIONS(2965), - [anon_sym_LF] = ACTIONS(2965), - [anon_sym_CR] = ACTIONS(2965), - [anon_sym_CR_LF] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [sym___double_quote] = ACTIONS(2965), - [sym___single_quote] = ACTIONS(2965), - [sym___c_double_quote] = ACTIONS(2965), - [sym___c_single_quote] = ACTIONS(2965), - [sym___r_double_quote] = ACTIONS(2965), - [sym___r_single_quote] = ACTIONS(2965), + [sym_block_comment] = STATE(1245), + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(1949), + [sym_plain_type] = STATE(2165), + [sym__plain_type_without_special] = STATE(2134), + [sym_anon_struct_type] = STATE(2160), + [sym_multi_return_type] = STATE(2134), + [sym_result_type] = STATE(2134), + [sym_option_type] = STATE(2134), + [sym_qualified_type] = STATE(1949), + [sym_fixed_array_type] = STATE(2160), + [sym_array_type] = STATE(2160), + [sym_pointer_type] = STATE(2160), + [sym_wrong_pointer_type] = STATE(2160), + [sym_map_type] = STATE(2160), + [sym_channel_type] = STATE(2160), + [sym_shared_type] = STATE(2160), + [sym_thread_type] = STATE(2160), + [sym_atomic_type] = STATE(2160), + [sym_generic_type] = STATE(2160), + [sym_function_type] = STATE(2160), + [sym_identifier] = ACTIONS(3818), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(599), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3820), + [anon_sym_EQ] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(3826), + [anon_sym_COLON] = ACTIONS(599), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(3828), + [anon_sym_BANG] = ACTIONS(3830), + [anon_sym_LBRACK2] = ACTIONS(3832), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(3834), + [anon_sym_LT_DASH] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_STAR_EQ] = ACTIONS(599), + [anon_sym_SLASH_EQ] = ACTIONS(599), + [anon_sym_PERCENT_EQ] = ACTIONS(599), + [anon_sym_LT_LT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_EQ] = ACTIONS(599), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), + [anon_sym_AMP_EQ] = ACTIONS(599), + [anon_sym_AMP_CARET_EQ] = ACTIONS(599), + [anon_sym_PLUS_EQ] = ACTIONS(599), + [anon_sym_DASH_EQ] = ACTIONS(599), + [anon_sym_PIPE_EQ] = ACTIONS(599), + [anon_sym_CARET_EQ] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(3836), + [anon_sym_map_LBRACK] = ACTIONS(3838), + [anon_sym_chan] = ACTIONS(3840), + [anon_sym_thread] = ACTIONS(3842), + [anon_sym_atomic] = ACTIONS(3844), }, [1246] = { [sym_line_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), + [sym_block_comment] = STATE(1246), + [sym_identifier] = ACTIONS(3310), + [anon_sym_LF] = ACTIONS(3310), + [anon_sym_CR] = ACTIONS(3310), + [anon_sym_CR_LF] = ACTIONS(3310), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3310), + [anon_sym_COMMA] = ACTIONS(3310), + [anon_sym_RBRACE] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3310), + [anon_sym_RPAREN] = ACTIONS(3310), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_fn] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3310), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3310), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_EQ_EQ] = ACTIONS(3310), + [anon_sym_BANG_EQ] = ACTIONS(3310), + [anon_sym_LT_EQ] = ACTIONS(3310), + [anon_sym_GT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_mut] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3310), + [anon_sym_DASH_DASH] = ACTIONS(3310), + [anon_sym_QMARK] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3310), + [anon_sym_json_DOTdecode] = ACTIONS(3310), + [anon_sym_LBRACK2] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3310), + [anon_sym_CARET] = ACTIONS(3310), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_LT_DASH] = ACTIONS(3310), + [anon_sym_LT_LT] = ACTIONS(3310), + [anon_sym_GT_GT] = ACTIONS(3310), + [anon_sym_GT_GT_GT] = ACTIONS(3310), + [anon_sym_AMP_CARET] = ACTIONS(3310), + [anon_sym_AMP_AMP] = ACTIONS(3310), + [anon_sym_PIPE_PIPE] = ACTIONS(3310), + [anon_sym_or] = ACTIONS(3310), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_QMARK_DOT] = ACTIONS(3310), + [anon_sym_POUND_LBRACK] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3310), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_BANGin] = ACTIONS(3310), + [anon_sym_match] = ACTIONS(3310), + [anon_sym_select] = ACTIONS(3310), + [anon_sym_lock] = ACTIONS(3310), + [anon_sym_rlock] = ACTIONS(3310), + [anon_sym_unsafe] = ACTIONS(3310), + [anon_sym_sql] = ACTIONS(3310), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3310), + [sym_rune_literal] = ACTIONS(3310), + [sym_pseudo_compile_time_identifier] = ACTIONS(3310), + [anon_sym_shared] = ACTIONS(3310), + [anon_sym_map_LBRACK] = ACTIONS(3310), + [anon_sym_chan] = ACTIONS(3310), + [anon_sym_thread] = ACTIONS(3310), + [anon_sym_atomic] = ACTIONS(3310), + [sym___double_quote] = ACTIONS(3310), + [sym___single_quote] = ACTIONS(3310), + [sym___c_double_quote] = ACTIONS(3310), + [sym___c_single_quote] = ACTIONS(3310), + [sym___r_double_quote] = ACTIONS(3310), + [sym___r_single_quote] = ACTIONS(3310), }, [1247] = { [sym_line_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), + [sym_block_comment] = STATE(1247), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LF] = ACTIONS(3306), + [anon_sym_CR] = ACTIONS(3306), + [anon_sym_CR_LF] = ACTIONS(3306), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_COMMA] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_RPAREN] = ACTIONS(3306), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_fn] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3306), + [anon_sym_BANG_EQ] = ACTIONS(3306), + [anon_sym_LT_EQ] = ACTIONS(3306), + [anon_sym_GT_EQ] = ACTIONS(3306), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_mut] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_go] = ACTIONS(3306), + [anon_sym_spawn] = ACTIONS(3306), + [anon_sym_json_DOTdecode] = ACTIONS(3306), + [anon_sym_LBRACK2] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_CARET] = ACTIONS(3306), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3306), + [anon_sym_LT_LT] = ACTIONS(3306), + [anon_sym_GT_GT] = ACTIONS(3306), + [anon_sym_GT_GT_GT] = ACTIONS(3306), + [anon_sym_AMP_CARET] = ACTIONS(3306), + [anon_sym_AMP_AMP] = ACTIONS(3306), + [anon_sym_PIPE_PIPE] = ACTIONS(3306), + [anon_sym_or] = ACTIONS(3306), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_QMARK_DOT] = ACTIONS(3306), + [anon_sym_POUND_LBRACK] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_DOLLARif] = ACTIONS(3306), + [anon_sym_is] = ACTIONS(3306), + [anon_sym_BANGis] = ACTIONS(3306), + [anon_sym_in] = ACTIONS(3306), + [anon_sym_BANGin] = ACTIONS(3306), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_select] = ACTIONS(3306), + [anon_sym_lock] = ACTIONS(3306), + [anon_sym_rlock] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(3306), + [anon_sym_sql] = ACTIONS(3306), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3306), + [sym_rune_literal] = ACTIONS(3306), + [sym_pseudo_compile_time_identifier] = ACTIONS(3306), + [anon_sym_shared] = ACTIONS(3306), + [anon_sym_map_LBRACK] = ACTIONS(3306), + [anon_sym_chan] = ACTIONS(3306), + [anon_sym_thread] = ACTIONS(3306), + [anon_sym_atomic] = ACTIONS(3306), + [sym___double_quote] = ACTIONS(3306), + [sym___single_quote] = ACTIONS(3306), + [sym___c_double_quote] = ACTIONS(3306), + [sym___c_single_quote] = ACTIONS(3306), + [sym___r_double_quote] = ACTIONS(3306), + [sym___r_single_quote] = ACTIONS(3306), }, [1248] = { [sym_line_comment] = STATE(1248), - [sym_identifier] = ACTIONS(3167), - [anon_sym_LF] = ACTIONS(3167), - [anon_sym_CR] = ACTIONS(3167), - [anon_sym_CR_LF] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), + [sym_block_comment] = STATE(1248), + [sym_identifier] = ACTIONS(2975), + [anon_sym_LF] = ACTIONS(2975), + [anon_sym_CR] = ACTIONS(2975), + [anon_sym_CR_LF] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2975), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_as] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_COMMA] = ACTIONS(2975), + [anon_sym_RBRACE] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_RPAREN] = ACTIONS(2975), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_mut] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_QMARK] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(3846), + [anon_sym_go] = ACTIONS(2975), + [anon_sym_spawn] = ACTIONS(2975), + [anon_sym_json_DOTdecode] = ACTIONS(2975), + [anon_sym_LBRACK2] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_LT_DASH] = ACTIONS(2975), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2975), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_or] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_nil] = ACTIONS(2975), + [anon_sym_QMARK_DOT] = ACTIONS(2975), + [anon_sym_POUND_LBRACK] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_DOLLARif] = ACTIONS(2975), + [anon_sym_is] = ACTIONS(2975), + [anon_sym_BANGis] = ACTIONS(2975), + [anon_sym_in] = ACTIONS(2975), + [anon_sym_BANGin] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_select] = ACTIONS(2975), + [anon_sym_lock] = ACTIONS(2975), + [anon_sym_rlock] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_sql] = ACTIONS(2975), + [sym_int_literal] = ACTIONS(2975), + [sym_float_literal] = ACTIONS(2975), + [sym_rune_literal] = ACTIONS(2975), + [sym_pseudo_compile_time_identifier] = ACTIONS(2975), + [anon_sym_shared] = ACTIONS(2975), + [anon_sym_map_LBRACK] = ACTIONS(2975), + [anon_sym_chan] = ACTIONS(2975), + [anon_sym_thread] = ACTIONS(2975), + [anon_sym_atomic] = ACTIONS(2975), + [sym___double_quote] = ACTIONS(2975), + [sym___single_quote] = ACTIONS(2975), + [sym___c_double_quote] = ACTIONS(2975), + [sym___c_single_quote] = ACTIONS(2975), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2975), }, [1249] = { [sym_line_comment] = STATE(1249), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [sym_block_comment] = STATE(1249), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LF] = ACTIONS(3334), + [anon_sym_CR] = ACTIONS(3334), + [anon_sym_CR_LF] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_as] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_mut] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_go] = ACTIONS(3334), + [anon_sym_spawn] = ACTIONS(3334), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_LBRACK2] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [sym_none] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_nil] = ACTIONS(3334), + [anon_sym_QMARK_DOT] = ACTIONS(3334), + [anon_sym_POUND_LBRACK] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_DOLLARif] = ACTIONS(3334), + [anon_sym_is] = ACTIONS(3334), + [anon_sym_BANGis] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_BANGin] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3334), + [anon_sym_select] = ACTIONS(3334), + [anon_sym_lock] = ACTIONS(3334), + [anon_sym_rlock] = ACTIONS(3334), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3334), + [sym_int_literal] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_shared] = ACTIONS(3334), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3334), + [anon_sym_thread] = ACTIONS(3334), + [anon_sym_atomic] = ACTIONS(3334), + [sym___double_quote] = ACTIONS(3334), + [sym___single_quote] = ACTIONS(3334), + [sym___c_double_quote] = ACTIONS(3334), + [sym___c_single_quote] = ACTIONS(3334), + [sym___r_double_quote] = ACTIONS(3334), + [sym___r_single_quote] = ACTIONS(3334), }, [1250] = { [sym_line_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [sym_block_comment] = STATE(1250), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1251] = { [sym_line_comment] = STATE(1251), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(3411), - [anon_sym_CR] = ACTIONS(3411), - [anon_sym_CR_LF] = ACTIONS(3411), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_fn] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_EQ_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_LT_EQ] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_mut] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_go] = ACTIONS(3411), - [anon_sym_spawn] = ACTIONS(3411), - [anon_sym_json_DOTdecode] = ACTIONS(3411), - [anon_sym_LBRACK2] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3411), - [anon_sym_LT_DASH] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3411), - [anon_sym_GT_GT_GT] = ACTIONS(3411), - [anon_sym_AMP_CARET] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3411), - [sym_none] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_nil] = ACTIONS(3411), - [anon_sym_QMARK_DOT] = ACTIONS(3411), - [anon_sym_POUND_LBRACK] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOLLARif] = ACTIONS(3411), - [anon_sym_is] = ACTIONS(3411), - [anon_sym_BANGis] = ACTIONS(3411), - [anon_sym_in] = ACTIONS(3411), - [anon_sym_BANGin] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_rlock] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_sql] = ACTIONS(3411), - [sym_int_literal] = ACTIONS(3411), - [sym_float_literal] = ACTIONS(3411), - [sym_rune_literal] = ACTIONS(3411), - [sym_pseudo_compile_time_identifier] = ACTIONS(3411), - [anon_sym_shared] = ACTIONS(3411), - [anon_sym_map_LBRACK] = ACTIONS(3411), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3411), - [anon_sym_atomic] = ACTIONS(3411), - [sym___double_quote] = ACTIONS(3411), - [sym___single_quote] = ACTIONS(3411), - [sym___c_double_quote] = ACTIONS(3411), - [sym___c_single_quote] = ACTIONS(3411), - [sym___r_double_quote] = ACTIONS(3411), - [sym___r_single_quote] = ACTIONS(3411), - }, - [1252] = { - [sym_line_comment] = STATE(1252), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_RPAREN] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [sym_pseudo_compile_time_identifier] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [1253] = { - [sym_line_comment] = STATE(1253), - [sym_identifier] = ACTIONS(3415), - [anon_sym_LF] = ACTIONS(3415), - [anon_sym_CR] = ACTIONS(3415), - [anon_sym_CR_LF] = ACTIONS(3415), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3415), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_mut] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_go] = ACTIONS(3415), - [anon_sym_spawn] = ACTIONS(3415), - [anon_sym_json_DOTdecode] = ACTIONS(3415), - [anon_sym_LBRACK2] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3415), - [anon_sym_GT_GT] = ACTIONS(3415), - [anon_sym_GT_GT_GT] = ACTIONS(3415), - [anon_sym_AMP_CARET] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3415), - [sym_none] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_nil] = ACTIONS(3415), - [anon_sym_QMARK_DOT] = ACTIONS(3415), - [anon_sym_POUND_LBRACK] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOLLARif] = ACTIONS(3415), - [anon_sym_is] = ACTIONS(3415), - [anon_sym_BANGis] = ACTIONS(3415), - [anon_sym_in] = ACTIONS(3415), - [anon_sym_BANGin] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_rlock] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_sql] = ACTIONS(3415), - [sym_int_literal] = ACTIONS(3415), - [sym_float_literal] = ACTIONS(3415), - [sym_rune_literal] = ACTIONS(3415), - [sym_pseudo_compile_time_identifier] = ACTIONS(3415), - [anon_sym_shared] = ACTIONS(3415), - [anon_sym_map_LBRACK] = ACTIONS(3415), - [anon_sym_chan] = ACTIONS(3415), - [anon_sym_thread] = ACTIONS(3415), - [anon_sym_atomic] = ACTIONS(3415), - [sym___double_quote] = ACTIONS(3415), - [sym___single_quote] = ACTIONS(3415), - [sym___c_double_quote] = ACTIONS(3415), - [sym___c_single_quote] = ACTIONS(3415), - [sym___r_double_quote] = ACTIONS(3415), - [sym___r_single_quote] = ACTIONS(3415), - }, - [1254] = { - [sym_line_comment] = STATE(1254), - [sym_identifier] = ACTIONS(3419), - [anon_sym_LF] = ACTIONS(3419), - [anon_sym_CR] = ACTIONS(3419), - [anon_sym_CR_LF] = ACTIONS(3419), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3419), - [anon_sym_fn] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_mut] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_go] = ACTIONS(3419), - [anon_sym_spawn] = ACTIONS(3419), - [anon_sym_json_DOTdecode] = ACTIONS(3419), - [anon_sym_LBRACK2] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3419), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_GT_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_CARET] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3419), - [sym_none] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_nil] = ACTIONS(3419), - [anon_sym_QMARK_DOT] = ACTIONS(3419), - [anon_sym_POUND_LBRACK] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOLLARif] = ACTIONS(3419), - [anon_sym_is] = ACTIONS(3419), - [anon_sym_BANGis] = ACTIONS(3419), - [anon_sym_in] = ACTIONS(3419), - [anon_sym_BANGin] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_rlock] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_sql] = ACTIONS(3419), - [sym_int_literal] = ACTIONS(3419), - [sym_float_literal] = ACTIONS(3419), - [sym_rune_literal] = ACTIONS(3419), - [sym_pseudo_compile_time_identifier] = ACTIONS(3419), - [anon_sym_shared] = ACTIONS(3419), - [anon_sym_map_LBRACK] = ACTIONS(3419), - [anon_sym_chan] = ACTIONS(3419), - [anon_sym_thread] = ACTIONS(3419), - [anon_sym_atomic] = ACTIONS(3419), - [sym___double_quote] = ACTIONS(3419), - [sym___single_quote] = ACTIONS(3419), - [sym___c_double_quote] = ACTIONS(3419), - [sym___c_single_quote] = ACTIONS(3419), - [sym___r_double_quote] = ACTIONS(3419), - [sym___r_single_quote] = ACTIONS(3419), - }, - [1255] = { - [sym_line_comment] = STATE(1255), - [sym_identifier] = ACTIONS(3423), - [anon_sym_LF] = ACTIONS(3423), - [anon_sym_CR] = ACTIONS(3423), - [anon_sym_CR_LF] = ACTIONS(3423), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3423), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_mut] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_go] = ACTIONS(3423), - [anon_sym_spawn] = ACTIONS(3423), - [anon_sym_json_DOTdecode] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3423), - [anon_sym_GT_GT] = ACTIONS(3423), - [anon_sym_GT_GT_GT] = ACTIONS(3423), - [anon_sym_AMP_CARET] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3423), - [sym_none] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_nil] = ACTIONS(3423), - [anon_sym_QMARK_DOT] = ACTIONS(3423), - [anon_sym_POUND_LBRACK] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOLLARif] = ACTIONS(3423), - [anon_sym_is] = ACTIONS(3423), - [anon_sym_BANGis] = ACTIONS(3423), - [anon_sym_in] = ACTIONS(3423), - [anon_sym_BANGin] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [anon_sym_lock] = ACTIONS(3423), - [anon_sym_rlock] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_sql] = ACTIONS(3423), - [sym_int_literal] = ACTIONS(3423), - [sym_float_literal] = ACTIONS(3423), - [sym_rune_literal] = ACTIONS(3423), - [sym_pseudo_compile_time_identifier] = ACTIONS(3423), - [anon_sym_shared] = ACTIONS(3423), - [anon_sym_map_LBRACK] = ACTIONS(3423), - [anon_sym_chan] = ACTIONS(3423), - [anon_sym_thread] = ACTIONS(3423), - [anon_sym_atomic] = ACTIONS(3423), - [sym___double_quote] = ACTIONS(3423), - [sym___single_quote] = ACTIONS(3423), - [sym___c_double_quote] = ACTIONS(3423), - [sym___c_single_quote] = ACTIONS(3423), - [sym___r_double_quote] = ACTIONS(3423), - [sym___r_single_quote] = ACTIONS(3423), - }, - [1256] = { - [sym_line_comment] = STATE(1256), - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1960), - [sym_plain_type] = STATE(2033), - [sym__plain_type_without_special] = STATE(2028), - [sym_anon_struct_type] = STATE(2029), - [sym_multi_return_type] = STATE(2028), - [sym_result_type] = STATE(2028), - [sym_option_type] = STATE(2028), - [sym_qualified_type] = STATE(1960), - [sym_fixed_array_type] = STATE(2029), - [sym_array_type] = STATE(2029), - [sym_pointer_type] = STATE(2029), - [sym_wrong_pointer_type] = STATE(2029), - [sym_map_type] = STATE(2029), - [sym_channel_type] = STATE(2029), - [sym_shared_type] = STATE(2029), - [sym_thread_type] = STATE(2029), - [sym_atomic_type] = STATE(2029), - [sym_generic_type] = STATE(2029), - [sym_function_type] = STATE(2029), + [sym_block_comment] = STATE(1251), + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(1949), + [sym_plain_type] = STATE(2038), + [sym__plain_type_without_special] = STATE(2134), + [sym_anon_struct_type] = STATE(2160), + [sym_multi_return_type] = STATE(2134), + [sym_result_type] = STATE(2134), + [sym_option_type] = STATE(2134), + [sym_qualified_type] = STATE(1949), + [sym_fixed_array_type] = STATE(2160), + [sym_array_type] = STATE(2160), + [sym_pointer_type] = STATE(2160), + [sym_wrong_pointer_type] = STATE(2160), + [sym_map_type] = STATE(2160), + [sym_channel_type] = STATE(2160), + [sym_shared_type] = STATE(2160), + [sym_thread_type] = STATE(2160), + [sym_atomic_type] = STATE(2160), + [sym_generic_type] = STATE(2160), + [sym_function_type] = STATE(2160), [sym_identifier] = ACTIONS(3818), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(603), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), [anon_sym_fn] = ACTIONS(3822), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), [anon_sym_STAR] = ACTIONS(3824), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), [anon_sym_struct] = ACTIONS(3826), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_COLON] = ACTIONS(603), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_QMARK] = ACTIONS(3828), [anon_sym_BANG] = ACTIONS(3830), [anon_sym_LBRACK2] = ACTIONS(3832), - [anon_sym_CARET] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(605), [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_LT_DASH] = ACTIONS(603), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_STAR_EQ] = ACTIONS(603), + [anon_sym_SLASH_EQ] = ACTIONS(603), + [anon_sym_PERCENT_EQ] = ACTIONS(603), + [anon_sym_LT_LT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_EQ] = ACTIONS(603), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), + [anon_sym_AMP_EQ] = ACTIONS(603), + [anon_sym_AMP_CARET_EQ] = ACTIONS(603), + [anon_sym_PLUS_EQ] = ACTIONS(603), + [anon_sym_DASH_EQ] = ACTIONS(603), + [anon_sym_PIPE_EQ] = ACTIONS(603), + [anon_sym_CARET_EQ] = ACTIONS(603), [anon_sym_shared] = ACTIONS(3836), [anon_sym_map_LBRACK] = ACTIONS(3838), [anon_sym_chan] = ACTIONS(3840), [anon_sym_thread] = ACTIONS(3842), [anon_sym_atomic] = ACTIONS(3844), }, - [1257] = { - [sym_line_comment] = STATE(1257), - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1960), - [sym_plain_type] = STATE(2053), - [sym__plain_type_without_special] = STATE(2028), - [sym_anon_struct_type] = STATE(2029), - [sym_multi_return_type] = STATE(2028), - [sym_result_type] = STATE(2028), - [sym_option_type] = STATE(2028), - [sym_qualified_type] = STATE(1960), - [sym_fixed_array_type] = STATE(2029), - [sym_array_type] = STATE(2029), - [sym_pointer_type] = STATE(2029), - [sym_wrong_pointer_type] = STATE(2029), - [sym_map_type] = STATE(2029), - [sym_channel_type] = STATE(2029), - [sym_shared_type] = STATE(2029), - [sym_thread_type] = STATE(2029), - [sym_atomic_type] = STATE(2029), - [sym_generic_type] = STATE(2029), - [sym_function_type] = STATE(2029), - [sym_identifier] = ACTIONS(3818), + [1252] = { + [sym_line_comment] = STATE(1252), + [sym_block_comment] = STATE(1252), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LF] = ACTIONS(3342), + [anon_sym_CR] = ACTIONS(3342), + [anon_sym_CR_LF] = ACTIONS(3342), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(617), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(3822), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(3824), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(3826), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3830), - [anon_sym_LBRACK2] = ACTIONS(3832), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_STAR_EQ] = ACTIONS(617), - [anon_sym_SLASH_EQ] = ACTIONS(617), - [anon_sym_PERCENT_EQ] = ACTIONS(617), - [anon_sym_LT_LT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_EQ] = ACTIONS(617), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), - [anon_sym_AMP_EQ] = ACTIONS(617), - [anon_sym_AMP_CARET_EQ] = ACTIONS(617), - [anon_sym_PLUS_EQ] = ACTIONS(617), - [anon_sym_DASH_EQ] = ACTIONS(617), - [anon_sym_PIPE_EQ] = ACTIONS(617), - [anon_sym_CARET_EQ] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(3836), - [anon_sym_map_LBRACK] = ACTIONS(3838), - [anon_sym_chan] = ACTIONS(3840), - [anon_sym_thread] = ACTIONS(3842), - [anon_sym_atomic] = ACTIONS(3844), - }, - [1258] = { - [sym_line_comment] = STATE(1258), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_RPAREN] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_go] = ACTIONS(3342), + [anon_sym_spawn] = ACTIONS(3342), + [anon_sym_json_DOTdecode] = ACTIONS(3342), + [anon_sym_LBRACK2] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [sym_none] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_nil] = ACTIONS(3342), + [anon_sym_QMARK_DOT] = ACTIONS(3342), + [anon_sym_POUND_LBRACK] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_DOLLARif] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3342), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_match] = ACTIONS(3342), + [anon_sym_select] = ACTIONS(3342), + [anon_sym_lock] = ACTIONS(3342), + [anon_sym_rlock] = ACTIONS(3342), + [anon_sym_unsafe] = ACTIONS(3342), + [anon_sym_sql] = ACTIONS(3342), + [sym_int_literal] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3342), + [sym_rune_literal] = ACTIONS(3342), + [sym_pseudo_compile_time_identifier] = ACTIONS(3342), + [anon_sym_shared] = ACTIONS(3342), + [anon_sym_map_LBRACK] = ACTIONS(3342), + [anon_sym_chan] = ACTIONS(3342), + [anon_sym_thread] = ACTIONS(3342), + [anon_sym_atomic] = ACTIONS(3342), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3342), + [sym___c_double_quote] = ACTIONS(3342), + [sym___c_single_quote] = ACTIONS(3342), + [sym___r_double_quote] = ACTIONS(3342), + [sym___r_single_quote] = ACTIONS(3342), }, - [1259] = { - [sym_line_comment] = STATE(1259), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [1253] = { + [sym_line_comment] = STATE(1253), + [sym_block_comment] = STATE(1253), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), + }, + [1254] = { + [sym_line_comment] = STATE(1254), + [sym_block_comment] = STATE(1254), + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(1949), + [sym_plain_type] = STATE(2137), + [sym__plain_type_without_special] = STATE(2134), + [sym_anon_struct_type] = STATE(2160), + [sym_multi_return_type] = STATE(2134), + [sym_result_type] = STATE(2134), + [sym_option_type] = STATE(2134), + [sym_qualified_type] = STATE(1949), + [sym_fixed_array_type] = STATE(2160), + [sym_array_type] = STATE(2160), + [sym_pointer_type] = STATE(2160), + [sym_wrong_pointer_type] = STATE(2160), + [sym_map_type] = STATE(2160), + [sym_channel_type] = STATE(2160), + [sym_shared_type] = STATE(2160), + [sym_thread_type] = STATE(2160), + [sym_atomic_type] = STATE(2160), + [sym_generic_type] = STATE(2160), + [sym_function_type] = STATE(2160), + [sym_identifier] = ACTIONS(3818), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(563), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3820), [anon_sym_EQ] = ACTIONS(567), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(3822), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(3824), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(567), [anon_sym_LT] = ACTIONS(567), @@ -169809,14 +163873,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(3826), + [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3846), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(3828), + [anon_sym_BANG] = ACTIONS(3830), + [anon_sym_LBRACK2] = ACTIONS(3832), [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3834), + [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(567), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(567), @@ -169842,2690 +163908,2984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_EQ] = ACTIONS(563), [anon_sym_PIPE_EQ] = ACTIONS(563), [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(3836), + [anon_sym_map_LBRACK] = ACTIONS(3838), + [anon_sym_chan] = ACTIONS(3840), + [anon_sym_thread] = ACTIONS(3842), + [anon_sym_atomic] = ACTIONS(3844), + }, + [1255] = { + [sym_line_comment] = STATE(1255), + [sym_block_comment] = STATE(1255), + [sym_identifier] = ACTIONS(3298), + [anon_sym_LF] = ACTIONS(3298), + [anon_sym_CR] = ACTIONS(3298), + [anon_sym_CR_LF] = ACTIONS(3298), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_mut] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_QMARK] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3298), + [anon_sym_json_DOTdecode] = ACTIONS(3298), + [anon_sym_LBRACK2] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_CARET] = ACTIONS(3298), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_LT_DASH] = ACTIONS(3298), + [anon_sym_LT_LT] = ACTIONS(3298), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_GT_GT_GT] = ACTIONS(3298), + [anon_sym_AMP_CARET] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_or] = ACTIONS(3298), + [sym_none] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_nil] = ACTIONS(3298), + [anon_sym_QMARK_DOT] = ACTIONS(3298), + [anon_sym_POUND_LBRACK] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_DOLLARif] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3298), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_lock] = ACTIONS(3298), + [anon_sym_rlock] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(3298), + [anon_sym_sql] = ACTIONS(3298), + [sym_int_literal] = ACTIONS(3298), + [sym_float_literal] = ACTIONS(3298), + [sym_rune_literal] = ACTIONS(3298), + [sym_pseudo_compile_time_identifier] = ACTIONS(3298), + [anon_sym_shared] = ACTIONS(3298), + [anon_sym_map_LBRACK] = ACTIONS(3298), + [anon_sym_chan] = ACTIONS(3298), + [anon_sym_thread] = ACTIONS(3298), + [anon_sym_atomic] = ACTIONS(3298), + [sym___double_quote] = ACTIONS(3298), + [sym___single_quote] = ACTIONS(3298), + [sym___c_double_quote] = ACTIONS(3298), + [sym___c_single_quote] = ACTIONS(3298), + [sym___r_double_quote] = ACTIONS(3298), + [sym___r_single_quote] = ACTIONS(3298), + }, + [1256] = { + [sym_line_comment] = STATE(1256), + [sym_block_comment] = STATE(1256), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [sym___double_quote] = ACTIONS(3350), + [sym___single_quote] = ACTIONS(3350), + [sym___c_double_quote] = ACTIONS(3350), + [sym___c_single_quote] = ACTIONS(3350), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3350), + }, + [1257] = { + [sym_line_comment] = STATE(1257), + [sym_block_comment] = STATE(1257), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_COMMA] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_RPAREN] = ACTIONS(3218), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_LT_EQ] = ACTIONS(3218), + [anon_sym_GT_EQ] = ACTIONS(3218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [anon_sym_LT_LT] = ACTIONS(3218), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3218), + [anon_sym_AMP_CARET] = ACTIONS(3218), + [anon_sym_AMP_AMP] = ACTIONS(3218), + [anon_sym_PIPE_PIPE] = ACTIONS(3218), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3218), + [anon_sym_POUND_LBRACK] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), + }, + [1258] = { + [sym_line_comment] = STATE(1258), + [sym_block_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3354), + [anon_sym_CR] = ACTIONS(3354), + [anon_sym_CR_LF] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_go] = ACTIONS(3354), + [anon_sym_spawn] = ACTIONS(3354), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_LBRACK2] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_AMP_CARET] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [sym_none] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_nil] = ACTIONS(3354), + [anon_sym_QMARK_DOT] = ACTIONS(3354), + [anon_sym_POUND_LBRACK] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_DOLLARif] = ACTIONS(3354), + [anon_sym_is] = ACTIONS(3354), + [anon_sym_BANGis] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_BANGin] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_rlock] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3354), + [sym_int_literal] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3354), + [anon_sym_shared] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3354), + [anon_sym_thread] = ACTIONS(3354), + [anon_sym_atomic] = ACTIONS(3354), + [sym___double_quote] = ACTIONS(3354), + [sym___single_quote] = ACTIONS(3354), + [sym___c_double_quote] = ACTIONS(3354), + [sym___c_single_quote] = ACTIONS(3354), + [sym___r_double_quote] = ACTIONS(3354), + [sym___r_single_quote] = ACTIONS(3354), + }, + [1259] = { + [sym_line_comment] = STATE(1259), + [sym_block_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LF] = ACTIONS(3358), + [anon_sym_CR] = ACTIONS(3358), + [anon_sym_CR_LF] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_RPAREN] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_mut] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_go] = ACTIONS(3358), + [anon_sym_spawn] = ACTIONS(3358), + [anon_sym_json_DOTdecode] = ACTIONS(3358), + [anon_sym_LBRACK2] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_AMP_CARET] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [sym_none] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_nil] = ACTIONS(3358), + [anon_sym_QMARK_DOT] = ACTIONS(3358), + [anon_sym_POUND_LBRACK] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_DOLLARif] = ACTIONS(3358), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_BANGin] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_select] = ACTIONS(3358), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3358), + [anon_sym_sql] = ACTIONS(3358), + [sym_int_literal] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3358), + [sym_rune_literal] = ACTIONS(3358), + [sym_pseudo_compile_time_identifier] = ACTIONS(3358), + [anon_sym_shared] = ACTIONS(3358), + [anon_sym_map_LBRACK] = ACTIONS(3358), + [anon_sym_chan] = ACTIONS(3358), + [anon_sym_thread] = ACTIONS(3358), + [anon_sym_atomic] = ACTIONS(3358), + [sym___double_quote] = ACTIONS(3358), + [sym___single_quote] = ACTIONS(3358), + [sym___c_double_quote] = ACTIONS(3358), + [sym___c_single_quote] = ACTIONS(3358), + [sym___r_double_quote] = ACTIONS(3358), + [sym___r_single_quote] = ACTIONS(3358), }, [1260] = { [sym_line_comment] = STATE(1260), - [sym_identifier] = ACTIONS(2869), - [anon_sym_LF] = ACTIONS(2869), - [anon_sym_CR] = ACTIONS(2869), - [anon_sym_CR_LF] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_RPAREN] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [sym___double_quote] = ACTIONS(2869), - [sym___single_quote] = ACTIONS(2869), - [sym___c_double_quote] = ACTIONS(2869), - [sym___c_single_quote] = ACTIONS(2869), - [sym___r_double_quote] = ACTIONS(2869), - [sym___r_single_quote] = ACTIONS(2869), + [sym_block_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3806), + [anon_sym_LF] = ACTIONS(3809), + [anon_sym_CR] = ACTIONS(3809), + [anon_sym_CR_LF] = ACTIONS(3809), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3809), + [anon_sym_DOT] = ACTIONS(3848), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3809), + [anon_sym_RBRACE] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3812), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3814), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1261] = { [sym_line_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1261), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), }, [1262] = { [sym_line_comment] = STATE(1262), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [sym_block_comment] = STATE(1262), + [sym_identifier] = ACTIONS(3154), + [anon_sym_LF] = ACTIONS(3154), + [anon_sym_CR] = ACTIONS(3154), + [anon_sym_CR_LF] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_fn] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3154), + [anon_sym_mut] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3154), + [anon_sym_spawn] = ACTIONS(3154), + [anon_sym_json_DOTdecode] = ACTIONS(3154), + [anon_sym_LBRACK2] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_CARET] = ACTIONS(3154), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3154), + [anon_sym_LT_LT] = ACTIONS(3154), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3154), + [anon_sym_AMP_CARET] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_or] = ACTIONS(3154), + [sym_none] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nil] = ACTIONS(3154), + [anon_sym_QMARK_DOT] = ACTIONS(3154), + [anon_sym_POUND_LBRACK] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_DOLLARif] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3154), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_select] = ACTIONS(3154), + [anon_sym_lock] = ACTIONS(3154), + [anon_sym_rlock] = ACTIONS(3154), + [anon_sym_unsafe] = ACTIONS(3154), + [anon_sym_sql] = ACTIONS(3154), + [sym_int_literal] = ACTIONS(3154), + [sym_float_literal] = ACTIONS(3154), + [sym_rune_literal] = ACTIONS(3154), + [sym_pseudo_compile_time_identifier] = ACTIONS(3154), + [anon_sym_shared] = ACTIONS(3154), + [anon_sym_map_LBRACK] = ACTIONS(3154), + [anon_sym_chan] = ACTIONS(3154), + [anon_sym_thread] = ACTIONS(3154), + [anon_sym_atomic] = ACTIONS(3154), + [sym___double_quote] = ACTIONS(3154), + [sym___single_quote] = ACTIONS(3154), + [sym___c_double_quote] = ACTIONS(3154), + [sym___c_single_quote] = ACTIONS(3154), + [sym___r_double_quote] = ACTIONS(3154), + [sym___r_single_quote] = ACTIONS(3154), }, [1263] = { [sym_line_comment] = STATE(1263), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [sym_block_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_RPAREN] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, [1264] = { [sym_line_comment] = STATE(1264), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [sym_pseudo_compile_time_identifier] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), + [sym_block_comment] = STATE(1264), + [sym_identifier] = ACTIONS(3210), + [anon_sym_LF] = ACTIONS(3210), + [anon_sym_CR] = ACTIONS(3210), + [anon_sym_CR_LF] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_COMMA] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_RPAREN] = ACTIONS(3210), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3210), + [anon_sym_BANG_EQ] = ACTIONS(3210), + [anon_sym_LT_EQ] = ACTIONS(3210), + [anon_sym_GT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3210), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_CARET] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3210), + [anon_sym_LT_LT] = ACTIONS(3210), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3210), + [anon_sym_AMP_CARET] = ACTIONS(3210), + [anon_sym_AMP_AMP] = ACTIONS(3210), + [anon_sym_PIPE_PIPE] = ACTIONS(3210), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3210), + [anon_sym_POUND_LBRACK] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3210), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3210), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3210), + [sym_rune_literal] = ACTIONS(3210), + [sym_pseudo_compile_time_identifier] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3210), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3210), + [sym___single_quote] = ACTIONS(3210), + [sym___c_double_quote] = ACTIONS(3210), + [sym___c_single_quote] = ACTIONS(3210), + [sym___r_double_quote] = ACTIONS(3210), + [sym___r_single_quote] = ACTIONS(3210), }, [1265] = { [sym_line_comment] = STATE(1265), - [sym_reference_expression] = STATE(4462), - [sym_type_reference_expression] = STATE(1960), - [sym_plain_type] = STATE(2064), - [sym__plain_type_without_special] = STATE(2028), - [sym_anon_struct_type] = STATE(2029), - [sym_multi_return_type] = STATE(2028), - [sym_result_type] = STATE(2028), - [sym_option_type] = STATE(2028), - [sym_qualified_type] = STATE(1960), - [sym_fixed_array_type] = STATE(2029), - [sym_array_type] = STATE(2029), - [sym_pointer_type] = STATE(2029), - [sym_wrong_pointer_type] = STATE(2029), - [sym_map_type] = STATE(2029), - [sym_channel_type] = STATE(2029), - [sym_shared_type] = STATE(2029), - [sym_thread_type] = STATE(2029), - [sym_atomic_type] = STATE(2029), - [sym_generic_type] = STATE(2029), - [sym_function_type] = STATE(2029), - [sym_identifier] = ACTIONS(3818), + [sym_block_comment] = STATE(1265), + [sym_identifier] = ACTIONS(2759), + [anon_sym_LF] = ACTIONS(2759), + [anon_sym_CR] = ACTIONS(2759), + [anon_sym_CR_LF] = ACTIONS(2759), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(625), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(3822), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(3824), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(3826), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(3828), - [anon_sym_BANG] = ACTIONS(3830), - [anon_sym_LBRACK2] = ACTIONS(3832), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(3834), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_STAR_EQ] = ACTIONS(625), - [anon_sym_SLASH_EQ] = ACTIONS(625), - [anon_sym_PERCENT_EQ] = ACTIONS(625), - [anon_sym_LT_LT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_EQ] = ACTIONS(625), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(625), - [anon_sym_AMP_EQ] = ACTIONS(625), - [anon_sym_AMP_CARET_EQ] = ACTIONS(625), - [anon_sym_PLUS_EQ] = ACTIONS(625), - [anon_sym_DASH_EQ] = ACTIONS(625), - [anon_sym_PIPE_EQ] = ACTIONS(625), - [anon_sym_CARET_EQ] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(3836), - [anon_sym_map_LBRACK] = ACTIONS(3838), - [anon_sym_chan] = ACTIONS(3840), - [anon_sym_thread] = ACTIONS(3842), - [anon_sym_atomic] = ACTIONS(3844), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_COMMA] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_RPAREN] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_mut] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_QMARK] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_go] = ACTIONS(2759), + [anon_sym_spawn] = ACTIONS(2759), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2759), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_or] = ACTIONS(2759), + [sym_none] = ACTIONS(2759), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_nil] = ACTIONS(2759), + [anon_sym_QMARK_DOT] = ACTIONS(2759), + [anon_sym_POUND_LBRACK] = ACTIONS(2759), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_DOLLARif] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_BANGis] = ACTIONS(2759), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_BANGin] = ACTIONS(2759), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_select] = ACTIONS(2759), + [anon_sym_lock] = ACTIONS(2759), + [anon_sym_rlock] = ACTIONS(2759), + [anon_sym_unsafe] = ACTIONS(2759), + [anon_sym_sql] = ACTIONS(2759), + [sym_int_literal] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2759), + [sym_rune_literal] = ACTIONS(2759), + [sym_pseudo_compile_time_identifier] = ACTIONS(2759), + [anon_sym_shared] = ACTIONS(2759), + [anon_sym_map_LBRACK] = ACTIONS(2759), + [anon_sym_chan] = ACTIONS(2759), + [anon_sym_thread] = ACTIONS(2759), + [anon_sym_atomic] = ACTIONS(2759), + [sym___double_quote] = ACTIONS(2759), + [sym___single_quote] = ACTIONS(2759), + [sym___c_double_quote] = ACTIONS(2759), + [sym___c_single_quote] = ACTIONS(2759), + [sym___r_double_quote] = ACTIONS(2759), + [sym___r_single_quote] = ACTIONS(2759), }, [1266] = { [sym_line_comment] = STATE(1266), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1266), + [sym_identifier] = ACTIONS(3434), + [anon_sym_LF] = ACTIONS(3434), + [anon_sym_CR] = ACTIONS(3434), + [anon_sym_CR_LF] = ACTIONS(3434), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3848), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_DASH] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_DOT] = ACTIONS(3434), + [anon_sym_as] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_COMMA] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_RPAREN] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_PERCENT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_EQ_EQ] = ACTIONS(3434), + [anon_sym_BANG_EQ] = ACTIONS(3434), + [anon_sym_LT_EQ] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_mut] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_go] = ACTIONS(3434), + [anon_sym_spawn] = ACTIONS(3434), + [anon_sym_json_DOTdecode] = ACTIONS(3434), + [anon_sym_LBRACK2] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_LT_DASH] = ACTIONS(3434), + [anon_sym_LT_LT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(3434), + [anon_sym_GT_GT_GT] = ACTIONS(3434), + [anon_sym_AMP_CARET] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3434), + [anon_sym_PIPE_PIPE] = ACTIONS(3434), + [anon_sym_or] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_nil] = ACTIONS(3434), + [anon_sym_QMARK_DOT] = ACTIONS(3434), + [anon_sym_POUND_LBRACK] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_DOLLARif] = ACTIONS(3434), + [anon_sym_is] = ACTIONS(3434), + [anon_sym_BANGis] = ACTIONS(3434), + [anon_sym_in] = ACTIONS(3434), + [anon_sym_BANGin] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_lock] = ACTIONS(3434), + [anon_sym_rlock] = ACTIONS(3434), + [anon_sym_unsafe] = ACTIONS(3434), + [anon_sym_sql] = ACTIONS(3434), + [sym_int_literal] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3434), + [sym_rune_literal] = ACTIONS(3434), + [sym_pseudo_compile_time_identifier] = ACTIONS(3434), + [anon_sym_shared] = ACTIONS(3434), + [anon_sym_map_LBRACK] = ACTIONS(3434), + [anon_sym_chan] = ACTIONS(3434), + [anon_sym_thread] = ACTIONS(3434), + [anon_sym_atomic] = ACTIONS(3434), + [sym___double_quote] = ACTIONS(3434), + [sym___single_quote] = ACTIONS(3434), + [sym___c_double_quote] = ACTIONS(3434), + [sym___c_single_quote] = ACTIONS(3434), + [sym___r_double_quote] = ACTIONS(3434), + [sym___r_single_quote] = ACTIONS(3434), }, [1267] = { [sym_line_comment] = STATE(1267), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [sym_block_comment] = STATE(1267), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3020), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_COMMA] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym_RPAREN] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3020), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3020), + [anon_sym_BANG_EQ] = ACTIONS(3020), + [anon_sym_LT_EQ] = ACTIONS(3020), + [anon_sym_GT_EQ] = ACTIONS(3020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_PLUS_PLUS] = ACTIONS(3020), + [anon_sym_DASH_DASH] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [anon_sym_LT_LT] = ACTIONS(3020), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3020), + [anon_sym_AMP_CARET] = ACTIONS(3020), + [anon_sym_AMP_AMP] = ACTIONS(3020), + [anon_sym_PIPE_PIPE] = ACTIONS(3020), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3020), + [anon_sym_POUND_LBRACK] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3020), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1268] = { [sym_line_comment] = STATE(1268), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [sym_block_comment] = STATE(1268), + [sym_identifier] = ACTIONS(3438), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_CR] = ACTIONS(3438), + [anon_sym_CR_LF] = ACTIONS(3438), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_RPAREN] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_mut] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(3438), + [anon_sym_spawn] = ACTIONS(3438), + [anon_sym_json_DOTdecode] = ACTIONS(3438), + [anon_sym_LBRACK2] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3438), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_or] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_nil] = ACTIONS(3438), + [anon_sym_QMARK_DOT] = ACTIONS(3438), + [anon_sym_POUND_LBRACK] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_DOLLARif] = ACTIONS(3438), + [anon_sym_is] = ACTIONS(3438), + [anon_sym_BANGis] = ACTIONS(3438), + [anon_sym_in] = ACTIONS(3438), + [anon_sym_BANGin] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_select] = ACTIONS(3438), + [anon_sym_lock] = ACTIONS(3438), + [anon_sym_rlock] = ACTIONS(3438), + [anon_sym_unsafe] = ACTIONS(3438), + [anon_sym_sql] = ACTIONS(3438), + [sym_int_literal] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3438), + [sym_rune_literal] = ACTIONS(3438), + [sym_pseudo_compile_time_identifier] = ACTIONS(3438), + [anon_sym_shared] = ACTIONS(3438), + [anon_sym_map_LBRACK] = ACTIONS(3438), + [anon_sym_chan] = ACTIONS(3438), + [anon_sym_thread] = ACTIONS(3438), + [anon_sym_atomic] = ACTIONS(3438), + [sym___double_quote] = ACTIONS(3438), + [sym___single_quote] = ACTIONS(3438), + [sym___c_double_quote] = ACTIONS(3438), + [sym___c_single_quote] = ACTIONS(3438), + [sym___r_double_quote] = ACTIONS(3438), + [sym___r_single_quote] = ACTIONS(3438), }, [1269] = { [sym_line_comment] = STATE(1269), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LF] = ACTIONS(3431), - [anon_sym_CR] = ACTIONS(3431), - [anon_sym_CR_LF] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1269), + [sym_identifier] = ACTIONS(3302), + [anon_sym_LF] = ACTIONS(3302), + [anon_sym_CR] = ACTIONS(3302), + [anon_sym_CR_LF] = ACTIONS(3302), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_DOT] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_COMMA] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_RPAREN] = ACTIONS(3302), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_fn] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3302), + [anon_sym_BANG_EQ] = ACTIONS(3302), + [anon_sym_LT_EQ] = ACTIONS(3302), + [anon_sym_GT_EQ] = ACTIONS(3302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_mut] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [anon_sym_QMARK] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_go] = ACTIONS(3302), + [anon_sym_spawn] = ACTIONS(3302), + [anon_sym_json_DOTdecode] = ACTIONS(3302), + [anon_sym_LBRACK2] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_CARET] = ACTIONS(3302), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3302), + [anon_sym_LT_LT] = ACTIONS(3302), + [anon_sym_GT_GT] = ACTIONS(3302), + [anon_sym_GT_GT_GT] = ACTIONS(3302), + [anon_sym_AMP_CARET] = ACTIONS(3302), + [anon_sym_AMP_AMP] = ACTIONS(3302), + [anon_sym_PIPE_PIPE] = ACTIONS(3302), + [anon_sym_or] = ACTIONS(3302), + [sym_none] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_nil] = ACTIONS(3302), + [anon_sym_QMARK_DOT] = ACTIONS(3302), + [anon_sym_POUND_LBRACK] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_DOLLARif] = ACTIONS(3302), + [anon_sym_is] = ACTIONS(3302), + [anon_sym_BANGis] = ACTIONS(3302), + [anon_sym_in] = ACTIONS(3302), + [anon_sym_BANGin] = ACTIONS(3302), + [anon_sym_match] = ACTIONS(3302), + [anon_sym_select] = ACTIONS(3302), + [anon_sym_lock] = ACTIONS(3302), + [anon_sym_rlock] = ACTIONS(3302), + [anon_sym_unsafe] = ACTIONS(3302), + [anon_sym_sql] = ACTIONS(3302), + [sym_int_literal] = ACTIONS(3302), + [sym_float_literal] = ACTIONS(3302), + [sym_rune_literal] = ACTIONS(3302), + [sym_pseudo_compile_time_identifier] = ACTIONS(3302), + [anon_sym_shared] = ACTIONS(3302), + [anon_sym_map_LBRACK] = ACTIONS(3302), + [anon_sym_chan] = ACTIONS(3302), + [anon_sym_thread] = ACTIONS(3302), + [anon_sym_atomic] = ACTIONS(3302), + [sym___double_quote] = ACTIONS(3302), + [sym___single_quote] = ACTIONS(3302), + [sym___c_double_quote] = ACTIONS(3302), + [sym___c_single_quote] = ACTIONS(3302), + [sym___r_double_quote] = ACTIONS(3302), + [sym___r_single_quote] = ACTIONS(3302), }, [1270] = { [sym_line_comment] = STATE(1270), - [sym_identifier] = ACTIONS(3780), - [anon_sym_LF] = ACTIONS(3783), - [anon_sym_CR] = ACTIONS(3783), - [anon_sym_CR_LF] = ACTIONS(3783), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3783), - [anon_sym_DOT] = ACTIONS(3850), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3783), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3786), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3788), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [sym_block_comment] = STATE(1270), + [sym_identifier] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(3426), + [anon_sym_CR] = ACTIONS(3426), + [anon_sym_CR_LF] = ACTIONS(3426), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_RPAREN] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_fn] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_EQ_EQ] = ACTIONS(3426), + [anon_sym_BANG_EQ] = ACTIONS(3426), + [anon_sym_LT_EQ] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_mut] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_go] = ACTIONS(3426), + [anon_sym_spawn] = ACTIONS(3426), + [anon_sym_json_DOTdecode] = ACTIONS(3426), + [anon_sym_LBRACK2] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_LT_DASH] = ACTIONS(3426), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_GT_GT_GT] = ACTIONS(3426), + [anon_sym_AMP_CARET] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [anon_sym_or] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_nil] = ACTIONS(3426), + [anon_sym_QMARK_DOT] = ACTIONS(3426), + [anon_sym_POUND_LBRACK] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_DOLLARif] = ACTIONS(3426), + [anon_sym_is] = ACTIONS(3426), + [anon_sym_BANGis] = ACTIONS(3426), + [anon_sym_in] = ACTIONS(3426), + [anon_sym_BANGin] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_lock] = ACTIONS(3426), + [anon_sym_rlock] = ACTIONS(3426), + [anon_sym_unsafe] = ACTIONS(3426), + [anon_sym_sql] = ACTIONS(3426), + [sym_int_literal] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3426), + [sym_rune_literal] = ACTIONS(3426), + [sym_pseudo_compile_time_identifier] = ACTIONS(3426), + [anon_sym_shared] = ACTIONS(3426), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3426), + [anon_sym_thread] = ACTIONS(3426), + [anon_sym_atomic] = ACTIONS(3426), + [sym___double_quote] = ACTIONS(3426), + [sym___single_quote] = ACTIONS(3426), + [sym___c_double_quote] = ACTIONS(3426), + [sym___c_single_quote] = ACTIONS(3426), + [sym___r_double_quote] = ACTIONS(3426), + [sym___r_single_quote] = ACTIONS(3426), }, [1271] = { [sym_line_comment] = STATE(1271), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_RPAREN] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), + [sym_block_comment] = STATE(1271), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LF] = ACTIONS(3222), + [anon_sym_CR] = ACTIONS(3222), + [anon_sym_CR_LF] = ACTIONS(3222), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3222), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3222), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3222), + [sym_rune_literal] = ACTIONS(3222), + [sym_pseudo_compile_time_identifier] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3222), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3222), + [sym___single_quote] = ACTIONS(3222), + [sym___c_double_quote] = ACTIONS(3222), + [sym___c_single_quote] = ACTIONS(3222), + [sym___r_double_quote] = ACTIONS(3222), + [sym___r_single_quote] = ACTIONS(3222), }, [1272] = { [sym_line_comment] = STATE(1272), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), + [sym_block_comment] = STATE(1272), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_DASH] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_STAR_EQ] = ACTIONS(595), + [anon_sym_SLASH_EQ] = ACTIONS(595), + [anon_sym_PERCENT_EQ] = ACTIONS(595), + [anon_sym_LT_LT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_EQ] = ACTIONS(595), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), + [anon_sym_AMP_EQ] = ACTIONS(595), + [anon_sym_AMP_CARET_EQ] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(595), + [anon_sym_DASH_EQ] = ACTIONS(595), + [anon_sym_PIPE_EQ] = ACTIONS(595), + [anon_sym_CARET_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1273] = { [sym_line_comment] = STATE(1273), - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_RPAREN] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), + [sym_block_comment] = STATE(1273), + [sym_identifier] = ACTIONS(3238), + [anon_sym_LF] = ACTIONS(3238), + [anon_sym_CR] = ACTIONS(3238), + [anon_sym_CR_LF] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_RPAREN] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_fn] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PERCENT] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3238), + [anon_sym_BANG_EQ] = ACTIONS(3238), + [anon_sym_LT_EQ] = ACTIONS(3238), + [anon_sym_GT_EQ] = ACTIONS(3238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_mut] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [anon_sym_QMARK] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_go] = ACTIONS(3238), + [anon_sym_spawn] = ACTIONS(3238), + [anon_sym_json_DOTdecode] = ACTIONS(3238), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_CARET] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT_DASH] = ACTIONS(3238), + [anon_sym_LT_LT] = ACTIONS(3238), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3238), + [anon_sym_AMP_CARET] = ACTIONS(3238), + [anon_sym_AMP_AMP] = ACTIONS(3238), + [anon_sym_PIPE_PIPE] = ACTIONS(3238), + [anon_sym_or] = ACTIONS(3238), + [sym_none] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_nil] = ACTIONS(3238), + [anon_sym_QMARK_DOT] = ACTIONS(3238), + [anon_sym_POUND_LBRACK] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_DOLLARif] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3238), + [anon_sym_BANGis] = ACTIONS(3238), + [anon_sym_in] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3238), + [anon_sym_match] = ACTIONS(3238), + [anon_sym_select] = ACTIONS(3238), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3238), + [anon_sym_sql] = ACTIONS(3238), + [sym_int_literal] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3238), + [sym_rune_literal] = ACTIONS(3238), + [sym_pseudo_compile_time_identifier] = ACTIONS(3238), + [anon_sym_shared] = ACTIONS(3238), + [anon_sym_map_LBRACK] = ACTIONS(3238), + [anon_sym_chan] = ACTIONS(3238), + [anon_sym_thread] = ACTIONS(3238), + [anon_sym_atomic] = ACTIONS(3238), + [sym___double_quote] = ACTIONS(3238), + [sym___single_quote] = ACTIONS(3238), + [sym___c_double_quote] = ACTIONS(3238), + [sym___c_single_quote] = ACTIONS(3238), + [sym___r_double_quote] = ACTIONS(3238), + [sym___r_single_quote] = ACTIONS(3238), }, [1274] = { [sym_line_comment] = STATE(1274), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_RPAREN] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3291), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3291), - [anon_sym_AMP_CARET] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3291), - [anon_sym_POUND_LBRACK] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3291), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3291), - [sym_rune_literal] = ACTIONS(3291), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3291), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3291), - [sym___single_quote] = ACTIONS(3291), - [sym___c_double_quote] = ACTIONS(3291), - [sym___c_single_quote] = ACTIONS(3291), - [sym___r_double_quote] = ACTIONS(3291), - [sym___r_single_quote] = ACTIONS(3291), + [sym_block_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3234), + [anon_sym_LF] = ACTIONS(3234), + [anon_sym_CR] = ACTIONS(3234), + [anon_sym_CR_LF] = ACTIONS(3234), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_COMMA] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_RPAREN] = ACTIONS(3234), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_EQ_EQ] = ACTIONS(3234), + [anon_sym_BANG_EQ] = ACTIONS(3234), + [anon_sym_LT_EQ] = ACTIONS(3234), + [anon_sym_GT_EQ] = ACTIONS(3234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_mut] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [anon_sym_QMARK] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_go] = ACTIONS(3234), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3234), + [anon_sym_LBRACK2] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_CARET] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_LT_DASH] = ACTIONS(3234), + [anon_sym_LT_LT] = ACTIONS(3234), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3234), + [anon_sym_AMP_CARET] = ACTIONS(3234), + [anon_sym_AMP_AMP] = ACTIONS(3234), + [anon_sym_PIPE_PIPE] = ACTIONS(3234), + [anon_sym_or] = ACTIONS(3234), + [sym_none] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_nil] = ACTIONS(3234), + [anon_sym_QMARK_DOT] = ACTIONS(3234), + [anon_sym_POUND_LBRACK] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_DOLLARif] = ACTIONS(3234), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3234), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_BANGin] = ACTIONS(3234), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3234), + [anon_sym_lock] = ACTIONS(3234), + [anon_sym_rlock] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(3234), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3234), + [sym_rune_literal] = ACTIONS(3234), + [sym_pseudo_compile_time_identifier] = ACTIONS(3234), + [anon_sym_shared] = ACTIONS(3234), + [anon_sym_map_LBRACK] = ACTIONS(3234), + [anon_sym_chan] = ACTIONS(3234), + [anon_sym_thread] = ACTIONS(3234), + [anon_sym_atomic] = ACTIONS(3234), + [sym___double_quote] = ACTIONS(3234), + [sym___single_quote] = ACTIONS(3234), + [sym___c_double_quote] = ACTIONS(3234), + [sym___c_single_quote] = ACTIONS(3234), + [sym___r_double_quote] = ACTIONS(3234), + [sym___r_single_quote] = ACTIONS(3234), }, [1275] = { [sym_line_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [sym_block_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3422), + [anon_sym_LF] = ACTIONS(3422), + [anon_sym_CR] = ACTIONS(3422), + [anon_sym_CR_LF] = ACTIONS(3422), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3422), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_fn] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_mut] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_QMARK] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_go] = ACTIONS(3422), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(3422), + [anon_sym_LBRACK2] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(3422), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_GT_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_CARET] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_or] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_nil] = ACTIONS(3422), + [anon_sym_QMARK_DOT] = ACTIONS(3422), + [anon_sym_POUND_LBRACK] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_DOLLARif] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_select] = ACTIONS(3422), + [anon_sym_lock] = ACTIONS(3422), + [anon_sym_rlock] = ACTIONS(3422), + [anon_sym_unsafe] = ACTIONS(3422), + [anon_sym_sql] = ACTIONS(3422), + [sym_int_literal] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3422), + [sym_rune_literal] = ACTIONS(3422), + [sym_pseudo_compile_time_identifier] = ACTIONS(3422), + [anon_sym_shared] = ACTIONS(3422), + [anon_sym_map_LBRACK] = ACTIONS(3422), + [anon_sym_chan] = ACTIONS(3422), + [anon_sym_thread] = ACTIONS(3422), + [anon_sym_atomic] = ACTIONS(3422), + [sym___double_quote] = ACTIONS(3422), + [sym___single_quote] = ACTIONS(3422), + [sym___c_double_quote] = ACTIONS(3422), + [sym___c_single_quote] = ACTIONS(3422), + [sym___r_double_quote] = ACTIONS(3422), + [sym___r_single_quote] = ACTIONS(3422), }, [1276] = { [sym_line_comment] = STATE(1276), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_RPAREN] = ACTIONS(3299), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_EQ] = ACTIONS(3299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3299), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3299), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3299), - [anon_sym_AMP_CARET] = ACTIONS(3299), - [anon_sym_AMP_AMP] = ACTIONS(3299), - [anon_sym_PIPE_PIPE] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3299), - [anon_sym_POUND_LBRACK] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3299), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3299), - [sym_rune_literal] = ACTIONS(3299), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3299), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3299), - [sym___single_quote] = ACTIONS(3299), - [sym___c_double_quote] = ACTIONS(3299), - [sym___c_single_quote] = ACTIONS(3299), - [sym___r_double_quote] = ACTIONS(3299), - [sym___r_single_quote] = ACTIONS(3299), + [sym_block_comment] = STATE(1276), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LF] = ACTIONS(3338), + [anon_sym_CR] = ACTIONS(3338), + [anon_sym_CR_LF] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_mut] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_go] = ACTIONS(3338), + [anon_sym_spawn] = ACTIONS(3338), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_LBRACK2] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [sym_none] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_nil] = ACTIONS(3338), + [anon_sym_QMARK_DOT] = ACTIONS(3338), + [anon_sym_POUND_LBRACK] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_DOLLARif] = ACTIONS(3338), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_BANGin] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3338), + [anon_sym_select] = ACTIONS(3338), + [anon_sym_lock] = ACTIONS(3338), + [anon_sym_rlock] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(3338), + [anon_sym_sql] = ACTIONS(3338), + [sym_int_literal] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3338), + [anon_sym_shared] = ACTIONS(3338), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3338), + [anon_sym_thread] = ACTIONS(3338), + [anon_sym_atomic] = ACTIONS(3338), + [sym___double_quote] = ACTIONS(3338), + [sym___single_quote] = ACTIONS(3338), + [sym___c_double_quote] = ACTIONS(3338), + [sym___c_single_quote] = ACTIONS(3338), + [sym___r_double_quote] = ACTIONS(3338), + [sym___r_single_quote] = ACTIONS(3338), }, [1277] = { [sym_line_comment] = STATE(1277), - [sym_identifier] = ACTIONS(3343), - [anon_sym_LF] = ACTIONS(3343), - [anon_sym_CR] = ACTIONS(3343), - [anon_sym_CR_LF] = ACTIONS(3343), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [sym_block_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3250), + [anon_sym_LF] = ACTIONS(3250), + [anon_sym_CR] = ACTIONS(3250), + [anon_sym_CR_LF] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_COMMA] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_RPAREN] = ACTIONS(3250), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3250), + [anon_sym_BANG_EQ] = ACTIONS(3250), + [anon_sym_LT_EQ] = ACTIONS(3250), + [anon_sym_GT_EQ] = ACTIONS(3250), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3250), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_CARET] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3250), + [anon_sym_LT_LT] = ACTIONS(3250), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3250), + [anon_sym_AMP_CARET] = ACTIONS(3250), + [anon_sym_AMP_AMP] = ACTIONS(3250), + [anon_sym_PIPE_PIPE] = ACTIONS(3250), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3250), + [anon_sym_POUND_LBRACK] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3250), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3250), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3250), + [sym_rune_literal] = ACTIONS(3250), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3250), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [sym___double_quote] = ACTIONS(3250), + [sym___single_quote] = ACTIONS(3250), + [sym___c_double_quote] = ACTIONS(3250), + [sym___c_single_quote] = ACTIONS(3250), + [sym___r_double_quote] = ACTIONS(3250), + [sym___r_single_quote] = ACTIONS(3250), }, [1278] = { [sym_line_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_RPAREN] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3303), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3303), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3303), - [anon_sym_AMP_CARET] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3303), - [anon_sym_POUND_LBRACK] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3303), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3303), - [sym_rune_literal] = ACTIONS(3303), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3303), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3303), - [sym___single_quote] = ACTIONS(3303), - [sym___c_double_quote] = ACTIONS(3303), - [sym___c_single_quote] = ACTIONS(3303), - [sym___r_double_quote] = ACTIONS(3303), - [sym___r_single_quote] = ACTIONS(3303), + [sym_block_comment] = STATE(1278), + [sym_identifier] = ACTIONS(3254), + [anon_sym_LF] = ACTIONS(3254), + [anon_sym_CR] = ACTIONS(3254), + [anon_sym_CR_LF] = ACTIONS(3254), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3254), + [anon_sym_as] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_COMMA] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_RPAREN] = ACTIONS(3254), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3254), + [anon_sym_BANG_EQ] = ACTIONS(3254), + [anon_sym_LT_EQ] = ACTIONS(3254), + [anon_sym_GT_EQ] = ACTIONS(3254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3254), + [anon_sym_mut] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_go] = ACTIONS(3254), + [anon_sym_spawn] = ACTIONS(3254), + [anon_sym_json_DOTdecode] = ACTIONS(3254), + [anon_sym_LBRACK2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_CARET] = ACTIONS(3254), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_LT_DASH] = ACTIONS(3254), + [anon_sym_LT_LT] = ACTIONS(3254), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3254), + [anon_sym_AMP_CARET] = ACTIONS(3254), + [anon_sym_AMP_AMP] = ACTIONS(3254), + [anon_sym_PIPE_PIPE] = ACTIONS(3254), + [anon_sym_or] = ACTIONS(3254), + [sym_none] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_nil] = ACTIONS(3254), + [anon_sym_QMARK_DOT] = ACTIONS(3254), + [anon_sym_POUND_LBRACK] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_DOLLARif] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3254), + [anon_sym_BANGis] = ACTIONS(3254), + [anon_sym_in] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3254), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3254), + [anon_sym_sql] = ACTIONS(3254), + [sym_int_literal] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(3254), + [sym_rune_literal] = ACTIONS(3254), + [sym_pseudo_compile_time_identifier] = ACTIONS(3254), + [anon_sym_shared] = ACTIONS(3254), + [anon_sym_map_LBRACK] = ACTIONS(3254), + [anon_sym_chan] = ACTIONS(3254), + [anon_sym_thread] = ACTIONS(3254), + [anon_sym_atomic] = ACTIONS(3254), + [sym___double_quote] = ACTIONS(3254), + [sym___single_quote] = ACTIONS(3254), + [sym___c_double_quote] = ACTIONS(3254), + [sym___c_single_quote] = ACTIONS(3254), + [sym___r_double_quote] = ACTIONS(3254), + [sym___r_single_quote] = ACTIONS(3254), }, [1279] = { [sym_line_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), + [sym_block_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3430), + [anon_sym_LF] = ACTIONS(3430), + [anon_sym_CR] = ACTIONS(3430), + [anon_sym_CR_LF] = ACTIONS(3430), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3430), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_as] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_RPAREN] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_PERCENT] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_EQ_EQ] = ACTIONS(3430), + [anon_sym_BANG_EQ] = ACTIONS(3430), + [anon_sym_LT_EQ] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_mut] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_go] = ACTIONS(3430), + [anon_sym_spawn] = ACTIONS(3430), + [anon_sym_json_DOTdecode] = ACTIONS(3430), + [anon_sym_LBRACK2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_LT_DASH] = ACTIONS(3430), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_GT_GT_GT] = ACTIONS(3430), + [anon_sym_AMP_CARET] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_PIPE_PIPE] = ACTIONS(3430), + [anon_sym_or] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_nil] = ACTIONS(3430), + [anon_sym_QMARK_DOT] = ACTIONS(3430), + [anon_sym_POUND_LBRACK] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_DOLLARif] = ACTIONS(3430), + [anon_sym_is] = ACTIONS(3430), + [anon_sym_BANGis] = ACTIONS(3430), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_BANGin] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_select] = ACTIONS(3430), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(3430), + [anon_sym_sql] = ACTIONS(3430), + [sym_int_literal] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3430), + [sym_rune_literal] = ACTIONS(3430), + [sym_pseudo_compile_time_identifier] = ACTIONS(3430), + [anon_sym_shared] = ACTIONS(3430), + [anon_sym_map_LBRACK] = ACTIONS(3430), + [anon_sym_chan] = ACTIONS(3430), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3430), + [sym___double_quote] = ACTIONS(3430), + [sym___single_quote] = ACTIONS(3430), + [sym___c_double_quote] = ACTIONS(3430), + [sym___c_single_quote] = ACTIONS(3430), + [sym___r_double_quote] = ACTIONS(3430), + [sym___r_single_quote] = ACTIONS(3430), }, [1280] = { [sym_line_comment] = STATE(1280), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), + [sym_block_comment] = STATE(1280), + [sym_identifier] = ACTIONS(3294), + [anon_sym_LF] = ACTIONS(3294), + [anon_sym_CR] = ACTIONS(3294), + [anon_sym_CR_LF] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_COMMA] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_RPAREN] = ACTIONS(3294), + [anon_sym_PIPE] = ACTIONS(3294), + [anon_sym_fn] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_GT] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_LT_EQ] = ACTIONS(3294), + [anon_sym_GT_EQ] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_mut] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [anon_sym_QMARK] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3294), + [anon_sym_json_DOTdecode] = ACTIONS(3294), + [anon_sym_LBRACK2] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_CARET] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_LT_DASH] = ACTIONS(3294), + [anon_sym_LT_LT] = ACTIONS(3294), + [anon_sym_GT_GT] = ACTIONS(3294), + [anon_sym_GT_GT_GT] = ACTIONS(3294), + [anon_sym_AMP_CARET] = ACTIONS(3294), + [anon_sym_AMP_AMP] = ACTIONS(3294), + [anon_sym_PIPE_PIPE] = ACTIONS(3294), + [anon_sym_or] = ACTIONS(3294), + [sym_none] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_nil] = ACTIONS(3294), + [anon_sym_QMARK_DOT] = ACTIONS(3294), + [anon_sym_POUND_LBRACK] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_DOLLARif] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3294), + [anon_sym_BANGis] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3294), + [anon_sym_BANGin] = ACTIONS(3294), + [anon_sym_match] = ACTIONS(3294), + [anon_sym_select] = ACTIONS(3294), + [anon_sym_lock] = ACTIONS(3294), + [anon_sym_rlock] = ACTIONS(3294), + [anon_sym_unsafe] = ACTIONS(3294), + [anon_sym_sql] = ACTIONS(3294), + [sym_int_literal] = ACTIONS(3294), + [sym_float_literal] = ACTIONS(3294), + [sym_rune_literal] = ACTIONS(3294), + [sym_pseudo_compile_time_identifier] = ACTIONS(3294), + [anon_sym_shared] = ACTIONS(3294), + [anon_sym_map_LBRACK] = ACTIONS(3294), + [anon_sym_chan] = ACTIONS(3294), + [anon_sym_thread] = ACTIONS(3294), + [anon_sym_atomic] = ACTIONS(3294), + [sym___double_quote] = ACTIONS(3294), + [sym___single_quote] = ACTIONS(3294), + [sym___c_double_quote] = ACTIONS(3294), + [sym___c_single_quote] = ACTIONS(3294), + [sym___r_double_quote] = ACTIONS(3294), + [sym___r_single_quote] = ACTIONS(3294), }, [1281] = { [sym_line_comment] = STATE(1281), - [sym_identifier] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2671), - [anon_sym_BANG_EQ] = ACTIONS(2671), - [anon_sym_LT_EQ] = ACTIONS(2671), - [anon_sym_GT_EQ] = ACTIONS(2671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2671), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_CARET] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_CARET] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2671), - [anon_sym_POUND_LBRACK] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2671), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2671), - [sym_rune_literal] = ACTIONS(2671), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2671), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2671), - [sym___single_quote] = ACTIONS(2671), - [sym___c_double_quote] = ACTIONS(2671), - [sym___c_single_quote] = ACTIONS(2671), - [sym___r_double_quote] = ACTIONS(2671), - [sym___r_single_quote] = ACTIONS(2671), + [sym_block_comment] = STATE(1281), + [sym_identifier] = ACTIONS(3258), + [anon_sym_LF] = ACTIONS(3258), + [anon_sym_CR] = ACTIONS(3258), + [anon_sym_CR_LF] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_DOT] = ACTIONS(3258), + [anon_sym_as] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_COMMA] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_RPAREN] = ACTIONS(3258), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PERCENT] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_EQ_EQ] = ACTIONS(3258), + [anon_sym_BANG_EQ] = ACTIONS(3258), + [anon_sym_LT_EQ] = ACTIONS(3258), + [anon_sym_GT_EQ] = ACTIONS(3258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_mut] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_go] = ACTIONS(3258), + [anon_sym_spawn] = ACTIONS(3258), + [anon_sym_json_DOTdecode] = ACTIONS(3258), + [anon_sym_LBRACK2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_CARET] = ACTIONS(3258), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_LT_DASH] = ACTIONS(3258), + [anon_sym_LT_LT] = ACTIONS(3258), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3258), + [anon_sym_AMP_CARET] = ACTIONS(3258), + [anon_sym_AMP_AMP] = ACTIONS(3258), + [anon_sym_PIPE_PIPE] = ACTIONS(3258), + [anon_sym_or] = ACTIONS(3258), + [sym_none] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_nil] = ACTIONS(3258), + [anon_sym_QMARK_DOT] = ACTIONS(3258), + [anon_sym_POUND_LBRACK] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_DOLLARif] = ACTIONS(3258), + [anon_sym_is] = ACTIONS(3258), + [anon_sym_BANGis] = ACTIONS(3258), + [anon_sym_in] = ACTIONS(3258), + [anon_sym_BANGin] = ACTIONS(3258), + [anon_sym_match] = ACTIONS(3258), + [anon_sym_select] = ACTIONS(3258), + [anon_sym_lock] = ACTIONS(3258), + [anon_sym_rlock] = ACTIONS(3258), + [anon_sym_unsafe] = ACTIONS(3258), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(3258), + [sym_rune_literal] = ACTIONS(3258), + [sym_pseudo_compile_time_identifier] = ACTIONS(3258), + [anon_sym_shared] = ACTIONS(3258), + [anon_sym_map_LBRACK] = ACTIONS(3258), + [anon_sym_chan] = ACTIONS(3258), + [anon_sym_thread] = ACTIONS(3258), + [anon_sym_atomic] = ACTIONS(3258), + [sym___double_quote] = ACTIONS(3258), + [sym___single_quote] = ACTIONS(3258), + [sym___c_double_quote] = ACTIONS(3258), + [sym___c_single_quote] = ACTIONS(3258), + [sym___r_double_quote] = ACTIONS(3258), + [sym___r_single_quote] = ACTIONS(3258), }, [1282] = { [sym_line_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [sym_block_comment] = STATE(1282), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3851), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_DASH] = ACTIONS(607), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1283] = { [sym_line_comment] = STATE(1283), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_RPAREN] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), + [sym_block_comment] = STATE(1283), + [sym_identifier] = ACTIONS(3414), + [anon_sym_LF] = ACTIONS(3414), + [anon_sym_CR] = ACTIONS(3414), + [anon_sym_CR_LF] = ACTIONS(3414), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3414), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_as] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_RPAREN] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_fn] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_BANG_EQ] = ACTIONS(3414), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_QMARK] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(3414), + [anon_sym_spawn] = ACTIONS(3414), + [anon_sym_json_DOTdecode] = ACTIONS(3414), + [anon_sym_LBRACK2] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_GT_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_CARET] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_or] = ACTIONS(3414), + [sym_none] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_nil] = ACTIONS(3414), + [anon_sym_QMARK_DOT] = ACTIONS(3414), + [anon_sym_POUND_LBRACK] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_DOLLARif] = ACTIONS(3414), + [anon_sym_is] = ACTIONS(3414), + [anon_sym_BANGis] = ACTIONS(3414), + [anon_sym_in] = ACTIONS(3414), + [anon_sym_BANGin] = ACTIONS(3414), + [anon_sym_match] = ACTIONS(3414), + [anon_sym_select] = ACTIONS(3414), + [anon_sym_lock] = ACTIONS(3414), + [anon_sym_rlock] = ACTIONS(3414), + [anon_sym_unsafe] = ACTIONS(3414), + [anon_sym_sql] = ACTIONS(3414), + [sym_int_literal] = ACTIONS(3414), + [sym_float_literal] = ACTIONS(3414), + [sym_rune_literal] = ACTIONS(3414), + [sym_pseudo_compile_time_identifier] = ACTIONS(3414), + [anon_sym_shared] = ACTIONS(3414), + [anon_sym_map_LBRACK] = ACTIONS(3414), + [anon_sym_chan] = ACTIONS(3414), + [anon_sym_thread] = ACTIONS(3414), + [anon_sym_atomic] = ACTIONS(3414), + [sym___double_quote] = ACTIONS(3414), + [sym___single_quote] = ACTIONS(3414), + [sym___c_double_quote] = ACTIONS(3414), + [sym___c_single_quote] = ACTIONS(3414), + [sym___r_double_quote] = ACTIONS(3414), + [sym___r_single_quote] = ACTIONS(3414), }, [1284] = { [sym_line_comment] = STATE(1284), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2747), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_COMMA] = ACTIONS(2747), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym_RPAREN] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2747), - [anon_sym_BANG_EQ] = ACTIONS(2747), - [anon_sym_LT_EQ] = ACTIONS(2747), - [anon_sym_GT_EQ] = ACTIONS(2747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2747), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [anon_sym_LT_LT] = ACTIONS(2747), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2747), - [anon_sym_AMP_CARET] = ACTIONS(2747), - [anon_sym_AMP_AMP] = ACTIONS(2747), - [anon_sym_PIPE_PIPE] = ACTIONS(2747), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2747), - [anon_sym_POUND_LBRACK] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2747), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LF] = ACTIONS(3262), + [anon_sym_CR] = ACTIONS(3262), + [anon_sym_CR_LF] = ACTIONS(3262), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_COMMA] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_RPAREN] = ACTIONS(3262), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3262), + [anon_sym_BANG_EQ] = ACTIONS(3262), + [anon_sym_LT_EQ] = ACTIONS(3262), + [anon_sym_GT_EQ] = ACTIONS(3262), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3262), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_CARET] = ACTIONS(3262), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3262), + [anon_sym_LT_LT] = ACTIONS(3262), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3262), + [anon_sym_AMP_CARET] = ACTIONS(3262), + [anon_sym_AMP_AMP] = ACTIONS(3262), + [anon_sym_PIPE_PIPE] = ACTIONS(3262), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3262), + [anon_sym_POUND_LBRACK] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3262), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3262), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3262), + [sym_rune_literal] = ACTIONS(3262), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3262), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [sym___double_quote] = ACTIONS(3262), + [sym___single_quote] = ACTIONS(3262), + [sym___c_double_quote] = ACTIONS(3262), + [sym___c_single_quote] = ACTIONS(3262), + [sym___r_double_quote] = ACTIONS(3262), + [sym___r_single_quote] = ACTIONS(3262), }, [1285] = { [sym_line_comment] = STATE(1285), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), + [sym_block_comment] = STATE(1285), + [sym_identifier] = ACTIONS(3266), + [anon_sym_LF] = ACTIONS(3266), + [anon_sym_CR] = ACTIONS(3266), + [anon_sym_CR_LF] = ACTIONS(3266), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_COMMA] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_RPAREN] = ACTIONS(3266), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3266), + [anon_sym_BANG_EQ] = ACTIONS(3266), + [anon_sym_LT_EQ] = ACTIONS(3266), + [anon_sym_GT_EQ] = ACTIONS(3266), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3266), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_CARET] = ACTIONS(3266), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3266), + [anon_sym_LT_LT] = ACTIONS(3266), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3266), + [anon_sym_AMP_CARET] = ACTIONS(3266), + [anon_sym_AMP_AMP] = ACTIONS(3266), + [anon_sym_PIPE_PIPE] = ACTIONS(3266), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3266), + [anon_sym_POUND_LBRACK] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3266), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3266), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3266), + [sym_rune_literal] = ACTIONS(3266), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3266), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [sym___double_quote] = ACTIONS(3266), + [sym___single_quote] = ACTIONS(3266), + [sym___c_double_quote] = ACTIONS(3266), + [sym___c_single_quote] = ACTIONS(3266), + [sym___r_double_quote] = ACTIONS(3266), + [sym___r_single_quote] = ACTIONS(3266), }, [1286] = { [sym_line_comment] = STATE(1286), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), + [sym_block_comment] = STATE(1286), + [sym_identifier] = ACTIONS(3270), + [anon_sym_LF] = ACTIONS(3270), + [anon_sym_CR] = ACTIONS(3270), + [anon_sym_CR_LF] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3270), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3270), + [anon_sym_COMMA] = ACTIONS(3270), + [anon_sym_RBRACE] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3270), + [anon_sym_RPAREN] = ACTIONS(3270), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3270), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3270), + [anon_sym_BANG_EQ] = ACTIONS(3270), + [anon_sym_LT_EQ] = ACTIONS(3270), + [anon_sym_GT_EQ] = ACTIONS(3270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3270), + [anon_sym_DASH_DASH] = ACTIONS(3270), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3270), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3270), + [anon_sym_CARET] = ACTIONS(3270), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3270), + [anon_sym_LT_LT] = ACTIONS(3270), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3270), + [anon_sym_AMP_CARET] = ACTIONS(3270), + [anon_sym_AMP_AMP] = ACTIONS(3270), + [anon_sym_PIPE_PIPE] = ACTIONS(3270), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3270), + [anon_sym_POUND_LBRACK] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3270), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3270), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3270), + [sym_rune_literal] = ACTIONS(3270), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3270), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [sym___double_quote] = ACTIONS(3270), + [sym___single_quote] = ACTIONS(3270), + [sym___c_double_quote] = ACTIONS(3270), + [sym___c_single_quote] = ACTIONS(3270), + [sym___r_double_quote] = ACTIONS(3270), + [sym___r_single_quote] = ACTIONS(3270), }, [1287] = { [sym_line_comment] = STATE(1287), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_RPAREN] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), + [sym_block_comment] = STATE(1287), + [sym_identifier] = ACTIONS(3246), + [anon_sym_LF] = ACTIONS(3246), + [anon_sym_CR] = ACTIONS(3246), + [anon_sym_CR_LF] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3246), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3246), + [anon_sym_COMMA] = ACTIONS(3246), + [anon_sym_RBRACE] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3246), + [anon_sym_RPAREN] = ACTIONS(3246), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3246), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3246), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3246), + [anon_sym_BANG_EQ] = ACTIONS(3246), + [anon_sym_LT_EQ] = ACTIONS(3246), + [anon_sym_GT_EQ] = ACTIONS(3246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3246), + [anon_sym_DASH_DASH] = ACTIONS(3246), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3246), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3246), + [anon_sym_CARET] = ACTIONS(3246), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3246), + [anon_sym_LT_LT] = ACTIONS(3246), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3246), + [anon_sym_AMP_CARET] = ACTIONS(3246), + [anon_sym_AMP_AMP] = ACTIONS(3246), + [anon_sym_PIPE_PIPE] = ACTIONS(3246), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3246), + [anon_sym_POUND_LBRACK] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3246), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3246), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3246), + [sym_rune_literal] = ACTIONS(3246), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3246), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [sym___double_quote] = ACTIONS(3246), + [sym___single_quote] = ACTIONS(3246), + [sym___c_double_quote] = ACTIONS(3246), + [sym___c_single_quote] = ACTIONS(3246), + [sym___r_double_quote] = ACTIONS(3246), + [sym___r_single_quote] = ACTIONS(3246), }, [1288] = { [sym_line_comment] = STATE(1288), - [sym_identifier] = ACTIONS(2976), - [anon_sym_LF] = ACTIONS(2976), - [anon_sym_CR] = ACTIONS(2976), - [anon_sym_CR_LF] = ACTIONS(2976), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2976), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(2976), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(2976), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2976), - [anon_sym_mut] = ACTIONS(2976), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(2976), - [anon_sym_spawn] = ACTIONS(2976), - [anon_sym_json_DOTdecode] = ACTIONS(2976), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(2976), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(2976), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(2976), - [sym_true] = ACTIONS(2976), - [sym_false] = ACTIONS(2976), - [sym_nil] = ACTIONS(2976), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2976), - [anon_sym_DOLLARif] = ACTIONS(2976), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2976), - [anon_sym_select] = ACTIONS(2976), - [anon_sym_lock] = ACTIONS(2976), - [anon_sym_rlock] = ACTIONS(2976), - [anon_sym_unsafe] = ACTIONS(2976), - [anon_sym_sql] = ACTIONS(2976), - [sym_int_literal] = ACTIONS(2976), - [sym_float_literal] = ACTIONS(2976), - [sym_rune_literal] = ACTIONS(2976), - [sym_pseudo_compile_time_identifier] = ACTIONS(2976), - [anon_sym_shared] = ACTIONS(2976), - [anon_sym_map_LBRACK] = ACTIONS(2976), - [anon_sym_chan] = ACTIONS(2976), - [anon_sym_thread] = ACTIONS(2976), - [anon_sym_atomic] = ACTIONS(2976), - [sym___double_quote] = ACTIONS(2976), - [sym___single_quote] = ACTIONS(2976), - [sym___c_double_quote] = ACTIONS(2976), - [sym___c_single_quote] = ACTIONS(2976), - [sym___r_double_quote] = ACTIONS(2976), - [sym___r_single_quote] = ACTIONS(2976), + [sym_block_comment] = STATE(1288), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LF] = ACTIONS(3029), + [anon_sym_CR] = ACTIONS(3029), + [anon_sym_CR_LF] = ACTIONS(3029), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_COMMA] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3029), + [anon_sym_BANG_EQ] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_struct] = ACTIONS(3029), + [anon_sym_mut] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3029), + [anon_sym_DASH_DASH] = ACTIONS(3029), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3029), + [anon_sym_spawn] = ACTIONS(3029), + [anon_sym_json_DOTdecode] = ACTIONS(3029), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3029), + [anon_sym_AMP_CARET] = ACTIONS(3029), + [anon_sym_AMP_AMP] = ACTIONS(3029), + [anon_sym_PIPE_PIPE] = ACTIONS(3029), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3029), + [sym_true] = ACTIONS(3029), + [sym_false] = ACTIONS(3029), + [sym_nil] = ACTIONS(3029), + [anon_sym_QMARK_DOT] = ACTIONS(3029), + [anon_sym_POUND_LBRACK] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_DOLLARif] = ACTIONS(3029), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3029), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3029), + [anon_sym_match] = ACTIONS(3029), + [anon_sym_select] = ACTIONS(3029), + [anon_sym_lock] = ACTIONS(3029), + [anon_sym_rlock] = ACTIONS(3029), + [anon_sym_unsafe] = ACTIONS(3029), + [anon_sym_sql] = ACTIONS(3029), + [sym_int_literal] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), + [sym_rune_literal] = ACTIONS(3029), + [sym_pseudo_compile_time_identifier] = ACTIONS(3029), + [anon_sym_shared] = ACTIONS(3029), + [anon_sym_map_LBRACK] = ACTIONS(3029), + [anon_sym_chan] = ACTIONS(3029), + [anon_sym_thread] = ACTIONS(3029), + [anon_sym_atomic] = ACTIONS(3029), + [sym___double_quote] = ACTIONS(3029), + [sym___single_quote] = ACTIONS(3029), + [sym___c_double_quote] = ACTIONS(3029), + [sym___c_single_quote] = ACTIONS(3029), + [sym___r_double_quote] = ACTIONS(3029), + [sym___r_single_quote] = ACTIONS(3029), }, [1289] = { [sym_line_comment] = STATE(1289), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_EQ] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(3853), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1290] = { - [sym_line_comment] = STATE(1290), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1837), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_SLASH] = ACTIONS(1837), - [anon_sym_PERCENT] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_EQ_EQ] = ACTIONS(1835), - [anon_sym_BANG_EQ] = ACTIONS(1835), - [anon_sym_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_EQ] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_mut] = ACTIONS(1837), - [anon_sym_COLON] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1837), - [anon_sym_spawn] = ACTIONS(1837), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1835), - [anon_sym_GT_GT] = ACTIONS(1837), - [anon_sym_GT_GT_GT] = ACTIONS(1835), - [anon_sym_AMP_CARET] = ACTIONS(1835), - [anon_sym_AMP_AMP] = ACTIONS(1835), - [anon_sym_PIPE_PIPE] = ACTIONS(1835), - [anon_sym_or] = ACTIONS(1837), - [sym_none] = ACTIONS(1837), - [sym_true] = ACTIONS(1837), - [sym_false] = ACTIONS(1837), - [sym_nil] = ACTIONS(1837), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_DOLLARif] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1837), - [anon_sym_BANGis] = ACTIONS(1835), - [anon_sym_in] = ACTIONS(1837), - [anon_sym_BANGin] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_select] = ACTIONS(1837), - [anon_sym_lock] = ACTIONS(1837), - [anon_sym_rlock] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_sql] = ACTIONS(1837), - [sym_int_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1835), - [sym_rune_literal] = ACTIONS(1835), - [sym_pseudo_compile_time_identifier] = ACTIONS(1837), - [anon_sym_shared] = ACTIONS(1837), - [anon_sym_map_LBRACK] = ACTIONS(1835), - [anon_sym_chan] = ACTIONS(1837), - [anon_sym_thread] = ACTIONS(1837), - [anon_sym_atomic] = ACTIONS(1837), - [sym___double_quote] = ACTIONS(1835), - [sym___single_quote] = ACTIONS(1835), - [sym___c_double_quote] = ACTIONS(1835), - [sym___c_single_quote] = ACTIONS(1835), - [sym___r_double_quote] = ACTIONS(1835), - [sym___r_single_quote] = ACTIONS(1835), - }, - [1291] = { - [sym_line_comment] = STATE(1291), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), + [sym_block_comment] = STATE(1289), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), [sym_identifier] = ACTIONS(1925), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(1925), [anon_sym_LBRACE] = ACTIONS(1923), [anon_sym_COMMA] = ACTIONS(1923), [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(1925), [anon_sym_fn] = ACTIONS(1925), [anon_sym_PLUS] = ACTIONS(1925), @@ -172539,19 +166899,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(1923), [anon_sym_LT_EQ] = ACTIONS(1923), [anon_sym_GT_EQ] = ACTIONS(1923), - [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), [anon_sym_RBRACK] = ACTIONS(1923), [anon_sym_struct] = ACTIONS(1925), [anon_sym_mut] = ACTIONS(1925), [anon_sym_COLON] = ACTIONS(1923), [anon_sym_PLUS_PLUS] = ACTIONS(1923), [anon_sym_DASH_DASH] = ACTIONS(1923), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), [anon_sym_go] = ACTIONS(1925), [anon_sym_spawn] = ACTIONS(1925), [anon_sym_json_DOTdecode] = ACTIONS(1923), - [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(1923), [anon_sym_CARET] = ACTIONS(1923), [anon_sym_AMP] = ACTIONS(1925), @@ -172567,8 +166927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1925), [sym_false] = ACTIONS(1925), [sym_nil] = ACTIONS(1925), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), [anon_sym_if] = ACTIONS(1925), [anon_sym_DOLLARif] = ACTIONS(1925), [anon_sym_is] = ACTIONS(1925), @@ -172597,182 +166957,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(1923), [sym___r_single_quote] = ACTIONS(1923), }, + [1290] = { + [sym_line_comment] = STATE(1290), + [sym_block_comment] = STATE(1290), + [sym_identifier] = ACTIONS(3035), + [anon_sym_LF] = ACTIONS(3035), + [anon_sym_CR] = ACTIONS(3035), + [anon_sym_CR_LF] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(3035), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_mut] = ACTIONS(3035), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3035), + [anon_sym_json_DOTdecode] = ACTIONS(3035), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3035), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3035), + [sym_true] = ACTIONS(3035), + [sym_false] = ACTIONS(3035), + [sym_nil] = ACTIONS(3035), + [anon_sym_QMARK_DOT] = ACTIONS(3035), + [anon_sym_POUND_LBRACK] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_DOLLARif] = ACTIONS(3035), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3035), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_select] = ACTIONS(3035), + [anon_sym_lock] = ACTIONS(3035), + [anon_sym_rlock] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_sql] = ACTIONS(3035), + [sym_int_literal] = ACTIONS(3035), + [sym_float_literal] = ACTIONS(3035), + [sym_rune_literal] = ACTIONS(3035), + [sym_pseudo_compile_time_identifier] = ACTIONS(3035), + [anon_sym_shared] = ACTIONS(3035), + [anon_sym_map_LBRACK] = ACTIONS(3035), + [anon_sym_chan] = ACTIONS(3035), + [anon_sym_thread] = ACTIONS(3035), + [anon_sym_atomic] = ACTIONS(3035), + [sym___double_quote] = ACTIONS(3035), + [sym___single_quote] = ACTIONS(3035), + [sym___c_double_quote] = ACTIONS(3035), + [sym___c_single_quote] = ACTIONS(3035), + [sym___r_double_quote] = ACTIONS(3035), + [sym___r_single_quote] = ACTIONS(3035), + }, + [1291] = { + [sym_line_comment] = STATE(1291), + [sym_block_comment] = STATE(1291), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1913), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1913), + [anon_sym_fn] = ACTIONS(1913), + [anon_sym_PLUS] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1911), + [anon_sym_BANG_EQ] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1911), + [anon_sym_GT_EQ] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1913), + [anon_sym_mut] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_PLUS_PLUS] = ACTIONS(1911), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1913), + [anon_sym_spawn] = ACTIONS(1913), + [anon_sym_json_DOTdecode] = ACTIONS(1911), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1913), + [anon_sym_LT_DASH] = ACTIONS(1911), + [anon_sym_LT_LT] = ACTIONS(1911), + [anon_sym_GT_GT] = ACTIONS(1913), + [anon_sym_GT_GT_GT] = ACTIONS(1911), + [anon_sym_AMP_CARET] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1911), + [anon_sym_PIPE_PIPE] = ACTIONS(1911), + [anon_sym_or] = ACTIONS(1913), + [sym_none] = ACTIONS(1913), + [sym_true] = ACTIONS(1913), + [sym_false] = ACTIONS(1913), + [sym_nil] = ACTIONS(1913), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1913), + [anon_sym_DOLLARif] = ACTIONS(1913), + [anon_sym_is] = ACTIONS(1913), + [anon_sym_BANGis] = ACTIONS(1911), + [anon_sym_in] = ACTIONS(1913), + [anon_sym_BANGin] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1913), + [anon_sym_select] = ACTIONS(1913), + [anon_sym_lock] = ACTIONS(1913), + [anon_sym_rlock] = ACTIONS(1913), + [anon_sym_unsafe] = ACTIONS(1913), + [anon_sym_sql] = ACTIONS(1913), + [sym_int_literal] = ACTIONS(1913), + [sym_float_literal] = ACTIONS(1911), + [sym_rune_literal] = ACTIONS(1911), + [sym_pseudo_compile_time_identifier] = ACTIONS(1913), + [anon_sym_shared] = ACTIONS(1913), + [anon_sym_map_LBRACK] = ACTIONS(1911), + [anon_sym_chan] = ACTIONS(1913), + [anon_sym_thread] = ACTIONS(1913), + [anon_sym_atomic] = ACTIONS(1913), + [sym___double_quote] = ACTIONS(1911), + [sym___single_quote] = ACTIONS(1911), + [sym___c_double_quote] = ACTIONS(1911), + [sym___c_single_quote] = ACTIONS(1911), + [sym___r_double_quote] = ACTIONS(1911), + [sym___r_single_quote] = ACTIONS(1911), + }, [1292] = { [sym_line_comment] = STATE(1292), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1887), - [anon_sym_SLASH] = ACTIONS(1889), - [anon_sym_PERCENT] = ACTIONS(1887), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(1887), - [anon_sym_GT_GT] = ACTIONS(1889), - [anon_sym_GT_GT_GT] = ACTIONS(1887), - [anon_sym_AMP_CARET] = ACTIONS(1887), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [sym_block_comment] = STATE(1292), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(1847), + [anon_sym_SLASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1847), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1847), + [anon_sym_GT_GT] = ACTIONS(1849), + [anon_sym_GT_GT_GT] = ACTIONS(1847), + [anon_sym_AMP_CARET] = ACTIONS(1847), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, [1293] = { [sym_line_comment] = STATE(1293), - [sym_identifier] = ACTIONS(2970), - [anon_sym_LF] = ACTIONS(2970), - [anon_sym_CR] = ACTIONS(2970), - [anon_sym_CR_LF] = ACTIONS(2970), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(2970), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_COMMA] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(2970), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(2970), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2970), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2970), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2970), - [anon_sym_BANG_EQ] = ACTIONS(2970), - [anon_sym_LT_EQ] = ACTIONS(2970), - [anon_sym_GT_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_struct] = ACTIONS(2970), - [anon_sym_mut] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2970), - [anon_sym_DASH_DASH] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(2970), - [anon_sym_spawn] = ACTIONS(2970), - [anon_sym_json_DOTdecode] = ACTIONS(2970), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2970), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(2970), - [anon_sym_LT_LT] = ACTIONS(2970), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2970), - [anon_sym_AMP_CARET] = ACTIONS(2970), - [anon_sym_AMP_AMP] = ACTIONS(2970), - [anon_sym_PIPE_PIPE] = ACTIONS(2970), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_nil] = ACTIONS(2970), - [anon_sym_QMARK_DOT] = ACTIONS(2970), - [anon_sym_POUND_LBRACK] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_DOLLARif] = ACTIONS(2970), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2970), - [anon_sym_match] = ACTIONS(2970), - [anon_sym_select] = ACTIONS(2970), - [anon_sym_lock] = ACTIONS(2970), - [anon_sym_rlock] = ACTIONS(2970), - [anon_sym_unsafe] = ACTIONS(2970), - [anon_sym_sql] = ACTIONS(2970), - [sym_int_literal] = ACTIONS(2970), - [sym_float_literal] = ACTIONS(2970), - [sym_rune_literal] = ACTIONS(2970), - [sym_pseudo_compile_time_identifier] = ACTIONS(2970), - [anon_sym_shared] = ACTIONS(2970), - [anon_sym_map_LBRACK] = ACTIONS(2970), - [anon_sym_chan] = ACTIONS(2970), - [anon_sym_thread] = ACTIONS(2970), - [anon_sym_atomic] = ACTIONS(2970), - [sym___double_quote] = ACTIONS(2970), - [sym___single_quote] = ACTIONS(2970), - [sym___c_double_quote] = ACTIONS(2970), - [sym___c_single_quote] = ACTIONS(2970), - [sym___r_double_quote] = ACTIONS(2970), - [sym___r_single_quote] = ACTIONS(2970), + [sym_block_comment] = STATE(1293), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_EQ] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(3869), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_STAR_EQ] = ACTIONS(607), + [anon_sym_SLASH_EQ] = ACTIONS(607), + [anon_sym_PERCENT_EQ] = ACTIONS(607), + [anon_sym_LT_LT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_EQ] = ACTIONS(607), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), + [anon_sym_AMP_EQ] = ACTIONS(607), + [anon_sym_AMP_CARET_EQ] = ACTIONS(607), + [anon_sym_PLUS_EQ] = ACTIONS(607), + [anon_sym_DASH_EQ] = ACTIONS(607), + [anon_sym_PIPE_EQ] = ACTIONS(607), + [anon_sym_CARET_EQ] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1294] = { [sym_line_comment] = STATE(1294), - [sym_else_branch] = STATE(1389), + [sym_block_comment] = STATE(1294), + [sym_else_branch] = STATE(1364), [sym_identifier] = ACTIONS(2481), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(2481), [anon_sym_as] = ACTIONS(2481), [anon_sym_LBRACE] = ACTIONS(2479), @@ -172853,18 +167388,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1295] = { [sym_line_comment] = STATE(1295), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_format_specifier] = STATE(4131), + [sym_block_comment] = STATE(1295), + [sym_else_branch] = STATE(1365), + [sym_identifier] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2491), + [anon_sym_as] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_COMMA] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_PLUS] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2491), + [anon_sym_PERCENT] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_GT] = ACTIONS(2491), + [anon_sym_EQ_EQ] = ACTIONS(2489), + [anon_sym_BANG_EQ] = ACTIONS(2489), + [anon_sym_LT_EQ] = ACTIONS(2489), + [anon_sym_GT_EQ] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_mut] = ACTIONS(2491), + [anon_sym_COLON] = ACTIONS(2489), + [anon_sym_PLUS_PLUS] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2489), + [anon_sym_QMARK] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_go] = ACTIONS(2491), + [anon_sym_spawn] = ACTIONS(2491), + [anon_sym_json_DOTdecode] = ACTIONS(2489), + [anon_sym_LBRACK2] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2489), + [anon_sym_CARET] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_LT_DASH] = ACTIONS(2489), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_GT_GT] = ACTIONS(2491), + [anon_sym_GT_GT_GT] = ACTIONS(2489), + [anon_sym_AMP_CARET] = ACTIONS(2489), + [anon_sym_AMP_AMP] = ACTIONS(2489), + [anon_sym_PIPE_PIPE] = ACTIONS(2489), + [anon_sym_or] = ACTIONS(2491), + [sym_none] = ACTIONS(2491), + [sym_true] = ACTIONS(2491), + [sym_false] = ACTIONS(2491), + [sym_nil] = ACTIONS(2491), + [anon_sym_QMARK_DOT] = ACTIONS(2489), + [anon_sym_POUND_LBRACK] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_else] = ACTIONS(3871), + [anon_sym_DOLLARif] = ACTIONS(2491), + [anon_sym_is] = ACTIONS(2491), + [anon_sym_BANGis] = ACTIONS(2489), + [anon_sym_in] = ACTIONS(2491), + [anon_sym_BANGin] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_select] = ACTIONS(2491), + [anon_sym_lock] = ACTIONS(2491), + [anon_sym_rlock] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_sql] = ACTIONS(2491), + [sym_int_literal] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2489), + [sym_rune_literal] = ACTIONS(2489), + [sym_pseudo_compile_time_identifier] = ACTIONS(2491), + [anon_sym_shared] = ACTIONS(2491), + [anon_sym_map_LBRACK] = ACTIONS(2489), + [anon_sym_chan] = ACTIONS(2491), + [anon_sym_thread] = ACTIONS(2491), + [anon_sym_atomic] = ACTIONS(2491), + [sym___double_quote] = ACTIONS(2489), + [sym___single_quote] = ACTIONS(2489), + [sym___c_double_quote] = ACTIONS(2489), + [sym___c_single_quote] = ACTIONS(2489), + [sym___r_double_quote] = ACTIONS(2489), + [sym___r_single_quote] = ACTIONS(2489), + }, + [1296] = { + [sym_line_comment] = STATE(1296), + [sym_block_comment] = STATE(1296), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_format_specifier] = STATE(4252), [sym_identifier] = ACTIONS(3873), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(3875), [anon_sym_LBRACE] = ACTIONS(3877), [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), [anon_sym_fn] = ACTIONS(3873), [anon_sym_PLUS] = ACTIONS(3879), @@ -172878,18 +167499,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), [anon_sym_struct] = ACTIONS(3873), [anon_sym_mut] = ACTIONS(3873), [anon_sym_COLON] = ACTIONS(3889), [anon_sym_PLUS_PLUS] = ACTIONS(3891), [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), [anon_sym_go] = ACTIONS(3873), [anon_sym_spawn] = ACTIONS(3873), [anon_sym_json_DOTdecode] = ACTIONS(3877), - [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(3877), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), @@ -172905,8 +167526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(3873), [sym_false] = ACTIONS(3873), [sym_nil] = ACTIONS(3873), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), [anon_sym_if] = ACTIONS(3873), [anon_sym_DOLLARif] = ACTIONS(3873), [anon_sym_is] = ACTIONS(3903), @@ -172935,20 +167556,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3877), [sym___r_single_quote] = ACTIONS(3877), }, - [1296] = { - [sym_line_comment] = STATE(1296), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_format_specifier] = STATE(4350), + [1297] = { + [sym_line_comment] = STATE(1297), + [sym_block_comment] = STATE(1297), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_format_specifier] = STATE(4219), [sym_identifier] = ACTIONS(3873), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(3875), [anon_sym_LBRACE] = ACTIONS(3877), [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), [anon_sym_fn] = ACTIONS(3873), [anon_sym_PLUS] = ACTIONS(3879), @@ -172962,18 +167584,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), [anon_sym_struct] = ACTIONS(3873), [anon_sym_mut] = ACTIONS(3873), [anon_sym_COLON] = ACTIONS(3889), [anon_sym_PLUS_PLUS] = ACTIONS(3891), [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), [anon_sym_go] = ACTIONS(3873), [anon_sym_spawn] = ACTIONS(3873), [anon_sym_json_DOTdecode] = ACTIONS(3877), - [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(3877), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), @@ -172989,8 +167611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(3873), [sym_false] = ACTIONS(3873), [sym_nil] = ACTIONS(3873), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), [anon_sym_if] = ACTIONS(3873), [anon_sym_DOLLARif] = ACTIONS(3873), [anon_sym_is] = ACTIONS(3903), @@ -173019,105 +167641,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3877), [sym___r_single_quote] = ACTIONS(3877), }, - [1297] = { - [sym_line_comment] = STATE(1297), - [sym_else_branch] = STATE(1388), - [sym_identifier] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_COMMA] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_SLASH] = ACTIONS(2475), - [anon_sym_PERCENT] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2475), - [anon_sym_GT] = ACTIONS(2475), - [anon_sym_EQ_EQ] = ACTIONS(2473), - [anon_sym_BANG_EQ] = ACTIONS(2473), - [anon_sym_LT_EQ] = ACTIONS(2473), - [anon_sym_GT_EQ] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_RBRACK] = ACTIONS(2473), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_COLON] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_QMARK] = ACTIONS(2475), - [anon_sym_BANG] = ACTIONS(2475), - [anon_sym_go] = ACTIONS(2475), - [anon_sym_spawn] = ACTIONS(2475), - [anon_sym_json_DOTdecode] = ACTIONS(2473), - [anon_sym_LBRACK2] = ACTIONS(2475), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_CARET] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_LT_DASH] = ACTIONS(2473), - [anon_sym_LT_LT] = ACTIONS(2473), - [anon_sym_GT_GT] = ACTIONS(2475), - [anon_sym_GT_GT_GT] = ACTIONS(2473), - [anon_sym_AMP_CARET] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_PIPE_PIPE] = ACTIONS(2473), - [anon_sym_or] = ACTIONS(2475), - [sym_none] = ACTIONS(2475), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_nil] = ACTIONS(2475), - [anon_sym_QMARK_DOT] = ACTIONS(2473), - [anon_sym_POUND_LBRACK] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(3871), - [anon_sym_DOLLARif] = ACTIONS(2475), - [anon_sym_is] = ACTIONS(2475), - [anon_sym_BANGis] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2475), - [anon_sym_BANGin] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_select] = ACTIONS(2475), - [anon_sym_lock] = ACTIONS(2475), - [anon_sym_rlock] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_sql] = ACTIONS(2475), - [sym_int_literal] = ACTIONS(2475), - [sym_float_literal] = ACTIONS(2473), - [sym_rune_literal] = ACTIONS(2473), - [sym_pseudo_compile_time_identifier] = ACTIONS(2475), - [anon_sym_shared] = ACTIONS(2475), - [anon_sym_map_LBRACK] = ACTIONS(2473), - [anon_sym_chan] = ACTIONS(2475), - [anon_sym_thread] = ACTIONS(2475), - [anon_sym_atomic] = ACTIONS(2475), - [sym___double_quote] = ACTIONS(2473), - [sym___single_quote] = ACTIONS(2473), - [sym___c_double_quote] = ACTIONS(2473), - [sym___c_single_quote] = ACTIONS(2473), - [sym___r_double_quote] = ACTIONS(2473), - [sym___r_single_quote] = ACTIONS(2473), - }, [1298] = { [sym_line_comment] = STATE(1298), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), + [sym_block_comment] = STATE(1298), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_SLASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3917), + [anon_sym_AMP] = ACTIONS(3915), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_GT_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_CARET] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1879), + [sym___single_quote] = ACTIONS(1879), + [sym___c_double_quote] = ACTIONS(1879), + [sym___c_single_quote] = ACTIONS(1879), + [sym___r_double_quote] = ACTIONS(1879), + [sym___r_single_quote] = ACTIONS(1879), + }, + [1299] = { + [sym_line_comment] = STATE(1299), + [sym_block_comment] = STATE(1299), + [sym_identifier] = ACTIONS(2727), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_COLON] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_DOLLARelse] = ACTIONS(3919), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2725), + [sym___single_quote] = ACTIONS(2725), + [sym___c_double_quote] = ACTIONS(2725), + [sym___c_single_quote] = ACTIONS(2725), + [sym___r_double_quote] = ACTIONS(2725), + [sym___r_single_quote] = ACTIONS(2725), + }, + [1300] = { + [sym_line_comment] = STATE(1300), + [sym_block_comment] = STATE(1300), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3879), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_COLON] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3883), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(3883), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_AMP_CARET] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1875), + [sym___single_quote] = ACTIONS(1875), + [sym___c_double_quote] = ACTIONS(1875), + [sym___c_single_quote] = ACTIONS(1875), + [sym___r_double_quote] = ACTIONS(1875), + [sym___r_single_quote] = ACTIONS(1875), + }, + [1301] = { + [sym_line_comment] = STATE(1301), + [sym_block_comment] = STATE(1301), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(3883), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(3883), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_AMP_CARET] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), + }, + [1302] = { + [sym_line_comment] = STATE(1302), + [sym_block_comment] = STATE(1302), + [sym_identifier] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), + [anon_sym_LT_EQ] = ACTIONS(3320), + [anon_sym_GT_EQ] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_COLON] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_CARET] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3320), + [anon_sym_LT_LT] = ACTIONS(3320), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3320), + [anon_sym_AMP_CARET] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3320), + [anon_sym_POUND_LBRACK] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3320), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3320), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3320), + [sym_rune_literal] = ACTIONS(3320), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3320), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3320), + [sym___single_quote] = ACTIONS(3320), + [sym___c_double_quote] = ACTIONS(3320), + [sym___c_single_quote] = ACTIONS(3320), + [sym___r_double_quote] = ACTIONS(3320), + [sym___r_single_quote] = ACTIONS(3320), + }, + [1303] = { + [sym_line_comment] = STATE(1303), + [sym_block_comment] = STATE(1303), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1881), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3879), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1879), + [anon_sym_BANG_EQ] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3883), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(3883), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_AMP_CARET] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(1879), + [anon_sym_PIPE_PIPE] = ACTIONS(1879), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1879), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1879), + [sym___single_quote] = ACTIONS(1879), + [sym___c_double_quote] = ACTIONS(1879), + [sym___c_single_quote] = ACTIONS(1879), + [sym___r_double_quote] = ACTIONS(1879), + [sym___r_single_quote] = ACTIONS(1879), + }, + [1304] = { + [sym_line_comment] = STATE(1304), + [sym_block_comment] = STATE(1304), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_RBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2667), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_AMP_CARET] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2667), + [anon_sym_POUND_LBRACK] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_DOLLARelse] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2667), + [sym_rune_literal] = ACTIONS(2667), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2667), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2667), + [sym___single_quote] = ACTIONS(2667), + [sym___c_double_quote] = ACTIONS(2667), + [sym___c_single_quote] = ACTIONS(2667), + [sym___r_double_quote] = ACTIONS(2667), + [sym___r_single_quote] = ACTIONS(2667), + }, + [1305] = { + [sym_line_comment] = STATE(1305), + [sym_block_comment] = STATE(1305), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3879), [anon_sym_DASH] = ACTIONS(3879), [anon_sym_STAR] = ACTIONS(3881), @@ -173129,742 +168256,751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1847), [anon_sym_LT_LT] = ACTIONS(3881), [anon_sym_GT_GT] = ACTIONS(3883), [anon_sym_GT_GT_GT] = ACTIONS(3881), [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), [anon_sym_in] = ACTIONS(3907), [anon_sym_BANGin] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, - [1299] = { - [sym_line_comment] = STATE(1299), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), + [1306] = { + [sym_line_comment] = STATE(1306), + [sym_block_comment] = STATE(1306), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3879), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3879), [anon_sym_STAR] = ACTIONS(3881), [anon_sym_SLASH] = ACTIONS(3883), [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_LT] = ACTIONS(3885), + [anon_sym_GT] = ACTIONS(3885), + [anon_sym_EQ_EQ] = ACTIONS(3887), + [anon_sym_BANG_EQ] = ACTIONS(3887), + [anon_sym_LT_EQ] = ACTIONS(3887), + [anon_sym_GT_EQ] = ACTIONS(3887), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(1847), [anon_sym_LT_LT] = ACTIONS(3881), [anon_sym_GT_GT] = ACTIONS(3883), [anon_sym_GT_GT_GT] = ACTIONS(3881), [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [anon_sym_AMP_AMP] = ACTIONS(3897), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(3907), + [anon_sym_BANGin] = ACTIONS(3909), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, - [1300] = { - [sym_line_comment] = STATE(1300), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [1307] = { + [sym_line_comment] = STATE(1307), + [sym_block_comment] = STATE(1307), + [sym_identifier] = ACTIONS(3298), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_DOT] = ACTIONS(3298), + [anon_sym_as] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_COMMA] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_PIPE] = ACTIONS(3298), + [anon_sym_fn] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_GT] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_LT_EQ] = ACTIONS(3296), + [anon_sym_GT_EQ] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_RBRACK] = ACTIONS(3296), + [anon_sym_struct] = ACTIONS(3298), + [anon_sym_mut] = ACTIONS(3298), + [anon_sym_COLON] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_QMARK] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_go] = ACTIONS(3298), + [anon_sym_spawn] = ACTIONS(3298), + [anon_sym_json_DOTdecode] = ACTIONS(3296), + [anon_sym_LBRACK2] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_CARET] = ACTIONS(3296), + [anon_sym_AMP] = ACTIONS(3298), + [anon_sym_LT_DASH] = ACTIONS(3296), + [anon_sym_LT_LT] = ACTIONS(3296), + [anon_sym_GT_GT] = ACTIONS(3298), + [anon_sym_GT_GT_GT] = ACTIONS(3296), + [anon_sym_AMP_CARET] = ACTIONS(3296), + [anon_sym_AMP_AMP] = ACTIONS(3296), + [anon_sym_PIPE_PIPE] = ACTIONS(3296), + [anon_sym_or] = ACTIONS(3298), + [sym_none] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_nil] = ACTIONS(3298), + [anon_sym_QMARK_DOT] = ACTIONS(3296), + [anon_sym_POUND_LBRACK] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_DOLLARif] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3298), + [anon_sym_BANGis] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3296), + [anon_sym_match] = ACTIONS(3298), + [anon_sym_select] = ACTIONS(3298), + [anon_sym_lock] = ACTIONS(3298), + [anon_sym_rlock] = ACTIONS(3298), + [anon_sym_unsafe] = ACTIONS(3298), + [anon_sym_sql] = ACTIONS(3298), + [sym_int_literal] = ACTIONS(3298), + [sym_float_literal] = ACTIONS(3296), + [sym_rune_literal] = ACTIONS(3296), + [sym_pseudo_compile_time_identifier] = ACTIONS(3298), + [anon_sym_shared] = ACTIONS(3298), + [anon_sym_map_LBRACK] = ACTIONS(3296), + [anon_sym_chan] = ACTIONS(3298), + [anon_sym_thread] = ACTIONS(3298), + [anon_sym_atomic] = ACTIONS(3298), + [sym___double_quote] = ACTIONS(3296), + [sym___single_quote] = ACTIONS(3296), + [sym___c_double_quote] = ACTIONS(3296), + [sym___c_single_quote] = ACTIONS(3296), + [sym___r_double_quote] = ACTIONS(3296), + [sym___r_single_quote] = ACTIONS(3296), }, - [1301] = { - [sym_line_comment] = STATE(1301), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3927), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [1308] = { + [sym_line_comment] = STATE(1308), + [sym_block_comment] = STATE(1308), + [sym_type_parameters] = STATE(1400), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_RBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2693), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_LT_LT] = ACTIONS(2693), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2693), + [anon_sym_AMP_CARET] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2693), + [anon_sym_POUND_LBRACK] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2693), + [sym_rune_literal] = ACTIONS(2693), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2693), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2693), + [sym___single_quote] = ACTIONS(2693), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2693), + [sym___r_double_quote] = ACTIONS(2693), + [sym___r_single_quote] = ACTIONS(2693), }, - [1302] = { - [sym_line_comment] = STATE(1302), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_COMMA] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(3857), + [1309] = { + [sym_line_comment] = STATE(1309), + [sym_block_comment] = STATE(1309), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3879), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3881), + [anon_sym_SLASH] = ACTIONS(3883), + [anon_sym_PERCENT] = ACTIONS(3881), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3895), + [anon_sym_AMP] = ACTIONS(3883), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3881), + [anon_sym_GT_GT] = ACTIONS(3883), + [anon_sym_GT_GT_GT] = ACTIONS(3881), + [anon_sym_AMP_CARET] = ACTIONS(3881), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), + }, + [1310] = { + [sym_line_comment] = STATE(1310), + [sym_block_comment] = STATE(1310), + [sym_identifier] = ACTIONS(3314), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_DOT] = ACTIONS(3314), + [anon_sym_as] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_COMMA] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_PIPE] = ACTIONS(3314), + [anon_sym_fn] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_STAR] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_PERCENT] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_GT] = ACTIONS(3314), + [anon_sym_EQ_EQ] = ACTIONS(3312), + [anon_sym_BANG_EQ] = ACTIONS(3312), + [anon_sym_LT_EQ] = ACTIONS(3312), + [anon_sym_GT_EQ] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_RBRACK] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3314), + [anon_sym_mut] = ACTIONS(3314), + [anon_sym_COLON] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_QMARK] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_go] = ACTIONS(3314), + [anon_sym_spawn] = ACTIONS(3314), + [anon_sym_json_DOTdecode] = ACTIONS(3312), + [anon_sym_LBRACK2] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_CARET] = ACTIONS(3312), + [anon_sym_AMP] = ACTIONS(3314), + [anon_sym_LT_DASH] = ACTIONS(3312), + [anon_sym_LT_LT] = ACTIONS(3312), + [anon_sym_GT_GT] = ACTIONS(3314), + [anon_sym_GT_GT_GT] = ACTIONS(3312), + [anon_sym_AMP_CARET] = ACTIONS(3312), + [anon_sym_AMP_AMP] = ACTIONS(3312), + [anon_sym_PIPE_PIPE] = ACTIONS(3312), + [anon_sym_or] = ACTIONS(3314), + [sym_none] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_nil] = ACTIONS(3314), + [anon_sym_QMARK_DOT] = ACTIONS(3312), + [anon_sym_POUND_LBRACK] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_DOLLARif] = ACTIONS(3314), + [anon_sym_is] = ACTIONS(3314), + [anon_sym_BANGis] = ACTIONS(3312), + [anon_sym_in] = ACTIONS(3314), + [anon_sym_BANGin] = ACTIONS(3312), + [anon_sym_match] = ACTIONS(3314), + [anon_sym_select] = ACTIONS(3314), + [anon_sym_lock] = ACTIONS(3314), + [anon_sym_rlock] = ACTIONS(3314), + [anon_sym_unsafe] = ACTIONS(3314), + [anon_sym_sql] = ACTIONS(3314), + [sym_int_literal] = ACTIONS(3314), + [sym_float_literal] = ACTIONS(3312), + [sym_rune_literal] = ACTIONS(3312), + [sym_pseudo_compile_time_identifier] = ACTIONS(3314), + [anon_sym_shared] = ACTIONS(3314), + [anon_sym_map_LBRACK] = ACTIONS(3312), + [anon_sym_chan] = ACTIONS(3314), + [anon_sym_thread] = ACTIONS(3314), + [anon_sym_atomic] = ACTIONS(3314), + [sym___double_quote] = ACTIONS(3312), + [sym___single_quote] = ACTIONS(3312), + [sym___c_double_quote] = ACTIONS(3312), + [sym___c_single_quote] = ACTIONS(3312), + [sym___r_double_quote] = ACTIONS(3312), + [sym___r_single_quote] = ACTIONS(3312), + }, + [1311] = { + [sym_line_comment] = STATE(1311), + [sym_block_comment] = STATE(1311), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1899), + [anon_sym_fn] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(3911), [anon_sym_DASH] = ACTIONS(3911), [anon_sym_STAR] = ACTIONS(3913), [anon_sym_SLASH] = ACTIONS(3915), [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1897), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1897), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_PLUS_PLUS] = ACTIONS(3891), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(2069), + [anon_sym_CARET] = ACTIONS(3917), [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_DASH] = ACTIONS(2069), [anon_sym_LT_LT] = ACTIONS(3913), [anon_sym_GT_GT] = ACTIONS(3915), [anon_sym_GT_GT_GT] = ACTIONS(3913), [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1897), - [sym_rune_literal] = ACTIONS(1897), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1897), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1897), - [sym___single_quote] = ACTIONS(1897), - [sym___c_double_quote] = ACTIONS(1897), - [sym___c_single_quote] = ACTIONS(1897), - [sym___r_double_quote] = ACTIONS(1897), - [sym___r_single_quote] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2069), + [sym___single_quote] = ACTIONS(2069), + [sym___c_double_quote] = ACTIONS(2069), + [sym___c_single_quote] = ACTIONS(2069), + [sym___r_double_quote] = ACTIONS(2069), + [sym___r_single_quote] = ACTIONS(2069), }, - [1303] = { - [sym_line_comment] = STATE(1303), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(3857), + [1312] = { + [sym_line_comment] = STATE(1312), + [sym_block_comment] = STATE(1312), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1807), + [anon_sym_fn] = ACTIONS(1933), [anon_sym_PLUS] = ACTIONS(3911), [anon_sym_DASH] = ACTIONS(3911), [anon_sym_STAR] = ACTIONS(3913), [anon_sym_SLASH] = ACTIONS(3915), [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1805), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(3891), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(3917), [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1805), + [anon_sym_LT_DASH] = ACTIONS(1931), [anon_sym_LT_LT] = ACTIONS(3913), [anon_sym_GT_GT] = ACTIONS(3915), [anon_sym_GT_GT_GT] = ACTIONS(3913), [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1805), - [sym_rune_literal] = ACTIONS(1805), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1805), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), - }, - [1304] = { - [sym_line_comment] = STATE(1304), - [sym_identifier] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2861), - [anon_sym_as] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_COMMA] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_SLASH] = ACTIONS(2861), - [anon_sym_PERCENT] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2861), - [anon_sym_GT] = ACTIONS(2861), - [anon_sym_EQ_EQ] = ACTIONS(2859), - [anon_sym_BANG_EQ] = ACTIONS(2859), - [anon_sym_LT_EQ] = ACTIONS(2859), - [anon_sym_GT_EQ] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_RBRACK] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_mut] = ACTIONS(2861), - [anon_sym_COLON] = ACTIONS(2859), - [anon_sym_PLUS_PLUS] = ACTIONS(2859), - [anon_sym_DASH_DASH] = ACTIONS(2859), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_BANG] = ACTIONS(2861), - [anon_sym_go] = ACTIONS(2861), - [anon_sym_spawn] = ACTIONS(2861), - [anon_sym_json_DOTdecode] = ACTIONS(2859), - [anon_sym_LBRACK2] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2859), - [anon_sym_CARET] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_LT_DASH] = ACTIONS(2859), - [anon_sym_LT_LT] = ACTIONS(2859), - [anon_sym_GT_GT] = ACTIONS(2861), - [anon_sym_GT_GT_GT] = ACTIONS(2859), - [anon_sym_AMP_CARET] = ACTIONS(2859), - [anon_sym_AMP_AMP] = ACTIONS(2859), - [anon_sym_PIPE_PIPE] = ACTIONS(2859), - [anon_sym_or] = ACTIONS(2861), - [sym_none] = ACTIONS(2861), - [sym_true] = ACTIONS(2861), - [sym_false] = ACTIONS(2861), - [sym_nil] = ACTIONS(2861), - [anon_sym_QMARK_DOT] = ACTIONS(2859), - [anon_sym_POUND_LBRACK] = ACTIONS(2859), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_DOLLARif] = ACTIONS(2861), - [anon_sym_DOLLARelse] = ACTIONS(3929), - [anon_sym_is] = ACTIONS(2861), - [anon_sym_BANGis] = ACTIONS(2859), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_BANGin] = ACTIONS(2859), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_select] = ACTIONS(2861), - [anon_sym_lock] = ACTIONS(2861), - [anon_sym_rlock] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_sql] = ACTIONS(2861), - [sym_int_literal] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(2859), - [sym_rune_literal] = ACTIONS(2859), - [sym_pseudo_compile_time_identifier] = ACTIONS(2861), - [anon_sym_shared] = ACTIONS(2861), - [anon_sym_map_LBRACK] = ACTIONS(2859), - [anon_sym_chan] = ACTIONS(2861), - [anon_sym_thread] = ACTIONS(2861), - [anon_sym_atomic] = ACTIONS(2861), - [sym___double_quote] = ACTIONS(2859), - [sym___single_quote] = ACTIONS(2859), - [sym___c_double_quote] = ACTIONS(2859), - [sym___c_single_quote] = ACTIONS(2859), - [sym___r_double_quote] = ACTIONS(2859), - [sym___r_single_quote] = ACTIONS(2859), - }, - [1305] = { - [sym_line_comment] = STATE(1305), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1931), + [sym___single_quote] = ACTIONS(1931), + [sym___c_double_quote] = ACTIONS(1931), + [sym___c_single_quote] = ACTIONS(1931), + [sym___r_double_quote] = ACTIONS(1931), + [sym___r_single_quote] = ACTIONS(1931), }, - [1306] = { - [sym_line_comment] = STATE(1306), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2661), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_AMP_CARET] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2661), - [anon_sym_POUND_LBRACK] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_DOLLARelse] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2661), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2661), - [sym_rune_literal] = ACTIONS(2661), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2661), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2661), - [sym___single_quote] = ACTIONS(2661), - [sym___c_double_quote] = ACTIONS(2661), - [sym___c_single_quote] = ACTIONS(2661), - [sym___r_double_quote] = ACTIONS(2661), - [sym___r_single_quote] = ACTIONS(2661), + [1313] = { + [sym_line_comment] = STATE(1313), + [sym_block_comment] = STATE(1313), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_DOLLARelse] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2701), + [sym___single_quote] = ACTIONS(2701), + [sym___c_double_quote] = ACTIONS(2701), + [sym___c_single_quote] = ACTIONS(2701), + [sym___r_double_quote] = ACTIONS(2701), + [sym___r_single_quote] = ACTIONS(2701), }, - [1307] = { - [sym_line_comment] = STATE(1307), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [1314] = { + [sym_line_comment] = STATE(1314), + [sym_block_comment] = STATE(1314), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1933), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1933), [anon_sym_PLUS] = ACTIONS(3879), [anon_sym_DASH] = ACTIONS(3879), [anon_sym_STAR] = ACTIONS(3881), @@ -173876,22 +169012,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_COLON] = ACTIONS(1931), [anon_sym_PLUS_PLUS] = ACTIONS(3891), [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1869), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1931), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1931), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1931), [anon_sym_LT_LT] = ACTIONS(3881), [anon_sym_GT_GT] = ACTIONS(3883), [anon_sym_GT_GT_GT] = ACTIONS(3881), @@ -173899,302 +169035,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3897), [anon_sym_PIPE_PIPE] = ACTIONS(3899), [anon_sym_or] = ACTIONS(3901), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), [anon_sym_is] = ACTIONS(3903), [anon_sym_BANGis] = ACTIONS(3905), [anon_sym_in] = ACTIONS(3907), [anon_sym_BANGin] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1869), - [sym_rune_literal] = ACTIONS(1869), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1869), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1869), - [sym___single_quote] = ACTIONS(1869), - [sym___c_double_quote] = ACTIONS(1869), - [sym___c_single_quote] = ACTIONS(1869), - [sym___r_double_quote] = ACTIONS(1869), - [sym___r_single_quote] = ACTIONS(1869), - }, - [1308] = { - [sym_line_comment] = STATE(1308), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_as] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_COMMA] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_PERCENT] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2663), - [anon_sym_GT] = ACTIONS(2663), - [anon_sym_EQ_EQ] = ACTIONS(2661), - [anon_sym_BANG_EQ] = ACTIONS(2661), - [anon_sym_LT_EQ] = ACTIONS(2661), - [anon_sym_GT_EQ] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2661), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_CARET] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2661), - [anon_sym_LT_LT] = ACTIONS(2661), - [anon_sym_GT_GT] = ACTIONS(2663), - [anon_sym_GT_GT_GT] = ACTIONS(2661), - [anon_sym_AMP_CARET] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_PIPE_PIPE] = ACTIONS(2661), - [anon_sym_or] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_QMARK_DOT] = ACTIONS(2661), - [anon_sym_POUND_LBRACK] = ACTIONS(2661), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_else] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_is] = ACTIONS(2663), - [anon_sym_BANGis] = ACTIONS(2661), - [anon_sym_in] = ACTIONS(2663), - [anon_sym_BANGin] = ACTIONS(2661), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2661), - [sym_rune_literal] = ACTIONS(2661), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2661), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2661), - [sym___single_quote] = ACTIONS(2661), - [sym___c_double_quote] = ACTIONS(2661), - [sym___c_single_quote] = ACTIONS(2661), - [sym___r_double_quote] = ACTIONS(2661), - [sym___r_single_quote] = ACTIONS(2661), - }, - [1309] = { - [sym_line_comment] = STATE(1309), - [sym_identifier] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2691), - [anon_sym_as] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_COMMA] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_SLASH] = ACTIONS(2691), - [anon_sym_PERCENT] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2691), - [anon_sym_GT] = ACTIONS(2691), - [anon_sym_EQ_EQ] = ACTIONS(2689), - [anon_sym_BANG_EQ] = ACTIONS(2689), - [anon_sym_LT_EQ] = ACTIONS(2689), - [anon_sym_GT_EQ] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_mut] = ACTIONS(2691), - [anon_sym_COLON] = ACTIONS(2689), - [anon_sym_PLUS_PLUS] = ACTIONS(2689), - [anon_sym_DASH_DASH] = ACTIONS(2689), - [anon_sym_QMARK] = ACTIONS(2691), - [anon_sym_BANG] = ACTIONS(2691), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2691), - [anon_sym_json_DOTdecode] = ACTIONS(2689), - [anon_sym_LBRACK2] = ACTIONS(2691), - [anon_sym_TILDE] = ACTIONS(2689), - [anon_sym_CARET] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_LT_DASH] = ACTIONS(2689), - [anon_sym_LT_LT] = ACTIONS(2689), - [anon_sym_GT_GT] = ACTIONS(2691), - [anon_sym_GT_GT_GT] = ACTIONS(2689), - [anon_sym_AMP_CARET] = ACTIONS(2689), - [anon_sym_AMP_AMP] = ACTIONS(2689), - [anon_sym_PIPE_PIPE] = ACTIONS(2689), - [anon_sym_or] = ACTIONS(2691), - [sym_none] = ACTIONS(2691), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_nil] = ACTIONS(2691), - [anon_sym_QMARK_DOT] = ACTIONS(2689), - [anon_sym_POUND_LBRACK] = ACTIONS(2689), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_DOLLARif] = ACTIONS(2691), - [anon_sym_DOLLARelse] = ACTIONS(3931), - [anon_sym_is] = ACTIONS(2691), - [anon_sym_BANGis] = ACTIONS(2689), - [anon_sym_in] = ACTIONS(2691), - [anon_sym_BANGin] = ACTIONS(2689), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_select] = ACTIONS(2691), - [anon_sym_lock] = ACTIONS(2691), - [anon_sym_rlock] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_sql] = ACTIONS(2691), - [sym_int_literal] = ACTIONS(2691), - [sym_float_literal] = ACTIONS(2689), - [sym_rune_literal] = ACTIONS(2689), - [sym_pseudo_compile_time_identifier] = ACTIONS(2691), - [anon_sym_shared] = ACTIONS(2691), - [anon_sym_map_LBRACK] = ACTIONS(2689), - [anon_sym_chan] = ACTIONS(2691), - [anon_sym_thread] = ACTIONS(2691), - [anon_sym_atomic] = ACTIONS(2691), - [sym___double_quote] = ACTIONS(2689), - [sym___single_quote] = ACTIONS(2689), - [sym___c_double_quote] = ACTIONS(2689), - [sym___c_single_quote] = ACTIONS(2689), - [sym___r_double_quote] = ACTIONS(2689), - [sym___r_single_quote] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1931), + [sym_rune_literal] = ACTIONS(1931), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1931), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1931), + [sym___single_quote] = ACTIONS(1931), + [sym___c_double_quote] = ACTIONS(1931), + [sym___c_single_quote] = ACTIONS(1931), + [sym___r_double_quote] = ACTIONS(1931), + [sym___r_single_quote] = ACTIONS(1931), }, - [1310] = { - [sym_line_comment] = STATE(1310), - [sym_type_parameters] = STATE(1344), - [sym_identifier] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_COLON] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2739), - [sym___single_quote] = ACTIONS(2739), - [sym___c_double_quote] = ACTIONS(2739), - [sym___c_single_quote] = ACTIONS(2739), - [sym___r_double_quote] = ACTIONS(2739), - [sym___r_single_quote] = ACTIONS(2739), - }, - [1311] = { - [sym_line_comment] = STATE(1311), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), + [1315] = { + [sym_line_comment] = STATE(1315), + [sym_block_comment] = STATE(1315), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), [sym_identifier] = ACTIONS(3933), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(3875), [anon_sym_LBRACE] = ACTIONS(3935), [anon_sym_COMMA] = ACTIONS(3937), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3911), [anon_sym_fn] = ACTIONS(3933), [anon_sym_PLUS] = ACTIONS(3911), @@ -174202,47 +169090,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(3913), [anon_sym_SLASH] = ACTIONS(3915), [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3857), [anon_sym_RBRACK] = ACTIONS(3935), [anon_sym_struct] = ACTIONS(3933), [anon_sym_mut] = ACTIONS(3933), [anon_sym_PLUS_PLUS] = ACTIONS(3891), [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), [anon_sym_go] = ACTIONS(3933), [anon_sym_spawn] = ACTIONS(3933), [anon_sym_json_DOTdecode] = ACTIONS(3935), - [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_CARET] = ACTIONS(3917), [anon_sym_AMP] = ACTIONS(3915), [anon_sym_LT_DASH] = ACTIONS(3935), [anon_sym_LT_LT] = ACTIONS(3913), [anon_sym_GT_GT] = ACTIONS(3915), [anon_sym_GT_GT_GT] = ACTIONS(3913), [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3927), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(3927), [anon_sym_or] = ACTIONS(3901), [sym_none] = ACTIONS(3933), [sym_true] = ACTIONS(3933), [sym_false] = ACTIONS(3933), [sym_nil] = ACTIONS(3933), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), [anon_sym_if] = ACTIONS(3933), [anon_sym_DOLLARif] = ACTIONS(3933), [anon_sym_is] = ACTIONS(3903), [anon_sym_BANGis] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), [anon_sym_match] = ACTIONS(3933), [anon_sym_select] = ACTIONS(3933), [anon_sym_lock] = ACTIONS(3933), @@ -174265,353 +169153,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3935), [sym___r_single_quote] = ACTIONS(3935), }, - [1312] = { - [sym_line_comment] = STATE(1312), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_RBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_DOLLARelse] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), - }, - [1313] = { - [sym_line_comment] = STATE(1313), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), - }, - [1314] = { - [sym_line_comment] = STATE(1314), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), - }, - [1315] = { - [sym_line_comment] = STATE(1315), - [sym_identifier] = ACTIONS(3287), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_LT_EQ] = ACTIONS(3285), - [anon_sym_GT_EQ] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_RBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_COLON] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3285), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_CARET] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3285), - [anon_sym_POUND_LBRACK] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3285), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3285), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3285), - [sym_rune_literal] = ACTIONS(3285), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3285), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3285), - [sym___single_quote] = ACTIONS(3285), - [sym___c_double_quote] = ACTIONS(3285), - [sym___c_single_quote] = ACTIONS(3285), - [sym___r_double_quote] = ACTIONS(3285), - [sym___r_single_quote] = ACTIONS(3285), - }, [1316] = { [sym_line_comment] = STATE(1316), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_RBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), + [sym_block_comment] = STATE(1316), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(3875), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1889), + [anon_sym_fn] = ACTIONS(2071), [anon_sym_PLUS] = ACTIONS(3879), [anon_sym_DASH] = ACTIONS(3879), [anon_sym_STAR] = ACTIONS(3881), @@ -174623,2049 +169180,1825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_COLON] = ACTIONS(1887), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_COLON] = ACTIONS(2069), + [anon_sym_PLUS_PLUS] = ACTIONS(3891), + [anon_sym_DASH_DASH] = ACTIONS(3893), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(2071), + [anon_sym_spawn] = ACTIONS(2071), + [anon_sym_json_DOTdecode] = ACTIONS(2069), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(2069), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1887), + [anon_sym_LT_DASH] = ACTIONS(2069), [anon_sym_LT_LT] = ACTIONS(3881), [anon_sym_GT_GT] = ACTIONS(3883), [anon_sym_GT_GT_GT] = ACTIONS(3881), [anon_sym_AMP_CARET] = ACTIONS(3881), [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), + [anon_sym_PIPE_PIPE] = ACTIONS(3899), + [anon_sym_or] = ACTIONS(3901), + [sym_none] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_nil] = ACTIONS(2071), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_DOLLARif] = ACTIONS(2071), + [anon_sym_is] = ACTIONS(3903), + [anon_sym_BANGis] = ACTIONS(3905), [anon_sym_in] = ACTIONS(3907), [anon_sym_BANGin] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_select] = ACTIONS(2071), + [anon_sym_lock] = ACTIONS(2071), + [anon_sym_rlock] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_sql] = ACTIONS(2071), + [sym_int_literal] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2069), + [sym_rune_literal] = ACTIONS(2069), + [sym_pseudo_compile_time_identifier] = ACTIONS(2071), + [anon_sym_shared] = ACTIONS(2071), + [anon_sym_map_LBRACK] = ACTIONS(2069), + [anon_sym_chan] = ACTIONS(2071), + [anon_sym_thread] = ACTIONS(2071), + [anon_sym_atomic] = ACTIONS(2071), + [sym___double_quote] = ACTIONS(2069), + [sym___single_quote] = ACTIONS(2069), + [sym___c_double_quote] = ACTIONS(2069), + [sym___c_single_quote] = ACTIONS(2069), + [sym___r_double_quote] = ACTIONS(2069), + [sym___r_single_quote] = ACTIONS(2069), }, [1317] = { [sym_line_comment] = STATE(1317), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1889), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_COMMA] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_fn] = ACTIONS(1889), - [anon_sym_PLUS] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3915), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_GT] = ACTIONS(1889), - [anon_sym_EQ_EQ] = ACTIONS(1887), - [anon_sym_BANG_EQ] = ACTIONS(1887), - [anon_sym_LT_EQ] = ACTIONS(1887), - [anon_sym_GT_EQ] = ACTIONS(1887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_PLUS_PLUS] = ACTIONS(1887), - [anon_sym_DASH_DASH] = ACTIONS(1887), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1889), - [anon_sym_spawn] = ACTIONS(1889), - [anon_sym_json_DOTdecode] = ACTIONS(1887), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1887), - [anon_sym_CARET] = ACTIONS(1887), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1887), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3915), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(1887), - [anon_sym_PIPE_PIPE] = ACTIONS(1887), - [anon_sym_or] = ACTIONS(1889), - [sym_none] = ACTIONS(1889), - [sym_true] = ACTIONS(1889), - [sym_false] = ACTIONS(1889), - [sym_nil] = ACTIONS(1889), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_DOLLARif] = ACTIONS(1889), - [anon_sym_is] = ACTIONS(1889), - [anon_sym_BANGis] = ACTIONS(1887), - [anon_sym_in] = ACTIONS(1889), - [anon_sym_BANGin] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_select] = ACTIONS(1889), - [anon_sym_lock] = ACTIONS(1889), - [anon_sym_rlock] = ACTIONS(1889), - [anon_sym_unsafe] = ACTIONS(1889), - [anon_sym_sql] = ACTIONS(1889), - [sym_int_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1887), - [sym_rune_literal] = ACTIONS(1887), - [sym_pseudo_compile_time_identifier] = ACTIONS(1889), - [anon_sym_shared] = ACTIONS(1889), - [anon_sym_map_LBRACK] = ACTIONS(1887), - [anon_sym_chan] = ACTIONS(1889), - [anon_sym_thread] = ACTIONS(1889), - [anon_sym_atomic] = ACTIONS(1889), - [sym___double_quote] = ACTIONS(1887), - [sym___single_quote] = ACTIONS(1887), - [sym___c_double_quote] = ACTIONS(1887), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1887), - [sym___r_single_quote] = ACTIONS(1887), + [sym_block_comment] = STATE(1317), + [sym_identifier] = ACTIONS(2901), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_DOT] = ACTIONS(2901), + [anon_sym_as] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_fn] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_RBRACK] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2901), + [anon_sym_mut] = ACTIONS(2901), + [anon_sym_COLON] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_QMARK] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_go] = ACTIONS(2901), + [anon_sym_spawn] = ACTIONS(2901), + [anon_sym_json_DOTdecode] = ACTIONS(2899), + [anon_sym_LBRACK2] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_LT_DASH] = ACTIONS(2899), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_or] = ACTIONS(2901), + [sym_none] = ACTIONS(2901), + [sym_true] = ACTIONS(2901), + [sym_false] = ACTIONS(2901), + [sym_nil] = ACTIONS(2901), + [anon_sym_QMARK_DOT] = ACTIONS(2899), + [anon_sym_POUND_LBRACK] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_DOLLARif] = ACTIONS(2901), + [anon_sym_is] = ACTIONS(2901), + [anon_sym_BANGis] = ACTIONS(2899), + [anon_sym_in] = ACTIONS(2901), + [anon_sym_BANGin] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2901), + [anon_sym_select] = ACTIONS(2901), + [anon_sym_lock] = ACTIONS(2901), + [anon_sym_rlock] = ACTIONS(2901), + [anon_sym_unsafe] = ACTIONS(2901), + [anon_sym_sql] = ACTIONS(2901), + [sym_int_literal] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2899), + [sym_rune_literal] = ACTIONS(2899), + [sym_pseudo_compile_time_identifier] = ACTIONS(2901), + [anon_sym_shared] = ACTIONS(2901), + [anon_sym_map_LBRACK] = ACTIONS(2899), + [anon_sym_chan] = ACTIONS(2901), + [anon_sym_thread] = ACTIONS(2901), + [anon_sym_atomic] = ACTIONS(2901), + [sym___double_quote] = ACTIONS(2899), + [sym___single_quote] = ACTIONS(2899), + [sym___c_double_quote] = ACTIONS(2899), + [sym___c_single_quote] = ACTIONS(2899), + [sym___r_double_quote] = ACTIONS(2899), + [sym___r_single_quote] = ACTIONS(2899), }, [1318] = { [sym_line_comment] = STATE(1318), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1899), - [anon_sym_GT] = ACTIONS(1899), - [anon_sym_EQ_EQ] = ACTIONS(1897), - [anon_sym_BANG_EQ] = ACTIONS(1897), - [anon_sym_LT_EQ] = ACTIONS(1897), - [anon_sym_GT_EQ] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_mut] = ACTIONS(1899), - [anon_sym_COLON] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1899), - [anon_sym_spawn] = ACTIONS(1899), - [anon_sym_json_DOTdecode] = ACTIONS(1897), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1897), - [anon_sym_PIPE_PIPE] = ACTIONS(1897), - [anon_sym_or] = ACTIONS(1899), - [sym_none] = ACTIONS(1899), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [sym_nil] = ACTIONS(1899), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_DOLLARif] = ACTIONS(1899), - [anon_sym_is] = ACTIONS(1899), - [anon_sym_BANGis] = ACTIONS(1897), - [anon_sym_in] = ACTIONS(1899), - [anon_sym_BANGin] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_select] = ACTIONS(1899), - [anon_sym_lock] = ACTIONS(1899), - [anon_sym_rlock] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_sql] = ACTIONS(1899), - [sym_int_literal] = ACTIONS(1899), - [sym_float_literal] = ACTIONS(1897), - [sym_rune_literal] = ACTIONS(1897), - [sym_pseudo_compile_time_identifier] = ACTIONS(1899), - [anon_sym_shared] = ACTIONS(1899), - [anon_sym_map_LBRACK] = ACTIONS(1897), - [anon_sym_chan] = ACTIONS(1899), - [anon_sym_thread] = ACTIONS(1899), - [anon_sym_atomic] = ACTIONS(1899), - [sym___double_quote] = ACTIONS(1897), - [sym___single_quote] = ACTIONS(1897), - [sym___c_double_quote] = ACTIONS(1897), - [sym___c_single_quote] = ACTIONS(1897), - [sym___r_double_quote] = ACTIONS(1897), - [sym___r_single_quote] = ACTIONS(1897), + [sym_block_comment] = STATE(1318), + [sym_identifier] = ACTIONS(2913), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_DOT] = ACTIONS(2913), + [anon_sym_as] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_COMMA] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_fn] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_RBRACK] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2913), + [anon_sym_mut] = ACTIONS(2913), + [anon_sym_COLON] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_go] = ACTIONS(2913), + [anon_sym_spawn] = ACTIONS(2913), + [anon_sym_json_DOTdecode] = ACTIONS(2911), + [anon_sym_LBRACK2] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_LT_DASH] = ACTIONS(2911), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_or] = ACTIONS(2913), + [sym_none] = ACTIONS(2913), + [sym_true] = ACTIONS(2913), + [sym_false] = ACTIONS(2913), + [sym_nil] = ACTIONS(2913), + [anon_sym_QMARK_DOT] = ACTIONS(2911), + [anon_sym_POUND_LBRACK] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_DOLLARif] = ACTIONS(2913), + [anon_sym_is] = ACTIONS(2913), + [anon_sym_BANGis] = ACTIONS(2911), + [anon_sym_in] = ACTIONS(2913), + [anon_sym_BANGin] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2913), + [anon_sym_select] = ACTIONS(2913), + [anon_sym_lock] = ACTIONS(2913), + [anon_sym_rlock] = ACTIONS(2913), + [anon_sym_unsafe] = ACTIONS(2913), + [anon_sym_sql] = ACTIONS(2913), + [sym_int_literal] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2911), + [sym_rune_literal] = ACTIONS(2911), + [sym_pseudo_compile_time_identifier] = ACTIONS(2913), + [anon_sym_shared] = ACTIONS(2913), + [anon_sym_map_LBRACK] = ACTIONS(2911), + [anon_sym_chan] = ACTIONS(2913), + [anon_sym_thread] = ACTIONS(2913), + [anon_sym_atomic] = ACTIONS(2913), + [sym___double_quote] = ACTIONS(2911), + [sym___single_quote] = ACTIONS(2911), + [sym___c_double_quote] = ACTIONS(2911), + [sym___c_single_quote] = ACTIONS(2911), + [sym___r_double_quote] = ACTIONS(2911), + [sym___r_single_quote] = ACTIONS(2911), }, [1319] = { [sym_line_comment] = STATE(1319), - [sym_identifier] = ACTIONS(3331), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3329), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3329), - [anon_sym_LT_LT] = ACTIONS(3329), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3329), - [anon_sym_AMP_CARET] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3329), - [anon_sym_POUND_LBRACK] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3329), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3329), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3329), - [sym_rune_literal] = ACTIONS(3329), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3329), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3329), - [sym___single_quote] = ACTIONS(3329), - [sym___c_double_quote] = ACTIONS(3329), - [sym___c_single_quote] = ACTIONS(3329), - [sym___r_double_quote] = ACTIONS(3329), - [sym___r_single_quote] = ACTIONS(3329), + [sym_block_comment] = STATE(1319), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_else] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2701), + [sym___single_quote] = ACTIONS(2701), + [sym___c_double_quote] = ACTIONS(2701), + [sym___c_single_quote] = ACTIONS(2701), + [sym___r_double_quote] = ACTIONS(2701), + [sym___r_single_quote] = ACTIONS(2701), }, [1320] = { [sym_line_comment] = STATE(1320), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_mut] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1807), - [anon_sym_spawn] = ACTIONS(1807), - [anon_sym_json_DOTdecode] = ACTIONS(1805), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1805), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_or] = ACTIONS(1807), - [sym_none] = ACTIONS(1807), - [sym_true] = ACTIONS(1807), - [sym_false] = ACTIONS(1807), - [sym_nil] = ACTIONS(1807), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_DOLLARif] = ACTIONS(1807), - [anon_sym_is] = ACTIONS(1807), - [anon_sym_BANGis] = ACTIONS(1805), - [anon_sym_in] = ACTIONS(1807), - [anon_sym_BANGin] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_select] = ACTIONS(1807), - [anon_sym_lock] = ACTIONS(1807), - [anon_sym_rlock] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_sql] = ACTIONS(1807), - [sym_int_literal] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1805), - [sym_rune_literal] = ACTIONS(1805), - [sym_pseudo_compile_time_identifier] = ACTIONS(1807), - [anon_sym_shared] = ACTIONS(1807), - [anon_sym_map_LBRACK] = ACTIONS(1805), - [anon_sym_chan] = ACTIONS(1807), - [anon_sym_thread] = ACTIONS(1807), - [anon_sym_atomic] = ACTIONS(1807), - [sym___double_quote] = ACTIONS(1805), - [sym___single_quote] = ACTIONS(1805), - [sym___c_double_quote] = ACTIONS(1805), - [sym___c_single_quote] = ACTIONS(1805), - [sym___r_double_quote] = ACTIONS(1805), - [sym___r_single_quote] = ACTIONS(1805), + [sym_block_comment] = STATE(1320), + [sym_identifier] = ACTIONS(2917), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_as] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_COMMA] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_fn] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_RBRACK] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2917), + [anon_sym_mut] = ACTIONS(2917), + [anon_sym_COLON] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_QMARK] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_go] = ACTIONS(2917), + [anon_sym_spawn] = ACTIONS(2917), + [anon_sym_json_DOTdecode] = ACTIONS(2915), + [anon_sym_LBRACK2] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_LT_DASH] = ACTIONS(2915), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2915), + [anon_sym_AMP_CARET] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_PIPE_PIPE] = ACTIONS(2915), + [anon_sym_or] = ACTIONS(2917), + [sym_none] = ACTIONS(2917), + [sym_true] = ACTIONS(2917), + [sym_false] = ACTIONS(2917), + [sym_nil] = ACTIONS(2917), + [anon_sym_QMARK_DOT] = ACTIONS(2915), + [anon_sym_POUND_LBRACK] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_DOLLARif] = ACTIONS(2917), + [anon_sym_is] = ACTIONS(2917), + [anon_sym_BANGis] = ACTIONS(2915), + [anon_sym_in] = ACTIONS(2917), + [anon_sym_BANGin] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2917), + [anon_sym_select] = ACTIONS(2917), + [anon_sym_lock] = ACTIONS(2917), + [anon_sym_rlock] = ACTIONS(2917), + [anon_sym_unsafe] = ACTIONS(2917), + [anon_sym_sql] = ACTIONS(2917), + [sym_int_literal] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2915), + [sym_rune_literal] = ACTIONS(2915), + [sym_pseudo_compile_time_identifier] = ACTIONS(2917), + [anon_sym_shared] = ACTIONS(2917), + [anon_sym_map_LBRACK] = ACTIONS(2915), + [anon_sym_chan] = ACTIONS(2917), + [anon_sym_thread] = ACTIONS(2917), + [anon_sym_atomic] = ACTIONS(2917), + [sym___double_quote] = ACTIONS(2915), + [sym___single_quote] = ACTIONS(2915), + [sym___c_double_quote] = ACTIONS(2915), + [sym___c_single_quote] = ACTIONS(2915), + [sym___r_double_quote] = ACTIONS(2915), + [sym___r_single_quote] = ACTIONS(2915), }, [1321] = { [sym_line_comment] = STATE(1321), - [sym_identifier] = ACTIONS(2887), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_DOT] = ACTIONS(2887), - [anon_sym_as] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_fn] = ACTIONS(2887), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_STAR] = ACTIONS(2885), - [anon_sym_SLASH] = ACTIONS(2887), - [anon_sym_PERCENT] = ACTIONS(2885), - [anon_sym_LT] = ACTIONS(2887), - [anon_sym_GT] = ACTIONS(2887), - [anon_sym_EQ_EQ] = ACTIONS(2885), - [anon_sym_BANG_EQ] = ACTIONS(2885), - [anon_sym_LT_EQ] = ACTIONS(2885), - [anon_sym_GT_EQ] = ACTIONS(2885), - [anon_sym_LBRACK] = ACTIONS(2885), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_struct] = ACTIONS(2887), - [anon_sym_mut] = ACTIONS(2887), - [anon_sym_COLON] = ACTIONS(2885), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_BANG] = ACTIONS(2887), - [anon_sym_go] = ACTIONS(2887), - [anon_sym_spawn] = ACTIONS(2887), - [anon_sym_json_DOTdecode] = ACTIONS(2885), - [anon_sym_LBRACK2] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2885), - [anon_sym_CARET] = ACTIONS(2885), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_LT_DASH] = ACTIONS(2885), - [anon_sym_LT_LT] = ACTIONS(2885), - [anon_sym_GT_GT] = ACTIONS(2887), - [anon_sym_GT_GT_GT] = ACTIONS(2885), - [anon_sym_AMP_CARET] = ACTIONS(2885), - [anon_sym_AMP_AMP] = ACTIONS(2885), - [anon_sym_PIPE_PIPE] = ACTIONS(2885), - [anon_sym_or] = ACTIONS(2887), - [sym_none] = ACTIONS(2887), - [sym_true] = ACTIONS(2887), - [sym_false] = ACTIONS(2887), - [sym_nil] = ACTIONS(2887), - [anon_sym_QMARK_DOT] = ACTIONS(2885), - [anon_sym_POUND_LBRACK] = ACTIONS(2885), - [anon_sym_if] = ACTIONS(2887), - [anon_sym_DOLLARif] = ACTIONS(2887), - [anon_sym_is] = ACTIONS(2887), - [anon_sym_BANGis] = ACTIONS(2885), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_BANGin] = ACTIONS(2885), - [anon_sym_match] = ACTIONS(2887), - [anon_sym_select] = ACTIONS(2887), - [anon_sym_lock] = ACTIONS(2887), - [anon_sym_rlock] = ACTIONS(2887), - [anon_sym_unsafe] = ACTIONS(2887), - [anon_sym_sql] = ACTIONS(2887), - [sym_int_literal] = ACTIONS(2887), - [sym_float_literal] = ACTIONS(2885), - [sym_rune_literal] = ACTIONS(2885), - [sym_pseudo_compile_time_identifier] = ACTIONS(2887), - [anon_sym_shared] = ACTIONS(2887), - [anon_sym_map_LBRACK] = ACTIONS(2885), - [anon_sym_chan] = ACTIONS(2887), - [anon_sym_thread] = ACTIONS(2887), - [anon_sym_atomic] = ACTIONS(2887), - [sym___double_quote] = ACTIONS(2885), - [sym___single_quote] = ACTIONS(2885), - [sym___c_double_quote] = ACTIONS(2885), - [sym___c_single_quote] = ACTIONS(2885), - [sym___r_double_quote] = ACTIONS(2885), - [sym___r_single_quote] = ACTIONS(2885), + [sym_block_comment] = STATE(1321), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_as] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_COMMA] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_SLASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2667), + [anon_sym_BANG_EQ] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_RBRACK] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_COLON] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2667), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2667), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2667), + [anon_sym_GT_GT] = ACTIONS(2669), + [anon_sym_GT_GT_GT] = ACTIONS(2667), + [anon_sym_AMP_CARET] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2667), + [anon_sym_PIPE_PIPE] = ACTIONS(2667), + [anon_sym_or] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_QMARK_DOT] = ACTIONS(2667), + [anon_sym_POUND_LBRACK] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_else] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_is] = ACTIONS(2669), + [anon_sym_BANGis] = ACTIONS(2667), + [anon_sym_in] = ACTIONS(2669), + [anon_sym_BANGin] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2667), + [sym_rune_literal] = ACTIONS(2667), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2667), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2667), + [sym___single_quote] = ACTIONS(2667), + [sym___c_double_quote] = ACTIONS(2667), + [sym___c_single_quote] = ACTIONS(2667), + [sym___r_double_quote] = ACTIONS(2667), + [sym___r_single_quote] = ACTIONS(2667), }, [1322] = { [sym_line_comment] = STATE(1322), - [sym_identifier] = ACTIONS(2883), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_DOT] = ACTIONS(2883), - [anon_sym_as] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_fn] = ACTIONS(2883), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2881), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_PERCENT] = ACTIONS(2881), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_EQ_EQ] = ACTIONS(2881), - [anon_sym_BANG_EQ] = ACTIONS(2881), - [anon_sym_LT_EQ] = ACTIONS(2881), - [anon_sym_GT_EQ] = ACTIONS(2881), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_struct] = ACTIONS(2883), - [anon_sym_mut] = ACTIONS(2883), - [anon_sym_COLON] = ACTIONS(2881), - [anon_sym_PLUS_PLUS] = ACTIONS(2881), - [anon_sym_DASH_DASH] = ACTIONS(2881), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_go] = ACTIONS(2883), - [anon_sym_spawn] = ACTIONS(2883), - [anon_sym_json_DOTdecode] = ACTIONS(2881), - [anon_sym_LBRACK2] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2881), - [anon_sym_CARET] = ACTIONS(2881), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_LT_DASH] = ACTIONS(2881), - [anon_sym_LT_LT] = ACTIONS(2881), - [anon_sym_GT_GT] = ACTIONS(2883), - [anon_sym_GT_GT_GT] = ACTIONS(2881), - [anon_sym_AMP_CARET] = ACTIONS(2881), - [anon_sym_AMP_AMP] = ACTIONS(2881), - [anon_sym_PIPE_PIPE] = ACTIONS(2881), - [anon_sym_or] = ACTIONS(2883), - [sym_none] = ACTIONS(2883), - [sym_true] = ACTIONS(2883), - [sym_false] = ACTIONS(2883), - [sym_nil] = ACTIONS(2883), - [anon_sym_QMARK_DOT] = ACTIONS(2881), - [anon_sym_POUND_LBRACK] = ACTIONS(2881), - [anon_sym_if] = ACTIONS(2883), - [anon_sym_DOLLARif] = ACTIONS(2883), - [anon_sym_is] = ACTIONS(2883), - [anon_sym_BANGis] = ACTIONS(2881), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_BANGin] = ACTIONS(2881), - [anon_sym_match] = ACTIONS(2883), - [anon_sym_select] = ACTIONS(2883), - [anon_sym_lock] = ACTIONS(2883), - [anon_sym_rlock] = ACTIONS(2883), - [anon_sym_unsafe] = ACTIONS(2883), - [anon_sym_sql] = ACTIONS(2883), - [sym_int_literal] = ACTIONS(2883), - [sym_float_literal] = ACTIONS(2881), - [sym_rune_literal] = ACTIONS(2881), - [sym_pseudo_compile_time_identifier] = ACTIONS(2883), - [anon_sym_shared] = ACTIONS(2883), - [anon_sym_map_LBRACK] = ACTIONS(2881), - [anon_sym_chan] = ACTIONS(2883), - [anon_sym_thread] = ACTIONS(2883), - [anon_sym_atomic] = ACTIONS(2883), - [sym___double_quote] = ACTIONS(2881), - [sym___single_quote] = ACTIONS(2881), - [sym___c_double_quote] = ACTIONS(2881), - [sym___c_single_quote] = ACTIONS(2881), - [sym___r_double_quote] = ACTIONS(2881), - [sym___r_single_quote] = ACTIONS(2881), + [sym_block_comment] = STATE(1322), + [sym_identifier] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_COLON] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3360), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3360), + [anon_sym_AMP_CARET] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3360), + [anon_sym_POUND_LBRACK] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3360), + [sym_rune_literal] = ACTIONS(3360), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3360), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3360), + [sym___single_quote] = ACTIONS(3360), + [sym___c_double_quote] = ACTIONS(3360), + [sym___c_single_quote] = ACTIONS(3360), + [sym___r_double_quote] = ACTIONS(3360), + [sym___r_single_quote] = ACTIONS(3360), }, [1323] = { [sym_line_comment] = STATE(1323), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3857), - [anon_sym_PIPE] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_SLASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3881), - [anon_sym_LT] = ACTIONS(3885), - [anon_sym_GT] = ACTIONS(3885), - [anon_sym_EQ_EQ] = ACTIONS(3887), - [anon_sym_BANG_EQ] = ACTIONS(3887), - [anon_sym_LT_EQ] = ACTIONS(3887), - [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_COLON] = ACTIONS(1767), - [anon_sym_PLUS_PLUS] = ACTIONS(3891), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(1767), - [anon_sym_LT_LT] = ACTIONS(3881), - [anon_sym_GT_GT] = ACTIONS(3883), - [anon_sym_GT_GT_GT] = ACTIONS(3881), - [anon_sym_AMP_CARET] = ACTIONS(3881), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3901), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(3903), - [anon_sym_BANGis] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_BANGin] = ACTIONS(3909), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1767), - [sym_rune_literal] = ACTIONS(1767), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1767), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1767), - [sym___single_quote] = ACTIONS(1767), - [sym___c_double_quote] = ACTIONS(1767), - [sym___c_single_quote] = ACTIONS(1767), - [sym___r_double_quote] = ACTIONS(1767), - [sym___r_single_quote] = ACTIONS(1767), + [sym_block_comment] = STATE(1323), + [sym_identifier] = ACTIONS(2751), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_as] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2749), + [anon_sym_COMMA] = ACTIONS(2749), + [anon_sym_RBRACE] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_fn] = ACTIONS(2751), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2749), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2749), + [anon_sym_BANG_EQ] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_RBRACK] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(2751), + [anon_sym_COLON] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2749), + [anon_sym_QMARK] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_go] = ACTIONS(2751), + [anon_sym_spawn] = ACTIONS(2751), + [anon_sym_json_DOTdecode] = ACTIONS(2749), + [anon_sym_LBRACK2] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2749), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_LT_DASH] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2749), + [anon_sym_GT_GT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2749), + [anon_sym_AMP_CARET] = ACTIONS(2749), + [anon_sym_AMP_AMP] = ACTIONS(2749), + [anon_sym_PIPE_PIPE] = ACTIONS(2749), + [anon_sym_or] = ACTIONS(2751), + [sym_none] = ACTIONS(2751), + [sym_true] = ACTIONS(2751), + [sym_false] = ACTIONS(2751), + [sym_nil] = ACTIONS(2751), + [anon_sym_QMARK_DOT] = ACTIONS(2749), + [anon_sym_POUND_LBRACK] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2751), + [anon_sym_DOLLARif] = ACTIONS(2751), + [anon_sym_DOLLARelse] = ACTIONS(3939), + [anon_sym_is] = ACTIONS(2751), + [anon_sym_BANGis] = ACTIONS(2749), + [anon_sym_in] = ACTIONS(2751), + [anon_sym_BANGin] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2751), + [anon_sym_select] = ACTIONS(2751), + [anon_sym_lock] = ACTIONS(2751), + [anon_sym_rlock] = ACTIONS(2751), + [anon_sym_unsafe] = ACTIONS(2751), + [anon_sym_sql] = ACTIONS(2751), + [sym_int_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2749), + [sym_rune_literal] = ACTIONS(2749), + [sym_pseudo_compile_time_identifier] = ACTIONS(2751), + [anon_sym_shared] = ACTIONS(2751), + [anon_sym_map_LBRACK] = ACTIONS(2749), + [anon_sym_chan] = ACTIONS(2751), + [anon_sym_thread] = ACTIONS(2751), + [anon_sym_atomic] = ACTIONS(2751), + [sym___double_quote] = ACTIONS(2749), + [sym___single_quote] = ACTIONS(2749), + [sym___c_double_quote] = ACTIONS(2749), + [sym___c_single_quote] = ACTIONS(2749), + [sym___r_double_quote] = ACTIONS(2749), + [sym___r_single_quote] = ACTIONS(2749), }, [1324] = { [sym_line_comment] = STATE(1324), - [sym_identifier] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3325), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3325), - [anon_sym_LT_LT] = ACTIONS(3325), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3325), - [anon_sym_AMP_CARET] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3325), - [anon_sym_POUND_LBRACK] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3325), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3325), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3325), - [sym_rune_literal] = ACTIONS(3325), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3325), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3325), - [sym___single_quote] = ACTIONS(3325), - [sym___c_double_quote] = ACTIONS(3325), - [sym___c_single_quote] = ACTIONS(3325), - [sym___r_double_quote] = ACTIONS(3325), - [sym___r_single_quote] = ACTIONS(3325), + [sym_block_comment] = STATE(1324), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1849), + [anon_sym_DASH] = ACTIONS(1849), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_SLASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_AMP] = ACTIONS(3915), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_GT_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_CARET] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, [1325] = { [sym_line_comment] = STATE(1325), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_COMMA] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(3857), + [sym_block_comment] = STATE(1325), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1769), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3911), [anon_sym_DASH] = ACTIONS(3911), [anon_sym_STAR] = ACTIONS(3913), [anon_sym_SLASH] = ACTIONS(3915), [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1767), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_mut] = ACTIONS(1769), - [anon_sym_PLUS_PLUS] = ACTIONS(3891), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1769), - [anon_sym_spawn] = ACTIONS(1769), - [anon_sym_json_DOTdecode] = ACTIONS(1767), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1847), + [anon_sym_BANG_EQ] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3917), [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1767), + [anon_sym_LT_DASH] = ACTIONS(1847), [anon_sym_LT_LT] = ACTIONS(3913), [anon_sym_GT_GT] = ACTIONS(3915), [anon_sym_GT_GT_GT] = ACTIONS(3913), [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3927), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_or] = ACTIONS(3901), - [sym_none] = ACTIONS(1769), - [sym_true] = ACTIONS(1769), - [sym_false] = ACTIONS(1769), - [sym_nil] = ACTIONS(1769), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_DOLLARif] = ACTIONS(1769), - [anon_sym_is] = ACTIONS(3903), - [anon_sym_BANGis] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_select] = ACTIONS(1769), - [anon_sym_lock] = ACTIONS(1769), - [anon_sym_rlock] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_sql] = ACTIONS(1769), - [sym_int_literal] = ACTIONS(1769), - [sym_float_literal] = ACTIONS(1767), - [sym_rune_literal] = ACTIONS(1767), - [sym_pseudo_compile_time_identifier] = ACTIONS(1769), - [anon_sym_shared] = ACTIONS(1769), - [anon_sym_map_LBRACK] = ACTIONS(1767), - [anon_sym_chan] = ACTIONS(1769), - [anon_sym_thread] = ACTIONS(1769), - [anon_sym_atomic] = ACTIONS(1769), - [sym___double_quote] = ACTIONS(1767), - [sym___single_quote] = ACTIONS(1767), - [sym___c_double_quote] = ACTIONS(1767), - [sym___c_single_quote] = ACTIONS(1767), - [sym___r_double_quote] = ACTIONS(1767), - [sym___r_single_quote] = ACTIONS(1767), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(1849), + [anon_sym_BANGin] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, [1326] = { [sym_line_comment] = STATE(1326), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), - [sym_identifier] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_as] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_COMMA] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(3857), + [sym_block_comment] = STATE(1326), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(1871), + [anon_sym_fn] = ACTIONS(1849), [anon_sym_PLUS] = ACTIONS(3911), [anon_sym_DASH] = ACTIONS(3911), [anon_sym_STAR] = ACTIONS(3913), [anon_sym_SLASH] = ACTIONS(3915), [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3859), - [anon_sym_RBRACK] = ACTIONS(1869), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_mut] = ACTIONS(1871), - [anon_sym_PLUS_PLUS] = ACTIONS(3891), - [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(1871), - [anon_sym_spawn] = ACTIONS(1871), - [anon_sym_json_DOTdecode] = ACTIONS(1869), - [anon_sym_LBRACK2] = ACTIONS(3865), - [anon_sym_TILDE] = ACTIONS(1869), - [anon_sym_CARET] = ACTIONS(3921), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3917), [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1847), [anon_sym_LT_LT] = ACTIONS(3913), [anon_sym_GT_GT] = ACTIONS(3915), [anon_sym_GT_GT_GT] = ACTIONS(3913), [anon_sym_AMP_CARET] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3927), - [anon_sym_PIPE_PIPE] = ACTIONS(3939), - [anon_sym_or] = ACTIONS(3901), - [sym_none] = ACTIONS(1871), - [sym_true] = ACTIONS(1871), - [sym_false] = ACTIONS(1871), - [sym_nil] = ACTIONS(1871), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_DOLLARif] = ACTIONS(1871), - [anon_sym_is] = ACTIONS(3903), - [anon_sym_BANGis] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_select] = ACTIONS(1871), - [anon_sym_lock] = ACTIONS(1871), - [anon_sym_rlock] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_sql] = ACTIONS(1871), - [sym_int_literal] = ACTIONS(1871), - [sym_float_literal] = ACTIONS(1869), - [sym_rune_literal] = ACTIONS(1869), - [sym_pseudo_compile_time_identifier] = ACTIONS(1871), - [anon_sym_shared] = ACTIONS(1871), - [anon_sym_map_LBRACK] = ACTIONS(1869), - [anon_sym_chan] = ACTIONS(1871), - [anon_sym_thread] = ACTIONS(1871), - [anon_sym_atomic] = ACTIONS(1871), - [sym___double_quote] = ACTIONS(1869), - [sym___single_quote] = ACTIONS(1869), - [sym___c_double_quote] = ACTIONS(1869), - [sym___c_single_quote] = ACTIONS(1869), - [sym___r_double_quote] = ACTIONS(1869), - [sym___r_single_quote] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1847), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, [1327] = { [sym_line_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_RBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_else] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [sym_block_comment] = STATE(1327), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1849), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_SLASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3921), + [anon_sym_GT] = ACTIONS(3921), + [anon_sym_EQ_EQ] = ACTIONS(3923), + [anon_sym_BANG_EQ] = ACTIONS(3923), + [anon_sym_LT_EQ] = ACTIONS(3923), + [anon_sym_GT_EQ] = ACTIONS(3923), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3917), + [anon_sym_AMP] = ACTIONS(3915), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_GT_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_CARET] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(3925), + [anon_sym_PIPE_PIPE] = ACTIONS(1847), + [anon_sym_or] = ACTIONS(1849), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1849), + [anon_sym_BANGis] = ACTIONS(1847), + [anon_sym_in] = ACTIONS(3929), + [anon_sym_BANGin] = ACTIONS(3931), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), }, [1328] = { [sym_line_comment] = STATE(1328), - [sym_identifier] = ACTIONS(3323), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3321), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3321), - [anon_sym_LT_LT] = ACTIONS(3321), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3321), - [anon_sym_AMP_CARET] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3321), - [anon_sym_POUND_LBRACK] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3321), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3321), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3321), - [sym_rune_literal] = ACTIONS(3321), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3321), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3321), - [sym___single_quote] = ACTIONS(3321), - [sym___c_double_quote] = ACTIONS(3321), - [sym___c_single_quote] = ACTIONS(3321), - [sym___r_double_quote] = ACTIONS(3321), - [sym___r_single_quote] = ACTIONS(3321), + [sym_block_comment] = STATE(1328), + [sym_identifier] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_COMMA] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2865), + [anon_sym_BANG_EQ] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2865), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2865), + [anon_sym_AMP_CARET] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_PIPE_PIPE] = ACTIONS(2865), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2865), + [anon_sym_POUND_LBRACK] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2865), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2865), + [sym_rune_literal] = ACTIONS(2865), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2865), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2865), + [sym___single_quote] = ACTIONS(2865), + [sym___c_double_quote] = ACTIONS(2865), + [sym___c_single_quote] = ACTIONS(2865), + [sym___r_double_quote] = ACTIONS(2865), + [sym___r_single_quote] = ACTIONS(2865), }, [1329] = { [sym_line_comment] = STATE(1329), - [sym_identifier] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_as] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2965), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2965), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2965), - [anon_sym_GT] = ACTIONS(2965), - [anon_sym_EQ_EQ] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2963), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_mut] = ACTIONS(2965), - [anon_sym_COLON] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2965), - [anon_sym_BANG] = ACTIONS(2965), - [anon_sym_go] = ACTIONS(2965), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2965), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2965), - [anon_sym_GT_GT_GT] = ACTIONS(2963), - [anon_sym_AMP_CARET] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2965), - [sym_none] = ACTIONS(2965), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_nil] = ACTIONS(2965), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_DOLLARif] = ACTIONS(2965), - [anon_sym_is] = ACTIONS(2965), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2965), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_select] = ACTIONS(2965), - [anon_sym_lock] = ACTIONS(2965), - [anon_sym_rlock] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_sql] = ACTIONS(2965), - [sym_int_literal] = ACTIONS(2965), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [sym_pseudo_compile_time_identifier] = ACTIONS(2965), - [anon_sym_shared] = ACTIONS(2965), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2965), - [anon_sym_thread] = ACTIONS(2965), - [anon_sym_atomic] = ACTIONS(2965), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), + [sym_block_comment] = STATE(1329), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), + [sym_identifier] = ACTIONS(1877), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), + [anon_sym_as] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(3855), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_fn] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3913), + [anon_sym_SLASH] = ACTIONS(3915), + [anon_sym_PERCENT] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1875), + [anon_sym_BANG_EQ] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(3857), + [anon_sym_RBRACK] = ACTIONS(1875), + [anon_sym_struct] = ACTIONS(1877), + [anon_sym_mut] = ACTIONS(1877), + [anon_sym_PLUS_PLUS] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), + [anon_sym_go] = ACTIONS(1877), + [anon_sym_spawn] = ACTIONS(1877), + [anon_sym_json_DOTdecode] = ACTIONS(1875), + [anon_sym_LBRACK2] = ACTIONS(3863), + [anon_sym_TILDE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(3917), + [anon_sym_AMP] = ACTIONS(3915), + [anon_sym_LT_DASH] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(3913), + [anon_sym_GT_GT] = ACTIONS(3915), + [anon_sym_GT_GT_GT] = ACTIONS(3913), + [anon_sym_AMP_CARET] = ACTIONS(3913), + [anon_sym_AMP_AMP] = ACTIONS(1875), + [anon_sym_PIPE_PIPE] = ACTIONS(1875), + [anon_sym_or] = ACTIONS(1877), + [sym_none] = ACTIONS(1877), + [sym_true] = ACTIONS(1877), + [sym_false] = ACTIONS(1877), + [sym_nil] = ACTIONS(1877), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_DOLLARif] = ACTIONS(1877), + [anon_sym_is] = ACTIONS(1877), + [anon_sym_BANGis] = ACTIONS(1875), + [anon_sym_in] = ACTIONS(1877), + [anon_sym_BANGin] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1877), + [anon_sym_select] = ACTIONS(1877), + [anon_sym_lock] = ACTIONS(1877), + [anon_sym_rlock] = ACTIONS(1877), + [anon_sym_unsafe] = ACTIONS(1877), + [anon_sym_sql] = ACTIONS(1877), + [sym_int_literal] = ACTIONS(1877), + [sym_float_literal] = ACTIONS(1875), + [sym_rune_literal] = ACTIONS(1875), + [sym_pseudo_compile_time_identifier] = ACTIONS(1877), + [anon_sym_shared] = ACTIONS(1877), + [anon_sym_map_LBRACK] = ACTIONS(1875), + [anon_sym_chan] = ACTIONS(1877), + [anon_sym_thread] = ACTIONS(1877), + [anon_sym_atomic] = ACTIONS(1877), + [sym___double_quote] = ACTIONS(1875), + [sym___single_quote] = ACTIONS(1875), + [sym___c_double_quote] = ACTIONS(1875), + [sym___c_single_quote] = ACTIONS(1875), + [sym___r_double_quote] = ACTIONS(1875), + [sym___r_single_quote] = ACTIONS(1875), }, [1330] = { [sym_line_comment] = STATE(1330), - [sym_identifier] = ACTIONS(3119), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_as] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3119), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3119), - [anon_sym_GT] = ACTIONS(3119), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_mut] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_go] = ACTIONS(3119), - [anon_sym_spawn] = ACTIONS(3119), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3119), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_nil] = ACTIONS(3119), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_DOLLARif] = ACTIONS(3119), - [anon_sym_is] = ACTIONS(3119), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3119), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_rlock] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_sql] = ACTIONS(3119), - [sym_int_literal] = ACTIONS(3119), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [sym_pseudo_compile_time_identifier] = ACTIONS(3119), - [anon_sym_shared] = ACTIONS(3119), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3119), - [anon_sym_thread] = ACTIONS(3119), - [anon_sym_atomic] = ACTIONS(3119), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), + [sym_block_comment] = STATE(1330), + [sym_identifier] = ACTIONS(3266), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3266), + [anon_sym_as] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_COMMA] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_PIPE] = ACTIONS(3266), + [anon_sym_fn] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_STAR] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_PERCENT] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_GT] = ACTIONS(3266), + [anon_sym_EQ_EQ] = ACTIONS(3264), + [anon_sym_BANG_EQ] = ACTIONS(3264), + [anon_sym_LT_EQ] = ACTIONS(3264), + [anon_sym_GT_EQ] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_RBRACK] = ACTIONS(3264), + [anon_sym_struct] = ACTIONS(3266), + [anon_sym_mut] = ACTIONS(3266), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_QMARK] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_go] = ACTIONS(3266), + [anon_sym_spawn] = ACTIONS(3266), + [anon_sym_json_DOTdecode] = ACTIONS(3264), + [anon_sym_LBRACK2] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_CARET] = ACTIONS(3264), + [anon_sym_AMP] = ACTIONS(3266), + [anon_sym_LT_DASH] = ACTIONS(3264), + [anon_sym_LT_LT] = ACTIONS(3264), + [anon_sym_GT_GT] = ACTIONS(3266), + [anon_sym_GT_GT_GT] = ACTIONS(3264), + [anon_sym_AMP_CARET] = ACTIONS(3264), + [anon_sym_AMP_AMP] = ACTIONS(3264), + [anon_sym_PIPE_PIPE] = ACTIONS(3264), + [anon_sym_or] = ACTIONS(3266), + [sym_none] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_nil] = ACTIONS(3266), + [anon_sym_QMARK_DOT] = ACTIONS(3264), + [anon_sym_POUND_LBRACK] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_DOLLARif] = ACTIONS(3266), + [anon_sym_is] = ACTIONS(3266), + [anon_sym_BANGis] = ACTIONS(3264), + [anon_sym_in] = ACTIONS(3266), + [anon_sym_BANGin] = ACTIONS(3264), + [anon_sym_match] = ACTIONS(3266), + [anon_sym_select] = ACTIONS(3266), + [anon_sym_lock] = ACTIONS(3266), + [anon_sym_rlock] = ACTIONS(3266), + [anon_sym_unsafe] = ACTIONS(3266), + [anon_sym_sql] = ACTIONS(3266), + [sym_int_literal] = ACTIONS(3266), + [sym_float_literal] = ACTIONS(3264), + [sym_rune_literal] = ACTIONS(3264), + [sym_pseudo_compile_time_identifier] = ACTIONS(3266), + [anon_sym_shared] = ACTIONS(3266), + [anon_sym_map_LBRACK] = ACTIONS(3264), + [anon_sym_chan] = ACTIONS(3266), + [anon_sym_thread] = ACTIONS(3266), + [anon_sym_atomic] = ACTIONS(3266), + [sym___double_quote] = ACTIONS(3264), + [sym___single_quote] = ACTIONS(3264), + [sym___c_double_quote] = ACTIONS(3264), + [sym___c_single_quote] = ACTIONS(3264), + [sym___r_double_quote] = ACTIONS(3264), + [sym___r_single_quote] = ACTIONS(3264), }, [1331] = { [sym_line_comment] = STATE(1331), - [sym_identifier] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_COLON] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3107), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3107), - [anon_sym_AMP_CARET] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3107), - [anon_sym_POUND_LBRACK] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3107), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3107), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3107), - [sym_rune_literal] = ACTIONS(3107), - [sym_pseudo_compile_time_identifier] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3107), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3107), - [sym___single_quote] = ACTIONS(3107), - [sym___c_double_quote] = ACTIONS(3107), - [sym___c_single_quote] = ACTIONS(3107), - [sym___r_double_quote] = ACTIONS(3107), - [sym___r_single_quote] = ACTIONS(3107), + [sym_block_comment] = STATE(1331), + [sym_identifier] = ACTIONS(3366), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3364), + [anon_sym_BANG_EQ] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_COLON] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_CARET] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3364), + [anon_sym_POUND_LBRACK] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3364), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3364), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3364), + [sym_rune_literal] = ACTIONS(3364), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3364), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3364), + [sym___single_quote] = ACTIONS(3364), + [sym___c_double_quote] = ACTIONS(3364), + [sym___c_single_quote] = ACTIONS(3364), + [sym___r_double_quote] = ACTIONS(3364), + [sym___r_single_quote] = ACTIONS(3364), }, [1332] = { [sym_line_comment] = STATE(1332), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_PLUS] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2671), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2671), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_RBRACK] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_go] = ACTIONS(2671), - [anon_sym_spawn] = ACTIONS(2671), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2671), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2671), - [sym_none] = ACTIONS(2671), - [sym_true] = ACTIONS(2671), - [sym_false] = ACTIONS(2671), - [sym_nil] = ACTIONS(2671), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_DOLLARif] = ACTIONS(2671), - [anon_sym_is] = ACTIONS(2671), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2671), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_select] = ACTIONS(2671), - [anon_sym_lock] = ACTIONS(2671), - [anon_sym_rlock] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_sql] = ACTIONS(2671), - [sym_int_literal] = ACTIONS(2671), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2671), - [anon_sym_shared] = ACTIONS(2671), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2671), - [anon_sym_thread] = ACTIONS(2671), - [anon_sym_atomic] = ACTIONS(2671), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [sym_block_comment] = STATE(1332), + [sym_identifier] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_COMMA] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_RBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3196), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_CARET] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3196), + [anon_sym_LT_LT] = ACTIONS(3196), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3196), + [anon_sym_AMP_CARET] = ACTIONS(3196), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_or] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3196), + [anon_sym_POUND_LBRACK] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3196), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3196), + [sym_rune_literal] = ACTIONS(3196), + [sym_pseudo_compile_time_identifier] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3196), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3196), + [sym___single_quote] = ACTIONS(3196), + [sym___c_double_quote] = ACTIONS(3196), + [sym___c_single_quote] = ACTIONS(3196), + [sym___r_double_quote] = ACTIONS(3196), + [sym___r_single_quote] = ACTIONS(3196), }, [1333] = { [sym_line_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3395), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_fn] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_mut] = ACTIONS(3395), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(3395), - [anon_sym_spawn] = ACTIONS(3395), - [anon_sym_json_DOTdecode] = ACTIONS(3393), - [anon_sym_LBRACK2] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_DASH] = ACTIONS(3393), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_AMP_CARET] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_nil] = ACTIONS(3395), - [anon_sym_QMARK_DOT] = ACTIONS(3393), - [anon_sym_POUND_LBRACK] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOLLARif] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_BANGis] = ACTIONS(3393), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_BANGin] = ACTIONS(3393), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_rlock] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_sql] = ACTIONS(3395), - [sym_int_literal] = ACTIONS(3395), - [sym_float_literal] = ACTIONS(3393), - [sym_rune_literal] = ACTIONS(3393), - [sym_pseudo_compile_time_identifier] = ACTIONS(3395), - [anon_sym_shared] = ACTIONS(3395), - [anon_sym_map_LBRACK] = ACTIONS(3393), - [anon_sym_chan] = ACTIONS(3395), - [anon_sym_thread] = ACTIONS(3395), - [anon_sym_atomic] = ACTIONS(3395), - [sym___double_quote] = ACTIONS(3393), - [sym___single_quote] = ACTIONS(3393), - [sym___c_double_quote] = ACTIONS(3393), - [sym___c_single_quote] = ACTIONS(3393), - [sym___r_double_quote] = ACTIONS(3393), - [sym___r_single_quote] = ACTIONS(3393), + [sym_block_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3200), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_CARET] = ACTIONS(3200), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3200), + [anon_sym_LT_LT] = ACTIONS(3200), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3200), + [anon_sym_AMP_CARET] = ACTIONS(3200), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_or] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3200), + [anon_sym_POUND_LBRACK] = ACTIONS(3200), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3200), + [sym_rune_literal] = ACTIONS(3200), + [sym_pseudo_compile_time_identifier] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3200), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3200), + [sym___single_quote] = ACTIONS(3200), + [sym___c_double_quote] = ACTIONS(3200), + [sym___c_single_quote] = ACTIONS(3200), + [sym___r_double_quote] = ACTIONS(3200), + [sym___r_single_quote] = ACTIONS(3200), }, [1334] = { [sym_line_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3403), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_as] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_fn] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_GT] = ACTIONS(3403), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_mut] = ACTIONS(3403), - [anon_sym_COLON] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_go] = ACTIONS(3403), - [anon_sym_spawn] = ACTIONS(3403), - [anon_sym_json_DOTdecode] = ACTIONS(3401), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3403), - [anon_sym_GT_GT_GT] = ACTIONS(3401), - [anon_sym_AMP_CARET] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_nil] = ACTIONS(3403), - [anon_sym_QMARK_DOT] = ACTIONS(3401), - [anon_sym_POUND_LBRACK] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOLLARif] = ACTIONS(3403), - [anon_sym_is] = ACTIONS(3403), - [anon_sym_BANGis] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3403), - [anon_sym_BANGin] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_rlock] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_sql] = ACTIONS(3403), - [sym_int_literal] = ACTIONS(3403), - [sym_float_literal] = ACTIONS(3401), - [sym_rune_literal] = ACTIONS(3401), - [sym_pseudo_compile_time_identifier] = ACTIONS(3403), - [anon_sym_shared] = ACTIONS(3403), - [anon_sym_map_LBRACK] = ACTIONS(3401), - [anon_sym_chan] = ACTIONS(3403), - [anon_sym_thread] = ACTIONS(3403), - [anon_sym_atomic] = ACTIONS(3403), - [sym___double_quote] = ACTIONS(3401), - [sym___single_quote] = ACTIONS(3401), - [sym___c_double_quote] = ACTIONS(3401), - [sym___c_single_quote] = ACTIONS(3401), - [sym___r_double_quote] = ACTIONS(3401), - [sym___r_single_quote] = ACTIONS(3401), + [sym_block_comment] = STATE(1334), + [sym_identifier] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3372), + [anon_sym_BANG_EQ] = ACTIONS(3372), + [anon_sym_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_EQ] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_RBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3372), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_CARET] = ACTIONS(3372), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3372), + [anon_sym_LT_LT] = ACTIONS(3372), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3372), + [anon_sym_AMP_CARET] = ACTIONS(3372), + [anon_sym_AMP_AMP] = ACTIONS(3372), + [anon_sym_PIPE_PIPE] = ACTIONS(3372), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3372), + [anon_sym_POUND_LBRACK] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3372), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3372), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3372), + [sym_rune_literal] = ACTIONS(3372), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3372), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3372), + [sym___single_quote] = ACTIONS(3372), + [sym___c_double_quote] = ACTIONS(3372), + [sym___c_single_quote] = ACTIONS(3372), + [sym___r_double_quote] = ACTIONS(3372), + [sym___r_single_quote] = ACTIONS(3372), }, [1335] = { [sym_line_comment] = STATE(1335), - [sym_identifier] = ACTIONS(3427), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_as] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3427), - [anon_sym_fn] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_PERCENT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_GT] = ACTIONS(3427), - [anon_sym_EQ_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3427), - [anon_sym_mut] = ACTIONS(3427), - [anon_sym_COLON] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_go] = ACTIONS(3427), - [anon_sym_spawn] = ACTIONS(3427), - [anon_sym_json_DOTdecode] = ACTIONS(3425), - [anon_sym_LBRACK2] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(3425), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3427), - [anon_sym_GT_GT_GT] = ACTIONS(3425), - [anon_sym_AMP_CARET] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3427), - [sym_none] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_nil] = ACTIONS(3427), - [anon_sym_QMARK_DOT] = ACTIONS(3425), - [anon_sym_POUND_LBRACK] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_DOLLARif] = ACTIONS(3427), - [anon_sym_is] = ACTIONS(3427), - [anon_sym_BANGis] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3427), - [anon_sym_BANGin] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3427), - [anon_sym_select] = ACTIONS(3427), - [anon_sym_lock] = ACTIONS(3427), - [anon_sym_rlock] = ACTIONS(3427), - [anon_sym_unsafe] = ACTIONS(3427), - [anon_sym_sql] = ACTIONS(3427), - [sym_int_literal] = ACTIONS(3427), - [sym_float_literal] = ACTIONS(3425), - [sym_rune_literal] = ACTIONS(3425), - [sym_pseudo_compile_time_identifier] = ACTIONS(3427), - [anon_sym_shared] = ACTIONS(3427), - [anon_sym_map_LBRACK] = ACTIONS(3425), - [anon_sym_chan] = ACTIONS(3427), - [anon_sym_thread] = ACTIONS(3427), - [anon_sym_atomic] = ACTIONS(3427), - [sym___double_quote] = ACTIONS(3425), - [sym___single_quote] = ACTIONS(3425), - [sym___c_double_quote] = ACTIONS(3425), - [sym___c_single_quote] = ACTIONS(3425), - [sym___r_double_quote] = ACTIONS(3425), - [sym___r_single_quote] = ACTIONS(3425), + [sym_block_comment] = STATE(1335), + [sym_identifier] = ACTIONS(3246), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3246), + [anon_sym_as] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_COMMA] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_PIPE] = ACTIONS(3246), + [anon_sym_fn] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_PERCENT] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3246), + [anon_sym_GT] = ACTIONS(3246), + [anon_sym_EQ_EQ] = ACTIONS(3244), + [anon_sym_BANG_EQ] = ACTIONS(3244), + [anon_sym_LT_EQ] = ACTIONS(3244), + [anon_sym_GT_EQ] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_RBRACK] = ACTIONS(3244), + [anon_sym_struct] = ACTIONS(3246), + [anon_sym_mut] = ACTIONS(3246), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3246), + [anon_sym_go] = ACTIONS(3246), + [anon_sym_spawn] = ACTIONS(3246), + [anon_sym_json_DOTdecode] = ACTIONS(3244), + [anon_sym_LBRACK2] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_CARET] = ACTIONS(3244), + [anon_sym_AMP] = ACTIONS(3246), + [anon_sym_LT_DASH] = ACTIONS(3244), + [anon_sym_LT_LT] = ACTIONS(3244), + [anon_sym_GT_GT] = ACTIONS(3246), + [anon_sym_GT_GT_GT] = ACTIONS(3244), + [anon_sym_AMP_CARET] = ACTIONS(3244), + [anon_sym_AMP_AMP] = ACTIONS(3244), + [anon_sym_PIPE_PIPE] = ACTIONS(3244), + [anon_sym_or] = ACTIONS(3246), + [sym_none] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_nil] = ACTIONS(3246), + [anon_sym_QMARK_DOT] = ACTIONS(3244), + [anon_sym_POUND_LBRACK] = ACTIONS(3244), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_DOLLARif] = ACTIONS(3246), + [anon_sym_is] = ACTIONS(3246), + [anon_sym_BANGis] = ACTIONS(3244), + [anon_sym_in] = ACTIONS(3246), + [anon_sym_BANGin] = ACTIONS(3244), + [anon_sym_match] = ACTIONS(3246), + [anon_sym_select] = ACTIONS(3246), + [anon_sym_lock] = ACTIONS(3246), + [anon_sym_rlock] = ACTIONS(3246), + [anon_sym_unsafe] = ACTIONS(3246), + [anon_sym_sql] = ACTIONS(3246), + [sym_int_literal] = ACTIONS(3246), + [sym_float_literal] = ACTIONS(3244), + [sym_rune_literal] = ACTIONS(3244), + [sym_pseudo_compile_time_identifier] = ACTIONS(3246), + [anon_sym_shared] = ACTIONS(3246), + [anon_sym_map_LBRACK] = ACTIONS(3244), + [anon_sym_chan] = ACTIONS(3246), + [anon_sym_thread] = ACTIONS(3246), + [anon_sym_atomic] = ACTIONS(3246), + [sym___double_quote] = ACTIONS(3244), + [sym___single_quote] = ACTIONS(3244), + [sym___c_double_quote] = ACTIONS(3244), + [sym___c_single_quote] = ACTIONS(3244), + [sym___r_double_quote] = ACTIONS(3244), + [sym___r_single_quote] = ACTIONS(3244), }, [1336] = { [sym_line_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), + [sym_block_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_as] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_RBRACK] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3346), + [anon_sym_mut] = ACTIONS(3346), + [anon_sym_COLON] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_go] = ACTIONS(3346), + [anon_sym_spawn] = ACTIONS(3346), + [anon_sym_json_DOTdecode] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_CARET] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_or] = ACTIONS(3346), + [sym_none] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_nil] = ACTIONS(3346), + [anon_sym_QMARK_DOT] = ACTIONS(3344), + [anon_sym_POUND_LBRACK] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_DOLLARif] = ACTIONS(3346), + [anon_sym_is] = ACTIONS(3346), + [anon_sym_BANGis] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_BANGin] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3346), + [anon_sym_select] = ACTIONS(3346), + [anon_sym_lock] = ACTIONS(3346), + [anon_sym_rlock] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(3346), + [anon_sym_sql] = ACTIONS(3346), + [sym_int_literal] = ACTIONS(3346), + [sym_float_literal] = ACTIONS(3344), + [sym_rune_literal] = ACTIONS(3344), + [sym_pseudo_compile_time_identifier] = ACTIONS(3346), + [anon_sym_shared] = ACTIONS(3346), + [anon_sym_map_LBRACK] = ACTIONS(3344), + [anon_sym_chan] = ACTIONS(3346), + [anon_sym_thread] = ACTIONS(3346), + [anon_sym_atomic] = ACTIONS(3346), + [sym___double_quote] = ACTIONS(3344), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3344), + [sym___c_single_quote] = ACTIONS(3344), + [sym___r_double_quote] = ACTIONS(3344), + [sym___r_single_quote] = ACTIONS(3344), }, [1337] = { [sym_line_comment] = STATE(1337), - [sym_identifier] = ACTIONS(3435), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_as] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3435), - [anon_sym_fn] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_GT] = ACTIONS(3435), - [anon_sym_EQ_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3433), - [anon_sym_struct] = ACTIONS(3435), - [anon_sym_mut] = ACTIONS(3435), - [anon_sym_COLON] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_go] = ACTIONS(3435), - [anon_sym_spawn] = ACTIONS(3435), - [anon_sym_json_DOTdecode] = ACTIONS(3433), - [anon_sym_LBRACK2] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3435), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3435), - [anon_sym_GT_GT_GT] = ACTIONS(3433), - [anon_sym_AMP_CARET] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3435), - [sym_none] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_nil] = ACTIONS(3435), - [anon_sym_QMARK_DOT] = ACTIONS(3433), - [anon_sym_POUND_LBRACK] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOLLARif] = ACTIONS(3435), - [anon_sym_is] = ACTIONS(3435), - [anon_sym_BANGis] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3435), - [anon_sym_BANGin] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_rlock] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_sql] = ACTIONS(3435), - [sym_int_literal] = ACTIONS(3435), - [sym_float_literal] = ACTIONS(3433), - [sym_rune_literal] = ACTIONS(3433), - [sym_pseudo_compile_time_identifier] = ACTIONS(3435), - [anon_sym_shared] = ACTIONS(3435), - [anon_sym_map_LBRACK] = ACTIONS(3433), - [anon_sym_chan] = ACTIONS(3435), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3435), - [sym___double_quote] = ACTIONS(3433), - [sym___single_quote] = ACTIONS(3433), - [sym___c_double_quote] = ACTIONS(3433), - [sym___c_single_quote] = ACTIONS(3433), - [sym___r_double_quote] = ACTIONS(3433), - [sym___r_single_quote] = ACTIONS(3433), + [sym_block_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(2999), + [anon_sym_AMP_CARET] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(2999), + [sym___single_quote] = ACTIONS(2999), + [sym___c_double_quote] = ACTIONS(2999), + [sym___c_single_quote] = ACTIONS(2999), + [sym___r_double_quote] = ACTIONS(2999), + [sym___r_single_quote] = ACTIONS(2999), }, [1338] = { [sym_line_comment] = STATE(1338), - [sym_identifier] = ACTIONS(3363), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3361), - [anon_sym_BANG_EQ] = ACTIONS(3361), - [anon_sym_LT_EQ] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3361), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3361), - [anon_sym_LT_LT] = ACTIONS(3361), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3361), - [anon_sym_AMP_CARET] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3361), - [anon_sym_POUND_LBRACK] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3361), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3361), - [sym_rune_literal] = ACTIONS(3361), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3361), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3361), - [sym___single_quote] = ACTIONS(3361), - [sym___c_double_quote] = ACTIONS(3361), - [sym___c_single_quote] = ACTIONS(3361), - [sym___r_double_quote] = ACTIONS(3361), - [sym___r_single_quote] = ACTIONS(3361), - }, - [1339] = { - [sym_line_comment] = STATE(1339), - [sym_identifier] = ACTIONS(3367), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3365), - [anon_sym_BANG_EQ] = ACTIONS(3365), - [anon_sym_LT_EQ] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_COLON] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3365), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3365), - [anon_sym_LT_LT] = ACTIONS(3365), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3365), - [anon_sym_AMP_CARET] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3365), - [anon_sym_POUND_LBRACK] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3365), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3365), - [sym_rune_literal] = ACTIONS(3365), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3365), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3365), - [sym___single_quote] = ACTIONS(3365), - [sym___c_double_quote] = ACTIONS(3365), - [sym___c_single_quote] = ACTIONS(3365), - [sym___r_double_quote] = ACTIONS(3365), - [sym___r_single_quote] = ACTIONS(3365), - }, - [1340] = { - [sym_line_comment] = STATE(1340), - [sym_identifier] = ACTIONS(3355), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3353), - [anon_sym_BANG_EQ] = ACTIONS(3353), - [anon_sym_LT_EQ] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_COLON] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3353), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3353), - [anon_sym_LT_LT] = ACTIONS(3353), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3353), - [anon_sym_AMP_CARET] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3353), - [anon_sym_POUND_LBRACK] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3353), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3353), - [sym_rune_literal] = ACTIONS(3353), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3353), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3353), - [sym___single_quote] = ACTIONS(3353), - [sym___c_double_quote] = ACTIONS(3353), - [sym___c_single_quote] = ACTIONS(3353), - [sym___r_double_quote] = ACTIONS(3353), - [sym___r_single_quote] = ACTIONS(3353), - }, - [1341] = { - [sym_line_comment] = STATE(1341), + [sym_block_comment] = STATE(1338), [sym_identifier] = ACTIONS(3442), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(3442), [anon_sym_as] = ACTIONS(3442), [anon_sym_LBRACE] = ACTIONS(3440), @@ -176743,2971 +171076,1929 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3440), [sym___r_single_quote] = ACTIONS(3440), }, + [1339] = { + [sym_line_comment] = STATE(1339), + [sym_block_comment] = STATE(1339), + [sym_identifier] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), + }, + [1340] = { + [sym_line_comment] = STATE(1340), + [sym_block_comment] = STATE(1340), + [sym_identifier] = ACTIONS(2923), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2923), + [anon_sym_as] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_COMMA] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2921), + [anon_sym_BANG_EQ] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_RBRACK] = ACTIONS(2921), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_mut] = ACTIONS(2923), + [anon_sym_COLON] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_go] = ACTIONS(2923), + [anon_sym_spawn] = ACTIONS(2923), + [anon_sym_json_DOTdecode] = ACTIONS(2921), + [anon_sym_LBRACK2] = ACTIONS(2923), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_LT_DASH] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2921), + [anon_sym_GT_GT] = ACTIONS(2923), + [anon_sym_GT_GT_GT] = ACTIONS(2921), + [anon_sym_AMP_CARET] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_PIPE_PIPE] = ACTIONS(2921), + [anon_sym_or] = ACTIONS(2923), + [sym_none] = ACTIONS(2923), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_nil] = ACTIONS(2923), + [anon_sym_QMARK_DOT] = ACTIONS(2921), + [anon_sym_POUND_LBRACK] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_DOLLARif] = ACTIONS(2923), + [anon_sym_is] = ACTIONS(2923), + [anon_sym_BANGis] = ACTIONS(2921), + [anon_sym_in] = ACTIONS(2923), + [anon_sym_BANGin] = ACTIONS(2921), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_select] = ACTIONS(2923), + [anon_sym_lock] = ACTIONS(2923), + [anon_sym_rlock] = ACTIONS(2923), + [anon_sym_unsafe] = ACTIONS(2923), + [anon_sym_sql] = ACTIONS(2923), + [sym_int_literal] = ACTIONS(2923), + [sym_float_literal] = ACTIONS(2921), + [sym_rune_literal] = ACTIONS(2921), + [sym_pseudo_compile_time_identifier] = ACTIONS(2923), + [anon_sym_shared] = ACTIONS(2923), + [anon_sym_map_LBRACK] = ACTIONS(2921), + [anon_sym_chan] = ACTIONS(2923), + [anon_sym_thread] = ACTIONS(2923), + [anon_sym_atomic] = ACTIONS(2923), + [sym___double_quote] = ACTIONS(2921), + [sym___single_quote] = ACTIONS(2921), + [sym___c_double_quote] = ACTIONS(2921), + [sym___c_single_quote] = ACTIONS(2921), + [sym___r_double_quote] = ACTIONS(2921), + [sym___r_single_quote] = ACTIONS(2921), + }, + [1341] = { + [sym_line_comment] = STATE(1341), + [sym_block_comment] = STATE(1341), + [sym_identifier] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_CARET] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2995), + [sym___single_quote] = ACTIONS(2995), + [sym___c_double_quote] = ACTIONS(2995), + [sym___c_single_quote] = ACTIONS(2995), + [sym___r_double_quote] = ACTIONS(2995), + [sym___r_single_quote] = ACTIONS(2995), + }, [1342] = { [sym_line_comment] = STATE(1342), - [sym_identifier] = ACTIONS(3347), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3345), - [anon_sym_BANG_EQ] = ACTIONS(3345), - [anon_sym_LT_EQ] = ACTIONS(3345), - [anon_sym_GT_EQ] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_COLON] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3345), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3345), - [anon_sym_LT_LT] = ACTIONS(3345), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3345), - [anon_sym_AMP_CARET] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3345), - [anon_sym_POUND_LBRACK] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3345), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3345), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3345), - [sym_rune_literal] = ACTIONS(3345), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3345), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3345), - [sym___single_quote] = ACTIONS(3345), - [sym___c_double_quote] = ACTIONS(3345), - [sym___c_single_quote] = ACTIONS(3345), - [sym___r_double_quote] = ACTIONS(3345), - [sym___r_single_quote] = ACTIONS(3345), + [sym_block_comment] = STATE(1342), + [sym_identifier] = ACTIONS(3242), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3242), + [anon_sym_as] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_fn] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_PERCENT] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym_GT] = ACTIONS(3242), + [anon_sym_EQ_EQ] = ACTIONS(3240), + [anon_sym_BANG_EQ] = ACTIONS(3240), + [anon_sym_LT_EQ] = ACTIONS(3240), + [anon_sym_GT_EQ] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_mut] = ACTIONS(3242), + [anon_sym_COLON] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_QMARK] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_go] = ACTIONS(3242), + [anon_sym_spawn] = ACTIONS(3242), + [anon_sym_json_DOTdecode] = ACTIONS(3240), + [anon_sym_LBRACK2] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_CARET] = ACTIONS(3240), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_LT_DASH] = ACTIONS(3240), + [anon_sym_LT_LT] = ACTIONS(3240), + [anon_sym_GT_GT] = ACTIONS(3242), + [anon_sym_GT_GT_GT] = ACTIONS(3240), + [anon_sym_AMP_CARET] = ACTIONS(3240), + [anon_sym_AMP_AMP] = ACTIONS(3240), + [anon_sym_PIPE_PIPE] = ACTIONS(3240), + [anon_sym_or] = ACTIONS(3242), + [sym_none] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_nil] = ACTIONS(3242), + [anon_sym_QMARK_DOT] = ACTIONS(3240), + [anon_sym_POUND_LBRACK] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_DOLLARif] = ACTIONS(3242), + [anon_sym_is] = ACTIONS(3242), + [anon_sym_BANGis] = ACTIONS(3240), + [anon_sym_in] = ACTIONS(3242), + [anon_sym_BANGin] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3242), + [anon_sym_select] = ACTIONS(3242), + [anon_sym_lock] = ACTIONS(3242), + [anon_sym_rlock] = ACTIONS(3242), + [anon_sym_unsafe] = ACTIONS(3242), + [anon_sym_sql] = ACTIONS(3242), + [sym_int_literal] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3240), + [sym_rune_literal] = ACTIONS(3240), + [sym_pseudo_compile_time_identifier] = ACTIONS(3242), + [anon_sym_shared] = ACTIONS(3242), + [anon_sym_map_LBRACK] = ACTIONS(3240), + [anon_sym_chan] = ACTIONS(3242), + [anon_sym_thread] = ACTIONS(3242), + [anon_sym_atomic] = ACTIONS(3242), + [sym___double_quote] = ACTIONS(3240), + [sym___single_quote] = ACTIONS(3240), + [sym___c_double_quote] = ACTIONS(3240), + [sym___c_single_quote] = ACTIONS(3240), + [sym___r_double_quote] = ACTIONS(3240), + [sym___r_single_quote] = ACTIONS(3240), }, [1343] = { [sym_line_comment] = STATE(1343), - [sym_identifier] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_as] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2739), - [anon_sym_COMMA] = ACTIONS(2739), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_LPAREN] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2739), - [anon_sym_SLASH] = ACTIONS(2741), - [anon_sym_PERCENT] = ACTIONS(2739), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_GT] = ACTIONS(2741), - [anon_sym_EQ_EQ] = ACTIONS(2739), - [anon_sym_BANG_EQ] = ACTIONS(2739), - [anon_sym_LT_EQ] = ACTIONS(2739), - [anon_sym_GT_EQ] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_RBRACK] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_COLON] = ACTIONS(2739), - [anon_sym_PLUS_PLUS] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2739), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2739), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2739), - [anon_sym_CARET] = ACTIONS(2739), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2739), - [anon_sym_LT_LT] = ACTIONS(2739), - [anon_sym_GT_GT] = ACTIONS(2741), - [anon_sym_GT_GT_GT] = ACTIONS(2739), - [anon_sym_AMP_CARET] = ACTIONS(2739), - [anon_sym_AMP_AMP] = ACTIONS(2739), - [anon_sym_PIPE_PIPE] = ACTIONS(2739), - [anon_sym_or] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_QMARK_DOT] = ACTIONS(2739), - [anon_sym_POUND_LBRACK] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_is] = ACTIONS(2741), - [anon_sym_BANGis] = ACTIONS(2739), - [anon_sym_in] = ACTIONS(2741), - [anon_sym_BANGin] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2739), - [sym_rune_literal] = ACTIONS(2739), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2739), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2739), - [sym___single_quote] = ACTIONS(2739), - [sym___c_double_quote] = ACTIONS(2739), - [sym___c_single_quote] = ACTIONS(2739), - [sym___r_double_quote] = ACTIONS(2739), - [sym___r_single_quote] = ACTIONS(2739), + [sym_block_comment] = STATE(1343), + [sym_identifier] = ACTIONS(3302), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3302), + [anon_sym_as] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_COMMA] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_PIPE] = ACTIONS(3302), + [anon_sym_fn] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_STAR] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_PERCENT] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_GT] = ACTIONS(3302), + [anon_sym_EQ_EQ] = ACTIONS(3300), + [anon_sym_BANG_EQ] = ACTIONS(3300), + [anon_sym_LT_EQ] = ACTIONS(3300), + [anon_sym_GT_EQ] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_RBRACK] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3302), + [anon_sym_mut] = ACTIONS(3302), + [anon_sym_COLON] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_QMARK] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_go] = ACTIONS(3302), + [anon_sym_spawn] = ACTIONS(3302), + [anon_sym_json_DOTdecode] = ACTIONS(3300), + [anon_sym_LBRACK2] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_CARET] = ACTIONS(3300), + [anon_sym_AMP] = ACTIONS(3302), + [anon_sym_LT_DASH] = ACTIONS(3300), + [anon_sym_LT_LT] = ACTIONS(3300), + [anon_sym_GT_GT] = ACTIONS(3302), + [anon_sym_GT_GT_GT] = ACTIONS(3300), + [anon_sym_AMP_CARET] = ACTIONS(3300), + [anon_sym_AMP_AMP] = ACTIONS(3300), + [anon_sym_PIPE_PIPE] = ACTIONS(3300), + [anon_sym_or] = ACTIONS(3302), + [sym_none] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_nil] = ACTIONS(3302), + [anon_sym_QMARK_DOT] = ACTIONS(3300), + [anon_sym_POUND_LBRACK] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_DOLLARif] = ACTIONS(3302), + [anon_sym_is] = ACTIONS(3302), + [anon_sym_BANGis] = ACTIONS(3300), + [anon_sym_in] = ACTIONS(3302), + [anon_sym_BANGin] = ACTIONS(3300), + [anon_sym_match] = ACTIONS(3302), + [anon_sym_select] = ACTIONS(3302), + [anon_sym_lock] = ACTIONS(3302), + [anon_sym_rlock] = ACTIONS(3302), + [anon_sym_unsafe] = ACTIONS(3302), + [anon_sym_sql] = ACTIONS(3302), + [sym_int_literal] = ACTIONS(3302), + [sym_float_literal] = ACTIONS(3300), + [sym_rune_literal] = ACTIONS(3300), + [sym_pseudo_compile_time_identifier] = ACTIONS(3302), + [anon_sym_shared] = ACTIONS(3302), + [anon_sym_map_LBRACK] = ACTIONS(3300), + [anon_sym_chan] = ACTIONS(3302), + [anon_sym_thread] = ACTIONS(3302), + [anon_sym_atomic] = ACTIONS(3302), + [sym___double_quote] = ACTIONS(3300), + [sym___single_quote] = ACTIONS(3300), + [sym___c_double_quote] = ACTIONS(3300), + [sym___c_single_quote] = ACTIONS(3300), + [sym___r_double_quote] = ACTIONS(3300), + [sym___r_single_quote] = ACTIONS(3300), }, [1344] = { [sym_line_comment] = STATE(1344), - [sym_identifier] = ACTIONS(3077), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_COLON] = ACTIONS(3075), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3075), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3075), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3075), - [anon_sym_AMP_CARET] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_PIPE_PIPE] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3075), - [anon_sym_POUND_LBRACK] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3075), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3075), - [sym_rune_literal] = ACTIONS(3075), - [sym_pseudo_compile_time_identifier] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3075), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3075), - [sym___single_quote] = ACTIONS(3075), - [sym___c_double_quote] = ACTIONS(3075), - [sym___c_single_quote] = ACTIONS(3075), - [sym___r_double_quote] = ACTIONS(3075), - [sym___r_single_quote] = ACTIONS(3075), + [sym_block_comment] = STATE(1344), + [sym_identifier] = ACTIONS(3306), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3306), + [anon_sym_as] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_COMMA] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_PIPE] = ACTIONS(3306), + [anon_sym_fn] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_STAR] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_PERCENT] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_GT] = ACTIONS(3306), + [anon_sym_EQ_EQ] = ACTIONS(3304), + [anon_sym_BANG_EQ] = ACTIONS(3304), + [anon_sym_LT_EQ] = ACTIONS(3304), + [anon_sym_GT_EQ] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_RBRACK] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3306), + [anon_sym_mut] = ACTIONS(3306), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_QMARK] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_go] = ACTIONS(3306), + [anon_sym_spawn] = ACTIONS(3306), + [anon_sym_json_DOTdecode] = ACTIONS(3304), + [anon_sym_LBRACK2] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_CARET] = ACTIONS(3304), + [anon_sym_AMP] = ACTIONS(3306), + [anon_sym_LT_DASH] = ACTIONS(3304), + [anon_sym_LT_LT] = ACTIONS(3304), + [anon_sym_GT_GT] = ACTIONS(3306), + [anon_sym_GT_GT_GT] = ACTIONS(3304), + [anon_sym_AMP_CARET] = ACTIONS(3304), + [anon_sym_AMP_AMP] = ACTIONS(3304), + [anon_sym_PIPE_PIPE] = ACTIONS(3304), + [anon_sym_or] = ACTIONS(3306), + [sym_none] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_nil] = ACTIONS(3306), + [anon_sym_QMARK_DOT] = ACTIONS(3304), + [anon_sym_POUND_LBRACK] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_DOLLARif] = ACTIONS(3306), + [anon_sym_is] = ACTIONS(3306), + [anon_sym_BANGis] = ACTIONS(3304), + [anon_sym_in] = ACTIONS(3306), + [anon_sym_BANGin] = ACTIONS(3304), + [anon_sym_match] = ACTIONS(3306), + [anon_sym_select] = ACTIONS(3306), + [anon_sym_lock] = ACTIONS(3306), + [anon_sym_rlock] = ACTIONS(3306), + [anon_sym_unsafe] = ACTIONS(3306), + [anon_sym_sql] = ACTIONS(3306), + [sym_int_literal] = ACTIONS(3306), + [sym_float_literal] = ACTIONS(3304), + [sym_rune_literal] = ACTIONS(3304), + [sym_pseudo_compile_time_identifier] = ACTIONS(3306), + [anon_sym_shared] = ACTIONS(3306), + [anon_sym_map_LBRACK] = ACTIONS(3304), + [anon_sym_chan] = ACTIONS(3306), + [anon_sym_thread] = ACTIONS(3306), + [anon_sym_atomic] = ACTIONS(3306), + [sym___double_quote] = ACTIONS(3304), + [sym___single_quote] = ACTIONS(3304), + [sym___c_double_quote] = ACTIONS(3304), + [sym___c_single_quote] = ACTIONS(3304), + [sym___r_double_quote] = ACTIONS(3304), + [sym___r_single_quote] = ACTIONS(3304), }, [1345] = { [sym_line_comment] = STATE(1345), - [sym_identifier] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2976), - [anon_sym_as] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2976), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(2976), - [anon_sym_DASH] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2976), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2976), - [anon_sym_GT] = ACTIONS(2976), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2973), - [anon_sym_RBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_COLON] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2976), - [anon_sym_BANG] = ACTIONS(2976), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(2976), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2976), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2976), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2976), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(2976), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2976), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), + [sym_block_comment] = STATE(1345), + [sym_identifier] = ACTIONS(3238), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3238), + [anon_sym_as] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_COMMA] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_fn] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_PERCENT] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_GT] = ACTIONS(3238), + [anon_sym_EQ_EQ] = ACTIONS(3236), + [anon_sym_BANG_EQ] = ACTIONS(3236), + [anon_sym_LT_EQ] = ACTIONS(3236), + [anon_sym_GT_EQ] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_RBRACK] = ACTIONS(3236), + [anon_sym_struct] = ACTIONS(3238), + [anon_sym_mut] = ACTIONS(3238), + [anon_sym_COLON] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_QMARK] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_go] = ACTIONS(3238), + [anon_sym_spawn] = ACTIONS(3238), + [anon_sym_json_DOTdecode] = ACTIONS(3236), + [anon_sym_LBRACK2] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_CARET] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT_DASH] = ACTIONS(3236), + [anon_sym_LT_LT] = ACTIONS(3236), + [anon_sym_GT_GT] = ACTIONS(3238), + [anon_sym_GT_GT_GT] = ACTIONS(3236), + [anon_sym_AMP_CARET] = ACTIONS(3236), + [anon_sym_AMP_AMP] = ACTIONS(3236), + [anon_sym_PIPE_PIPE] = ACTIONS(3236), + [anon_sym_or] = ACTIONS(3238), + [sym_none] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_nil] = ACTIONS(3238), + [anon_sym_QMARK_DOT] = ACTIONS(3236), + [anon_sym_POUND_LBRACK] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_DOLLARif] = ACTIONS(3238), + [anon_sym_is] = ACTIONS(3238), + [anon_sym_BANGis] = ACTIONS(3236), + [anon_sym_in] = ACTIONS(3238), + [anon_sym_BANGin] = ACTIONS(3236), + [anon_sym_match] = ACTIONS(3238), + [anon_sym_select] = ACTIONS(3238), + [anon_sym_lock] = ACTIONS(3238), + [anon_sym_rlock] = ACTIONS(3238), + [anon_sym_unsafe] = ACTIONS(3238), + [anon_sym_sql] = ACTIONS(3238), + [sym_int_literal] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3236), + [sym_rune_literal] = ACTIONS(3236), + [sym_pseudo_compile_time_identifier] = ACTIONS(3238), + [anon_sym_shared] = ACTIONS(3238), + [anon_sym_map_LBRACK] = ACTIONS(3236), + [anon_sym_chan] = ACTIONS(3238), + [anon_sym_thread] = ACTIONS(3238), + [anon_sym_atomic] = ACTIONS(3238), + [sym___double_quote] = ACTIONS(3236), + [sym___single_quote] = ACTIONS(3236), + [sym___c_double_quote] = ACTIONS(3236), + [sym___c_single_quote] = ACTIONS(3236), + [sym___r_double_quote] = ACTIONS(3236), + [sym___r_single_quote] = ACTIONS(3236), }, [1346] = { [sym_line_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2970), - [anon_sym_as] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2970), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2970), - [anon_sym_GT] = ACTIONS(2970), - [anon_sym_EQ_EQ] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_mut] = ACTIONS(3167), - [anon_sym_COLON] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2970), - [anon_sym_go] = ACTIONS(3167), - [anon_sym_spawn] = ACTIONS(3167), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2970), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2970), - [anon_sym_GT_GT_GT] = ACTIONS(2967), - [anon_sym_AMP_CARET] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2970), - [sym_none] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_nil] = ACTIONS(3167), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_DOLLARif] = ACTIONS(3167), - [anon_sym_is] = ACTIONS(2970), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2970), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_rlock] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_sql] = ACTIONS(3167), - [sym_int_literal] = ACTIONS(3167), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [sym_pseudo_compile_time_identifier] = ACTIONS(3167), - [anon_sym_shared] = ACTIONS(3167), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3167), - [anon_sym_thread] = ACTIONS(3167), - [anon_sym_atomic] = ACTIONS(3167), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), + [sym_block_comment] = STATE(1346), + [sym_identifier] = ACTIONS(3310), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3310), + [anon_sym_as] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_COMMA] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_PIPE] = ACTIONS(3310), + [anon_sym_fn] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_STAR] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_PERCENT] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3310), + [anon_sym_GT] = ACTIONS(3310), + [anon_sym_EQ_EQ] = ACTIONS(3308), + [anon_sym_BANG_EQ] = ACTIONS(3308), + [anon_sym_LT_EQ] = ACTIONS(3308), + [anon_sym_GT_EQ] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_RBRACK] = ACTIONS(3308), + [anon_sym_struct] = ACTIONS(3310), + [anon_sym_mut] = ACTIONS(3310), + [anon_sym_COLON] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_QMARK] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3310), + [anon_sym_go] = ACTIONS(3310), + [anon_sym_spawn] = ACTIONS(3310), + [anon_sym_json_DOTdecode] = ACTIONS(3308), + [anon_sym_LBRACK2] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_CARET] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3310), + [anon_sym_LT_DASH] = ACTIONS(3308), + [anon_sym_LT_LT] = ACTIONS(3308), + [anon_sym_GT_GT] = ACTIONS(3310), + [anon_sym_GT_GT_GT] = ACTIONS(3308), + [anon_sym_AMP_CARET] = ACTIONS(3308), + [anon_sym_AMP_AMP] = ACTIONS(3308), + [anon_sym_PIPE_PIPE] = ACTIONS(3308), + [anon_sym_or] = ACTIONS(3310), + [sym_none] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_nil] = ACTIONS(3310), + [anon_sym_QMARK_DOT] = ACTIONS(3308), + [anon_sym_POUND_LBRACK] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_DOLLARif] = ACTIONS(3310), + [anon_sym_is] = ACTIONS(3310), + [anon_sym_BANGis] = ACTIONS(3308), + [anon_sym_in] = ACTIONS(3310), + [anon_sym_BANGin] = ACTIONS(3308), + [anon_sym_match] = ACTIONS(3310), + [anon_sym_select] = ACTIONS(3310), + [anon_sym_lock] = ACTIONS(3310), + [anon_sym_rlock] = ACTIONS(3310), + [anon_sym_unsafe] = ACTIONS(3310), + [anon_sym_sql] = ACTIONS(3310), + [sym_int_literal] = ACTIONS(3310), + [sym_float_literal] = ACTIONS(3308), + [sym_rune_literal] = ACTIONS(3308), + [sym_pseudo_compile_time_identifier] = ACTIONS(3310), + [anon_sym_shared] = ACTIONS(3310), + [anon_sym_map_LBRACK] = ACTIONS(3308), + [anon_sym_chan] = ACTIONS(3310), + [anon_sym_thread] = ACTIONS(3310), + [anon_sym_atomic] = ACTIONS(3310), + [sym___double_quote] = ACTIONS(3308), + [sym___single_quote] = ACTIONS(3308), + [sym___c_double_quote] = ACTIONS(3308), + [sym___c_single_quote] = ACTIONS(3308), + [sym___r_double_quote] = ACTIONS(3308), + [sym___r_single_quote] = ACTIONS(3308), }, [1347] = { [sym_line_comment] = STATE(1347), - [sym_identifier] = ACTIONS(3399), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_as] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3399), - [anon_sym_fn] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_GT] = ACTIONS(3399), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_struct] = ACTIONS(3399), - [anon_sym_mut] = ACTIONS(3399), - [anon_sym_COLON] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_go] = ACTIONS(3399), - [anon_sym_spawn] = ACTIONS(3399), - [anon_sym_json_DOTdecode] = ACTIONS(3397), - [anon_sym_LBRACK2] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3399), - [anon_sym_GT_GT_GT] = ACTIONS(3397), - [anon_sym_AMP_CARET] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3399), - [sym_none] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_nil] = ACTIONS(3399), - [anon_sym_QMARK_DOT] = ACTIONS(3397), - [anon_sym_POUND_LBRACK] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_DOLLARif] = ACTIONS(3399), - [anon_sym_is] = ACTIONS(3399), - [anon_sym_BANGis] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3399), - [anon_sym_BANGin] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3399), - [anon_sym_select] = ACTIONS(3399), - [anon_sym_lock] = ACTIONS(3399), - [anon_sym_rlock] = ACTIONS(3399), - [anon_sym_unsafe] = ACTIONS(3399), - [anon_sym_sql] = ACTIONS(3399), - [sym_int_literal] = ACTIONS(3399), - [sym_float_literal] = ACTIONS(3397), - [sym_rune_literal] = ACTIONS(3397), - [sym_pseudo_compile_time_identifier] = ACTIONS(3399), - [anon_sym_shared] = ACTIONS(3399), - [anon_sym_map_LBRACK] = ACTIONS(3397), - [anon_sym_chan] = ACTIONS(3399), - [anon_sym_thread] = ACTIONS(3399), - [anon_sym_atomic] = ACTIONS(3399), - [sym___double_quote] = ACTIONS(3397), - [sym___single_quote] = ACTIONS(3397), - [sym___c_double_quote] = ACTIONS(3397), - [sym___c_single_quote] = ACTIONS(3397), - [sym___r_double_quote] = ACTIONS(3397), - [sym___r_single_quote] = ACTIONS(3397), + [sym_block_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3230), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3230), + [anon_sym_as] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_COMMA] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_PIPE] = ACTIONS(3230), + [anon_sym_fn] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_PERCENT] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_GT] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3228), + [anon_sym_BANG_EQ] = ACTIONS(3228), + [anon_sym_LT_EQ] = ACTIONS(3228), + [anon_sym_GT_EQ] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_RBRACK] = ACTIONS(3228), + [anon_sym_struct] = ACTIONS(3230), + [anon_sym_mut] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_go] = ACTIONS(3230), + [anon_sym_spawn] = ACTIONS(3230), + [anon_sym_json_DOTdecode] = ACTIONS(3228), + [anon_sym_LBRACK2] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_CARET] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(3230), + [anon_sym_LT_DASH] = ACTIONS(3228), + [anon_sym_LT_LT] = ACTIONS(3228), + [anon_sym_GT_GT] = ACTIONS(3230), + [anon_sym_GT_GT_GT] = ACTIONS(3228), + [anon_sym_AMP_CARET] = ACTIONS(3228), + [anon_sym_AMP_AMP] = ACTIONS(3228), + [anon_sym_PIPE_PIPE] = ACTIONS(3228), + [anon_sym_or] = ACTIONS(3230), + [sym_none] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_nil] = ACTIONS(3230), + [anon_sym_QMARK_DOT] = ACTIONS(3228), + [anon_sym_POUND_LBRACK] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_DOLLARif] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3230), + [anon_sym_BANGis] = ACTIONS(3228), + [anon_sym_in] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3228), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_select] = ACTIONS(3230), + [anon_sym_lock] = ACTIONS(3230), + [anon_sym_rlock] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_sql] = ACTIONS(3230), + [sym_int_literal] = ACTIONS(3230), + [sym_float_literal] = ACTIONS(3228), + [sym_rune_literal] = ACTIONS(3228), + [sym_pseudo_compile_time_identifier] = ACTIONS(3230), + [anon_sym_shared] = ACTIONS(3230), + [anon_sym_map_LBRACK] = ACTIONS(3228), + [anon_sym_chan] = ACTIONS(3230), + [anon_sym_thread] = ACTIONS(3230), + [anon_sym_atomic] = ACTIONS(3230), + [sym___double_quote] = ACTIONS(3228), + [sym___single_quote] = ACTIONS(3228), + [sym___c_double_quote] = ACTIONS(3228), + [sym___c_single_quote] = ACTIONS(3228), + [sym___r_double_quote] = ACTIONS(3228), + [sym___r_single_quote] = ACTIONS(3228), }, [1348] = { [sym_line_comment] = STATE(1348), - [sym_identifier] = ACTIONS(3263), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3261), - [anon_sym_BANG_EQ] = ACTIONS(3261), - [anon_sym_LT_EQ] = ACTIONS(3261), - [anon_sym_GT_EQ] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_RBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_COLON] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3261), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_CARET] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3261), - [anon_sym_LT_LT] = ACTIONS(3261), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3261), - [anon_sym_AMP_CARET] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3261), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3261), - [anon_sym_POUND_LBRACK] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3261), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3261), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3261), - [sym_rune_literal] = ACTIONS(3261), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3261), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3261), - [sym___single_quote] = ACTIONS(3261), - [sym___c_double_quote] = ACTIONS(3261), - [sym___c_single_quote] = ACTIONS(3261), - [sym___r_double_quote] = ACTIONS(3261), - [sym___r_single_quote] = ACTIONS(3261), + [sym_block_comment] = STATE(1348), + [sym_identifier] = ACTIONS(3226), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_COMMA] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_PIPE] = ACTIONS(3226), + [anon_sym_fn] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_EQ_EQ] = ACTIONS(3224), + [anon_sym_BANG_EQ] = ACTIONS(3224), + [anon_sym_LT_EQ] = ACTIONS(3224), + [anon_sym_GT_EQ] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_RBRACK] = ACTIONS(3224), + [anon_sym_struct] = ACTIONS(3226), + [anon_sym_mut] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_QMARK] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_go] = ACTIONS(3226), + [anon_sym_spawn] = ACTIONS(3226), + [anon_sym_json_DOTdecode] = ACTIONS(3224), + [anon_sym_LBRACK2] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_CARET] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(3226), + [anon_sym_LT_DASH] = ACTIONS(3224), + [anon_sym_LT_LT] = ACTIONS(3224), + [anon_sym_GT_GT] = ACTIONS(3226), + [anon_sym_GT_GT_GT] = ACTIONS(3224), + [anon_sym_AMP_CARET] = ACTIONS(3224), + [anon_sym_AMP_AMP] = ACTIONS(3224), + [anon_sym_PIPE_PIPE] = ACTIONS(3224), + [anon_sym_or] = ACTIONS(3226), + [sym_none] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_nil] = ACTIONS(3226), + [anon_sym_QMARK_DOT] = ACTIONS(3224), + [anon_sym_POUND_LBRACK] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_DOLLARif] = ACTIONS(3226), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3224), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_BANGin] = ACTIONS(3224), + [anon_sym_match] = ACTIONS(3226), + [anon_sym_select] = ACTIONS(3226), + [anon_sym_lock] = ACTIONS(3226), + [anon_sym_rlock] = ACTIONS(3226), + [anon_sym_unsafe] = ACTIONS(3226), + [anon_sym_sql] = ACTIONS(3226), + [sym_int_literal] = ACTIONS(3226), + [sym_float_literal] = ACTIONS(3224), + [sym_rune_literal] = ACTIONS(3224), + [sym_pseudo_compile_time_identifier] = ACTIONS(3226), + [anon_sym_shared] = ACTIONS(3226), + [anon_sym_map_LBRACK] = ACTIONS(3224), + [anon_sym_chan] = ACTIONS(3226), + [anon_sym_thread] = ACTIONS(3226), + [anon_sym_atomic] = ACTIONS(3226), + [sym___double_quote] = ACTIONS(3224), + [sym___single_quote] = ACTIONS(3224), + [sym___c_double_quote] = ACTIONS(3224), + [sym___c_single_quote] = ACTIONS(3224), + [sym___r_double_quote] = ACTIONS(3224), + [sym___r_single_quote] = ACTIONS(3224), }, [1349] = { [sym_line_comment] = STATE(1349), - [sym_identifier] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3389), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3389), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3389), - [anon_sym_AMP_CARET] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3389), - [anon_sym_POUND_LBRACK] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3389), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3389), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3389), - [sym_rune_literal] = ACTIONS(3389), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3389), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3389), - [sym___single_quote] = ACTIONS(3389), - [sym___c_double_quote] = ACTIONS(3389), - [sym___c_single_quote] = ACTIONS(3389), - [sym___r_double_quote] = ACTIONS(3389), - [sym___r_single_quote] = ACTIONS(3389), + [sym_block_comment] = STATE(1349), + [sym_identifier] = ACTIONS(3414), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_as] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_fn] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3414), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_RBRACK] = ACTIONS(3412), + [anon_sym_struct] = ACTIONS(3414), + [anon_sym_mut] = ACTIONS(3414), + [anon_sym_COLON] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3414), + [anon_sym_go] = ACTIONS(3414), + [anon_sym_spawn] = ACTIONS(3414), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3414), + [sym_none] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_nil] = ACTIONS(3414), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_DOLLARif] = ACTIONS(3414), + [anon_sym_is] = ACTIONS(3414), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3414), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3414), + [anon_sym_select] = ACTIONS(3414), + [anon_sym_lock] = ACTIONS(3414), + [anon_sym_rlock] = ACTIONS(3414), + [anon_sym_unsafe] = ACTIONS(3414), + [anon_sym_sql] = ACTIONS(3414), + [sym_int_literal] = ACTIONS(3414), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3414), + [anon_sym_shared] = ACTIONS(3414), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3414), + [anon_sym_thread] = ACTIONS(3414), + [anon_sym_atomic] = ACTIONS(3414), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, [1350] = { [sym_line_comment] = STATE(1350), - [sym_identifier] = ACTIONS(3359), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3357), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3357), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(3357), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_CARET] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3357), - [anon_sym_POUND_LBRACK] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3357), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3357), - [sym_rune_literal] = ACTIONS(3357), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3357), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3357), - [sym___single_quote] = ACTIONS(3357), - [sym___c_double_quote] = ACTIONS(3357), - [sym___c_single_quote] = ACTIONS(3357), - [sym___r_double_quote] = ACTIONS(3357), - [sym___r_single_quote] = ACTIONS(3357), + [sym_block_comment] = STATE(1350), + [sym_identifier] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3941), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), }, [1351] = { [sym_line_comment] = STATE(1351), - [sym_identifier] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3349), - [anon_sym_BANG_EQ] = ACTIONS(3349), - [anon_sym_LT_EQ] = ACTIONS(3349), - [anon_sym_GT_EQ] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_COLON] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3349), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_CARET] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3349), - [anon_sym_POUND_LBRACK] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3349), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3349), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3349), - [sym_rune_literal] = ACTIONS(3349), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3349), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3349), - [sym___single_quote] = ACTIONS(3349), - [sym___c_double_quote] = ACTIONS(3349), - [sym___c_single_quote] = ACTIONS(3349), - [sym___r_double_quote] = ACTIONS(3349), - [sym___r_single_quote] = ACTIONS(3349), + [sym_block_comment] = STATE(1351), + [sym_identifier] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3316), + [anon_sym_BANG_EQ] = ACTIONS(3316), + [anon_sym_LT_EQ] = ACTIONS(3316), + [anon_sym_GT_EQ] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_RBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_COLON] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3316), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_CARET] = ACTIONS(3316), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3316), + [anon_sym_LT_LT] = ACTIONS(3316), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3316), + [anon_sym_AMP_CARET] = ACTIONS(3316), + [anon_sym_AMP_AMP] = ACTIONS(3316), + [anon_sym_PIPE_PIPE] = ACTIONS(3316), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3316), + [anon_sym_POUND_LBRACK] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3316), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3316), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3316), + [sym_rune_literal] = ACTIONS(3316), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3316), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3316), + [sym___single_quote] = ACTIONS(3316), + [sym___c_double_quote] = ACTIONS(3316), + [sym___c_single_quote] = ACTIONS(3316), + [sym___r_double_quote] = ACTIONS(3316), + [sym___r_single_quote] = ACTIONS(3316), }, [1352] = { [sym_line_comment] = STATE(1352), - [sym_identifier] = ACTIONS(3343), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3341), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3341), - [anon_sym_LT_LT] = ACTIONS(3341), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3341), - [anon_sym_AMP_CARET] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3341), - [anon_sym_POUND_LBRACK] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3341), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3341), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3341), - [sym_rune_literal] = ACTIONS(3341), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3341), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3341), - [sym___single_quote] = ACTIONS(3341), - [sym___c_double_quote] = ACTIONS(3341), - [sym___c_single_quote] = ACTIONS(3341), - [sym___r_double_quote] = ACTIONS(3341), - [sym___r_single_quote] = ACTIONS(3341), + [sym_block_comment] = STATE(1352), + [sym_identifier] = ACTIONS(3218), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_COMMA] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_PIPE] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_EQ_EQ] = ACTIONS(3216), + [anon_sym_BANG_EQ] = ACTIONS(3216), + [anon_sym_LT_EQ] = ACTIONS(3216), + [anon_sym_GT_EQ] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_RBRACK] = ACTIONS(3216), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3216), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_CARET] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3216), + [anon_sym_LT_LT] = ACTIONS(3216), + [anon_sym_GT_GT] = ACTIONS(3218), + [anon_sym_GT_GT_GT] = ACTIONS(3216), + [anon_sym_AMP_CARET] = ACTIONS(3216), + [anon_sym_AMP_AMP] = ACTIONS(3216), + [anon_sym_PIPE_PIPE] = ACTIONS(3216), + [anon_sym_or] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_QMARK_DOT] = ACTIONS(3216), + [anon_sym_POUND_LBRACK] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3216), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_BANGin] = ACTIONS(3216), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3216), + [sym_rune_literal] = ACTIONS(3216), + [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3216), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3216), + [sym___single_quote] = ACTIONS(3216), + [sym___c_double_quote] = ACTIONS(3216), + [sym___c_single_quote] = ACTIONS(3216), + [sym___r_double_quote] = ACTIONS(3216), + [sym___r_single_quote] = ACTIONS(3216), }, [1353] = { [sym_line_comment] = STATE(1353), - [sym_identifier] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3429), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), + [sym_block_comment] = STATE(1353), + [sym_identifier] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_COLON] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), }, [1354] = { [sym_line_comment] = STATE(1354), - [sym_identifier] = ACTIONS(3251), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_COMMA] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3249), - [anon_sym_BANG_EQ] = ACTIONS(3249), - [anon_sym_LT_EQ] = ACTIONS(3249), - [anon_sym_GT_EQ] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_RBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_COLON] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3249), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_CARET] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3249), - [anon_sym_LT_LT] = ACTIONS(3249), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3249), - [anon_sym_AMP_CARET] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_PIPE_PIPE] = ACTIONS(3249), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3249), - [anon_sym_POUND_LBRACK] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3249), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3249), - [sym_rune_literal] = ACTIONS(3249), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3249), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3249), - [sym___single_quote] = ACTIONS(3249), - [sym___c_double_quote] = ACTIONS(3249), - [sym___c_single_quote] = ACTIONS(3249), - [sym___r_double_quote] = ACTIONS(3249), - [sym___r_single_quote] = ACTIONS(3249), + [sym_block_comment] = STATE(1354), + [sym_identifier] = ACTIONS(3390), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3390), + [anon_sym_as] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(3390), + [anon_sym_fn] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3390), + [anon_sym_GT] = ACTIONS(3390), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_RBRACK] = ACTIONS(3388), + [anon_sym_struct] = ACTIONS(3390), + [anon_sym_mut] = ACTIONS(3390), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3390), + [anon_sym_go] = ACTIONS(3390), + [anon_sym_spawn] = ACTIONS(3390), + [anon_sym_json_DOTdecode] = ACTIONS(3388), + [anon_sym_LBRACK2] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3390), + [anon_sym_LT_DASH] = ACTIONS(3388), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3390), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3390), + [sym_none] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_nil] = ACTIONS(3390), + [anon_sym_QMARK_DOT] = ACTIONS(3388), + [anon_sym_POUND_LBRACK] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_DOLLARif] = ACTIONS(3390), + [anon_sym_is] = ACTIONS(3390), + [anon_sym_BANGis] = ACTIONS(3388), + [anon_sym_in] = ACTIONS(3390), + [anon_sym_BANGin] = ACTIONS(3388), + [anon_sym_match] = ACTIONS(3390), + [anon_sym_select] = ACTIONS(3390), + [anon_sym_lock] = ACTIONS(3390), + [anon_sym_rlock] = ACTIONS(3390), + [anon_sym_unsafe] = ACTIONS(3390), + [anon_sym_sql] = ACTIONS(3390), + [sym_int_literal] = ACTIONS(3390), + [sym_float_literal] = ACTIONS(3388), + [sym_rune_literal] = ACTIONS(3388), + [sym_pseudo_compile_time_identifier] = ACTIONS(3390), + [anon_sym_shared] = ACTIONS(3390), + [anon_sym_map_LBRACK] = ACTIONS(3388), + [anon_sym_chan] = ACTIONS(3390), + [anon_sym_thread] = ACTIONS(3390), + [anon_sym_atomic] = ACTIONS(3390), + [sym___double_quote] = ACTIONS(3388), + [sym___single_quote] = ACTIONS(3388), + [sym___c_double_quote] = ACTIONS(3388), + [sym___c_single_quote] = ACTIONS(3388), + [sym___r_double_quote] = ACTIONS(3388), + [sym___r_single_quote] = ACTIONS(3388), }, [1355] = { [sym_line_comment] = STATE(1355), - [sym_identifier] = ACTIONS(3319), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3317), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3317), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3317), - [anon_sym_POUND_LBRACK] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3317), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3317), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3317), - [sym_rune_literal] = ACTIONS(3317), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3317), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3317), - [sym___single_quote] = ACTIONS(3317), - [sym___c_double_quote] = ACTIONS(3317), - [sym___c_single_quote] = ACTIONS(3317), - [sym___r_double_quote] = ACTIONS(3317), - [sym___r_single_quote] = ACTIONS(3317), + [sym_block_comment] = STATE(1355), + [sym_identifier] = ACTIONS(3386), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3386), + [anon_sym_as] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_COMMA] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_PIPE] = ACTIONS(3386), + [anon_sym_fn] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_STAR] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_PERCENT] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3386), + [anon_sym_GT] = ACTIONS(3386), + [anon_sym_EQ_EQ] = ACTIONS(3384), + [anon_sym_BANG_EQ] = ACTIONS(3384), + [anon_sym_LT_EQ] = ACTIONS(3384), + [anon_sym_GT_EQ] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_RBRACK] = ACTIONS(3384), + [anon_sym_struct] = ACTIONS(3386), + [anon_sym_mut] = ACTIONS(3386), + [anon_sym_COLON] = ACTIONS(3384), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3386), + [anon_sym_go] = ACTIONS(3386), + [anon_sym_spawn] = ACTIONS(3386), + [anon_sym_json_DOTdecode] = ACTIONS(3384), + [anon_sym_LBRACK2] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_CARET] = ACTIONS(3384), + [anon_sym_AMP] = ACTIONS(3386), + [anon_sym_LT_DASH] = ACTIONS(3384), + [anon_sym_LT_LT] = ACTIONS(3384), + [anon_sym_GT_GT] = ACTIONS(3386), + [anon_sym_GT_GT_GT] = ACTIONS(3384), + [anon_sym_AMP_CARET] = ACTIONS(3384), + [anon_sym_AMP_AMP] = ACTIONS(3384), + [anon_sym_PIPE_PIPE] = ACTIONS(3384), + [anon_sym_or] = ACTIONS(3386), + [sym_none] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_nil] = ACTIONS(3386), + [anon_sym_QMARK_DOT] = ACTIONS(3384), + [anon_sym_POUND_LBRACK] = ACTIONS(3384), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_DOLLARif] = ACTIONS(3386), + [anon_sym_is] = ACTIONS(3386), + [anon_sym_BANGis] = ACTIONS(3384), + [anon_sym_in] = ACTIONS(3386), + [anon_sym_BANGin] = ACTIONS(3384), + [anon_sym_match] = ACTIONS(3386), + [anon_sym_select] = ACTIONS(3386), + [anon_sym_lock] = ACTIONS(3386), + [anon_sym_rlock] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(3386), + [anon_sym_sql] = ACTIONS(3386), + [sym_int_literal] = ACTIONS(3386), + [sym_float_literal] = ACTIONS(3384), + [sym_rune_literal] = ACTIONS(3384), + [sym_pseudo_compile_time_identifier] = ACTIONS(3386), + [anon_sym_shared] = ACTIONS(3386), + [anon_sym_map_LBRACK] = ACTIONS(3384), + [anon_sym_chan] = ACTIONS(3386), + [anon_sym_thread] = ACTIONS(3386), + [anon_sym_atomic] = ACTIONS(3386), + [sym___double_quote] = ACTIONS(3384), + [sym___single_quote] = ACTIONS(3384), + [sym___c_double_quote] = ACTIONS(3384), + [sym___c_single_quote] = ACTIONS(3384), + [sym___r_double_quote] = ACTIONS(3384), + [sym___r_single_quote] = ACTIONS(3384), }, [1356] = { [sym_line_comment] = STATE(1356), - [sym_identifier] = ACTIONS(3307), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_COLON] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3305), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3305), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3305), - [anon_sym_AMP_CARET] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3305), - [anon_sym_POUND_LBRACK] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3305), - [sym_rune_literal] = ACTIONS(3305), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3305), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3305), - [sym___single_quote] = ACTIONS(3305), - [sym___c_double_quote] = ACTIONS(3305), - [sym___c_single_quote] = ACTIONS(3305), - [sym___r_double_quote] = ACTIONS(3305), - [sym___r_single_quote] = ACTIONS(3305), + [sym_block_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3382), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_LT_EQ] = ACTIONS(3380), + [anon_sym_GT_EQ] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_RBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_COLON] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3380), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3380), + [anon_sym_LT_LT] = ACTIONS(3380), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3380), + [anon_sym_AMP_CARET] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_PIPE_PIPE] = ACTIONS(3380), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3380), + [anon_sym_POUND_LBRACK] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3380), + [sym_rune_literal] = ACTIONS(3380), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3380), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3380), + [sym___single_quote] = ACTIONS(3380), + [sym___c_double_quote] = ACTIONS(3380), + [sym___c_single_quote] = ACTIONS(3380), + [sym___r_double_quote] = ACTIONS(3380), + [sym___r_single_quote] = ACTIONS(3380), }, [1357] = { [sym_line_comment] = STATE(1357), - [sym_identifier] = ACTIONS(3295), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_COMMA] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3293), - [anon_sym_BANG_EQ] = ACTIONS(3293), - [anon_sym_LT_EQ] = ACTIONS(3293), - [anon_sym_GT_EQ] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_RBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_COLON] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3293), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_CARET] = ACTIONS(3293), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(3293), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_CARET] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3293), - [anon_sym_POUND_LBRACK] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3293), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3293), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3293), - [sym_rune_literal] = ACTIONS(3293), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3293), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3293), - [sym___single_quote] = ACTIONS(3293), - [sym___c_double_quote] = ACTIONS(3293), - [sym___c_single_quote] = ACTIONS(3293), - [sym___r_double_quote] = ACTIONS(3293), - [sym___r_single_quote] = ACTIONS(3293), + [sym_block_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), }, [1358] = { [sym_line_comment] = STATE(1358), - [sym_identifier] = ACTIONS(3275), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_COMMA] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3273), - [anon_sym_BANG_EQ] = ACTIONS(3273), - [anon_sym_LT_EQ] = ACTIONS(3273), - [anon_sym_GT_EQ] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_RBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_COLON] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3273), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_CARET] = ACTIONS(3273), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3273), - [anon_sym_LT_LT] = ACTIONS(3273), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3273), - [anon_sym_AMP_CARET] = ACTIONS(3273), - [anon_sym_AMP_AMP] = ACTIONS(3273), - [anon_sym_PIPE_PIPE] = ACTIONS(3273), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3273), - [anon_sym_POUND_LBRACK] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3273), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3273), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3273), - [sym_rune_literal] = ACTIONS(3273), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3273), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3273), - [sym___single_quote] = ACTIONS(3273), - [sym___c_double_quote] = ACTIONS(3273), - [sym___c_single_quote] = ACTIONS(3273), - [sym___r_double_quote] = ACTIONS(3273), - [sym___r_single_quote] = ACTIONS(3273), + [sym_block_comment] = STATE(1358), + [sym_identifier] = ACTIONS(3206), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3206), + [anon_sym_as] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_COMMA] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_PIPE] = ACTIONS(3206), + [anon_sym_fn] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_PERCENT] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3206), + [anon_sym_GT] = ACTIONS(3206), + [anon_sym_EQ_EQ] = ACTIONS(3204), + [anon_sym_BANG_EQ] = ACTIONS(3204), + [anon_sym_LT_EQ] = ACTIONS(3204), + [anon_sym_GT_EQ] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_struct] = ACTIONS(3206), + [anon_sym_mut] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_QMARK] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_go] = ACTIONS(3206), + [anon_sym_spawn] = ACTIONS(3206), + [anon_sym_json_DOTdecode] = ACTIONS(3204), + [anon_sym_LBRACK2] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_CARET] = ACTIONS(3204), + [anon_sym_AMP] = ACTIONS(3206), + [anon_sym_LT_DASH] = ACTIONS(3204), + [anon_sym_LT_LT] = ACTIONS(3204), + [anon_sym_GT_GT] = ACTIONS(3206), + [anon_sym_GT_GT_GT] = ACTIONS(3204), + [anon_sym_AMP_CARET] = ACTIONS(3204), + [anon_sym_AMP_AMP] = ACTIONS(3204), + [anon_sym_PIPE_PIPE] = ACTIONS(3204), + [anon_sym_or] = ACTIONS(3206), + [sym_none] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_nil] = ACTIONS(3206), + [anon_sym_QMARK_DOT] = ACTIONS(3204), + [anon_sym_POUND_LBRACK] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_DOLLARif] = ACTIONS(3206), + [anon_sym_is] = ACTIONS(3206), + [anon_sym_BANGis] = ACTIONS(3204), + [anon_sym_in] = ACTIONS(3206), + [anon_sym_BANGin] = ACTIONS(3204), + [anon_sym_match] = ACTIONS(3206), + [anon_sym_select] = ACTIONS(3206), + [anon_sym_lock] = ACTIONS(3206), + [anon_sym_rlock] = ACTIONS(3206), + [anon_sym_unsafe] = ACTIONS(3206), + [anon_sym_sql] = ACTIONS(3206), + [sym_int_literal] = ACTIONS(3206), + [sym_float_literal] = ACTIONS(3204), + [sym_rune_literal] = ACTIONS(3204), + [sym_pseudo_compile_time_identifier] = ACTIONS(3206), + [anon_sym_shared] = ACTIONS(3206), + [anon_sym_map_LBRACK] = ACTIONS(3204), + [anon_sym_chan] = ACTIONS(3206), + [anon_sym_thread] = ACTIONS(3206), + [anon_sym_atomic] = ACTIONS(3206), + [sym___double_quote] = ACTIONS(3204), + [sym___single_quote] = ACTIONS(3204), + [sym___c_double_quote] = ACTIONS(3204), + [sym___c_single_quote] = ACTIONS(3204), + [sym___r_double_quote] = ACTIONS(3204), + [sym___r_single_quote] = ACTIONS(3204), }, [1359] = { [sym_line_comment] = STATE(1359), - [sym_identifier] = ACTIONS(3311), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3309), - [anon_sym_BANG_EQ] = ACTIONS(3309), - [anon_sym_LT_EQ] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_COLON] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3309), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_CARET] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3309), - [anon_sym_LT_LT] = ACTIONS(3309), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3309), - [anon_sym_AMP_CARET] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3309), - [anon_sym_POUND_LBRACK] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3309), - [sym_rune_literal] = ACTIONS(3309), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3309), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3309), - [sym___single_quote] = ACTIONS(3309), - [sym___c_double_quote] = ACTIONS(3309), - [sym___c_single_quote] = ACTIONS(3309), - [sym___r_double_quote] = ACTIONS(3309), - [sym___r_single_quote] = ACTIONS(3309), + [sym_block_comment] = STATE(1359), + [sym_identifier] = ACTIONS(3194), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3194), + [anon_sym_as] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_PIPE] = ACTIONS(3194), + [anon_sym_fn] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_STAR] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_PERCENT] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_GT] = ACTIONS(3194), + [anon_sym_EQ_EQ] = ACTIONS(3192), + [anon_sym_BANG_EQ] = ACTIONS(3192), + [anon_sym_LT_EQ] = ACTIONS(3192), + [anon_sym_GT_EQ] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3194), + [anon_sym_mut] = ACTIONS(3194), + [anon_sym_COLON] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_QMARK] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_go] = ACTIONS(3194), + [anon_sym_spawn] = ACTIONS(3194), + [anon_sym_json_DOTdecode] = ACTIONS(3192), + [anon_sym_LBRACK2] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_CARET] = ACTIONS(3192), + [anon_sym_AMP] = ACTIONS(3194), + [anon_sym_LT_DASH] = ACTIONS(3192), + [anon_sym_LT_LT] = ACTIONS(3192), + [anon_sym_GT_GT] = ACTIONS(3194), + [anon_sym_GT_GT_GT] = ACTIONS(3192), + [anon_sym_AMP_CARET] = ACTIONS(3192), + [anon_sym_AMP_AMP] = ACTIONS(3192), + [anon_sym_PIPE_PIPE] = ACTIONS(3192), + [anon_sym_or] = ACTIONS(3194), + [sym_none] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_nil] = ACTIONS(3194), + [anon_sym_QMARK_DOT] = ACTIONS(3192), + [anon_sym_POUND_LBRACK] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_DOLLARif] = ACTIONS(3194), + [anon_sym_is] = ACTIONS(3194), + [anon_sym_BANGis] = ACTIONS(3192), + [anon_sym_in] = ACTIONS(3194), + [anon_sym_BANGin] = ACTIONS(3192), + [anon_sym_match] = ACTIONS(3194), + [anon_sym_select] = ACTIONS(3194), + [anon_sym_lock] = ACTIONS(3194), + [anon_sym_rlock] = ACTIONS(3194), + [anon_sym_unsafe] = ACTIONS(3194), + [anon_sym_sql] = ACTIONS(3194), + [sym_int_literal] = ACTIONS(3194), + [sym_float_literal] = ACTIONS(3192), + [sym_rune_literal] = ACTIONS(3192), + [sym_pseudo_compile_time_identifier] = ACTIONS(3194), + [anon_sym_shared] = ACTIONS(3194), + [anon_sym_map_LBRACK] = ACTIONS(3192), + [anon_sym_chan] = ACTIONS(3194), + [anon_sym_thread] = ACTIONS(3194), + [anon_sym_atomic] = ACTIONS(3194), + [sym___double_quote] = ACTIONS(3192), + [sym___single_quote] = ACTIONS(3192), + [sym___c_double_quote] = ACTIONS(3192), + [sym___c_single_quote] = ACTIONS(3192), + [sym___r_double_quote] = ACTIONS(3192), + [sym___r_single_quote] = ACTIONS(3192), }, [1360] = { [sym_line_comment] = STATE(1360), - [sym_identifier] = ACTIONS(3303), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_RBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_COLON] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3301), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3301), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3301), - [anon_sym_AMP_CARET] = ACTIONS(3301), - [anon_sym_AMP_AMP] = ACTIONS(3301), - [anon_sym_PIPE_PIPE] = ACTIONS(3301), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3301), - [anon_sym_POUND_LBRACK] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3301), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3301), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3301), - [sym_rune_literal] = ACTIONS(3301), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3301), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3301), - [sym___single_quote] = ACTIONS(3301), - [sym___c_double_quote] = ACTIONS(3301), - [sym___c_single_quote] = ACTIONS(3301), - [sym___r_double_quote] = ACTIONS(3301), - [sym___r_single_quote] = ACTIONS(3301), + [sym_block_comment] = STATE(1360), + [sym_identifier] = ACTIONS(3186), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3186), + [anon_sym_as] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_COMMA] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_PIPE] = ACTIONS(3186), + [anon_sym_fn] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3186), + [anon_sym_GT] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3184), + [anon_sym_BANG_EQ] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3184), + [anon_sym_GT_EQ] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_RBRACK] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3186), + [anon_sym_mut] = ACTIONS(3186), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_QMARK] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_go] = ACTIONS(3186), + [anon_sym_spawn] = ACTIONS(3186), + [anon_sym_json_DOTdecode] = ACTIONS(3184), + [anon_sym_LBRACK2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3186), + [anon_sym_LT_DASH] = ACTIONS(3184), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3186), + [anon_sym_GT_GT_GT] = ACTIONS(3184), + [anon_sym_AMP_CARET] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3184), + [anon_sym_or] = ACTIONS(3186), + [sym_none] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_nil] = ACTIONS(3186), + [anon_sym_QMARK_DOT] = ACTIONS(3184), + [anon_sym_POUND_LBRACK] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_DOLLARif] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3186), + [anon_sym_BANGis] = ACTIONS(3184), + [anon_sym_in] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3184), + [anon_sym_match] = ACTIONS(3186), + [anon_sym_select] = ACTIONS(3186), + [anon_sym_lock] = ACTIONS(3186), + [anon_sym_rlock] = ACTIONS(3186), + [anon_sym_unsafe] = ACTIONS(3186), + [anon_sym_sql] = ACTIONS(3186), + [sym_int_literal] = ACTIONS(3186), + [sym_float_literal] = ACTIONS(3184), + [sym_rune_literal] = ACTIONS(3184), + [sym_pseudo_compile_time_identifier] = ACTIONS(3186), + [anon_sym_shared] = ACTIONS(3186), + [anon_sym_map_LBRACK] = ACTIONS(3184), + [anon_sym_chan] = ACTIONS(3186), + [anon_sym_thread] = ACTIONS(3186), + [anon_sym_atomic] = ACTIONS(3186), + [sym___double_quote] = ACTIONS(3184), + [sym___single_quote] = ACTIONS(3184), + [sym___c_double_quote] = ACTIONS(3184), + [sym___c_single_quote] = ACTIONS(3184), + [sym___r_double_quote] = ACTIONS(3184), + [sym___r_single_quote] = ACTIONS(3184), }, [1361] = { [sym_line_comment] = STATE(1361), - [sym_identifier] = ACTIONS(3299), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_COLON] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3297), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3297), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3297), - [anon_sym_AMP_CARET] = ACTIONS(3297), - [anon_sym_AMP_AMP] = ACTIONS(3297), - [anon_sym_PIPE_PIPE] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3297), - [anon_sym_POUND_LBRACK] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3297), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3297), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3297), - [sym_rune_literal] = ACTIONS(3297), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3297), - [sym___single_quote] = ACTIONS(3297), - [sym___c_double_quote] = ACTIONS(3297), - [sym___c_single_quote] = ACTIONS(3297), - [sym___r_double_quote] = ACTIONS(3297), - [sym___r_single_quote] = ACTIONS(3297), + [sym_block_comment] = STATE(1361), + [sym_identifier] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_as] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3324), + [anon_sym_BANG_EQ] = ACTIONS(3324), + [anon_sym_LT_EQ] = ACTIONS(3324), + [anon_sym_GT_EQ] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_RBRACK] = ACTIONS(3324), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_mut] = ACTIONS(3326), + [anon_sym_COLON] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_QMARK] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_go] = ACTIONS(3326), + [anon_sym_spawn] = ACTIONS(3326), + [anon_sym_json_DOTdecode] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_CARET] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3324), + [anon_sym_LT_LT] = ACTIONS(3324), + [anon_sym_GT_GT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3324), + [anon_sym_AMP_CARET] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_PIPE_PIPE] = ACTIONS(3324), + [anon_sym_or] = ACTIONS(3326), + [sym_none] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_nil] = ACTIONS(3326), + [anon_sym_QMARK_DOT] = ACTIONS(3324), + [anon_sym_POUND_LBRACK] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_DOLLARif] = ACTIONS(3326), + [anon_sym_is] = ACTIONS(3326), + [anon_sym_BANGis] = ACTIONS(3324), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_BANGin] = ACTIONS(3324), + [anon_sym_match] = ACTIONS(3326), + [anon_sym_select] = ACTIONS(3326), + [anon_sym_lock] = ACTIONS(3326), + [anon_sym_rlock] = ACTIONS(3326), + [anon_sym_unsafe] = ACTIONS(3326), + [anon_sym_sql] = ACTIONS(3326), + [sym_int_literal] = ACTIONS(3326), + [sym_float_literal] = ACTIONS(3324), + [sym_rune_literal] = ACTIONS(3324), + [sym_pseudo_compile_time_identifier] = ACTIONS(3326), + [anon_sym_shared] = ACTIONS(3326), + [anon_sym_map_LBRACK] = ACTIONS(3324), + [anon_sym_chan] = ACTIONS(3326), + [anon_sym_thread] = ACTIONS(3326), + [anon_sym_atomic] = ACTIONS(3326), + [sym___double_quote] = ACTIONS(3324), + [sym___single_quote] = ACTIONS(3324), + [sym___c_double_quote] = ACTIONS(3324), + [sym___c_single_quote] = ACTIONS(3324), + [sym___r_double_quote] = ACTIONS(3324), + [sym___r_single_quote] = ACTIONS(3324), }, [1362] = { [sym_line_comment] = STATE(1362), - [sym_identifier] = ACTIONS(3291), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_COMMA] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_BANG_EQ] = ACTIONS(3289), - [anon_sym_LT_EQ] = ACTIONS(3289), - [anon_sym_GT_EQ] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_RBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_COLON] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3289), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3289), - [anon_sym_LT_LT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3289), - [anon_sym_AMP_CARET] = ACTIONS(3289), - [anon_sym_AMP_AMP] = ACTIONS(3289), - [anon_sym_PIPE_PIPE] = ACTIONS(3289), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3289), - [anon_sym_POUND_LBRACK] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3289), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3289), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3289), - [sym_rune_literal] = ACTIONS(3289), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3289), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3289), - [sym___single_quote] = ACTIONS(3289), - [sym___c_double_quote] = ACTIONS(3289), - [sym___c_single_quote] = ACTIONS(3289), - [sym___r_double_quote] = ACTIONS(3289), - [sym___r_single_quote] = ACTIONS(3289), - }, - [1363] = { - [sym_line_comment] = STATE(1363), - [sym_identifier] = ACTIONS(3271), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_COMMA] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3269), - [anon_sym_BANG_EQ] = ACTIONS(3269), - [anon_sym_LT_EQ] = ACTIONS(3269), - [anon_sym_GT_EQ] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_RBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3269), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3269), - [anon_sym_LT_LT] = ACTIONS(3269), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3269), - [anon_sym_AMP_CARET] = ACTIONS(3269), - [anon_sym_AMP_AMP] = ACTIONS(3269), - [anon_sym_PIPE_PIPE] = ACTIONS(3269), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3269), - [anon_sym_POUND_LBRACK] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3269), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3269), - [sym_rune_literal] = ACTIONS(3269), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3269), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3269), - [sym___single_quote] = ACTIONS(3269), - [sym___c_double_quote] = ACTIONS(3269), - [sym___c_single_quote] = ACTIONS(3269), - [sym___r_double_quote] = ACTIONS(3269), - [sym___r_single_quote] = ACTIONS(3269), - }, - [1364] = { - [sym_line_comment] = STATE(1364), - [sym_identifier] = ACTIONS(3267), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_COMMA] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3265), - [anon_sym_BANG_EQ] = ACTIONS(3265), - [anon_sym_LT_EQ] = ACTIONS(3265), - [anon_sym_GT_EQ] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_RBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_COLON] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3265), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_CARET] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3265), - [anon_sym_LT_LT] = ACTIONS(3265), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3265), - [anon_sym_AMP_CARET] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3265), - [anon_sym_POUND_LBRACK] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3265), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3265), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3265), - [sym_rune_literal] = ACTIONS(3265), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3265), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3265), - [sym___single_quote] = ACTIONS(3265), - [sym___c_double_quote] = ACTIONS(3265), - [sym___c_single_quote] = ACTIONS(3265), - [sym___r_double_quote] = ACTIONS(3265), - [sym___r_single_quote] = ACTIONS(3265), - }, - [1365] = { - [sym_line_comment] = STATE(1365), - [sym_identifier] = ACTIONS(3259), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_COMMA] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3257), - [anon_sym_BANG_EQ] = ACTIONS(3257), - [anon_sym_LT_EQ] = ACTIONS(3257), - [anon_sym_GT_EQ] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_COLON] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3257), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_CARET] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3257), - [anon_sym_LT_LT] = ACTIONS(3257), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3257), - [anon_sym_AMP_CARET] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3257), - [anon_sym_POUND_LBRACK] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3257), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3257), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3257), - [sym_rune_literal] = ACTIONS(3257), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3257), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3257), - [sym___single_quote] = ACTIONS(3257), - [sym___c_double_quote] = ACTIONS(3257), - [sym___c_single_quote] = ACTIONS(3257), - [sym___r_double_quote] = ACTIONS(3257), - [sym___r_single_quote] = ACTIONS(3257), - }, - [1366] = { - [sym_line_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3237), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3237), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3237), - [anon_sym_AMP_CARET] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_PIPE_PIPE] = ACTIONS(3237), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3237), - [anon_sym_POUND_LBRACK] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3237), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3237), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3237), - [sym_rune_literal] = ACTIONS(3237), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3237), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3237), - [sym___single_quote] = ACTIONS(3237), - [sym___c_double_quote] = ACTIONS(3237), - [sym___c_single_quote] = ACTIONS(3237), - [sym___r_double_quote] = ACTIONS(3237), - [sym___r_single_quote] = ACTIONS(3237), - }, - [1367] = { - [sym_line_comment] = STATE(1367), - [sym_identifier] = ACTIONS(3255), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_LT_EQ] = ACTIONS(3253), - [anon_sym_GT_EQ] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_RBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3253), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_CARET] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_LT_LT] = ACTIONS(3253), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3253), - [anon_sym_AMP_CARET] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3253), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3253), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3253), - [sym_rune_literal] = ACTIONS(3253), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3253), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3253), - [sym___single_quote] = ACTIONS(3253), - [sym___c_double_quote] = ACTIONS(3253), - [sym___c_single_quote] = ACTIONS(3253), - [sym___r_double_quote] = ACTIONS(3253), - [sym___r_single_quote] = ACTIONS(3253), - }, - [1368] = { - [sym_line_comment] = STATE(1368), - [sym_identifier] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_LT_EQ] = ACTIONS(3245), - [anon_sym_GT_EQ] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_RBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3245), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_CARET] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3245), - [anon_sym_POUND_LBRACK] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3245), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3245), - [sym_rune_literal] = ACTIONS(3245), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3245), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3245), - [sym___single_quote] = ACTIONS(3245), - [sym___c_double_quote] = ACTIONS(3245), - [sym___c_single_quote] = ACTIONS(3245), - [sym___r_double_quote] = ACTIONS(3245), - [sym___r_single_quote] = ACTIONS(3245), - }, - [1369] = { - [sym_line_comment] = STATE(1369), - [sym_identifier] = ACTIONS(3243), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_COLON] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3241), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_CARET] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3241), - [anon_sym_LT_LT] = ACTIONS(3241), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3241), - [anon_sym_AMP_CARET] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_PIPE_PIPE] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3241), - [anon_sym_POUND_LBRACK] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3241), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3241), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3241), - [sym_rune_literal] = ACTIONS(3241), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3241), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3241), - [sym___single_quote] = ACTIONS(3241), - [sym___c_double_quote] = ACTIONS(3241), - [sym___c_single_quote] = ACTIONS(3241), - [sym___r_double_quote] = ACTIONS(3241), - [sym___r_single_quote] = ACTIONS(3241), - }, - [1370] = { - [sym_line_comment] = STATE(1370), - [sym_identifier] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3385), - [anon_sym_BANG_EQ] = ACTIONS(3385), - [anon_sym_LT_EQ] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_COLON] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3385), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3385), - [anon_sym_LT_LT] = ACTIONS(3385), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3385), - [anon_sym_AMP_CARET] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3385), - [anon_sym_POUND_LBRACK] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3385), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3385), - [sym_rune_literal] = ACTIONS(3385), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3385), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3385), - [sym___single_quote] = ACTIONS(3385), - [sym___c_double_quote] = ACTIONS(3385), - [sym___c_single_quote] = ACTIONS(3385), - [sym___r_double_quote] = ACTIONS(3385), - [sym___r_single_quote] = ACTIONS(3385), - }, - [1371] = { - [sym_line_comment] = STATE(1371), - [sym_identifier] = ACTIONS(3235), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3233), - [anon_sym_BANG_EQ] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3233), - [anon_sym_GT_EQ] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3233), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_CARET] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3233), - [anon_sym_LT_LT] = ACTIONS(3233), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3233), - [anon_sym_AMP_CARET] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_PIPE_PIPE] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3233), - [anon_sym_POUND_LBRACK] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3233), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3233), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3233), - [sym_rune_literal] = ACTIONS(3233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3233), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3233), - [sym___single_quote] = ACTIONS(3233), - [sym___c_double_quote] = ACTIONS(3233), - [sym___c_single_quote] = ACTIONS(3233), - [sym___r_double_quote] = ACTIONS(3233), - [sym___r_single_quote] = ACTIONS(3233), - }, - [1372] = { - [sym_line_comment] = STATE(1372), - [sym_identifier] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3229), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3229), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3229), - [anon_sym_AMP_CARET] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3229), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3229), - [sym_rune_literal] = ACTIONS(3229), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3229), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3229), - [sym___single_quote] = ACTIONS(3229), - [sym___c_double_quote] = ACTIONS(3229), - [sym___c_single_quote] = ACTIONS(3229), - [sym___r_double_quote] = ACTIONS(3229), - [sym___r_single_quote] = ACTIONS(3229), - }, - [1373] = { - [sym_line_comment] = STATE(1373), - [sym_identifier] = ACTIONS(3407), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_as] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_fn] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_GT] = ACTIONS(3407), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_mut] = ACTIONS(3407), - [anon_sym_COLON] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_go] = ACTIONS(3407), - [anon_sym_spawn] = ACTIONS(3407), - [anon_sym_json_DOTdecode] = ACTIONS(3405), - [anon_sym_LBRACK2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3407), - [anon_sym_GT_GT_GT] = ACTIONS(3405), - [anon_sym_AMP_CARET] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_nil] = ACTIONS(3407), - [anon_sym_QMARK_DOT] = ACTIONS(3405), - [anon_sym_POUND_LBRACK] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOLLARif] = ACTIONS(3407), - [anon_sym_is] = ACTIONS(3407), - [anon_sym_BANGis] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3407), - [anon_sym_BANGin] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_rlock] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_sql] = ACTIONS(3407), - [sym_int_literal] = ACTIONS(3407), - [sym_float_literal] = ACTIONS(3405), - [sym_rune_literal] = ACTIONS(3405), - [sym_pseudo_compile_time_identifier] = ACTIONS(3407), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3405), - [anon_sym_chan] = ACTIONS(3407), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3407), - [sym___double_quote] = ACTIONS(3405), - [sym___single_quote] = ACTIONS(3405), - [sym___c_double_quote] = ACTIONS(3405), - [sym___c_single_quote] = ACTIONS(3405), - [sym___r_double_quote] = ACTIONS(3405), - [sym___r_single_quote] = ACTIONS(3405), - }, - [1374] = { - [sym_line_comment] = STATE(1374), - [sym_identifier] = ACTIONS(3219), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3217), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3217), - [anon_sym_AMP_CARET] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_PIPE_PIPE] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3217), - [anon_sym_POUND_LBRACK] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3217), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3217), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3217), - [sym_rune_literal] = ACTIONS(3217), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3217), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3217), - [sym___single_quote] = ACTIONS(3217), - [sym___c_double_quote] = ACTIONS(3217), - [sym___c_single_quote] = ACTIONS(3217), - [sym___r_double_quote] = ACTIONS(3217), - [sym___r_single_quote] = ACTIONS(3217), - }, - [1375] = { - [sym_line_comment] = STATE(1375), - [sym_identifier] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3313), - [anon_sym_BANG_EQ] = ACTIONS(3313), - [anon_sym_LT_EQ] = ACTIONS(3313), - [anon_sym_GT_EQ] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_COLON] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3313), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3313), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3313), - [anon_sym_AMP_CARET] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3313), - [anon_sym_POUND_LBRACK] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3313), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3313), - [sym_rune_literal] = ACTIONS(3313), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3313), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3313), - [sym___single_quote] = ACTIONS(3313), - [sym___c_double_quote] = ACTIONS(3313), - [sym___c_single_quote] = ACTIONS(3313), - [sym___r_double_quote] = ACTIONS(3313), - [sym___r_single_quote] = ACTIONS(3313), - }, - [1376] = { - [sym_line_comment] = STATE(1376), - [sym_identifier] = ACTIONS(3215), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3213), - [anon_sym_BANG_EQ] = ACTIONS(3213), - [anon_sym_LT_EQ] = ACTIONS(3213), - [anon_sym_GT_EQ] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_RBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_COLON] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3213), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_CARET] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3213), - [anon_sym_LT_LT] = ACTIONS(3213), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3213), - [anon_sym_AMP_CARET] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_PIPE_PIPE] = ACTIONS(3213), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3213), - [anon_sym_POUND_LBRACK] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3213), - [sym_rune_literal] = ACTIONS(3213), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3213), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3213), - [sym___single_quote] = ACTIONS(3213), - [sym___c_double_quote] = ACTIONS(3213), - [sym___c_single_quote] = ACTIONS(3213), - [sym___r_double_quote] = ACTIONS(3213), - [sym___r_single_quote] = ACTIONS(3213), - }, - [1377] = { - [sym_line_comment] = STATE(1377), - [sym_identifier] = ACTIONS(3227), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3225), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3225), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3225), - [anon_sym_AMP_CARET] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_PIPE_PIPE] = ACTIONS(3225), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3225), - [anon_sym_POUND_LBRACK] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3225), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3225), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3225), - [sym_rune_literal] = ACTIONS(3225), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3225), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3225), - [sym___single_quote] = ACTIONS(3225), - [sym___c_double_quote] = ACTIONS(3225), - [sym___c_single_quote] = ACTIONS(3225), - [sym___r_double_quote] = ACTIONS(3225), - [sym___r_single_quote] = ACTIONS(3225), - }, - [1378] = { - [sym_line_comment] = STATE(1378), - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1367), - [sym_or_block] = STATE(1368), + [sym_block_comment] = STATE(1362), + [sym_type_parameters] = STATE(4214), + [sym_argument_list] = STATE(1375), + [sym_or_block] = STATE(1376), [sym_identifier] = ACTIONS(3873), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3855), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3853), [anon_sym_as] = ACTIONS(3875), [anon_sym_LBRACE] = ACTIONS(3877), [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_LPAREN] = ACTIONS(3857), + [anon_sym_LPAREN] = ACTIONS(3855), [anon_sym_PIPE] = ACTIONS(3879), [anon_sym_fn] = ACTIONS(3873), [anon_sym_PLUS] = ACTIONS(3879), @@ -179721,17 +173012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3887), [anon_sym_LT_EQ] = ACTIONS(3887), [anon_sym_GT_EQ] = ACTIONS(3887), - [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LBRACK] = ACTIONS(3857), [anon_sym_struct] = ACTIONS(3873), [anon_sym_mut] = ACTIONS(3873), [anon_sym_PLUS_PLUS] = ACTIONS(3891), [anon_sym_DASH_DASH] = ACTIONS(3893), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3863), + [anon_sym_QMARK] = ACTIONS(3859), + [anon_sym_BANG] = ACTIONS(3861), [anon_sym_go] = ACTIONS(3873), [anon_sym_spawn] = ACTIONS(3873), [anon_sym_json_DOTdecode] = ACTIONS(3877), - [anon_sym_LBRACK2] = ACTIONS(3865), + [anon_sym_LBRACK2] = ACTIONS(3863), [anon_sym_TILDE] = ACTIONS(3877), [anon_sym_CARET] = ACTIONS(3895), [anon_sym_AMP] = ACTIONS(3883), @@ -179747,8 +173038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(3873), [sym_false] = ACTIONS(3873), [sym_nil] = ACTIONS(3873), - [anon_sym_QMARK_DOT] = ACTIONS(3867), - [anon_sym_POUND_LBRACK] = ACTIONS(3869), + [anon_sym_QMARK_DOT] = ACTIONS(3865), + [anon_sym_POUND_LBRACK] = ACTIONS(3867), [anon_sym_if] = ACTIONS(3873), [anon_sym_DOLLARif] = ACTIONS(3873), [anon_sym_is] = ACTIONS(3903), @@ -179777,5388 +173068,6706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3877), [sym___r_single_quote] = ACTIONS(3877), }, + [1363] = { + [sym_line_comment] = STATE(1363), + [sym_block_comment] = STATE(1363), + [sym_identifier] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2867), + [anon_sym_as] = ACTIONS(2867), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_COMMA] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_PLUS] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_SLASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2865), + [anon_sym_BANG_EQ] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_RBRACK] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_mut] = ACTIONS(2867), + [anon_sym_COLON] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2865), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_go] = ACTIONS(2867), + [anon_sym_spawn] = ACTIONS(2867), + [anon_sym_json_DOTdecode] = ACTIONS(2865), + [anon_sym_LBRACK2] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2867), + [anon_sym_LT_DASH] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2865), + [anon_sym_GT_GT] = ACTIONS(2867), + [anon_sym_GT_GT_GT] = ACTIONS(2865), + [anon_sym_AMP_CARET] = ACTIONS(2865), + [anon_sym_AMP_AMP] = ACTIONS(2865), + [anon_sym_PIPE_PIPE] = ACTIONS(2865), + [anon_sym_or] = ACTIONS(2867), + [sym_none] = ACTIONS(2867), + [sym_true] = ACTIONS(2867), + [sym_false] = ACTIONS(2867), + [sym_nil] = ACTIONS(2867), + [anon_sym_QMARK_DOT] = ACTIONS(2865), + [anon_sym_POUND_LBRACK] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_DOLLARif] = ACTIONS(2867), + [anon_sym_is] = ACTIONS(2867), + [anon_sym_BANGis] = ACTIONS(2865), + [anon_sym_in] = ACTIONS(2867), + [anon_sym_BANGin] = ACTIONS(2865), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_select] = ACTIONS(2867), + [anon_sym_lock] = ACTIONS(2867), + [anon_sym_rlock] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_sql] = ACTIONS(2867), + [sym_int_literal] = ACTIONS(2867), + [sym_float_literal] = ACTIONS(2865), + [sym_rune_literal] = ACTIONS(2865), + [sym_pseudo_compile_time_identifier] = ACTIONS(2867), + [anon_sym_shared] = ACTIONS(2867), + [anon_sym_map_LBRACK] = ACTIONS(2865), + [anon_sym_chan] = ACTIONS(2867), + [anon_sym_thread] = ACTIONS(2867), + [anon_sym_atomic] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(2865), + [sym___single_quote] = ACTIONS(2865), + [sym___c_double_quote] = ACTIONS(2865), + [sym___c_single_quote] = ACTIONS(2865), + [sym___r_double_quote] = ACTIONS(2865), + [sym___r_single_quote] = ACTIONS(2865), + }, + [1364] = { + [sym_line_comment] = STATE(1364), + [sym_block_comment] = STATE(1364), + [sym_identifier] = ACTIONS(3182), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_COMMA] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_PIPE] = ACTIONS(3182), + [anon_sym_fn] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_EQ_EQ] = ACTIONS(3180), + [anon_sym_BANG_EQ] = ACTIONS(3180), + [anon_sym_LT_EQ] = ACTIONS(3180), + [anon_sym_GT_EQ] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_RBRACK] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3182), + [anon_sym_mut] = ACTIONS(3182), + [anon_sym_COLON] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_go] = ACTIONS(3182), + [anon_sym_spawn] = ACTIONS(3182), + [anon_sym_json_DOTdecode] = ACTIONS(3180), + [anon_sym_LBRACK2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_CARET] = ACTIONS(3180), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_LT_DASH] = ACTIONS(3180), + [anon_sym_LT_LT] = ACTIONS(3180), + [anon_sym_GT_GT] = ACTIONS(3182), + [anon_sym_GT_GT_GT] = ACTIONS(3180), + [anon_sym_AMP_CARET] = ACTIONS(3180), + [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_PIPE_PIPE] = ACTIONS(3180), + [anon_sym_or] = ACTIONS(3182), + [sym_none] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_nil] = ACTIONS(3182), + [anon_sym_QMARK_DOT] = ACTIONS(3180), + [anon_sym_POUND_LBRACK] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_DOLLARif] = ACTIONS(3182), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3180), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_BANGin] = ACTIONS(3180), + [anon_sym_match] = ACTIONS(3182), + [anon_sym_select] = ACTIONS(3182), + [anon_sym_lock] = ACTIONS(3182), + [anon_sym_rlock] = ACTIONS(3182), + [anon_sym_unsafe] = ACTIONS(3182), + [anon_sym_sql] = ACTIONS(3182), + [sym_int_literal] = ACTIONS(3182), + [sym_float_literal] = ACTIONS(3180), + [sym_rune_literal] = ACTIONS(3180), + [sym_pseudo_compile_time_identifier] = ACTIONS(3182), + [anon_sym_shared] = ACTIONS(3182), + [anon_sym_map_LBRACK] = ACTIONS(3180), + [anon_sym_chan] = ACTIONS(3182), + [anon_sym_thread] = ACTIONS(3182), + [anon_sym_atomic] = ACTIONS(3182), + [sym___double_quote] = ACTIONS(3180), + [sym___single_quote] = ACTIONS(3180), + [sym___c_double_quote] = ACTIONS(3180), + [sym___c_single_quote] = ACTIONS(3180), + [sym___r_double_quote] = ACTIONS(3180), + [sym___r_single_quote] = ACTIONS(3180), + }, + [1365] = { + [sym_line_comment] = STATE(1365), + [sym_block_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3178), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_as] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_fn] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT_EQ] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3178), + [anon_sym_mut] = ACTIONS(3178), + [anon_sym_COLON] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_QMARK] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_go] = ACTIONS(3178), + [anon_sym_spawn] = ACTIONS(3178), + [anon_sym_json_DOTdecode] = ACTIONS(3176), + [anon_sym_LBRACK2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_CARET] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_LT_DASH] = ACTIONS(3176), + [anon_sym_LT_LT] = ACTIONS(3176), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_GT_GT_GT] = ACTIONS(3176), + [anon_sym_AMP_CARET] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3178), + [sym_none] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_nil] = ACTIONS(3178), + [anon_sym_QMARK_DOT] = ACTIONS(3176), + [anon_sym_POUND_LBRACK] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_DOLLARif] = ACTIONS(3178), + [anon_sym_is] = ACTIONS(3178), + [anon_sym_BANGis] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3178), + [anon_sym_BANGin] = ACTIONS(3176), + [anon_sym_match] = ACTIONS(3178), + [anon_sym_select] = ACTIONS(3178), + [anon_sym_lock] = ACTIONS(3178), + [anon_sym_rlock] = ACTIONS(3178), + [anon_sym_unsafe] = ACTIONS(3178), + [anon_sym_sql] = ACTIONS(3178), + [sym_int_literal] = ACTIONS(3178), + [sym_float_literal] = ACTIONS(3176), + [sym_rune_literal] = ACTIONS(3176), + [sym_pseudo_compile_time_identifier] = ACTIONS(3178), + [anon_sym_shared] = ACTIONS(3178), + [anon_sym_map_LBRACK] = ACTIONS(3176), + [anon_sym_chan] = ACTIONS(3178), + [anon_sym_thread] = ACTIONS(3178), + [anon_sym_atomic] = ACTIONS(3178), + [sym___double_quote] = ACTIONS(3176), + [sym___single_quote] = ACTIONS(3176), + [sym___c_double_quote] = ACTIONS(3176), + [sym___c_single_quote] = ACTIONS(3176), + [sym___r_double_quote] = ACTIONS(3176), + [sym___r_single_quote] = ACTIONS(3176), + }, + [1366] = { + [sym_line_comment] = STATE(1366), + [sym_block_comment] = STATE(1366), + [sym_identifier] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_as] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3118), + [anon_sym_COMMA] = ACTIONS(3118), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3118), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3120), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_GT] = ACTIONS(3120), + [anon_sym_EQ_EQ] = ACTIONS(3118), + [anon_sym_BANG_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_mut] = ACTIONS(3120), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_PLUS_PLUS] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3120), + [anon_sym_spawn] = ACTIONS(3120), + [anon_sym_json_DOTdecode] = ACTIONS(3118), + [anon_sym_LBRACK2] = ACTIONS(3120), + [anon_sym_TILDE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_DASH] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3120), + [anon_sym_GT_GT_GT] = ACTIONS(3118), + [anon_sym_AMP_CARET] = ACTIONS(3118), + [anon_sym_AMP_AMP] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3118), + [anon_sym_or] = ACTIONS(3120), + [sym_none] = ACTIONS(3120), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [sym_nil] = ACTIONS(3120), + [anon_sym_QMARK_DOT] = ACTIONS(3118), + [anon_sym_POUND_LBRACK] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_DOLLARif] = ACTIONS(3120), + [anon_sym_is] = ACTIONS(3120), + [anon_sym_BANGis] = ACTIONS(3118), + [anon_sym_in] = ACTIONS(3120), + [anon_sym_BANGin] = ACTIONS(3118), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_select] = ACTIONS(3120), + [anon_sym_lock] = ACTIONS(3120), + [anon_sym_rlock] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_sql] = ACTIONS(3120), + [sym_int_literal] = ACTIONS(3120), + [sym_float_literal] = ACTIONS(3118), + [sym_rune_literal] = ACTIONS(3118), + [sym_pseudo_compile_time_identifier] = ACTIONS(3120), + [anon_sym_shared] = ACTIONS(3120), + [anon_sym_map_LBRACK] = ACTIONS(3118), + [anon_sym_chan] = ACTIONS(3120), + [anon_sym_thread] = ACTIONS(3120), + [anon_sym_atomic] = ACTIONS(3120), + [sym___double_quote] = ACTIONS(3118), + [sym___single_quote] = ACTIONS(3118), + [sym___c_double_quote] = ACTIONS(3118), + [sym___c_single_quote] = ACTIONS(3118), + [sym___r_double_quote] = ACTIONS(3118), + [sym___r_single_quote] = ACTIONS(3118), + }, + [1367] = { + [sym_line_comment] = STATE(1367), + [sym_block_comment] = STATE(1367), + [sym_identifier] = ACTIONS(3270), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3270), + [anon_sym_as] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_COMMA] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_PIPE] = ACTIONS(3270), + [anon_sym_fn] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_PERCENT] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3270), + [anon_sym_GT] = ACTIONS(3270), + [anon_sym_EQ_EQ] = ACTIONS(3268), + [anon_sym_BANG_EQ] = ACTIONS(3268), + [anon_sym_LT_EQ] = ACTIONS(3268), + [anon_sym_GT_EQ] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_RBRACK] = ACTIONS(3268), + [anon_sym_struct] = ACTIONS(3270), + [anon_sym_mut] = ACTIONS(3270), + [anon_sym_COLON] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_go] = ACTIONS(3270), + [anon_sym_spawn] = ACTIONS(3270), + [anon_sym_json_DOTdecode] = ACTIONS(3268), + [anon_sym_LBRACK2] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_CARET] = ACTIONS(3268), + [anon_sym_AMP] = ACTIONS(3270), + [anon_sym_LT_DASH] = ACTIONS(3268), + [anon_sym_LT_LT] = ACTIONS(3268), + [anon_sym_GT_GT] = ACTIONS(3270), + [anon_sym_GT_GT_GT] = ACTIONS(3268), + [anon_sym_AMP_CARET] = ACTIONS(3268), + [anon_sym_AMP_AMP] = ACTIONS(3268), + [anon_sym_PIPE_PIPE] = ACTIONS(3268), + [anon_sym_or] = ACTIONS(3270), + [sym_none] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_nil] = ACTIONS(3270), + [anon_sym_QMARK_DOT] = ACTIONS(3268), + [anon_sym_POUND_LBRACK] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_DOLLARif] = ACTIONS(3270), + [anon_sym_is] = ACTIONS(3270), + [anon_sym_BANGis] = ACTIONS(3268), + [anon_sym_in] = ACTIONS(3270), + [anon_sym_BANGin] = ACTIONS(3268), + [anon_sym_match] = ACTIONS(3270), + [anon_sym_select] = ACTIONS(3270), + [anon_sym_lock] = ACTIONS(3270), + [anon_sym_rlock] = ACTIONS(3270), + [anon_sym_unsafe] = ACTIONS(3270), + [anon_sym_sql] = ACTIONS(3270), + [sym_int_literal] = ACTIONS(3270), + [sym_float_literal] = ACTIONS(3268), + [sym_rune_literal] = ACTIONS(3268), + [sym_pseudo_compile_time_identifier] = ACTIONS(3270), + [anon_sym_shared] = ACTIONS(3270), + [anon_sym_map_LBRACK] = ACTIONS(3268), + [anon_sym_chan] = ACTIONS(3270), + [anon_sym_thread] = ACTIONS(3270), + [anon_sym_atomic] = ACTIONS(3270), + [sym___double_quote] = ACTIONS(3268), + [sym___single_quote] = ACTIONS(3268), + [sym___c_double_quote] = ACTIONS(3268), + [sym___c_single_quote] = ACTIONS(3268), + [sym___r_double_quote] = ACTIONS(3268), + [sym___r_single_quote] = ACTIONS(3268), + }, + [1368] = { + [sym_line_comment] = STATE(1368), + [sym_block_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3003), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3003), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3003), + [anon_sym_AMP_CARET] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3003), + [anon_sym_POUND_LBRACK] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3003), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3003), + [sym___single_quote] = ACTIONS(3003), + [sym___c_double_quote] = ACTIONS(3003), + [sym___c_single_quote] = ACTIONS(3003), + [sym___r_double_quote] = ACTIONS(3003), + [sym___r_single_quote] = ACTIONS(3003), + }, + [1369] = { + [sym_line_comment] = STATE(1369), + [sym_block_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3262), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3262), + [anon_sym_as] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_COMMA] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_PIPE] = ACTIONS(3262), + [anon_sym_fn] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_STAR] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_PERCENT] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_GT] = ACTIONS(3262), + [anon_sym_EQ_EQ] = ACTIONS(3260), + [anon_sym_BANG_EQ] = ACTIONS(3260), + [anon_sym_LT_EQ] = ACTIONS(3260), + [anon_sym_GT_EQ] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_RBRACK] = ACTIONS(3260), + [anon_sym_struct] = ACTIONS(3262), + [anon_sym_mut] = ACTIONS(3262), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_QMARK] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_go] = ACTIONS(3262), + [anon_sym_spawn] = ACTIONS(3262), + [anon_sym_json_DOTdecode] = ACTIONS(3260), + [anon_sym_LBRACK2] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_CARET] = ACTIONS(3260), + [anon_sym_AMP] = ACTIONS(3262), + [anon_sym_LT_DASH] = ACTIONS(3260), + [anon_sym_LT_LT] = ACTIONS(3260), + [anon_sym_GT_GT] = ACTIONS(3262), + [anon_sym_GT_GT_GT] = ACTIONS(3260), + [anon_sym_AMP_CARET] = ACTIONS(3260), + [anon_sym_AMP_AMP] = ACTIONS(3260), + [anon_sym_PIPE_PIPE] = ACTIONS(3260), + [anon_sym_or] = ACTIONS(3262), + [sym_none] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_nil] = ACTIONS(3262), + [anon_sym_QMARK_DOT] = ACTIONS(3260), + [anon_sym_POUND_LBRACK] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_DOLLARif] = ACTIONS(3262), + [anon_sym_is] = ACTIONS(3262), + [anon_sym_BANGis] = ACTIONS(3260), + [anon_sym_in] = ACTIONS(3262), + [anon_sym_BANGin] = ACTIONS(3260), + [anon_sym_match] = ACTIONS(3262), + [anon_sym_select] = ACTIONS(3262), + [anon_sym_lock] = ACTIONS(3262), + [anon_sym_rlock] = ACTIONS(3262), + [anon_sym_unsafe] = ACTIONS(3262), + [anon_sym_sql] = ACTIONS(3262), + [sym_int_literal] = ACTIONS(3262), + [sym_float_literal] = ACTIONS(3260), + [sym_rune_literal] = ACTIONS(3260), + [sym_pseudo_compile_time_identifier] = ACTIONS(3262), + [anon_sym_shared] = ACTIONS(3262), + [anon_sym_map_LBRACK] = ACTIONS(3260), + [anon_sym_chan] = ACTIONS(3262), + [anon_sym_thread] = ACTIONS(3262), + [anon_sym_atomic] = ACTIONS(3262), + [sym___double_quote] = ACTIONS(3260), + [sym___single_quote] = ACTIONS(3260), + [sym___c_double_quote] = ACTIONS(3260), + [sym___c_single_quote] = ACTIONS(3260), + [sym___r_double_quote] = ACTIONS(3260), + [sym___r_single_quote] = ACTIONS(3260), + }, + [1370] = { + [sym_line_comment] = STATE(1370), + [sym_block_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3258), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3258), + [anon_sym_as] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_COMMA] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_PIPE] = ACTIONS(3258), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_STAR] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_PERCENT] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_GT] = ACTIONS(3258), + [anon_sym_EQ_EQ] = ACTIONS(3256), + [anon_sym_BANG_EQ] = ACTIONS(3256), + [anon_sym_LT_EQ] = ACTIONS(3256), + [anon_sym_GT_EQ] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_RBRACK] = ACTIONS(3256), + [anon_sym_struct] = ACTIONS(3258), + [anon_sym_mut] = ACTIONS(3258), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_QMARK] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_go] = ACTIONS(3258), + [anon_sym_spawn] = ACTIONS(3258), + [anon_sym_json_DOTdecode] = ACTIONS(3256), + [anon_sym_LBRACK2] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_CARET] = ACTIONS(3256), + [anon_sym_AMP] = ACTIONS(3258), + [anon_sym_LT_DASH] = ACTIONS(3256), + [anon_sym_LT_LT] = ACTIONS(3256), + [anon_sym_GT_GT] = ACTIONS(3258), + [anon_sym_GT_GT_GT] = ACTIONS(3256), + [anon_sym_AMP_CARET] = ACTIONS(3256), + [anon_sym_AMP_AMP] = ACTIONS(3256), + [anon_sym_PIPE_PIPE] = ACTIONS(3256), + [anon_sym_or] = ACTIONS(3258), + [sym_none] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_nil] = ACTIONS(3258), + [anon_sym_QMARK_DOT] = ACTIONS(3256), + [anon_sym_POUND_LBRACK] = ACTIONS(3256), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_DOLLARif] = ACTIONS(3258), + [anon_sym_is] = ACTIONS(3258), + [anon_sym_BANGis] = ACTIONS(3256), + [anon_sym_in] = ACTIONS(3258), + [anon_sym_BANGin] = ACTIONS(3256), + [anon_sym_match] = ACTIONS(3258), + [anon_sym_select] = ACTIONS(3258), + [anon_sym_lock] = ACTIONS(3258), + [anon_sym_rlock] = ACTIONS(3258), + [anon_sym_unsafe] = ACTIONS(3258), + [anon_sym_sql] = ACTIONS(3258), + [sym_int_literal] = ACTIONS(3258), + [sym_float_literal] = ACTIONS(3256), + [sym_rune_literal] = ACTIONS(3256), + [sym_pseudo_compile_time_identifier] = ACTIONS(3258), + [anon_sym_shared] = ACTIONS(3258), + [anon_sym_map_LBRACK] = ACTIONS(3256), + [anon_sym_chan] = ACTIONS(3258), + [anon_sym_thread] = ACTIONS(3258), + [anon_sym_atomic] = ACTIONS(3258), + [sym___double_quote] = ACTIONS(3256), + [sym___single_quote] = ACTIONS(3256), + [sym___c_double_quote] = ACTIONS(3256), + [sym___c_single_quote] = ACTIONS(3256), + [sym___r_double_quote] = ACTIONS(3256), + [sym___r_single_quote] = ACTIONS(3256), + }, + [1371] = { + [sym_line_comment] = STATE(1371), + [sym_block_comment] = STATE(1371), + [sym_identifier] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_as] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_RBRACE] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3038), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3040), + [anon_sym_PERCENT] = ACTIONS(3038), + [anon_sym_LT] = ACTIONS(3040), + [anon_sym_GT] = ACTIONS(3040), + [anon_sym_EQ_EQ] = ACTIONS(3038), + [anon_sym_BANG_EQ] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3038), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_COLON] = ACTIONS(3038), + [anon_sym_PLUS_PLUS] = ACTIONS(3038), + [anon_sym_DASH_DASH] = ACTIONS(3038), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3038), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3038), + [anon_sym_CARET] = ACTIONS(3038), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3038), + [anon_sym_LT_LT] = ACTIONS(3038), + [anon_sym_GT_GT] = ACTIONS(3040), + [anon_sym_GT_GT_GT] = ACTIONS(3038), + [anon_sym_AMP_CARET] = ACTIONS(3038), + [anon_sym_AMP_AMP] = ACTIONS(3038), + [anon_sym_PIPE_PIPE] = ACTIONS(3038), + [anon_sym_or] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_QMARK_DOT] = ACTIONS(3038), + [anon_sym_POUND_LBRACK] = ACTIONS(3038), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_is] = ACTIONS(3040), + [anon_sym_BANGis] = ACTIONS(3038), + [anon_sym_in] = ACTIONS(3040), + [anon_sym_BANGin] = ACTIONS(3038), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3038), + [sym_rune_literal] = ACTIONS(3038), + [sym_pseudo_compile_time_identifier] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3038), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3038), + [sym___single_quote] = ACTIONS(3038), + [sym___c_double_quote] = ACTIONS(3038), + [sym___c_single_quote] = ACTIONS(3038), + [sym___r_double_quote] = ACTIONS(3038), + [sym___r_single_quote] = ACTIONS(3038), + }, + [1372] = { + [sym_line_comment] = STATE(1372), + [sym_block_comment] = STATE(1372), + [sym_identifier] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_as] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_COMMA] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_PERCENT] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_GT] = ACTIONS(3174), + [anon_sym_EQ_EQ] = ACTIONS(3172), + [anon_sym_BANG_EQ] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_COLON] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3172), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_CARET] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3172), + [anon_sym_LT_LT] = ACTIONS(3172), + [anon_sym_GT_GT] = ACTIONS(3174), + [anon_sym_GT_GT_GT] = ACTIONS(3172), + [anon_sym_AMP_CARET] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_PIPE_PIPE] = ACTIONS(3172), + [anon_sym_or] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_QMARK_DOT] = ACTIONS(3172), + [anon_sym_POUND_LBRACK] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_is] = ACTIONS(3174), + [anon_sym_BANGis] = ACTIONS(3172), + [anon_sym_in] = ACTIONS(3174), + [anon_sym_BANGin] = ACTIONS(3172), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3172), + [sym_rune_literal] = ACTIONS(3172), + [sym_pseudo_compile_time_identifier] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3172), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3172), + [sym___single_quote] = ACTIONS(3172), + [sym___c_double_quote] = ACTIONS(3172), + [sym___c_single_quote] = ACTIONS(3172), + [sym___r_double_quote] = ACTIONS(3172), + [sym___r_single_quote] = ACTIONS(3172), + }, + [1373] = { + [sym_line_comment] = STATE(1373), + [sym_block_comment] = STATE(1373), + [sym_identifier] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_as] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_COMMA] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_PERCENT] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3190), + [anon_sym_GT] = ACTIONS(3190), + [anon_sym_EQ_EQ] = ACTIONS(3188), + [anon_sym_BANG_EQ] = ACTIONS(3188), + [anon_sym_LT_EQ] = ACTIONS(3188), + [anon_sym_GT_EQ] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_COLON] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3188), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_CARET] = ACTIONS(3188), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3188), + [anon_sym_LT_LT] = ACTIONS(3188), + [anon_sym_GT_GT] = ACTIONS(3190), + [anon_sym_GT_GT_GT] = ACTIONS(3188), + [anon_sym_AMP_CARET] = ACTIONS(3188), + [anon_sym_AMP_AMP] = ACTIONS(3188), + [anon_sym_PIPE_PIPE] = ACTIONS(3188), + [anon_sym_or] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_QMARK_DOT] = ACTIONS(3188), + [anon_sym_POUND_LBRACK] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_is] = ACTIONS(3190), + [anon_sym_BANGis] = ACTIONS(3188), + [anon_sym_in] = ACTIONS(3190), + [anon_sym_BANGin] = ACTIONS(3188), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3188), + [sym_rune_literal] = ACTIONS(3188), + [sym_pseudo_compile_time_identifier] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3188), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3188), + [sym___single_quote] = ACTIONS(3188), + [sym___c_double_quote] = ACTIONS(3188), + [sym___c_single_quote] = ACTIONS(3188), + [sym___r_double_quote] = ACTIONS(3188), + [sym___r_single_quote] = ACTIONS(3188), + }, + [1374] = { + [sym_line_comment] = STATE(1374), + [sym_block_comment] = STATE(1374), + [sym_identifier] = ACTIONS(3214), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_as] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_COMMA] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_PERCENT] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_GT] = ACTIONS(3214), + [anon_sym_EQ_EQ] = ACTIONS(3212), + [anon_sym_BANG_EQ] = ACTIONS(3212), + [anon_sym_LT_EQ] = ACTIONS(3212), + [anon_sym_GT_EQ] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_RBRACK] = ACTIONS(3212), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3212), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_CARET] = ACTIONS(3212), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3212), + [anon_sym_LT_LT] = ACTIONS(3212), + [anon_sym_GT_GT] = ACTIONS(3214), + [anon_sym_GT_GT_GT] = ACTIONS(3212), + [anon_sym_AMP_CARET] = ACTIONS(3212), + [anon_sym_AMP_AMP] = ACTIONS(3212), + [anon_sym_PIPE_PIPE] = ACTIONS(3212), + [anon_sym_or] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_QMARK_DOT] = ACTIONS(3212), + [anon_sym_POUND_LBRACK] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_is] = ACTIONS(3214), + [anon_sym_BANGis] = ACTIONS(3212), + [anon_sym_in] = ACTIONS(3214), + [anon_sym_BANGin] = ACTIONS(3212), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3212), + [sym_rune_literal] = ACTIONS(3212), + [sym_pseudo_compile_time_identifier] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3212), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3212), + [sym___single_quote] = ACTIONS(3212), + [sym___c_double_quote] = ACTIONS(3212), + [sym___c_single_quote] = ACTIONS(3212), + [sym___r_double_quote] = ACTIONS(3212), + [sym___r_single_quote] = ACTIONS(3212), + }, + [1375] = { + [sym_line_comment] = STATE(1375), + [sym_block_comment] = STATE(1375), + [sym_identifier] = ACTIONS(3254), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3254), + [anon_sym_as] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_COMMA] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_PIPE] = ACTIONS(3254), + [anon_sym_fn] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_STAR] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_PERCENT] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_GT] = ACTIONS(3254), + [anon_sym_EQ_EQ] = ACTIONS(3252), + [anon_sym_BANG_EQ] = ACTIONS(3252), + [anon_sym_LT_EQ] = ACTIONS(3252), + [anon_sym_GT_EQ] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_RBRACK] = ACTIONS(3252), + [anon_sym_struct] = ACTIONS(3254), + [anon_sym_mut] = ACTIONS(3254), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [anon_sym_QMARK] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_go] = ACTIONS(3254), + [anon_sym_spawn] = ACTIONS(3254), + [anon_sym_json_DOTdecode] = ACTIONS(3252), + [anon_sym_LBRACK2] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_CARET] = ACTIONS(3252), + [anon_sym_AMP] = ACTIONS(3254), + [anon_sym_LT_DASH] = ACTIONS(3252), + [anon_sym_LT_LT] = ACTIONS(3252), + [anon_sym_GT_GT] = ACTIONS(3254), + [anon_sym_GT_GT_GT] = ACTIONS(3252), + [anon_sym_AMP_CARET] = ACTIONS(3252), + [anon_sym_AMP_AMP] = ACTIONS(3252), + [anon_sym_PIPE_PIPE] = ACTIONS(3252), + [anon_sym_or] = ACTIONS(3254), + [sym_none] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_nil] = ACTIONS(3254), + [anon_sym_QMARK_DOT] = ACTIONS(3252), + [anon_sym_POUND_LBRACK] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_DOLLARif] = ACTIONS(3254), + [anon_sym_is] = ACTIONS(3254), + [anon_sym_BANGis] = ACTIONS(3252), + [anon_sym_in] = ACTIONS(3254), + [anon_sym_BANGin] = ACTIONS(3252), + [anon_sym_match] = ACTIONS(3254), + [anon_sym_select] = ACTIONS(3254), + [anon_sym_lock] = ACTIONS(3254), + [anon_sym_rlock] = ACTIONS(3254), + [anon_sym_unsafe] = ACTIONS(3254), + [anon_sym_sql] = ACTIONS(3254), + [sym_int_literal] = ACTIONS(3254), + [sym_float_literal] = ACTIONS(3252), + [sym_rune_literal] = ACTIONS(3252), + [sym_pseudo_compile_time_identifier] = ACTIONS(3254), + [anon_sym_shared] = ACTIONS(3254), + [anon_sym_map_LBRACK] = ACTIONS(3252), + [anon_sym_chan] = ACTIONS(3254), + [anon_sym_thread] = ACTIONS(3254), + [anon_sym_atomic] = ACTIONS(3254), + [sym___double_quote] = ACTIONS(3252), + [sym___single_quote] = ACTIONS(3252), + [sym___c_double_quote] = ACTIONS(3252), + [sym___c_single_quote] = ACTIONS(3252), + [sym___r_double_quote] = ACTIONS(3252), + [sym___r_single_quote] = ACTIONS(3252), + }, + [1376] = { + [sym_line_comment] = STATE(1376), + [sym_block_comment] = STATE(1376), + [sym_identifier] = ACTIONS(3250), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3250), + [anon_sym_as] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_COMMA] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_PIPE] = ACTIONS(3250), + [anon_sym_fn] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_STAR] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_PERCENT] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_GT] = ACTIONS(3250), + [anon_sym_EQ_EQ] = ACTIONS(3248), + [anon_sym_BANG_EQ] = ACTIONS(3248), + [anon_sym_LT_EQ] = ACTIONS(3248), + [anon_sym_GT_EQ] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_RBRACK] = ACTIONS(3248), + [anon_sym_struct] = ACTIONS(3250), + [anon_sym_mut] = ACTIONS(3250), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_QMARK] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_go] = ACTIONS(3250), + [anon_sym_spawn] = ACTIONS(3250), + [anon_sym_json_DOTdecode] = ACTIONS(3248), + [anon_sym_LBRACK2] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_CARET] = ACTIONS(3248), + [anon_sym_AMP] = ACTIONS(3250), + [anon_sym_LT_DASH] = ACTIONS(3248), + [anon_sym_LT_LT] = ACTIONS(3248), + [anon_sym_GT_GT] = ACTIONS(3250), + [anon_sym_GT_GT_GT] = ACTIONS(3248), + [anon_sym_AMP_CARET] = ACTIONS(3248), + [anon_sym_AMP_AMP] = ACTIONS(3248), + [anon_sym_PIPE_PIPE] = ACTIONS(3248), + [anon_sym_or] = ACTIONS(3250), + [sym_none] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_nil] = ACTIONS(3250), + [anon_sym_QMARK_DOT] = ACTIONS(3248), + [anon_sym_POUND_LBRACK] = ACTIONS(3248), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_DOLLARif] = ACTIONS(3250), + [anon_sym_is] = ACTIONS(3250), + [anon_sym_BANGis] = ACTIONS(3248), + [anon_sym_in] = ACTIONS(3250), + [anon_sym_BANGin] = ACTIONS(3248), + [anon_sym_match] = ACTIONS(3250), + [anon_sym_select] = ACTIONS(3250), + [anon_sym_lock] = ACTIONS(3250), + [anon_sym_rlock] = ACTIONS(3250), + [anon_sym_unsafe] = ACTIONS(3250), + [anon_sym_sql] = ACTIONS(3250), + [sym_int_literal] = ACTIONS(3250), + [sym_float_literal] = ACTIONS(3248), + [sym_rune_literal] = ACTIONS(3248), + [sym_pseudo_compile_time_identifier] = ACTIONS(3250), + [anon_sym_shared] = ACTIONS(3250), + [anon_sym_map_LBRACK] = ACTIONS(3248), + [anon_sym_chan] = ACTIONS(3250), + [anon_sym_thread] = ACTIONS(3250), + [anon_sym_atomic] = ACTIONS(3250), + [sym___double_quote] = ACTIONS(3248), + [sym___single_quote] = ACTIONS(3248), + [sym___c_double_quote] = ACTIONS(3248), + [sym___c_single_quote] = ACTIONS(3248), + [sym___r_double_quote] = ACTIONS(3248), + [sym___r_single_quote] = ACTIONS(3248), + }, + [1377] = { + [sym_line_comment] = STATE(1377), + [sym_block_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_as] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(3022), + [anon_sym_RBRACE] = ACTIONS(3022), + [anon_sym_LPAREN] = ACTIONS(3022), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3022), + [anon_sym_SLASH] = ACTIONS(3024), + [anon_sym_PERCENT] = ACTIONS(3022), + [anon_sym_LT] = ACTIONS(3024), + [anon_sym_GT] = ACTIONS(3024), + [anon_sym_EQ_EQ] = ACTIONS(3022), + [anon_sym_BANG_EQ] = ACTIONS(3022), + [anon_sym_LT_EQ] = ACTIONS(3022), + [anon_sym_GT_EQ] = ACTIONS(3022), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_RBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_COLON] = ACTIONS(3022), + [anon_sym_PLUS_PLUS] = ACTIONS(3022), + [anon_sym_DASH_DASH] = ACTIONS(3022), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3022), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3022), + [anon_sym_CARET] = ACTIONS(3022), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3022), + [anon_sym_LT_LT] = ACTIONS(3022), + [anon_sym_GT_GT] = ACTIONS(3024), + [anon_sym_GT_GT_GT] = ACTIONS(3022), + [anon_sym_AMP_CARET] = ACTIONS(3022), + [anon_sym_AMP_AMP] = ACTIONS(3022), + [anon_sym_PIPE_PIPE] = ACTIONS(3022), + [anon_sym_or] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_QMARK_DOT] = ACTIONS(3022), + [anon_sym_POUND_LBRACK] = ACTIONS(3022), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_is] = ACTIONS(3024), + [anon_sym_BANGis] = ACTIONS(3022), + [anon_sym_in] = ACTIONS(3024), + [anon_sym_BANGin] = ACTIONS(3022), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3022), + [sym_rune_literal] = ACTIONS(3022), + [sym_pseudo_compile_time_identifier] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3022), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3022), + [sym___single_quote] = ACTIONS(3022), + [sym___c_double_quote] = ACTIONS(3022), + [sym___c_single_quote] = ACTIONS(3022), + [sym___r_double_quote] = ACTIONS(3022), + [sym___r_single_quote] = ACTIONS(3022), + }, + [1378] = { + [sym_line_comment] = STATE(1378), + [sym_block_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_as] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_RBRACK] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3330), + [anon_sym_mut] = ACTIONS(3330), + [anon_sym_COLON] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_go] = ACTIONS(3330), + [anon_sym_spawn] = ACTIONS(3330), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3330), + [sym_none] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_nil] = ACTIONS(3330), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_DOLLARif] = ACTIONS(3330), + [anon_sym_is] = ACTIONS(3330), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3330), + [anon_sym_select] = ACTIONS(3330), + [anon_sym_lock] = ACTIONS(3330), + [anon_sym_rlock] = ACTIONS(3330), + [anon_sym_unsafe] = ACTIONS(3330), + [anon_sym_sql] = ACTIONS(3330), + [sym_int_literal] = ACTIONS(3330), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3330), + [anon_sym_shared] = ACTIONS(3330), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3330), + [anon_sym_thread] = ACTIONS(3330), + [anon_sym_atomic] = ACTIONS(3330), + [sym___double_quote] = ACTIONS(3328), + [sym___single_quote] = ACTIONS(3328), + [sym___c_double_quote] = ACTIONS(3328), + [sym___c_single_quote] = ACTIONS(3328), + [sym___r_double_quote] = ACTIONS(3328), + [sym___r_single_quote] = ACTIONS(3328), + }, [1379] = { [sym_line_comment] = STATE(1379), - [sym_identifier] = ACTIONS(3179), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_as] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3179), - [anon_sym_fn] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_mut] = ACTIONS(3179), - [anon_sym_COLON] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3179), - [anon_sym_go] = ACTIONS(3179), - [anon_sym_spawn] = ACTIONS(3179), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3179), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3179), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3179), - [sym_none] = ACTIONS(3179), - [sym_true] = ACTIONS(3179), - [sym_false] = ACTIONS(3179), - [sym_nil] = ACTIONS(3179), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_DOLLARif] = ACTIONS(3179), - [anon_sym_is] = ACTIONS(3179), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3179), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_rlock] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_sql] = ACTIONS(3179), - [sym_int_literal] = ACTIONS(3179), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3179), - [anon_sym_shared] = ACTIONS(3179), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3179), - [anon_sym_thread] = ACTIONS(3179), - [anon_sym_atomic] = ACTIONS(3179), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [sym_block_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3234), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3234), + [anon_sym_as] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_COMMA] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_PIPE] = ACTIONS(3234), + [anon_sym_fn] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_GT] = ACTIONS(3234), + [anon_sym_EQ_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3234), + [anon_sym_mut] = ACTIONS(3234), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_QMARK] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_go] = ACTIONS(3234), + [anon_sym_spawn] = ACTIONS(3234), + [anon_sym_json_DOTdecode] = ACTIONS(3232), + [anon_sym_LBRACK2] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_CARET] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3234), + [anon_sym_LT_DASH] = ACTIONS(3232), + [anon_sym_LT_LT] = ACTIONS(3232), + [anon_sym_GT_GT] = ACTIONS(3234), + [anon_sym_GT_GT_GT] = ACTIONS(3232), + [anon_sym_AMP_CARET] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3234), + [sym_none] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_nil] = ACTIONS(3234), + [anon_sym_QMARK_DOT] = ACTIONS(3232), + [anon_sym_POUND_LBRACK] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_DOLLARif] = ACTIONS(3234), + [anon_sym_is] = ACTIONS(3234), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3234), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3234), + [anon_sym_select] = ACTIONS(3234), + [anon_sym_lock] = ACTIONS(3234), + [anon_sym_rlock] = ACTIONS(3234), + [anon_sym_unsafe] = ACTIONS(3234), + [anon_sym_sql] = ACTIONS(3234), + [sym_int_literal] = ACTIONS(3234), + [sym_float_literal] = ACTIONS(3232), + [sym_rune_literal] = ACTIONS(3232), + [sym_pseudo_compile_time_identifier] = ACTIONS(3234), + [anon_sym_shared] = ACTIONS(3234), + [anon_sym_map_LBRACK] = ACTIONS(3232), + [anon_sym_chan] = ACTIONS(3234), + [anon_sym_thread] = ACTIONS(3234), + [anon_sym_atomic] = ACTIONS(3234), + [sym___double_quote] = ACTIONS(3232), + [sym___single_quote] = ACTIONS(3232), + [sym___c_double_quote] = ACTIONS(3232), + [sym___c_single_quote] = ACTIONS(3232), + [sym___r_double_quote] = ACTIONS(3232), + [sym___r_single_quote] = ACTIONS(3232), }, [1380] = { [sym_line_comment] = STATE(1380), - [sym_identifier] = ACTIONS(3335), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3333), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3333), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3333), - [anon_sym_AMP_CARET] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3333), - [anon_sym_POUND_LBRACK] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3333), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3333), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3333), - [sym_rune_literal] = ACTIONS(3333), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3333), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3333), - [sym___single_quote] = ACTIONS(3333), - [sym___c_double_quote] = ACTIONS(3333), - [sym___c_single_quote] = ACTIONS(3333), - [sym___r_double_quote] = ACTIONS(3333), - [sym___r_single_quote] = ACTIONS(3333), + [sym_block_comment] = STATE(1380), + [sym_identifier] = ACTIONS(2759), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2759), + [anon_sym_as] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2761), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_fn] = ACTIONS(2759), + [anon_sym_PLUS] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2761), + [anon_sym_SLASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2761), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2761), + [anon_sym_BANG_EQ] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_RBRACK] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2759), + [anon_sym_mut] = ACTIONS(2759), + [anon_sym_COLON] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2761), + [anon_sym_QMARK] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_go] = ACTIONS(2759), + [anon_sym_spawn] = ACTIONS(2759), + [anon_sym_json_DOTdecode] = ACTIONS(2761), + [anon_sym_LBRACK2] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2761), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2761), + [anon_sym_GT_GT] = ACTIONS(2759), + [anon_sym_GT_GT_GT] = ACTIONS(2761), + [anon_sym_AMP_CARET] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2761), + [anon_sym_PIPE_PIPE] = ACTIONS(2761), + [anon_sym_or] = ACTIONS(2759), + [sym_none] = ACTIONS(2759), + [sym_true] = ACTIONS(2759), + [sym_false] = ACTIONS(2759), + [sym_nil] = ACTIONS(2759), + [anon_sym_QMARK_DOT] = ACTIONS(2761), + [anon_sym_POUND_LBRACK] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2759), + [anon_sym_DOLLARif] = ACTIONS(2759), + [anon_sym_is] = ACTIONS(2759), + [anon_sym_BANGis] = ACTIONS(2761), + [anon_sym_in] = ACTIONS(2759), + [anon_sym_BANGin] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2759), + [anon_sym_select] = ACTIONS(2759), + [anon_sym_lock] = ACTIONS(2759), + [anon_sym_rlock] = ACTIONS(2759), + [anon_sym_unsafe] = ACTIONS(2759), + [anon_sym_sql] = ACTIONS(2759), + [sym_int_literal] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2761), + [sym_rune_literal] = ACTIONS(2761), + [sym_pseudo_compile_time_identifier] = ACTIONS(2759), + [anon_sym_shared] = ACTIONS(2759), + [anon_sym_map_LBRACK] = ACTIONS(2761), + [anon_sym_chan] = ACTIONS(2759), + [anon_sym_thread] = ACTIONS(2759), + [anon_sym_atomic] = ACTIONS(2759), + [sym___double_quote] = ACTIONS(2761), + [sym___single_quote] = ACTIONS(2761), + [sym___c_double_quote] = ACTIONS(2761), + [sym___c_single_quote] = ACTIONS(2761), + [sym___r_double_quote] = ACTIONS(2761), + [sym___r_single_quote] = ACTIONS(2761), }, [1381] = { [sym_line_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3223), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_COLON] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3221), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3221), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3221), - [anon_sym_AMP_CARET] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_PIPE_PIPE] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3221), - [anon_sym_POUND_LBRACK] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3221), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3221), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3221), - [sym_rune_literal] = ACTIONS(3221), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3221), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3221), - [sym___single_quote] = ACTIONS(3221), - [sym___c_double_quote] = ACTIONS(3221), - [sym___c_single_quote] = ACTIONS(3221), - [sym___r_double_quote] = ACTIONS(3221), - [sym___r_single_quote] = ACTIONS(3221), + [sym_block_comment] = STATE(1381), + [sym_identifier] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_as] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(3018), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(3018), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3018), + [anon_sym_SLASH] = ACTIONS(3020), + [anon_sym_PERCENT] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(3020), + [anon_sym_GT] = ACTIONS(3020), + [anon_sym_EQ_EQ] = ACTIONS(3018), + [anon_sym_BANG_EQ] = ACTIONS(3018), + [anon_sym_LT_EQ] = ACTIONS(3018), + [anon_sym_GT_EQ] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_COLON] = ACTIONS(3018), + [anon_sym_PLUS_PLUS] = ACTIONS(3018), + [anon_sym_DASH_DASH] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3018), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3018), + [anon_sym_CARET] = ACTIONS(3018), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3018), + [anon_sym_LT_LT] = ACTIONS(3018), + [anon_sym_GT_GT] = ACTIONS(3020), + [anon_sym_GT_GT_GT] = ACTIONS(3018), + [anon_sym_AMP_CARET] = ACTIONS(3018), + [anon_sym_AMP_AMP] = ACTIONS(3018), + [anon_sym_PIPE_PIPE] = ACTIONS(3018), + [anon_sym_or] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_QMARK_DOT] = ACTIONS(3018), + [anon_sym_POUND_LBRACK] = ACTIONS(3018), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_is] = ACTIONS(3020), + [anon_sym_BANGis] = ACTIONS(3018), + [anon_sym_in] = ACTIONS(3020), + [anon_sym_BANGin] = ACTIONS(3018), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3018), + [sym_rune_literal] = ACTIONS(3018), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3018), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3018), + [sym___single_quote] = ACTIONS(3018), + [sym___c_double_quote] = ACTIONS(3018), + [sym___c_single_quote] = ACTIONS(3018), + [sym___r_double_quote] = ACTIONS(3018), + [sym___r_single_quote] = ACTIONS(3018), }, [1382] = { [sym_line_comment] = STATE(1382), - [sym_identifier] = ACTIONS(3211), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_COLON] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3209), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_CARET] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3209), - [anon_sym_LT_LT] = ACTIONS(3209), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3209), - [anon_sym_AMP_CARET] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_PIPE_PIPE] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3209), - [anon_sym_POUND_LBRACK] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3209), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3209), - [sym_rune_literal] = ACTIONS(3209), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3209), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3209), - [sym___single_quote] = ACTIONS(3209), - [sym___c_double_quote] = ACTIONS(3209), - [sym___c_single_quote] = ACTIONS(3209), - [sym___r_double_quote] = ACTIONS(3209), - [sym___r_single_quote] = ACTIONS(3209), + [sym_block_comment] = STATE(1382), + [sym_identifier] = ACTIONS(3222), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3222), + [anon_sym_as] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_COMMA] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_PIPE] = ACTIONS(3222), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_PERCENT] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_GT] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3220), + [anon_sym_BANG_EQ] = ACTIONS(3220), + [anon_sym_LT_EQ] = ACTIONS(3220), + [anon_sym_GT_EQ] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_RBRACK] = ACTIONS(3220), + [anon_sym_struct] = ACTIONS(3222), + [anon_sym_mut] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_QMARK] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_go] = ACTIONS(3222), + [anon_sym_spawn] = ACTIONS(3222), + [anon_sym_json_DOTdecode] = ACTIONS(3220), + [anon_sym_LBRACK2] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_CARET] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT_DASH] = ACTIONS(3220), + [anon_sym_LT_LT] = ACTIONS(3220), + [anon_sym_GT_GT] = ACTIONS(3222), + [anon_sym_GT_GT_GT] = ACTIONS(3220), + [anon_sym_AMP_CARET] = ACTIONS(3220), + [anon_sym_AMP_AMP] = ACTIONS(3220), + [anon_sym_PIPE_PIPE] = ACTIONS(3220), + [anon_sym_or] = ACTIONS(3222), + [sym_none] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_nil] = ACTIONS(3222), + [anon_sym_QMARK_DOT] = ACTIONS(3220), + [anon_sym_POUND_LBRACK] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_DOLLARif] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3222), + [anon_sym_BANGis] = ACTIONS(3220), + [anon_sym_in] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3220), + [anon_sym_match] = ACTIONS(3222), + [anon_sym_select] = ACTIONS(3222), + [anon_sym_lock] = ACTIONS(3222), + [anon_sym_rlock] = ACTIONS(3222), + [anon_sym_unsafe] = ACTIONS(3222), + [anon_sym_sql] = ACTIONS(3222), + [sym_int_literal] = ACTIONS(3222), + [sym_float_literal] = ACTIONS(3220), + [sym_rune_literal] = ACTIONS(3220), + [sym_pseudo_compile_time_identifier] = ACTIONS(3222), + [anon_sym_shared] = ACTIONS(3222), + [anon_sym_map_LBRACK] = ACTIONS(3220), + [anon_sym_chan] = ACTIONS(3222), + [anon_sym_thread] = ACTIONS(3222), + [anon_sym_atomic] = ACTIONS(3222), + [sym___double_quote] = ACTIONS(3220), + [sym___single_quote] = ACTIONS(3220), + [sym___c_double_quote] = ACTIONS(3220), + [sym___c_single_quote] = ACTIONS(3220), + [sym___r_double_quote] = ACTIONS(3220), + [sym___r_single_quote] = ACTIONS(3220), }, [1383] = { [sym_line_comment] = STATE(1383), - [sym_identifier] = ACTIONS(3187), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), + [sym_block_comment] = STATE(1383), + [sym_identifier] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3170), + [anon_sym_as] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_PIPE] = ACTIONS(3170), + [anon_sym_fn] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_PERCENT] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3168), + [anon_sym_BANG_EQ] = ACTIONS(3168), + [anon_sym_LT_EQ] = ACTIONS(3168), + [anon_sym_GT_EQ] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_RBRACK] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_mut] = ACTIONS(3170), + [anon_sym_COLON] = ACTIONS(3168), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [anon_sym_QMARK] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_go] = ACTIONS(3170), + [anon_sym_spawn] = ACTIONS(3170), + [anon_sym_json_DOTdecode] = ACTIONS(3168), + [anon_sym_LBRACK2] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_CARET] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_LT_DASH] = ACTIONS(3168), + [anon_sym_LT_LT] = ACTIONS(3168), + [anon_sym_GT_GT] = ACTIONS(3170), + [anon_sym_GT_GT_GT] = ACTIONS(3168), + [anon_sym_AMP_CARET] = ACTIONS(3168), + [anon_sym_AMP_AMP] = ACTIONS(3168), + [anon_sym_PIPE_PIPE] = ACTIONS(3168), + [anon_sym_or] = ACTIONS(3170), + [sym_none] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_nil] = ACTIONS(3170), + [anon_sym_QMARK_DOT] = ACTIONS(3168), + [anon_sym_POUND_LBRACK] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_DOLLARif] = ACTIONS(3170), + [anon_sym_is] = ACTIONS(3170), + [anon_sym_BANGis] = ACTIONS(3168), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_BANGin] = ACTIONS(3168), + [anon_sym_match] = ACTIONS(3170), + [anon_sym_select] = ACTIONS(3170), + [anon_sym_lock] = ACTIONS(3170), + [anon_sym_rlock] = ACTIONS(3170), + [anon_sym_unsafe] = ACTIONS(3170), + [anon_sym_sql] = ACTIONS(3170), + [sym_int_literal] = ACTIONS(3170), + [sym_float_literal] = ACTIONS(3168), + [sym_rune_literal] = ACTIONS(3168), + [sym_pseudo_compile_time_identifier] = ACTIONS(3170), + [anon_sym_shared] = ACTIONS(3170), + [anon_sym_map_LBRACK] = ACTIONS(3168), + [anon_sym_chan] = ACTIONS(3170), + [anon_sym_thread] = ACTIONS(3170), + [anon_sym_atomic] = ACTIONS(3170), + [sym___double_quote] = ACTIONS(3168), + [sym___single_quote] = ACTIONS(3168), + [sym___c_double_quote] = ACTIONS(3168), + [sym___c_single_quote] = ACTIONS(3168), + [sym___r_double_quote] = ACTIONS(3168), + [sym___r_single_quote] = ACTIONS(3168), }, [1384] = { [sym_line_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2869), - [anon_sym_as] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_SLASH] = ACTIONS(2869), - [anon_sym_PERCENT] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2869), - [anon_sym_GT] = ACTIONS(2869), - [anon_sym_EQ_EQ] = ACTIONS(2871), - [anon_sym_BANG_EQ] = ACTIONS(2871), - [anon_sym_LT_EQ] = ACTIONS(2871), - [anon_sym_GT_EQ] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_mut] = ACTIONS(2869), - [anon_sym_COLON] = ACTIONS(2871), - [anon_sym_PLUS_PLUS] = ACTIONS(2871), - [anon_sym_DASH_DASH] = ACTIONS(2871), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_BANG] = ACTIONS(2869), - [anon_sym_go] = ACTIONS(2869), - [anon_sym_spawn] = ACTIONS(2869), - [anon_sym_json_DOTdecode] = ACTIONS(2871), - [anon_sym_LBRACK2] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2871), - [anon_sym_CARET] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_LT_DASH] = ACTIONS(2871), - [anon_sym_LT_LT] = ACTIONS(2871), - [anon_sym_GT_GT] = ACTIONS(2869), - [anon_sym_GT_GT_GT] = ACTIONS(2871), - [anon_sym_AMP_CARET] = ACTIONS(2871), - [anon_sym_AMP_AMP] = ACTIONS(2871), - [anon_sym_PIPE_PIPE] = ACTIONS(2871), - [anon_sym_or] = ACTIONS(2869), - [sym_none] = ACTIONS(2869), - [sym_true] = ACTIONS(2869), - [sym_false] = ACTIONS(2869), - [sym_nil] = ACTIONS(2869), - [anon_sym_QMARK_DOT] = ACTIONS(2871), - [anon_sym_POUND_LBRACK] = ACTIONS(2871), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_DOLLARif] = ACTIONS(2869), - [anon_sym_is] = ACTIONS(2869), - [anon_sym_BANGis] = ACTIONS(2871), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_BANGin] = ACTIONS(2871), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_select] = ACTIONS(2869), - [anon_sym_lock] = ACTIONS(2869), - [anon_sym_rlock] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_sql] = ACTIONS(2869), - [sym_int_literal] = ACTIONS(2869), - [sym_float_literal] = ACTIONS(2871), - [sym_rune_literal] = ACTIONS(2871), - [sym_pseudo_compile_time_identifier] = ACTIONS(2869), - [anon_sym_shared] = ACTIONS(2869), - [anon_sym_map_LBRACK] = ACTIONS(2871), - [anon_sym_chan] = ACTIONS(2869), - [anon_sym_thread] = ACTIONS(2869), - [anon_sym_atomic] = ACTIONS(2869), - [sym___double_quote] = ACTIONS(2871), - [sym___single_quote] = ACTIONS(2871), - [sym___c_double_quote] = ACTIONS(2871), - [sym___c_single_quote] = ACTIONS(2871), - [sym___r_double_quote] = ACTIONS(2871), - [sym___r_single_quote] = ACTIONS(2871), + [sym_block_comment] = STATE(1384), + [sym_identifier] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3210), + [anon_sym_as] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_COMMA] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_PIPE] = ACTIONS(3210), + [anon_sym_fn] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_GT] = ACTIONS(3210), + [anon_sym_EQ_EQ] = ACTIONS(3208), + [anon_sym_BANG_EQ] = ACTIONS(3208), + [anon_sym_LT_EQ] = ACTIONS(3208), + [anon_sym_GT_EQ] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_struct] = ACTIONS(3210), + [anon_sym_mut] = ACTIONS(3210), + [anon_sym_COLON] = ACTIONS(3208), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_go] = ACTIONS(3210), + [anon_sym_spawn] = ACTIONS(3210), + [anon_sym_json_DOTdecode] = ACTIONS(3208), + [anon_sym_LBRACK2] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_CARET] = ACTIONS(3208), + [anon_sym_AMP] = ACTIONS(3210), + [anon_sym_LT_DASH] = ACTIONS(3208), + [anon_sym_LT_LT] = ACTIONS(3208), + [anon_sym_GT_GT] = ACTIONS(3210), + [anon_sym_GT_GT_GT] = ACTIONS(3208), + [anon_sym_AMP_CARET] = ACTIONS(3208), + [anon_sym_AMP_AMP] = ACTIONS(3208), + [anon_sym_PIPE_PIPE] = ACTIONS(3208), + [anon_sym_or] = ACTIONS(3210), + [sym_none] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_nil] = ACTIONS(3210), + [anon_sym_QMARK_DOT] = ACTIONS(3208), + [anon_sym_POUND_LBRACK] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_DOLLARif] = ACTIONS(3210), + [anon_sym_is] = ACTIONS(3210), + [anon_sym_BANGis] = ACTIONS(3208), + [anon_sym_in] = ACTIONS(3210), + [anon_sym_BANGin] = ACTIONS(3208), + [anon_sym_match] = ACTIONS(3210), + [anon_sym_select] = ACTIONS(3210), + [anon_sym_lock] = ACTIONS(3210), + [anon_sym_rlock] = ACTIONS(3210), + [anon_sym_unsafe] = ACTIONS(3210), + [anon_sym_sql] = ACTIONS(3210), + [sym_int_literal] = ACTIONS(3210), + [sym_float_literal] = ACTIONS(3208), + [sym_rune_literal] = ACTIONS(3208), + [sym_pseudo_compile_time_identifier] = ACTIONS(3210), + [anon_sym_shared] = ACTIONS(3210), + [anon_sym_map_LBRACK] = ACTIONS(3208), + [anon_sym_chan] = ACTIONS(3210), + [anon_sym_thread] = ACTIONS(3210), + [anon_sym_atomic] = ACTIONS(3210), + [sym___double_quote] = ACTIONS(3208), + [sym___single_quote] = ACTIONS(3208), + [sym___c_double_quote] = ACTIONS(3208), + [sym___c_single_quote] = ACTIONS(3208), + [sym___r_double_quote] = ACTIONS(3208), + [sym___r_single_quote] = ACTIONS(3208), }, [1385] = { [sym_line_comment] = STATE(1385), - [sym_identifier] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_COLON] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [sym_pseudo_compile_time_identifier] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), + [sym_block_comment] = STATE(1385), + [sym_identifier] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_as] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_RBRACK] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_mut] = ACTIONS(3334), + [anon_sym_COLON] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_go] = ACTIONS(3334), + [anon_sym_spawn] = ACTIONS(3334), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3334), + [sym_none] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_nil] = ACTIONS(3334), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_DOLLARif] = ACTIONS(3334), + [anon_sym_is] = ACTIONS(3334), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3334), + [anon_sym_select] = ACTIONS(3334), + [anon_sym_lock] = ACTIONS(3334), + [anon_sym_rlock] = ACTIONS(3334), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3334), + [sym_int_literal] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_shared] = ACTIONS(3334), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3334), + [anon_sym_thread] = ACTIONS(3334), + [anon_sym_atomic] = ACTIONS(3334), + [sym___double_quote] = ACTIONS(3332), + [sym___single_quote] = ACTIONS(3332), + [sym___c_double_quote] = ACTIONS(3332), + [sym___c_single_quote] = ACTIONS(3332), + [sym___r_double_quote] = ACTIONS(3332), + [sym___r_single_quote] = ACTIONS(3332), }, [1386] = { [sym_line_comment] = STATE(1386), - [sym_identifier] = ACTIONS(3383), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3381), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3381), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_AMP_CARET] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3381), - [anon_sym_POUND_LBRACK] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3381), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3381), - [sym_rune_literal] = ACTIONS(3381), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3381), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3381), - [sym___single_quote] = ACTIONS(3381), - [sym___c_double_quote] = ACTIONS(3381), - [sym___c_single_quote] = ACTIONS(3381), - [sym___r_double_quote] = ACTIONS(3381), - [sym___r_single_quote] = ACTIONS(3381), + [sym_block_comment] = STATE(1386), + [sym_identifier] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_as] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_RBRACK] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_go] = ACTIONS(3342), + [anon_sym_spawn] = ACTIONS(3342), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3342), + [sym_none] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_nil] = ACTIONS(3342), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_DOLLARif] = ACTIONS(3342), + [anon_sym_is] = ACTIONS(3342), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3342), + [anon_sym_select] = ACTIONS(3342), + [anon_sym_lock] = ACTIONS(3342), + [anon_sym_rlock] = ACTIONS(3342), + [anon_sym_unsafe] = ACTIONS(3342), + [anon_sym_sql] = ACTIONS(3342), + [sym_int_literal] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3342), + [anon_sym_shared] = ACTIONS(3342), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3342), + [anon_sym_thread] = ACTIONS(3342), + [anon_sym_atomic] = ACTIONS(3342), + [sym___double_quote] = ACTIONS(3340), + [sym___single_quote] = ACTIONS(3340), + [sym___c_double_quote] = ACTIONS(3340), + [sym___c_single_quote] = ACTIONS(3340), + [sym___r_double_quote] = ACTIONS(3340), + [sym___r_single_quote] = ACTIONS(3340), }, [1387] = { [sym_line_comment] = STATE(1387), - [sym_identifier] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_mut] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3143), - [anon_sym_spawn] = ACTIONS(3143), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_nil] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_DOLLARif] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_rlock] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_sql] = ACTIONS(3143), - [sym_int_literal] = ACTIONS(3143), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [sym_block_comment] = STATE(1387), + [sym_identifier] = ACTIONS(3154), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3154), + [anon_sym_as] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3154), + [anon_sym_fn] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_PERCENT] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_GT] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_LT_EQ] = ACTIONS(3152), + [anon_sym_GT_EQ] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_struct] = ACTIONS(3154), + [anon_sym_mut] = ACTIONS(3154), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_QMARK] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_go] = ACTIONS(3154), + [anon_sym_spawn] = ACTIONS(3154), + [anon_sym_json_DOTdecode] = ACTIONS(3152), + [anon_sym_LBRACK2] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_CARET] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3154), + [anon_sym_LT_DASH] = ACTIONS(3152), + [anon_sym_LT_LT] = ACTIONS(3152), + [anon_sym_GT_GT] = ACTIONS(3154), + [anon_sym_GT_GT_GT] = ACTIONS(3152), + [anon_sym_AMP_CARET] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3152), + [anon_sym_PIPE_PIPE] = ACTIONS(3152), + [anon_sym_or] = ACTIONS(3154), + [sym_none] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_nil] = ACTIONS(3154), + [anon_sym_QMARK_DOT] = ACTIONS(3152), + [anon_sym_POUND_LBRACK] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_DOLLARif] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3154), + [anon_sym_BANGis] = ACTIONS(3152), + [anon_sym_in] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3152), + [anon_sym_match] = ACTIONS(3154), + [anon_sym_select] = ACTIONS(3154), + [anon_sym_lock] = ACTIONS(3154), + [anon_sym_rlock] = ACTIONS(3154), + [anon_sym_unsafe] = ACTIONS(3154), + [anon_sym_sql] = ACTIONS(3154), + [sym_int_literal] = ACTIONS(3154), + [sym_float_literal] = ACTIONS(3152), + [sym_rune_literal] = ACTIONS(3152), + [sym_pseudo_compile_time_identifier] = ACTIONS(3154), + [anon_sym_shared] = ACTIONS(3154), + [anon_sym_map_LBRACK] = ACTIONS(3152), + [anon_sym_chan] = ACTIONS(3154), + [anon_sym_thread] = ACTIONS(3154), + [anon_sym_atomic] = ACTIONS(3154), + [sym___double_quote] = ACTIONS(3152), + [sym___single_quote] = ACTIONS(3152), + [sym___c_double_quote] = ACTIONS(3152), + [sym___c_single_quote] = ACTIONS(3152), + [sym___r_double_quote] = ACTIONS(3152), + [sym___r_single_quote] = ACTIONS(3152), }, [1388] = { [sym_line_comment] = STATE(1388), - [sym_identifier] = ACTIONS(3207), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_AMP_CARET] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3205), - [anon_sym_POUND_LBRACK] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3205), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3205), - [sym___single_quote] = ACTIONS(3205), - [sym___c_double_quote] = ACTIONS(3205), - [sym___c_single_quote] = ACTIONS(3205), - [sym___r_double_quote] = ACTIONS(3205), - [sym___r_single_quote] = ACTIONS(3205), + [sym_block_comment] = STATE(1388), + [sym_identifier] = ACTIONS(3142), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3142), + [anon_sym_as] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_COMMA] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_fn] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_PERCENT] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_GT] = ACTIONS(3142), + [anon_sym_EQ_EQ] = ACTIONS(3140), + [anon_sym_BANG_EQ] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(3140), + [anon_sym_GT_EQ] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_struct] = ACTIONS(3142), + [anon_sym_mut] = ACTIONS(3142), + [anon_sym_COLON] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_go] = ACTIONS(3142), + [anon_sym_spawn] = ACTIONS(3142), + [anon_sym_json_DOTdecode] = ACTIONS(3140), + [anon_sym_LBRACK2] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_CARET] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_LT_DASH] = ACTIONS(3140), + [anon_sym_LT_LT] = ACTIONS(3140), + [anon_sym_GT_GT] = ACTIONS(3142), + [anon_sym_GT_GT_GT] = ACTIONS(3140), + [anon_sym_AMP_CARET] = ACTIONS(3140), + [anon_sym_AMP_AMP] = ACTIONS(3140), + [anon_sym_PIPE_PIPE] = ACTIONS(3140), + [anon_sym_or] = ACTIONS(3142), + [sym_none] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nil] = ACTIONS(3142), + [anon_sym_QMARK_DOT] = ACTIONS(3140), + [anon_sym_POUND_LBRACK] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_DOLLARif] = ACTIONS(3142), + [anon_sym_is] = ACTIONS(3142), + [anon_sym_BANGis] = ACTIONS(3140), + [anon_sym_in] = ACTIONS(3142), + [anon_sym_BANGin] = ACTIONS(3140), + [anon_sym_match] = ACTIONS(3142), + [anon_sym_select] = ACTIONS(3142), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(3142), + [anon_sym_sql] = ACTIONS(3142), + [sym_int_literal] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3140), + [sym_rune_literal] = ACTIONS(3140), + [sym_pseudo_compile_time_identifier] = ACTIONS(3142), + [anon_sym_shared] = ACTIONS(3142), + [anon_sym_map_LBRACK] = ACTIONS(3140), + [anon_sym_chan] = ACTIONS(3142), + [anon_sym_thread] = ACTIONS(3142), + [anon_sym_atomic] = ACTIONS(3142), + [sym___double_quote] = ACTIONS(3140), + [sym___single_quote] = ACTIONS(3140), + [sym___c_double_quote] = ACTIONS(3140), + [sym___c_single_quote] = ACTIONS(3140), + [sym___r_double_quote] = ACTIONS(3140), + [sym___r_single_quote] = ACTIONS(3140), }, [1389] = { [sym_line_comment] = STATE(1389), - [sym_identifier] = ACTIONS(3203), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_AMP_CARET] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3201), - [sym___single_quote] = ACTIONS(3201), - [sym___c_double_quote] = ACTIONS(3201), - [sym___c_single_quote] = ACTIONS(3201), - [sym___r_double_quote] = ACTIONS(3201), - [sym___r_single_quote] = ACTIONS(3201), + [sym_block_comment] = STATE(1389), + [sym_identifier] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_as] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_COMMA] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_RBRACK] = ACTIONS(3352), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_COLON] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_QMARK] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_go] = ACTIONS(3354), + [anon_sym_spawn] = ACTIONS(3354), + [anon_sym_json_DOTdecode] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_or] = ACTIONS(3354), + [sym_none] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_nil] = ACTIONS(3354), + [anon_sym_QMARK_DOT] = ACTIONS(3352), + [anon_sym_POUND_LBRACK] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_DOLLARif] = ACTIONS(3354), + [anon_sym_is] = ACTIONS(3354), + [anon_sym_BANGis] = ACTIONS(3352), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_BANGin] = ACTIONS(3352), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_rlock] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3354), + [sym_int_literal] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3352), + [sym_rune_literal] = ACTIONS(3352), + [sym_pseudo_compile_time_identifier] = ACTIONS(3354), + [anon_sym_shared] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3352), + [anon_sym_chan] = ACTIONS(3354), + [anon_sym_thread] = ACTIONS(3354), + [anon_sym_atomic] = ACTIONS(3354), + [sym___double_quote] = ACTIONS(3352), + [sym___single_quote] = ACTIONS(3352), + [sym___c_double_quote] = ACTIONS(3352), + [sym___c_single_quote] = ACTIONS(3352), + [sym___r_double_quote] = ACTIONS(3352), + [sym___r_single_quote] = ACTIONS(3352), }, [1390] = { [sym_line_comment] = STATE(1390), - [sym_identifier] = ACTIONS(3155), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_as] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_is] = ACTIONS(3155), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3155), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [sym_pseudo_compile_time_identifier] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), + [sym_block_comment] = STATE(1390), + [sym_identifier] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_as] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_RBRACK] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_mut] = ACTIONS(3358), + [anon_sym_COLON] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_go] = ACTIONS(3358), + [anon_sym_spawn] = ACTIONS(3358), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3358), + [sym_none] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_nil] = ACTIONS(3358), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_DOLLARif] = ACTIONS(3358), + [anon_sym_is] = ACTIONS(3358), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_select] = ACTIONS(3358), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3358), + [anon_sym_sql] = ACTIONS(3358), + [sym_int_literal] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3358), + [anon_sym_shared] = ACTIONS(3358), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3358), + [anon_sym_thread] = ACTIONS(3358), + [anon_sym_atomic] = ACTIONS(3358), + [sym___double_quote] = ACTIONS(3356), + [sym___single_quote] = ACTIONS(3356), + [sym___c_double_quote] = ACTIONS(3356), + [sym___c_single_quote] = ACTIONS(3356), + [sym___r_double_quote] = ACTIONS(3356), + [sym___r_single_quote] = ACTIONS(3356), }, [1391] = { [sym_line_comment] = STATE(1391), - [sym_identifier] = ACTIONS(3081), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(3079), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3079), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3079), - [anon_sym_AMP_CARET] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3079), - [anon_sym_POUND_LBRACK] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3079), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3079), - [sym_rune_literal] = ACTIONS(3079), - [sym_pseudo_compile_time_identifier] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3079), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3079), - [sym___single_quote] = ACTIONS(3079), - [sym___c_double_quote] = ACTIONS(3079), - [sym___c_single_quote] = ACTIONS(3079), - [sym___r_double_quote] = ACTIONS(3079), - [sym___r_single_quote] = ACTIONS(3079), + [sym_block_comment] = STATE(1391), + [sym_identifier] = ACTIONS(3116), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3035), + [anon_sym_as] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_COMMA] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3032), + [anon_sym_PIPE] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_STAR] = ACTIONS(3032), + [anon_sym_SLASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3032), + [anon_sym_LT] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3032), + [anon_sym_BANG_EQ] = ACTIONS(3032), + [anon_sym_LT_EQ] = ACTIONS(3032), + [anon_sym_GT_EQ] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(3032), + [anon_sym_RBRACK] = ACTIONS(3114), + [anon_sym_struct] = ACTIONS(3116), + [anon_sym_mut] = ACTIONS(3116), + [anon_sym_COLON] = ACTIONS(3114), + [anon_sym_PLUS_PLUS] = ACTIONS(3032), + [anon_sym_DASH_DASH] = ACTIONS(3032), + [anon_sym_QMARK] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3035), + [anon_sym_go] = ACTIONS(3116), + [anon_sym_spawn] = ACTIONS(3116), + [anon_sym_json_DOTdecode] = ACTIONS(3114), + [anon_sym_LBRACK2] = ACTIONS(3035), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_CARET] = ACTIONS(3032), + [anon_sym_AMP] = ACTIONS(3035), + [anon_sym_LT_DASH] = ACTIONS(3114), + [anon_sym_LT_LT] = ACTIONS(3032), + [anon_sym_GT_GT] = ACTIONS(3035), + [anon_sym_GT_GT_GT] = ACTIONS(3032), + [anon_sym_AMP_CARET] = ACTIONS(3032), + [anon_sym_AMP_AMP] = ACTIONS(3032), + [anon_sym_PIPE_PIPE] = ACTIONS(3032), + [anon_sym_or] = ACTIONS(3035), + [sym_none] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_nil] = ACTIONS(3116), + [anon_sym_QMARK_DOT] = ACTIONS(3032), + [anon_sym_POUND_LBRACK] = ACTIONS(3032), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_DOLLARif] = ACTIONS(3116), + [anon_sym_is] = ACTIONS(3035), + [anon_sym_BANGis] = ACTIONS(3032), + [anon_sym_in] = ACTIONS(3035), + [anon_sym_BANGin] = ACTIONS(3032), + [anon_sym_match] = ACTIONS(3116), + [anon_sym_select] = ACTIONS(3116), + [anon_sym_lock] = ACTIONS(3116), + [anon_sym_rlock] = ACTIONS(3116), + [anon_sym_unsafe] = ACTIONS(3116), + [anon_sym_sql] = ACTIONS(3116), + [sym_int_literal] = ACTIONS(3116), + [sym_float_literal] = ACTIONS(3114), + [sym_rune_literal] = ACTIONS(3114), + [sym_pseudo_compile_time_identifier] = ACTIONS(3116), + [anon_sym_shared] = ACTIONS(3116), + [anon_sym_map_LBRACK] = ACTIONS(3114), + [anon_sym_chan] = ACTIONS(3116), + [anon_sym_thread] = ACTIONS(3116), + [anon_sym_atomic] = ACTIONS(3116), + [sym___double_quote] = ACTIONS(3114), + [sym___single_quote] = ACTIONS(3114), + [sym___c_double_quote] = ACTIONS(3114), + [sym___c_single_quote] = ACTIONS(3114), + [sym___r_double_quote] = ACTIONS(3114), + [sym___r_single_quote] = ACTIONS(3114), }, [1392] = { [sym_line_comment] = STATE(1392), - [sym_identifier] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_as] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_fn] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3123), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3123), - [anon_sym_GT] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_RBRACK] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_COLON] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_go] = ACTIONS(3123), - [anon_sym_spawn] = ACTIONS(3123), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3123), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_nil] = ACTIONS(3123), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_DOLLARif] = ACTIONS(3123), - [anon_sym_is] = ACTIONS(3123), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_sql] = ACTIONS(3123), - [sym_int_literal] = ACTIONS(3123), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [sym_pseudo_compile_time_identifier] = ACTIONS(3123), - [anon_sym_shared] = ACTIONS(3123), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3123), - [anon_sym_thread] = ACTIONS(3123), - [anon_sym_atomic] = ACTIONS(3123), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), + [sym_block_comment] = STATE(1392), + [sym_identifier] = ACTIONS(3044), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3026), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_fn] = ACTIONS(3044), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3026), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PERCENT] = ACTIONS(3026), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_EQ_EQ] = ACTIONS(3026), + [anon_sym_BANG_EQ] = ACTIONS(3026), + [anon_sym_LT_EQ] = ACTIONS(3026), + [anon_sym_GT_EQ] = ACTIONS(3026), + [anon_sym_LBRACK] = ACTIONS(3026), + [anon_sym_RBRACK] = ACTIONS(3042), + [anon_sym_struct] = ACTIONS(3044), + [anon_sym_mut] = ACTIONS(3044), + [anon_sym_COLON] = ACTIONS(3042), + [anon_sym_PLUS_PLUS] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(3026), + [anon_sym_QMARK] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_go] = ACTIONS(3044), + [anon_sym_spawn] = ACTIONS(3044), + [anon_sym_json_DOTdecode] = ACTIONS(3042), + [anon_sym_LBRACK2] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3042), + [anon_sym_CARET] = ACTIONS(3026), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_LT_DASH] = ACTIONS(3042), + [anon_sym_LT_LT] = ACTIONS(3026), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3026), + [anon_sym_AMP_CARET] = ACTIONS(3026), + [anon_sym_AMP_AMP] = ACTIONS(3026), + [anon_sym_PIPE_PIPE] = ACTIONS(3026), + [anon_sym_or] = ACTIONS(3029), + [sym_none] = ACTIONS(3044), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_nil] = ACTIONS(3044), + [anon_sym_QMARK_DOT] = ACTIONS(3026), + [anon_sym_POUND_LBRACK] = ACTIONS(3026), + [anon_sym_if] = ACTIONS(3044), + [anon_sym_DOLLARif] = ACTIONS(3044), + [anon_sym_is] = ACTIONS(3029), + [anon_sym_BANGis] = ACTIONS(3026), + [anon_sym_in] = ACTIONS(3029), + [anon_sym_BANGin] = ACTIONS(3026), + [anon_sym_match] = ACTIONS(3044), + [anon_sym_select] = ACTIONS(3044), + [anon_sym_lock] = ACTIONS(3044), + [anon_sym_rlock] = ACTIONS(3044), + [anon_sym_unsafe] = ACTIONS(3044), + [anon_sym_sql] = ACTIONS(3044), + [sym_int_literal] = ACTIONS(3044), + [sym_float_literal] = ACTIONS(3042), + [sym_rune_literal] = ACTIONS(3042), + [sym_pseudo_compile_time_identifier] = ACTIONS(3044), + [anon_sym_shared] = ACTIONS(3044), + [anon_sym_map_LBRACK] = ACTIONS(3042), + [anon_sym_chan] = ACTIONS(3044), + [anon_sym_thread] = ACTIONS(3044), + [anon_sym_atomic] = ACTIONS(3044), + [sym___double_quote] = ACTIONS(3042), + [sym___single_quote] = ACTIONS(3042), + [sym___c_double_quote] = ACTIONS(3042), + [sym___c_single_quote] = ACTIONS(3042), + [sym___r_double_quote] = ACTIONS(3042), + [sym___r_single_quote] = ACTIONS(3042), }, [1393] = { [sym_line_comment] = STATE(1393), - [sym_identifier] = ACTIONS(3379), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3377), - [anon_sym_BANG_EQ] = ACTIONS(3377), - [anon_sym_LT_EQ] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3377), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3377), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3377), - [anon_sym_AMP_CARET] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3377), - [anon_sym_POUND_LBRACK] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3377), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3377), - [sym_rune_literal] = ACTIONS(3377), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3377), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3377), - [sym___single_quote] = ACTIONS(3377), - [sym___c_double_quote] = ACTIONS(3377), - [sym___c_single_quote] = ACTIONS(3377), - [sym___r_double_quote] = ACTIONS(3377), - [sym___r_single_quote] = ACTIONS(3377), + [sym_block_comment] = STATE(1393), + [sym_identifier] = ACTIONS(3394), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3394), + [anon_sym_as] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3394), + [anon_sym_fn] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3394), + [anon_sym_GT] = ACTIONS(3394), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_RBRACK] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3394), + [anon_sym_mut] = ACTIONS(3394), + [anon_sym_COLON] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_go] = ACTIONS(3394), + [anon_sym_spawn] = ACTIONS(3394), + [anon_sym_json_DOTdecode] = ACTIONS(3392), + [anon_sym_LBRACK2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3394), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3394), + [sym_none] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_nil] = ACTIONS(3394), + [anon_sym_QMARK_DOT] = ACTIONS(3392), + [anon_sym_POUND_LBRACK] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_DOLLARif] = ACTIONS(3394), + [anon_sym_is] = ACTIONS(3394), + [anon_sym_BANGis] = ACTIONS(3392), + [anon_sym_in] = ACTIONS(3394), + [anon_sym_BANGin] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3394), + [anon_sym_select] = ACTIONS(3394), + [anon_sym_lock] = ACTIONS(3394), + [anon_sym_rlock] = ACTIONS(3394), + [anon_sym_unsafe] = ACTIONS(3394), + [anon_sym_sql] = ACTIONS(3394), + [sym_int_literal] = ACTIONS(3394), + [sym_float_literal] = ACTIONS(3392), + [sym_rune_literal] = ACTIONS(3392), + [sym_pseudo_compile_time_identifier] = ACTIONS(3394), + [anon_sym_shared] = ACTIONS(3394), + [anon_sym_map_LBRACK] = ACTIONS(3392), + [anon_sym_chan] = ACTIONS(3394), + [anon_sym_thread] = ACTIONS(3394), + [anon_sym_atomic] = ACTIONS(3394), + [sym___double_quote] = ACTIONS(3392), + [sym___single_quote] = ACTIONS(3392), + [sym___c_double_quote] = ACTIONS(3392), + [sym___c_single_quote] = ACTIONS(3392), + [sym___r_double_quote] = ACTIONS(3392), + [sym___r_single_quote] = ACTIONS(3392), }, [1394] = { [sym_line_comment] = STATE(1394), - [sym_identifier] = ACTIONS(3199), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), + [sym_block_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3294), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3294), + [anon_sym_as] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_COMMA] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_PIPE] = ACTIONS(3294), + [anon_sym_fn] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_PERCENT] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_GT] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3292), + [anon_sym_BANG_EQ] = ACTIONS(3292), + [anon_sym_LT_EQ] = ACTIONS(3292), + [anon_sym_GT_EQ] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_RBRACK] = ACTIONS(3292), + [anon_sym_struct] = ACTIONS(3294), + [anon_sym_mut] = ACTIONS(3294), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_QMARK] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_go] = ACTIONS(3294), + [anon_sym_spawn] = ACTIONS(3294), + [anon_sym_json_DOTdecode] = ACTIONS(3292), + [anon_sym_LBRACK2] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_CARET] = ACTIONS(3292), + [anon_sym_AMP] = ACTIONS(3294), + [anon_sym_LT_DASH] = ACTIONS(3292), + [anon_sym_LT_LT] = ACTIONS(3292), + [anon_sym_GT_GT] = ACTIONS(3294), + [anon_sym_GT_GT_GT] = ACTIONS(3292), + [anon_sym_AMP_CARET] = ACTIONS(3292), + [anon_sym_AMP_AMP] = ACTIONS(3292), + [anon_sym_PIPE_PIPE] = ACTIONS(3292), + [anon_sym_or] = ACTIONS(3294), + [sym_none] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_nil] = ACTIONS(3294), + [anon_sym_QMARK_DOT] = ACTIONS(3292), + [anon_sym_POUND_LBRACK] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_DOLLARif] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3294), + [anon_sym_BANGis] = ACTIONS(3292), + [anon_sym_in] = ACTIONS(3294), + [anon_sym_BANGin] = ACTIONS(3292), + [anon_sym_match] = ACTIONS(3294), + [anon_sym_select] = ACTIONS(3294), + [anon_sym_lock] = ACTIONS(3294), + [anon_sym_rlock] = ACTIONS(3294), + [anon_sym_unsafe] = ACTIONS(3294), + [anon_sym_sql] = ACTIONS(3294), + [sym_int_literal] = ACTIONS(3294), + [sym_float_literal] = ACTIONS(3292), + [sym_rune_literal] = ACTIONS(3292), + [sym_pseudo_compile_time_identifier] = ACTIONS(3294), + [anon_sym_shared] = ACTIONS(3294), + [anon_sym_map_LBRACK] = ACTIONS(3292), + [anon_sym_chan] = ACTIONS(3294), + [anon_sym_thread] = ACTIONS(3294), + [anon_sym_atomic] = ACTIONS(3294), + [sym___double_quote] = ACTIONS(3292), + [sym___single_quote] = ACTIONS(3292), + [sym___c_double_quote] = ACTIONS(3292), + [sym___c_single_quote] = ACTIONS(3292), + [sym___r_double_quote] = ACTIONS(3292), + [sym___r_single_quote] = ACTIONS(3292), }, [1395] = { [sym_line_comment] = STATE(1395), - [sym_identifier] = ACTIONS(3375), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3373), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3373), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_AMP_CARET] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3373), - [anon_sym_POUND_LBRACK] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3373), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3373), - [sym_rune_literal] = ACTIONS(3373), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3373), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3373), - [sym___single_quote] = ACTIONS(3373), - [sym___c_double_quote] = ACTIONS(3373), - [sym___c_single_quote] = ACTIONS(3373), - [sym___r_double_quote] = ACTIONS(3373), - [sym___r_single_quote] = ACTIONS(3373), + [sym_block_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3368), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3368), + [anon_sym_POUND_LBRACK] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3368), + [sym_rune_literal] = ACTIONS(3368), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3368), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3368), + [sym___single_quote] = ACTIONS(3368), + [sym___c_double_quote] = ACTIONS(3368), + [sym___c_single_quote] = ACTIONS(3368), + [sym___r_double_quote] = ACTIONS(3368), + [sym___r_single_quote] = ACTIONS(3368), }, [1396] = { [sym_line_comment] = STATE(1396), - [sym_identifier] = ACTIONS(3045), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_COLON] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [sym_pseudo_compile_time_identifier] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3043), - [sym___single_quote] = ACTIONS(3043), - [sym___c_double_quote] = ACTIONS(3043), - [sym___c_single_quote] = ACTIONS(3043), - [sym___r_double_quote] = ACTIONS(3043), - [sym___r_single_quote] = ACTIONS(3043), + [sym_block_comment] = STATE(1396), + [sym_identifier] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3376), + [anon_sym_BANG_EQ] = ACTIONS(3376), + [anon_sym_LT_EQ] = ACTIONS(3376), + [anon_sym_GT_EQ] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_RBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3376), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3376), + [anon_sym_LT_LT] = ACTIONS(3376), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3376), + [anon_sym_AMP_CARET] = ACTIONS(3376), + [anon_sym_AMP_AMP] = ACTIONS(3376), + [anon_sym_PIPE_PIPE] = ACTIONS(3376), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3376), + [anon_sym_POUND_LBRACK] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3376), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3376), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3376), + [sym_rune_literal] = ACTIONS(3376), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3376), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3376), + [sym___single_quote] = ACTIONS(3376), + [sym___c_double_quote] = ACTIONS(3376), + [sym___c_single_quote] = ACTIONS(3376), + [sym___r_double_quote] = ACTIONS(3376), + [sym___r_single_quote] = ACTIONS(3376), }, [1397] = { [sym_line_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3943), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3943), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_COLON] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), + [sym_block_comment] = STATE(1397), + [sym_identifier] = ACTIONS(3166), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3166), + [anon_sym_as] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_COMMA] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_PIPE] = ACTIONS(3166), + [anon_sym_fn] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_PERCENT] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_EQ_EQ] = ACTIONS(3164), + [anon_sym_BANG_EQ] = ACTIONS(3164), + [anon_sym_LT_EQ] = ACTIONS(3164), + [anon_sym_GT_EQ] = ACTIONS(3164), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_RBRACK] = ACTIONS(3164), + [anon_sym_struct] = ACTIONS(3166), + [anon_sym_mut] = ACTIONS(3166), + [anon_sym_COLON] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [anon_sym_QMARK] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_go] = ACTIONS(3166), + [anon_sym_spawn] = ACTIONS(3166), + [anon_sym_json_DOTdecode] = ACTIONS(3164), + [anon_sym_LBRACK2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_CARET] = ACTIONS(3164), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_LT_DASH] = ACTIONS(3164), + [anon_sym_LT_LT] = ACTIONS(3164), + [anon_sym_GT_GT] = ACTIONS(3166), + [anon_sym_GT_GT_GT] = ACTIONS(3164), + [anon_sym_AMP_CARET] = ACTIONS(3164), + [anon_sym_AMP_AMP] = ACTIONS(3164), + [anon_sym_PIPE_PIPE] = ACTIONS(3164), + [anon_sym_or] = ACTIONS(3166), + [sym_none] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_nil] = ACTIONS(3166), + [anon_sym_QMARK_DOT] = ACTIONS(3164), + [anon_sym_POUND_LBRACK] = ACTIONS(3164), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_DOLLARif] = ACTIONS(3166), + [anon_sym_is] = ACTIONS(3166), + [anon_sym_BANGis] = ACTIONS(3164), + [anon_sym_in] = ACTIONS(3166), + [anon_sym_BANGin] = ACTIONS(3164), + [anon_sym_match] = ACTIONS(3166), + [anon_sym_select] = ACTIONS(3166), + [anon_sym_lock] = ACTIONS(3166), + [anon_sym_rlock] = ACTIONS(3166), + [anon_sym_unsafe] = ACTIONS(3166), + [anon_sym_sql] = ACTIONS(3166), + [sym_int_literal] = ACTIONS(3166), + [sym_float_literal] = ACTIONS(3164), + [sym_rune_literal] = ACTIONS(3164), + [sym_pseudo_compile_time_identifier] = ACTIONS(3166), + [anon_sym_shared] = ACTIONS(3166), + [anon_sym_map_LBRACK] = ACTIONS(3164), + [anon_sym_chan] = ACTIONS(3166), + [anon_sym_thread] = ACTIONS(3166), + [anon_sym_atomic] = ACTIONS(3166), + [sym___double_quote] = ACTIONS(3164), + [sym___single_quote] = ACTIONS(3164), + [sym___c_double_quote] = ACTIONS(3164), + [sym___c_single_quote] = ACTIONS(3164), + [sym___r_double_quote] = ACTIONS(3164), + [sym___r_single_quote] = ACTIONS(3164), }, [1398] = { [sym_line_comment] = STATE(1398), - [sym_identifier] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_COLON] = ACTIONS(3039), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [sym_pseudo_compile_time_identifier] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3039), - [sym___single_quote] = ACTIONS(3039), - [sym___c_double_quote] = ACTIONS(3039), - [sym___c_single_quote] = ACTIONS(3039), - [sym___r_double_quote] = ACTIONS(3039), - [sym___r_single_quote] = ACTIONS(3039), + [sym_block_comment] = STATE(1398), + [sym_identifier] = ACTIONS(3402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3402), + [anon_sym_as] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_COMMA] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_fn] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_RBRACK] = ACTIONS(3400), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_mut] = ACTIONS(3402), + [anon_sym_COLON] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_go] = ACTIONS(3402), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(3400), + [anon_sym_LBRACK2] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_or] = ACTIONS(3402), + [sym_none] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_nil] = ACTIONS(3402), + [anon_sym_QMARK_DOT] = ACTIONS(3400), + [anon_sym_POUND_LBRACK] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_is] = ACTIONS(3402), + [anon_sym_BANGis] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_BANGin] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_select] = ACTIONS(3402), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_sql] = ACTIONS(3402), + [sym_int_literal] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3400), + [sym_rune_literal] = ACTIONS(3400), + [sym_pseudo_compile_time_identifier] = ACTIONS(3402), + [anon_sym_shared] = ACTIONS(3402), + [anon_sym_map_LBRACK] = ACTIONS(3400), + [anon_sym_chan] = ACTIONS(3402), + [anon_sym_thread] = ACTIONS(3402), + [anon_sym_atomic] = ACTIONS(3402), + [sym___double_quote] = ACTIONS(3400), + [sym___single_quote] = ACTIONS(3400), + [sym___c_double_quote] = ACTIONS(3400), + [sym___c_single_quote] = ACTIONS(3400), + [sym___r_double_quote] = ACTIONS(3400), + [sym___r_single_quote] = ACTIONS(3400), }, [1399] = { [sym_line_comment] = STATE(1399), - [sym_identifier] = ACTIONS(3195), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), + [sym_block_comment] = STATE(1399), + [sym_identifier] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2975), + [anon_sym_as] = ACTIONS(2975), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_COMMA] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_SLASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2973), + [anon_sym_BANG_EQ] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_RBRACK] = ACTIONS(2973), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_mut] = ACTIONS(2975), + [anon_sym_COLON] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2973), + [anon_sym_DASH_DASH] = ACTIONS(2973), + [anon_sym_QMARK] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_go] = ACTIONS(2975), + [anon_sym_spawn] = ACTIONS(2975), + [anon_sym_json_DOTdecode] = ACTIONS(2973), + [anon_sym_LBRACK2] = ACTIONS(2975), + [anon_sym_TILDE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2975), + [anon_sym_LT_DASH] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2975), + [anon_sym_GT_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_CARET] = ACTIONS(2973), + [anon_sym_AMP_AMP] = ACTIONS(2973), + [anon_sym_PIPE_PIPE] = ACTIONS(2973), + [anon_sym_or] = ACTIONS(2975), + [sym_none] = ACTIONS(2975), + [sym_true] = ACTIONS(2975), + [sym_false] = ACTIONS(2975), + [sym_nil] = ACTIONS(2975), + [anon_sym_QMARK_DOT] = ACTIONS(2973), + [anon_sym_POUND_LBRACK] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_DOLLARif] = ACTIONS(2975), + [anon_sym_is] = ACTIONS(2975), + [anon_sym_BANGis] = ACTIONS(2973), + [anon_sym_in] = ACTIONS(2975), + [anon_sym_BANGin] = ACTIONS(2973), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_select] = ACTIONS(2975), + [anon_sym_lock] = ACTIONS(2975), + [anon_sym_rlock] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_sql] = ACTIONS(2975), + [sym_int_literal] = ACTIONS(2975), + [sym_float_literal] = ACTIONS(2973), + [sym_rune_literal] = ACTIONS(2973), + [sym_pseudo_compile_time_identifier] = ACTIONS(2975), + [anon_sym_shared] = ACTIONS(2975), + [anon_sym_map_LBRACK] = ACTIONS(2973), + [anon_sym_chan] = ACTIONS(2975), + [anon_sym_thread] = ACTIONS(2975), + [anon_sym_atomic] = ACTIONS(2975), + [sym___double_quote] = ACTIONS(2973), + [sym___single_quote] = ACTIONS(2973), + [sym___c_double_quote] = ACTIONS(2973), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2973), + [sym___r_single_quote] = ACTIONS(2973), }, [1400] = { [sym_line_comment] = STATE(1400), - [sym_identifier] = ACTIONS(3371), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3369), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3369), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3369), - [anon_sym_POUND_LBRACK] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3369), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3369), - [sym_rune_literal] = ACTIONS(3369), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3369), - [sym___single_quote] = ACTIONS(3369), - [sym___c_double_quote] = ACTIONS(3369), - [sym___c_single_quote] = ACTIONS(3369), - [sym___r_double_quote] = ACTIONS(3369), - [sym___r_single_quote] = ACTIONS(3369), + [sym_block_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_as] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_RBRACK] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_mut] = ACTIONS(3338), + [anon_sym_COLON] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_go] = ACTIONS(3338), + [anon_sym_spawn] = ACTIONS(3338), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3338), + [sym_none] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_nil] = ACTIONS(3338), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_DOLLARif] = ACTIONS(3338), + [anon_sym_is] = ACTIONS(3338), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3338), + [anon_sym_select] = ACTIONS(3338), + [anon_sym_lock] = ACTIONS(3338), + [anon_sym_rlock] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(3338), + [anon_sym_sql] = ACTIONS(3338), + [sym_int_literal] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3338), + [anon_sym_shared] = ACTIONS(3338), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3338), + [anon_sym_thread] = ACTIONS(3338), + [anon_sym_atomic] = ACTIONS(3338), + [sym___double_quote] = ACTIONS(3336), + [sym___single_quote] = ACTIONS(3336), + [sym___c_double_quote] = ACTIONS(3336), + [sym___c_single_quote] = ACTIONS(3336), + [sym___r_double_quote] = ACTIONS(3336), + [sym___r_single_quote] = ACTIONS(3336), }, [1401] = { [sym_line_comment] = STATE(1401), - [sym_identifier] = ACTIONS(3423), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_as] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3423), - [anon_sym_fn] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_GT] = ACTIONS(3423), - [anon_sym_EQ_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3421), - [anon_sym_struct] = ACTIONS(3423), - [anon_sym_mut] = ACTIONS(3423), - [anon_sym_COLON] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_go] = ACTIONS(3423), - [anon_sym_spawn] = ACTIONS(3423), - [anon_sym_json_DOTdecode] = ACTIONS(3421), - [anon_sym_LBRACK2] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3423), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3423), - [anon_sym_GT_GT_GT] = ACTIONS(3421), - [anon_sym_AMP_CARET] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3423), - [sym_none] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_nil] = ACTIONS(3423), - [anon_sym_QMARK_DOT] = ACTIONS(3421), - [anon_sym_POUND_LBRACK] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOLLARif] = ACTIONS(3423), - [anon_sym_is] = ACTIONS(3423), - [anon_sym_BANGis] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3423), - [anon_sym_BANGin] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3423), - [anon_sym_select] = ACTIONS(3423), - [anon_sym_lock] = ACTIONS(3423), - [anon_sym_rlock] = ACTIONS(3423), - [anon_sym_unsafe] = ACTIONS(3423), - [anon_sym_sql] = ACTIONS(3423), - [sym_int_literal] = ACTIONS(3423), - [sym_float_literal] = ACTIONS(3421), - [sym_rune_literal] = ACTIONS(3421), - [sym_pseudo_compile_time_identifier] = ACTIONS(3423), - [anon_sym_shared] = ACTIONS(3423), - [anon_sym_map_LBRACK] = ACTIONS(3421), - [anon_sym_chan] = ACTIONS(3423), - [anon_sym_thread] = ACTIONS(3423), - [anon_sym_atomic] = ACTIONS(3423), - [sym___double_quote] = ACTIONS(3421), - [sym___single_quote] = ACTIONS(3421), - [sym___c_double_quote] = ACTIONS(3421), - [sym___c_single_quote] = ACTIONS(3421), - [sym___r_double_quote] = ACTIONS(3421), - [sym___r_single_quote] = ACTIONS(3421), + [sym_block_comment] = STATE(1401), + [sym_identifier] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_as] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_COMMA] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3348), + [anon_sym_BANG_EQ] = ACTIONS(3348), + [anon_sym_LT_EQ] = ACTIONS(3348), + [anon_sym_GT_EQ] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_RBRACK] = ACTIONS(3348), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_COLON] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_CARET] = ACTIONS(3348), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3348), + [anon_sym_LT_LT] = ACTIONS(3348), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3348), + [anon_sym_AMP_CARET] = ACTIONS(3348), + [anon_sym_AMP_AMP] = ACTIONS(3348), + [anon_sym_PIPE_PIPE] = ACTIONS(3348), + [anon_sym_or] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_QMARK_DOT] = ACTIONS(3348), + [anon_sym_POUND_LBRACK] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_is] = ACTIONS(3350), + [anon_sym_BANGis] = ACTIONS(3348), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_BANGin] = ACTIONS(3348), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3348), + [sym_rune_literal] = ACTIONS(3348), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3348), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [sym___double_quote] = ACTIONS(3348), + [sym___single_quote] = ACTIONS(3348), + [sym___c_double_quote] = ACTIONS(3348), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3348), + [sym___r_single_quote] = ACTIONS(3348), }, [1402] = { [sym_line_comment] = STATE(1402), - [sym_identifier] = ACTIONS(3419), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_as] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3419), - [anon_sym_fn] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_GT] = ACTIONS(3419), - [anon_sym_EQ_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3417), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_mut] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_go] = ACTIONS(3419), - [anon_sym_spawn] = ACTIONS(3419), - [anon_sym_json_DOTdecode] = ACTIONS(3417), - [anon_sym_LBRACK2] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3419), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3419), - [anon_sym_GT_GT_GT] = ACTIONS(3417), - [anon_sym_AMP_CARET] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3419), - [sym_none] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_nil] = ACTIONS(3419), - [anon_sym_QMARK_DOT] = ACTIONS(3417), - [anon_sym_POUND_LBRACK] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_DOLLARif] = ACTIONS(3419), - [anon_sym_is] = ACTIONS(3419), - [anon_sym_BANGis] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3419), - [anon_sym_BANGin] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3419), - [anon_sym_select] = ACTIONS(3419), - [anon_sym_lock] = ACTIONS(3419), - [anon_sym_rlock] = ACTIONS(3419), - [anon_sym_unsafe] = ACTIONS(3419), - [anon_sym_sql] = ACTIONS(3419), - [sym_int_literal] = ACTIONS(3419), - [sym_float_literal] = ACTIONS(3417), - [sym_rune_literal] = ACTIONS(3417), - [sym_pseudo_compile_time_identifier] = ACTIONS(3419), - [anon_sym_shared] = ACTIONS(3419), - [anon_sym_map_LBRACK] = ACTIONS(3417), - [anon_sym_chan] = ACTIONS(3419), - [anon_sym_thread] = ACTIONS(3419), - [anon_sym_atomic] = ACTIONS(3419), - [sym___double_quote] = ACTIONS(3417), - [sym___single_quote] = ACTIONS(3417), - [sym___c_double_quote] = ACTIONS(3417), - [sym___c_single_quote] = ACTIONS(3417), - [sym___r_double_quote] = ACTIONS(3417), - [sym___r_single_quote] = ACTIONS(3417), + [sym_block_comment] = STATE(1402), + [sym_identifier] = ACTIONS(3398), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3398), + [anon_sym_as] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3398), + [anon_sym_fn] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3398), + [anon_sym_GT] = ACTIONS(3398), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_RBRACK] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3398), + [anon_sym_mut] = ACTIONS(3398), + [anon_sym_COLON] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_QMARK] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3398), + [anon_sym_go] = ACTIONS(3398), + [anon_sym_spawn] = ACTIONS(3398), + [anon_sym_json_DOTdecode] = ACTIONS(3396), + [anon_sym_LBRACK2] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3398), + [anon_sym_LT_DASH] = ACTIONS(3396), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3398), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_or] = ACTIONS(3398), + [sym_none] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_nil] = ACTIONS(3398), + [anon_sym_QMARK_DOT] = ACTIONS(3396), + [anon_sym_POUND_LBRACK] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_DOLLARif] = ACTIONS(3398), + [anon_sym_is] = ACTIONS(3398), + [anon_sym_BANGis] = ACTIONS(3396), + [anon_sym_in] = ACTIONS(3398), + [anon_sym_BANGin] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3398), + [anon_sym_select] = ACTIONS(3398), + [anon_sym_lock] = ACTIONS(3398), + [anon_sym_rlock] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_sql] = ACTIONS(3398), + [sym_int_literal] = ACTIONS(3398), + [sym_float_literal] = ACTIONS(3396), + [sym_rune_literal] = ACTIONS(3396), + [sym_pseudo_compile_time_identifier] = ACTIONS(3398), + [anon_sym_shared] = ACTIONS(3398), + [anon_sym_map_LBRACK] = ACTIONS(3396), + [anon_sym_chan] = ACTIONS(3398), + [anon_sym_thread] = ACTIONS(3398), + [anon_sym_atomic] = ACTIONS(3398), + [sym___double_quote] = ACTIONS(3396), + [sym___single_quote] = ACTIONS(3396), + [sym___c_double_quote] = ACTIONS(3396), + [sym___c_single_quote] = ACTIONS(3396), + [sym___r_double_quote] = ACTIONS(3396), + [sym___r_single_quote] = ACTIONS(3396), }, [1403] = { [sym_line_comment] = STATE(1403), - [sym_identifier] = ACTIONS(2891), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_COLON] = ACTIONS(2889), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2889), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2889), - [anon_sym_AMP_CARET] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_PIPE_PIPE] = ACTIONS(2889), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2889), - [anon_sym_POUND_LBRACK] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2889), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2889), - [sym_rune_literal] = ACTIONS(2889), - [sym_pseudo_compile_time_identifier] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2889), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2889), - [sym___single_quote] = ACTIONS(2889), - [sym___c_double_quote] = ACTIONS(2889), - [sym___c_single_quote] = ACTIONS(2889), - [sym___r_double_quote] = ACTIONS(2889), - [sym___r_single_quote] = ACTIONS(2889), + [sym_block_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3162), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3162), + [anon_sym_as] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_PIPE] = ACTIONS(3162), + [anon_sym_fn] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_STAR] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_PERCENT] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3162), + [anon_sym_EQ_EQ] = ACTIONS(3160), + [anon_sym_BANG_EQ] = ACTIONS(3160), + [anon_sym_LT_EQ] = ACTIONS(3160), + [anon_sym_GT_EQ] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_RBRACK] = ACTIONS(3160), + [anon_sym_struct] = ACTIONS(3162), + [anon_sym_mut] = ACTIONS(3162), + [anon_sym_COLON] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [anon_sym_QMARK] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_go] = ACTIONS(3162), + [anon_sym_spawn] = ACTIONS(3162), + [anon_sym_json_DOTdecode] = ACTIONS(3160), + [anon_sym_LBRACK2] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_CARET] = ACTIONS(3160), + [anon_sym_AMP] = ACTIONS(3162), + [anon_sym_LT_DASH] = ACTIONS(3160), + [anon_sym_LT_LT] = ACTIONS(3160), + [anon_sym_GT_GT] = ACTIONS(3162), + [anon_sym_GT_GT_GT] = ACTIONS(3160), + [anon_sym_AMP_CARET] = ACTIONS(3160), + [anon_sym_AMP_AMP] = ACTIONS(3160), + [anon_sym_PIPE_PIPE] = ACTIONS(3160), + [anon_sym_or] = ACTIONS(3162), + [sym_none] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_nil] = ACTIONS(3162), + [anon_sym_QMARK_DOT] = ACTIONS(3160), + [anon_sym_POUND_LBRACK] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_DOLLARif] = ACTIONS(3162), + [anon_sym_is] = ACTIONS(3162), + [anon_sym_BANGis] = ACTIONS(3160), + [anon_sym_in] = ACTIONS(3162), + [anon_sym_BANGin] = ACTIONS(3160), + [anon_sym_match] = ACTIONS(3162), + [anon_sym_select] = ACTIONS(3162), + [anon_sym_lock] = ACTIONS(3162), + [anon_sym_rlock] = ACTIONS(3162), + [anon_sym_unsafe] = ACTIONS(3162), + [anon_sym_sql] = ACTIONS(3162), + [sym_int_literal] = ACTIONS(3162), + [sym_float_literal] = ACTIONS(3160), + [sym_rune_literal] = ACTIONS(3160), + [sym_pseudo_compile_time_identifier] = ACTIONS(3162), + [anon_sym_shared] = ACTIONS(3162), + [anon_sym_map_LBRACK] = ACTIONS(3160), + [anon_sym_chan] = ACTIONS(3162), + [anon_sym_thread] = ACTIONS(3162), + [anon_sym_atomic] = ACTIONS(3162), + [sym___double_quote] = ACTIONS(3160), + [sym___single_quote] = ACTIONS(3160), + [sym___c_double_quote] = ACTIONS(3160), + [sym___c_single_quote] = ACTIONS(3160), + [sym___r_double_quote] = ACTIONS(3160), + [sym___r_single_quote] = ACTIONS(3160), }, [1404] = { [sym_line_comment] = STATE(1404), - [sym_identifier] = ACTIONS(2895), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_COLON] = ACTIONS(2893), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2893), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2893), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2893), - [anon_sym_AMP_CARET] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_PIPE_PIPE] = ACTIONS(2893), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2893), - [anon_sym_POUND_LBRACK] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2893), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2893), - [sym_rune_literal] = ACTIONS(2893), - [sym_pseudo_compile_time_identifier] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2893), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2893), - [sym___single_quote] = ACTIONS(2893), - [sym___c_double_quote] = ACTIONS(2893), - [sym___c_single_quote] = ACTIONS(2893), - [sym___r_double_quote] = ACTIONS(2893), - [sym___r_single_quote] = ACTIONS(2893), + [sym_block_comment] = STATE(1404), + [sym_identifier] = ACTIONS(2905), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2905), + [anon_sym_as] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_COMMA] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_fn] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_RBRACK] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2905), + [anon_sym_mut] = ACTIONS(2905), + [anon_sym_COLON] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_go] = ACTIONS(2905), + [anon_sym_spawn] = ACTIONS(2905), + [anon_sym_json_DOTdecode] = ACTIONS(2903), + [anon_sym_LBRACK2] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2905), + [sym_none] = ACTIONS(2905), + [sym_true] = ACTIONS(2905), + [sym_false] = ACTIONS(2905), + [sym_nil] = ACTIONS(2905), + [anon_sym_QMARK_DOT] = ACTIONS(2903), + [anon_sym_POUND_LBRACK] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_DOLLARif] = ACTIONS(2905), + [anon_sym_is] = ACTIONS(2905), + [anon_sym_BANGis] = ACTIONS(2903), + [anon_sym_in] = ACTIONS(2905), + [anon_sym_BANGin] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2905), + [anon_sym_select] = ACTIONS(2905), + [anon_sym_lock] = ACTIONS(2905), + [anon_sym_rlock] = ACTIONS(2905), + [anon_sym_unsafe] = ACTIONS(2905), + [anon_sym_sql] = ACTIONS(2905), + [sym_int_literal] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2903), + [sym_rune_literal] = ACTIONS(2903), + [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_shared] = ACTIONS(2905), + [anon_sym_map_LBRACK] = ACTIONS(2903), + [anon_sym_chan] = ACTIONS(2905), + [anon_sym_thread] = ACTIONS(2905), + [anon_sym_atomic] = ACTIONS(2905), + [sym___double_quote] = ACTIONS(2903), + [sym___single_quote] = ACTIONS(2903), + [sym___c_double_quote] = ACTIONS(2903), + [sym___c_single_quote] = ACTIONS(2903), + [sym___r_double_quote] = ACTIONS(2903), + [sym___r_single_quote] = ACTIONS(2903), }, [1405] = { [sym_line_comment] = STATE(1405), - [sym_identifier] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_as] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2961), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2961), - [anon_sym_GT] = ACTIONS(2961), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_mut] = ACTIONS(2961), - [anon_sym_COLON] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2961), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2961), - [anon_sym_spawn] = ACTIONS(2961), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2961), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2961), - [anon_sym_GT_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_CARET] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2961), - [sym_none] = ACTIONS(2961), - [sym_true] = ACTIONS(2961), - [sym_false] = ACTIONS(2961), - [sym_nil] = ACTIONS(2961), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_DOLLARif] = ACTIONS(2961), - [anon_sym_is] = ACTIONS(2961), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2961), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_select] = ACTIONS(2961), - [anon_sym_lock] = ACTIONS(2961), - [anon_sym_rlock] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_sql] = ACTIONS(2961), - [sym_int_literal] = ACTIONS(2961), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [sym_pseudo_compile_time_identifier] = ACTIONS(2961), - [anon_sym_shared] = ACTIONS(2961), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2961), - [anon_sym_thread] = ACTIONS(2961), - [anon_sym_atomic] = ACTIONS(2961), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), + [sym_block_comment] = STATE(1405), + [sym_identifier] = ACTIONS(3418), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_as] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_COMMA] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_fn] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_PERCENT] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3418), + [anon_sym_GT] = ACTIONS(3418), + [anon_sym_EQ_EQ] = ACTIONS(3416), + [anon_sym_BANG_EQ] = ACTIONS(3416), + [anon_sym_LT_EQ] = ACTIONS(3416), + [anon_sym_GT_EQ] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_RBRACK] = ACTIONS(3416), + [anon_sym_struct] = ACTIONS(3418), + [anon_sym_mut] = ACTIONS(3418), + [anon_sym_COLON] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3418), + [anon_sym_spawn] = ACTIONS(3418), + [anon_sym_json_DOTdecode] = ACTIONS(3416), + [anon_sym_LBRACK2] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_CARET] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_LT_DASH] = ACTIONS(3416), + [anon_sym_LT_LT] = ACTIONS(3416), + [anon_sym_GT_GT] = ACTIONS(3418), + [anon_sym_GT_GT_GT] = ACTIONS(3416), + [anon_sym_AMP_CARET] = ACTIONS(3416), + [anon_sym_AMP_AMP] = ACTIONS(3416), + [anon_sym_PIPE_PIPE] = ACTIONS(3416), + [anon_sym_or] = ACTIONS(3418), + [sym_none] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_nil] = ACTIONS(3418), + [anon_sym_QMARK_DOT] = ACTIONS(3416), + [anon_sym_POUND_LBRACK] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_DOLLARif] = ACTIONS(3418), + [anon_sym_is] = ACTIONS(3418), + [anon_sym_BANGis] = ACTIONS(3416), + [anon_sym_in] = ACTIONS(3418), + [anon_sym_BANGin] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3418), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3418), + [anon_sym_rlock] = ACTIONS(3418), + [anon_sym_unsafe] = ACTIONS(3418), + [anon_sym_sql] = ACTIONS(3418), + [sym_int_literal] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3416), + [sym_rune_literal] = ACTIONS(3416), + [sym_pseudo_compile_time_identifier] = ACTIONS(3418), + [anon_sym_shared] = ACTIONS(3418), + [anon_sym_map_LBRACK] = ACTIONS(3416), + [anon_sym_chan] = ACTIONS(3418), + [anon_sym_thread] = ACTIONS(3418), + [anon_sym_atomic] = ACTIONS(3418), + [sym___double_quote] = ACTIONS(3416), + [sym___single_quote] = ACTIONS(3416), + [sym___c_double_quote] = ACTIONS(3416), + [sym___c_single_quote] = ACTIONS(3416), + [sym___r_double_quote] = ACTIONS(3416), + [sym___r_single_quote] = ACTIONS(3416), }, [1406] = { [sym_line_comment] = STATE(1406), - [sym_identifier] = ACTIONS(3415), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_as] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3415), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_GT] = ACTIONS(3415), - [anon_sym_EQ_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3415), - [anon_sym_mut] = ACTIONS(3415), - [anon_sym_COLON] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_go] = ACTIONS(3415), - [anon_sym_spawn] = ACTIONS(3415), - [anon_sym_json_DOTdecode] = ACTIONS(3413), - [anon_sym_LBRACK2] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3415), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3415), - [anon_sym_GT_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_CARET] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3415), - [sym_none] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_nil] = ACTIONS(3415), - [anon_sym_QMARK_DOT] = ACTIONS(3413), - [anon_sym_POUND_LBRACK] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_DOLLARif] = ACTIONS(3415), - [anon_sym_is] = ACTIONS(3415), - [anon_sym_BANGis] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3415), - [anon_sym_BANGin] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_select] = ACTIONS(3415), - [anon_sym_lock] = ACTIONS(3415), - [anon_sym_rlock] = ACTIONS(3415), - [anon_sym_unsafe] = ACTIONS(3415), - [anon_sym_sql] = ACTIONS(3415), - [sym_int_literal] = ACTIONS(3415), - [sym_float_literal] = ACTIONS(3413), - [sym_rune_literal] = ACTIONS(3413), - [sym_pseudo_compile_time_identifier] = ACTIONS(3415), - [anon_sym_shared] = ACTIONS(3415), - [anon_sym_map_LBRACK] = ACTIONS(3413), - [anon_sym_chan] = ACTIONS(3415), - [anon_sym_thread] = ACTIONS(3415), - [anon_sym_atomic] = ACTIONS(3415), - [sym___double_quote] = ACTIONS(3413), - [sym___single_quote] = ACTIONS(3413), - [sym___c_double_quote] = ACTIONS(3413), - [sym___c_single_quote] = ACTIONS(3413), - [sym___r_double_quote] = ACTIONS(3413), - [sym___r_single_quote] = ACTIONS(3413), + [sym_block_comment] = STATE(1406), + [sym_identifier] = ACTIONS(2943), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2943), + [anon_sym_as] = ACTIONS(2943), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_COMMA] = ACTIONS(2941), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2943), + [anon_sym_fn] = ACTIONS(2943), + [anon_sym_PLUS] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_SLASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2941), + [anon_sym_BANG_EQ] = ACTIONS(2941), + [anon_sym_LT_EQ] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_RBRACK] = ACTIONS(2941), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_mut] = ACTIONS(2943), + [anon_sym_COLON] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2941), + [anon_sym_DASH_DASH] = ACTIONS(2941), + [anon_sym_QMARK] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_go] = ACTIONS(2943), + [anon_sym_spawn] = ACTIONS(2943), + [anon_sym_json_DOTdecode] = ACTIONS(2941), + [anon_sym_LBRACK2] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2941), + [anon_sym_GT_GT] = ACTIONS(2943), + [anon_sym_GT_GT_GT] = ACTIONS(2941), + [anon_sym_AMP_CARET] = ACTIONS(2941), + [anon_sym_AMP_AMP] = ACTIONS(2941), + [anon_sym_PIPE_PIPE] = ACTIONS(2941), + [anon_sym_or] = ACTIONS(2943), + [sym_none] = ACTIONS(2943), + [sym_true] = ACTIONS(2943), + [sym_false] = ACTIONS(2943), + [sym_nil] = ACTIONS(2943), + [anon_sym_QMARK_DOT] = ACTIONS(2941), + [anon_sym_POUND_LBRACK] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_DOLLARif] = ACTIONS(2943), + [anon_sym_is] = ACTIONS(2943), + [anon_sym_BANGis] = ACTIONS(2941), + [anon_sym_in] = ACTIONS(2943), + [anon_sym_BANGin] = ACTIONS(2941), + [anon_sym_match] = ACTIONS(2943), + [anon_sym_select] = ACTIONS(2943), + [anon_sym_lock] = ACTIONS(2943), + [anon_sym_rlock] = ACTIONS(2943), + [anon_sym_unsafe] = ACTIONS(2943), + [anon_sym_sql] = ACTIONS(2943), + [sym_int_literal] = ACTIONS(2943), + [sym_float_literal] = ACTIONS(2941), + [sym_rune_literal] = ACTIONS(2941), + [sym_pseudo_compile_time_identifier] = ACTIONS(2943), + [anon_sym_shared] = ACTIONS(2943), + [anon_sym_map_LBRACK] = ACTIONS(2941), + [anon_sym_chan] = ACTIONS(2943), + [anon_sym_thread] = ACTIONS(2943), + [anon_sym_atomic] = ACTIONS(2943), + [sym___double_quote] = ACTIONS(2941), + [sym___single_quote] = ACTIONS(2941), + [sym___c_double_quote] = ACTIONS(2941), + [sym___c_single_quote] = ACTIONS(2941), + [sym___r_double_quote] = ACTIONS(2941), + [sym___r_single_quote] = ACTIONS(2941), }, [1407] = { [sym_line_comment] = STATE(1407), - [sym_identifier] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), + [sym_block_comment] = STATE(1407), + [sym_identifier] = ACTIONS(3422), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_as] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_COMMA] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_fn] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3422), + [anon_sym_GT] = ACTIONS(3422), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_LT_EQ] = ACTIONS(3420), + [anon_sym_GT_EQ] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_RBRACK] = ACTIONS(3420), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_mut] = ACTIONS(3422), + [anon_sym_COLON] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_QMARK] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_go] = ACTIONS(3422), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(3420), + [anon_sym_LBRACK2] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_CARET] = ACTIONS(3420), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(3420), + [anon_sym_LT_LT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_GT_GT_GT] = ACTIONS(3420), + [anon_sym_AMP_CARET] = ACTIONS(3420), + [anon_sym_AMP_AMP] = ACTIONS(3420), + [anon_sym_PIPE_PIPE] = ACTIONS(3420), + [anon_sym_or] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_nil] = ACTIONS(3422), + [anon_sym_QMARK_DOT] = ACTIONS(3420), + [anon_sym_POUND_LBRACK] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_DOLLARif] = ACTIONS(3422), + [anon_sym_is] = ACTIONS(3422), + [anon_sym_BANGis] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3422), + [anon_sym_BANGin] = ACTIONS(3420), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_select] = ACTIONS(3422), + [anon_sym_lock] = ACTIONS(3422), + [anon_sym_rlock] = ACTIONS(3422), + [anon_sym_unsafe] = ACTIONS(3422), + [anon_sym_sql] = ACTIONS(3422), + [sym_int_literal] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3420), + [sym_rune_literal] = ACTIONS(3420), + [sym_pseudo_compile_time_identifier] = ACTIONS(3422), + [anon_sym_shared] = ACTIONS(3422), + [anon_sym_map_LBRACK] = ACTIONS(3420), + [anon_sym_chan] = ACTIONS(3422), + [anon_sym_thread] = ACTIONS(3422), + [anon_sym_atomic] = ACTIONS(3422), + [sym___double_quote] = ACTIONS(3420), + [sym___single_quote] = ACTIONS(3420), + [sym___c_double_quote] = ACTIONS(3420), + [sym___c_single_quote] = ACTIONS(3420), + [sym___r_double_quote] = ACTIONS(3420), + [sym___r_single_quote] = ACTIONS(3420), }, [1408] = { [sym_line_comment] = STATE(1408), - [sym_identifier] = ACTIONS(3279), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3277), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [anon_sym_LT_EQ] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_RBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_COLON] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3277), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_CARET] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3277), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3277), - [anon_sym_AMP_CARET] = ACTIONS(3277), - [anon_sym_AMP_AMP] = ACTIONS(3277), - [anon_sym_PIPE_PIPE] = ACTIONS(3277), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3277), - [anon_sym_POUND_LBRACK] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3277), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3277), - [sym_rune_literal] = ACTIONS(3277), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3277), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3277), - [sym___single_quote] = ACTIONS(3277), - [sym___c_double_quote] = ACTIONS(3277), - [sym___c_single_quote] = ACTIONS(3277), - [sym___r_double_quote] = ACTIONS(3277), - [sym___r_single_quote] = ACTIONS(3277), + [sym_block_comment] = STATE(1408), + [sym_identifier] = ACTIONS(3426), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_as] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_fn] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_GT] = ACTIONS(3426), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_RBRACK] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_mut] = ACTIONS(3426), + [anon_sym_COLON] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_go] = ACTIONS(3426), + [anon_sym_spawn] = ACTIONS(3426), + [anon_sym_json_DOTdecode] = ACTIONS(3424), + [anon_sym_LBRACK2] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3426), + [anon_sym_GT_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_CARET] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_or] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_nil] = ACTIONS(3426), + [anon_sym_QMARK_DOT] = ACTIONS(3424), + [anon_sym_POUND_LBRACK] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_DOLLARif] = ACTIONS(3426), + [anon_sym_is] = ACTIONS(3426), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3426), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_lock] = ACTIONS(3426), + [anon_sym_rlock] = ACTIONS(3426), + [anon_sym_unsafe] = ACTIONS(3426), + [anon_sym_sql] = ACTIONS(3426), + [sym_int_literal] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3424), + [sym_rune_literal] = ACTIONS(3424), + [sym_pseudo_compile_time_identifier] = ACTIONS(3426), + [anon_sym_shared] = ACTIONS(3426), + [anon_sym_map_LBRACK] = ACTIONS(3424), + [anon_sym_chan] = ACTIONS(3426), + [anon_sym_thread] = ACTIONS(3426), + [anon_sym_atomic] = ACTIONS(3426), + [sym___double_quote] = ACTIONS(3424), + [sym___single_quote] = ACTIONS(3424), + [sym___c_double_quote] = ACTIONS(3424), + [sym___c_single_quote] = ACTIONS(3424), + [sym___r_double_quote] = ACTIONS(3424), + [sym___r_single_quote] = ACTIONS(3424), }, [1409] = { [sym_line_comment] = STATE(1409), - [sym_identifier] = ACTIONS(3283), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3281), - [anon_sym_BANG_EQ] = ACTIONS(3281), - [anon_sym_LT_EQ] = ACTIONS(3281), - [anon_sym_GT_EQ] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3281), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3281), - [anon_sym_LT_LT] = ACTIONS(3281), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3281), - [anon_sym_AMP_CARET] = ACTIONS(3281), - [anon_sym_AMP_AMP] = ACTIONS(3281), - [anon_sym_PIPE_PIPE] = ACTIONS(3281), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3281), - [anon_sym_POUND_LBRACK] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3281), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3281), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3281), - [sym_rune_literal] = ACTIONS(3281), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3281), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3281), - [sym___single_quote] = ACTIONS(3281), - [sym___c_double_quote] = ACTIONS(3281), - [sym___c_single_quote] = ACTIONS(3281), - [sym___r_double_quote] = ACTIONS(3281), - [sym___r_single_quote] = ACTIONS(3281), + [sym_block_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3158), + [anon_sym_as] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_COMMA] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_PIPE] = ACTIONS(3158), + [anon_sym_fn] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_STAR] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_PERCENT] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_GT] = ACTIONS(3158), + [anon_sym_EQ_EQ] = ACTIONS(3156), + [anon_sym_BANG_EQ] = ACTIONS(3156), + [anon_sym_LT_EQ] = ACTIONS(3156), + [anon_sym_GT_EQ] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_mut] = ACTIONS(3158), + [anon_sym_COLON] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_QMARK] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_go] = ACTIONS(3158), + [anon_sym_spawn] = ACTIONS(3158), + [anon_sym_json_DOTdecode] = ACTIONS(3156), + [anon_sym_LBRACK2] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_CARET] = ACTIONS(3156), + [anon_sym_AMP] = ACTIONS(3158), + [anon_sym_LT_DASH] = ACTIONS(3156), + [anon_sym_LT_LT] = ACTIONS(3156), + [anon_sym_GT_GT] = ACTIONS(3158), + [anon_sym_GT_GT_GT] = ACTIONS(3156), + [anon_sym_AMP_CARET] = ACTIONS(3156), + [anon_sym_AMP_AMP] = ACTIONS(3156), + [anon_sym_PIPE_PIPE] = ACTIONS(3156), + [anon_sym_or] = ACTIONS(3158), + [sym_none] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_nil] = ACTIONS(3158), + [anon_sym_QMARK_DOT] = ACTIONS(3156), + [anon_sym_POUND_LBRACK] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_DOLLARif] = ACTIONS(3158), + [anon_sym_is] = ACTIONS(3158), + [anon_sym_BANGis] = ACTIONS(3156), + [anon_sym_in] = ACTIONS(3158), + [anon_sym_BANGin] = ACTIONS(3156), + [anon_sym_match] = ACTIONS(3158), + [anon_sym_select] = ACTIONS(3158), + [anon_sym_lock] = ACTIONS(3158), + [anon_sym_rlock] = ACTIONS(3158), + [anon_sym_unsafe] = ACTIONS(3158), + [anon_sym_sql] = ACTIONS(3158), + [sym_int_literal] = ACTIONS(3158), + [sym_float_literal] = ACTIONS(3156), + [sym_rune_literal] = ACTIONS(3156), + [sym_pseudo_compile_time_identifier] = ACTIONS(3158), + [anon_sym_shared] = ACTIONS(3158), + [anon_sym_map_LBRACK] = ACTIONS(3156), + [anon_sym_chan] = ACTIONS(3158), + [anon_sym_thread] = ACTIONS(3158), + [anon_sym_atomic] = ACTIONS(3158), + [sym___double_quote] = ACTIONS(3156), + [sym___single_quote] = ACTIONS(3156), + [sym___c_double_quote] = ACTIONS(3156), + [sym___c_single_quote] = ACTIONS(3156), + [sym___r_double_quote] = ACTIONS(3156), + [sym___r_single_quote] = ACTIONS(3156), }, [1410] = { [sym_line_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [sym_block_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3150), + [anon_sym_as] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_COMMA] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_PIPE] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_GT] = ACTIONS(3150), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_LT_EQ] = ACTIONS(3148), + [anon_sym_GT_EQ] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_RBRACK] = ACTIONS(3148), + [anon_sym_struct] = ACTIONS(3150), + [anon_sym_mut] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_QMARK] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_go] = ACTIONS(3150), + [anon_sym_spawn] = ACTIONS(3150), + [anon_sym_json_DOTdecode] = ACTIONS(3148), + [anon_sym_LBRACK2] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_CARET] = ACTIONS(3148), + [anon_sym_AMP] = ACTIONS(3150), + [anon_sym_LT_DASH] = ACTIONS(3148), + [anon_sym_LT_LT] = ACTIONS(3148), + [anon_sym_GT_GT] = ACTIONS(3150), + [anon_sym_GT_GT_GT] = ACTIONS(3148), + [anon_sym_AMP_CARET] = ACTIONS(3148), + [anon_sym_AMP_AMP] = ACTIONS(3148), + [anon_sym_PIPE_PIPE] = ACTIONS(3148), + [anon_sym_or] = ACTIONS(3150), + [sym_none] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_nil] = ACTIONS(3150), + [anon_sym_QMARK_DOT] = ACTIONS(3148), + [anon_sym_POUND_LBRACK] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_DOLLARif] = ACTIONS(3150), + [anon_sym_is] = ACTIONS(3150), + [anon_sym_BANGis] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3150), + [anon_sym_BANGin] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_select] = ACTIONS(3150), + [anon_sym_lock] = ACTIONS(3150), + [anon_sym_rlock] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_sql] = ACTIONS(3150), + [sym_int_literal] = ACTIONS(3150), + [sym_float_literal] = ACTIONS(3148), + [sym_rune_literal] = ACTIONS(3148), + [sym_pseudo_compile_time_identifier] = ACTIONS(3150), + [anon_sym_shared] = ACTIONS(3150), + [anon_sym_map_LBRACK] = ACTIONS(3148), + [anon_sym_chan] = ACTIONS(3150), + [anon_sym_thread] = ACTIONS(3150), + [anon_sym_atomic] = ACTIONS(3150), + [sym___double_quote] = ACTIONS(3148), + [sym___single_quote] = ACTIONS(3148), + [sym___c_double_quote] = ACTIONS(3148), + [sym___c_single_quote] = ACTIONS(3148), + [sym___r_double_quote] = ACTIONS(3148), + [sym___r_single_quote] = ACTIONS(3148), }, [1411] = { [sym_line_comment] = STATE(1411), - [sym_identifier] = ACTIONS(3007), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_as] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_fn] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3007), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3007), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3007), - [anon_sym_GT] = ACTIONS(3007), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_RBRACK] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3007), - [anon_sym_mut] = ACTIONS(3007), - [anon_sym_COLON] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_go] = ACTIONS(3007), - [anon_sym_spawn] = ACTIONS(3007), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3007), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3007), - [sym_none] = ACTIONS(3007), - [sym_true] = ACTIONS(3007), - [sym_false] = ACTIONS(3007), - [sym_nil] = ACTIONS(3007), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3007), - [anon_sym_DOLLARif] = ACTIONS(3007), - [anon_sym_is] = ACTIONS(3007), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3007), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3007), - [anon_sym_select] = ACTIONS(3007), - [anon_sym_lock] = ACTIONS(3007), - [anon_sym_rlock] = ACTIONS(3007), - [anon_sym_unsafe] = ACTIONS(3007), - [anon_sym_sql] = ACTIONS(3007), - [sym_int_literal] = ACTIONS(3007), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [sym_pseudo_compile_time_identifier] = ACTIONS(3007), - [anon_sym_shared] = ACTIONS(3007), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3007), - [anon_sym_thread] = ACTIONS(3007), - [anon_sym_atomic] = ACTIONS(3007), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), + [sym_block_comment] = STATE(1411), + [sym_identifier] = ACTIONS(2927), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2927), + [anon_sym_as] = ACTIONS(2927), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_COMMA] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2927), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_SLASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2925), + [anon_sym_BANG_EQ] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(2925), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_mut] = ACTIONS(2927), + [anon_sym_COLON] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_QMARK] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2927), + [anon_sym_go] = ACTIONS(2927), + [anon_sym_spawn] = ACTIONS(2927), + [anon_sym_json_DOTdecode] = ACTIONS(2925), + [anon_sym_LBRACK2] = ACTIONS(2927), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2927), + [anon_sym_LT_DASH] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2925), + [anon_sym_GT_GT] = ACTIONS(2927), + [anon_sym_GT_GT_GT] = ACTIONS(2925), + [anon_sym_AMP_CARET] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_PIPE_PIPE] = ACTIONS(2925), + [anon_sym_or] = ACTIONS(2927), + [sym_none] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_nil] = ACTIONS(2927), + [anon_sym_QMARK_DOT] = ACTIONS(2925), + [anon_sym_POUND_LBRACK] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_DOLLARif] = ACTIONS(2927), + [anon_sym_is] = ACTIONS(2927), + [anon_sym_BANGis] = ACTIONS(2925), + [anon_sym_in] = ACTIONS(2927), + [anon_sym_BANGin] = ACTIONS(2925), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_select] = ACTIONS(2927), + [anon_sym_lock] = ACTIONS(2927), + [anon_sym_rlock] = ACTIONS(2927), + [anon_sym_unsafe] = ACTIONS(2927), + [anon_sym_sql] = ACTIONS(2927), + [sym_int_literal] = ACTIONS(2927), + [sym_float_literal] = ACTIONS(2925), + [sym_rune_literal] = ACTIONS(2925), + [sym_pseudo_compile_time_identifier] = ACTIONS(2927), + [anon_sym_shared] = ACTIONS(2927), + [anon_sym_map_LBRACK] = ACTIONS(2925), + [anon_sym_chan] = ACTIONS(2927), + [anon_sym_thread] = ACTIONS(2927), + [anon_sym_atomic] = ACTIONS(2927), + [sym___double_quote] = ACTIONS(2925), + [sym___single_quote] = ACTIONS(2925), + [sym___c_double_quote] = ACTIONS(2925), + [sym___c_single_quote] = ACTIONS(2925), + [sym___r_double_quote] = ACTIONS(2925), + [sym___r_single_quote] = ACTIONS(2925), }, [1412] = { [sym_line_comment] = STATE(1412), - [sym_identifier] = ACTIONS(3011), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3011), - [anon_sym_as] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_fn] = ACTIONS(3011), - [anon_sym_PLUS] = ACTIONS(3011), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3011), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_GT] = ACTIONS(3011), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3009), - [anon_sym_RBRACK] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3011), - [anon_sym_mut] = ACTIONS(3011), - [anon_sym_COLON] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3011), - [anon_sym_spawn] = ACTIONS(3011), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3011), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3011), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3011), - [sym_none] = ACTIONS(3011), - [sym_true] = ACTIONS(3011), - [sym_false] = ACTIONS(3011), - [sym_nil] = ACTIONS(3011), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3011), - [anon_sym_DOLLARif] = ACTIONS(3011), - [anon_sym_is] = ACTIONS(3011), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3011), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3011), - [anon_sym_select] = ACTIONS(3011), - [anon_sym_lock] = ACTIONS(3011), - [anon_sym_rlock] = ACTIONS(3011), - [anon_sym_unsafe] = ACTIONS(3011), - [anon_sym_sql] = ACTIONS(3011), - [sym_int_literal] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [sym_pseudo_compile_time_identifier] = ACTIONS(3011), - [anon_sym_shared] = ACTIONS(3011), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3011), - [anon_sym_thread] = ACTIONS(3011), - [anon_sym_atomic] = ACTIONS(3011), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), + [sym_block_comment] = STATE(1412), + [sym_identifier] = ACTIONS(2931), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2931), + [anon_sym_as] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_COMMA] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_SLASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2929), + [anon_sym_BANG_EQ] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_RBRACK] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(2931), + [anon_sym_COLON] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2929), + [anon_sym_DASH_DASH] = ACTIONS(2929), + [anon_sym_QMARK] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2931), + [anon_sym_go] = ACTIONS(2931), + [anon_sym_spawn] = ACTIONS(2931), + [anon_sym_json_DOTdecode] = ACTIONS(2929), + [anon_sym_LBRACK2] = ACTIONS(2931), + [anon_sym_TILDE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_LT_DASH] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2929), + [anon_sym_GT_GT] = ACTIONS(2931), + [anon_sym_GT_GT_GT] = ACTIONS(2929), + [anon_sym_AMP_CARET] = ACTIONS(2929), + [anon_sym_AMP_AMP] = ACTIONS(2929), + [anon_sym_PIPE_PIPE] = ACTIONS(2929), + [anon_sym_or] = ACTIONS(2931), + [sym_none] = ACTIONS(2931), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_nil] = ACTIONS(2931), + [anon_sym_QMARK_DOT] = ACTIONS(2929), + [anon_sym_POUND_LBRACK] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_DOLLARif] = ACTIONS(2931), + [anon_sym_is] = ACTIONS(2931), + [anon_sym_BANGis] = ACTIONS(2929), + [anon_sym_in] = ACTIONS(2931), + [anon_sym_BANGin] = ACTIONS(2929), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_select] = ACTIONS(2931), + [anon_sym_lock] = ACTIONS(2931), + [anon_sym_rlock] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2931), + [anon_sym_sql] = ACTIONS(2931), + [sym_int_literal] = ACTIONS(2931), + [sym_float_literal] = ACTIONS(2929), + [sym_rune_literal] = ACTIONS(2929), + [sym_pseudo_compile_time_identifier] = ACTIONS(2931), + [anon_sym_shared] = ACTIONS(2931), + [anon_sym_map_LBRACK] = ACTIONS(2929), + [anon_sym_chan] = ACTIONS(2931), + [anon_sym_thread] = ACTIONS(2931), + [anon_sym_atomic] = ACTIONS(2931), + [sym___double_quote] = ACTIONS(2929), + [sym___single_quote] = ACTIONS(2929), + [sym___c_double_quote] = ACTIONS(2929), + [sym___c_single_quote] = ACTIONS(2929), + [sym___r_double_quote] = ACTIONS(2929), + [sym___r_single_quote] = ACTIONS(2929), }, [1413] = { [sym_line_comment] = STATE(1413), - [sym_identifier] = ACTIONS(3015), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3015), - [anon_sym_as] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_fn] = ACTIONS(3015), - [anon_sym_PLUS] = ACTIONS(3015), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3015), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_GT] = ACTIONS(3015), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3013), - [anon_sym_RBRACK] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_mut] = ACTIONS(3015), - [anon_sym_COLON] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_go] = ACTIONS(3015), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3015), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3015), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3015), - [sym_none] = ACTIONS(3015), - [sym_true] = ACTIONS(3015), - [sym_false] = ACTIONS(3015), - [sym_nil] = ACTIONS(3015), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3015), - [anon_sym_DOLLARif] = ACTIONS(3015), - [anon_sym_is] = ACTIONS(3015), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3015), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3015), - [anon_sym_select] = ACTIONS(3015), - [anon_sym_lock] = ACTIONS(3015), - [anon_sym_rlock] = ACTIONS(3015), - [anon_sym_unsafe] = ACTIONS(3015), - [anon_sym_sql] = ACTIONS(3015), - [sym_int_literal] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [sym_pseudo_compile_time_identifier] = ACTIONS(3015), - [anon_sym_shared] = ACTIONS(3015), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3015), - [anon_sym_thread] = ACTIONS(3015), - [anon_sym_atomic] = ACTIONS(3015), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), + [sym_block_comment] = STATE(1413), + [sym_identifier] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2935), + [anon_sym_as] = ACTIONS(2935), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_COMMA] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_PLUS] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2935), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_SLASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2933), + [anon_sym_BANG_EQ] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_RBRACK] = ACTIONS(2933), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_mut] = ACTIONS(2935), + [anon_sym_COLON] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_QMARK] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2935), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2935), + [anon_sym_json_DOTdecode] = ACTIONS(2933), + [anon_sym_LBRACK2] = ACTIONS(2935), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2935), + [anon_sym_LT_DASH] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2933), + [anon_sym_GT_GT] = ACTIONS(2935), + [anon_sym_GT_GT_GT] = ACTIONS(2933), + [anon_sym_AMP_CARET] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_PIPE_PIPE] = ACTIONS(2933), + [anon_sym_or] = ACTIONS(2935), + [sym_none] = ACTIONS(2935), + [sym_true] = ACTIONS(2935), + [sym_false] = ACTIONS(2935), + [sym_nil] = ACTIONS(2935), + [anon_sym_QMARK_DOT] = ACTIONS(2933), + [anon_sym_POUND_LBRACK] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_DOLLARif] = ACTIONS(2935), + [anon_sym_is] = ACTIONS(2935), + [anon_sym_BANGis] = ACTIONS(2933), + [anon_sym_in] = ACTIONS(2935), + [anon_sym_BANGin] = ACTIONS(2933), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_select] = ACTIONS(2935), + [anon_sym_lock] = ACTIONS(2935), + [anon_sym_rlock] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_sql] = ACTIONS(2935), + [sym_int_literal] = ACTIONS(2935), + [sym_float_literal] = ACTIONS(2933), + [sym_rune_literal] = ACTIONS(2933), + [sym_pseudo_compile_time_identifier] = ACTIONS(2935), + [anon_sym_shared] = ACTIONS(2935), + [anon_sym_map_LBRACK] = ACTIONS(2933), + [anon_sym_chan] = ACTIONS(2935), + [anon_sym_thread] = ACTIONS(2935), + [anon_sym_atomic] = ACTIONS(2935), + [sym___double_quote] = ACTIONS(2933), + [sym___single_quote] = ACTIONS(2933), + [sym___c_double_quote] = ACTIONS(2933), + [sym___c_single_quote] = ACTIONS(2933), + [sym___r_double_quote] = ACTIONS(2933), + [sym___r_single_quote] = ACTIONS(2933), }, [1414] = { [sym_line_comment] = STATE(1414), - [sym_identifier] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_as] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_fn] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3139), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3139), - [anon_sym_GT] = ACTIONS(3139), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_mut] = ACTIONS(3139), - [anon_sym_COLON] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_go] = ACTIONS(3139), - [anon_sym_spawn] = ACTIONS(3139), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3139), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_nil] = ACTIONS(3139), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_DOLLARif] = ACTIONS(3139), - [anon_sym_is] = ACTIONS(3139), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3139), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_rlock] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_sql] = ACTIONS(3139), - [sym_int_literal] = ACTIONS(3139), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [sym_pseudo_compile_time_identifier] = ACTIONS(3139), - [anon_sym_shared] = ACTIONS(3139), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3139), - [anon_sym_thread] = ACTIONS(3139), - [anon_sym_atomic] = ACTIONS(3139), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [sym_block_comment] = STATE(1414), + [sym_identifier] = ACTIONS(3146), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3146), + [anon_sym_as] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_COMMA] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_PIPE] = ACTIONS(3146), + [anon_sym_fn] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_PERCENT] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_GT] = ACTIONS(3146), + [anon_sym_EQ_EQ] = ACTIONS(3144), + [anon_sym_BANG_EQ] = ACTIONS(3144), + [anon_sym_LT_EQ] = ACTIONS(3144), + [anon_sym_GT_EQ] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_struct] = ACTIONS(3146), + [anon_sym_mut] = ACTIONS(3146), + [anon_sym_COLON] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_QMARK] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_go] = ACTIONS(3146), + [anon_sym_spawn] = ACTIONS(3146), + [anon_sym_json_DOTdecode] = ACTIONS(3144), + [anon_sym_LBRACK2] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_CARET] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT_DASH] = ACTIONS(3144), + [anon_sym_LT_LT] = ACTIONS(3144), + [anon_sym_GT_GT] = ACTIONS(3146), + [anon_sym_GT_GT_GT] = ACTIONS(3144), + [anon_sym_AMP_CARET] = ACTIONS(3144), + [anon_sym_AMP_AMP] = ACTIONS(3144), + [anon_sym_PIPE_PIPE] = ACTIONS(3144), + [anon_sym_or] = ACTIONS(3146), + [sym_none] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_nil] = ACTIONS(3146), + [anon_sym_QMARK_DOT] = ACTIONS(3144), + [anon_sym_POUND_LBRACK] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_DOLLARif] = ACTIONS(3146), + [anon_sym_is] = ACTIONS(3146), + [anon_sym_BANGis] = ACTIONS(3144), + [anon_sym_in] = ACTIONS(3146), + [anon_sym_BANGin] = ACTIONS(3144), + [anon_sym_match] = ACTIONS(3146), + [anon_sym_select] = ACTIONS(3146), + [anon_sym_lock] = ACTIONS(3146), + [anon_sym_rlock] = ACTIONS(3146), + [anon_sym_unsafe] = ACTIONS(3146), + [anon_sym_sql] = ACTIONS(3146), + [sym_int_literal] = ACTIONS(3146), + [sym_float_literal] = ACTIONS(3144), + [sym_rune_literal] = ACTIONS(3144), + [sym_pseudo_compile_time_identifier] = ACTIONS(3146), + [anon_sym_shared] = ACTIONS(3146), + [anon_sym_map_LBRACK] = ACTIONS(3144), + [anon_sym_chan] = ACTIONS(3146), + [anon_sym_thread] = ACTIONS(3146), + [anon_sym_atomic] = ACTIONS(3146), + [sym___double_quote] = ACTIONS(3144), + [sym___single_quote] = ACTIONS(3144), + [sym___c_double_quote] = ACTIONS(3144), + [sym___c_single_quote] = ACTIONS(3144), + [sym___r_double_quote] = ACTIONS(3144), + [sym___r_single_quote] = ACTIONS(3144), }, [1415] = { [sym_line_comment] = STATE(1415), - [sym_identifier] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_as] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_fn] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3131), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3131), - [anon_sym_GT] = ACTIONS(3131), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_mut] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_go] = ACTIONS(3131), - [anon_sym_spawn] = ACTIONS(3131), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3131), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_nil] = ACTIONS(3131), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_DOLLARif] = ACTIONS(3131), - [anon_sym_is] = ACTIONS(3131), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3131), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_rlock] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_sql] = ACTIONS(3131), - [sym_int_literal] = ACTIONS(3131), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [sym_pseudo_compile_time_identifier] = ACTIONS(3131), - [anon_sym_shared] = ACTIONS(3131), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3131), - [anon_sym_thread] = ACTIONS(3131), - [anon_sym_atomic] = ACTIONS(3131), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [sym_block_comment] = STATE(1415), + [sym_identifier] = ACTIONS(2909), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2909), + [anon_sym_as] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_fn] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_RBRACK] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_mut] = ACTIONS(2909), + [anon_sym_COLON] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2909), + [anon_sym_json_DOTdecode] = ACTIONS(2907), + [anon_sym_LBRACK2] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_LT_DASH] = ACTIONS(2907), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_or] = ACTIONS(2909), + [sym_none] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_nil] = ACTIONS(2909), + [anon_sym_QMARK_DOT] = ACTIONS(2907), + [anon_sym_POUND_LBRACK] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_DOLLARif] = ACTIONS(2909), + [anon_sym_is] = ACTIONS(2909), + [anon_sym_BANGis] = ACTIONS(2907), + [anon_sym_in] = ACTIONS(2909), + [anon_sym_BANGin] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_select] = ACTIONS(2909), + [anon_sym_lock] = ACTIONS(2909), + [anon_sym_rlock] = ACTIONS(2909), + [anon_sym_unsafe] = ACTIONS(2909), + [anon_sym_sql] = ACTIONS(2909), + [sym_int_literal] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2907), + [sym_rune_literal] = ACTIONS(2907), + [sym_pseudo_compile_time_identifier] = ACTIONS(2909), + [anon_sym_shared] = ACTIONS(2909), + [anon_sym_map_LBRACK] = ACTIONS(2907), + [anon_sym_chan] = ACTIONS(2909), + [anon_sym_thread] = ACTIONS(2909), + [anon_sym_atomic] = ACTIONS(2909), + [sym___double_quote] = ACTIONS(2907), + [sym___single_quote] = ACTIONS(2907), + [sym___c_double_quote] = ACTIONS(2907), + [sym___c_single_quote] = ACTIONS(2907), + [sym___r_double_quote] = ACTIONS(2907), + [sym___r_single_quote] = ACTIONS(2907), }, [1416] = { [sym_line_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3019), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3019), - [anon_sym_as] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_fn] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3019), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3019), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_GT] = ACTIONS(3019), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3017), - [anon_sym_RBRACK] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3019), - [anon_sym_mut] = ACTIONS(3019), - [anon_sym_COLON] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_go] = ACTIONS(3019), - [anon_sym_spawn] = ACTIONS(3019), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3019), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3019), - [sym_none] = ACTIONS(3019), - [sym_true] = ACTIONS(3019), - [sym_false] = ACTIONS(3019), - [sym_nil] = ACTIONS(3019), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3019), - [anon_sym_DOLLARif] = ACTIONS(3019), - [anon_sym_is] = ACTIONS(3019), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3019), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3019), - [anon_sym_select] = ACTIONS(3019), - [anon_sym_lock] = ACTIONS(3019), - [anon_sym_rlock] = ACTIONS(3019), - [anon_sym_unsafe] = ACTIONS(3019), - [anon_sym_sql] = ACTIONS(3019), - [sym_int_literal] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [sym_pseudo_compile_time_identifier] = ACTIONS(3019), - [anon_sym_shared] = ACTIONS(3019), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3019), - [anon_sym_thread] = ACTIONS(3019), - [anon_sym_atomic] = ACTIONS(3019), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), + [sym_block_comment] = STATE(1416), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_as] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_COMMA] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2693), + [anon_sym_BANG_EQ] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_RBRACK] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2693), + [anon_sym_DASH_DASH] = ACTIONS(2693), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2693), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2693), + [anon_sym_LT_LT] = ACTIONS(2693), + [anon_sym_GT_GT] = ACTIONS(2695), + [anon_sym_GT_GT_GT] = ACTIONS(2693), + [anon_sym_AMP_CARET] = ACTIONS(2693), + [anon_sym_AMP_AMP] = ACTIONS(2693), + [anon_sym_PIPE_PIPE] = ACTIONS(2693), + [anon_sym_or] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_QMARK_DOT] = ACTIONS(2693), + [anon_sym_POUND_LBRACK] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_is] = ACTIONS(2695), + [anon_sym_BANGis] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(2695), + [anon_sym_BANGin] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2693), + [sym_rune_literal] = ACTIONS(2693), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2693), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2693), + [sym___single_quote] = ACTIONS(2693), + [sym___c_double_quote] = ACTIONS(2693), + [sym___c_single_quote] = ACTIONS(2693), + [sym___r_double_quote] = ACTIONS(2693), + [sym___r_single_quote] = ACTIONS(2693), }, [1417] = { [sym_line_comment] = STATE(1417), - [sym_identifier] = ACTIONS(3151), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_as] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3151), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3151), - [anon_sym_GT] = ACTIONS(3151), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3151), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_is] = ACTIONS(3151), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3151), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [sym_pseudo_compile_time_identifier] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), + [sym_block_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3406), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3406), + [anon_sym_as] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_fn] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym_GT] = ACTIONS(3406), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_RBRACK] = ACTIONS(3404), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_mut] = ACTIONS(3406), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_go] = ACTIONS(3406), + [anon_sym_spawn] = ACTIONS(3406), + [anon_sym_json_DOTdecode] = ACTIONS(3404), + [anon_sym_LBRACK2] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3406), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_or] = ACTIONS(3406), + [sym_none] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_nil] = ACTIONS(3406), + [anon_sym_QMARK_DOT] = ACTIONS(3404), + [anon_sym_POUND_LBRACK] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_DOLLARif] = ACTIONS(3406), + [anon_sym_is] = ACTIONS(3406), + [anon_sym_BANGis] = ACTIONS(3404), + [anon_sym_in] = ACTIONS(3406), + [anon_sym_BANGin] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3406), + [anon_sym_select] = ACTIONS(3406), + [anon_sym_lock] = ACTIONS(3406), + [anon_sym_rlock] = ACTIONS(3406), + [anon_sym_unsafe] = ACTIONS(3406), + [anon_sym_sql] = ACTIONS(3406), + [sym_int_literal] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3404), + [sym_rune_literal] = ACTIONS(3404), + [sym_pseudo_compile_time_identifier] = ACTIONS(3406), + [anon_sym_shared] = ACTIONS(3406), + [anon_sym_map_LBRACK] = ACTIONS(3404), + [anon_sym_chan] = ACTIONS(3406), + [anon_sym_thread] = ACTIONS(3406), + [anon_sym_atomic] = ACTIONS(3406), + [sym___double_quote] = ACTIONS(3404), + [sym___single_quote] = ACTIONS(3404), + [sym___c_double_quote] = ACTIONS(3404), + [sym___c_single_quote] = ACTIONS(3404), + [sym___r_double_quote] = ACTIONS(3404), + [sym___r_single_quote] = ACTIONS(3404), }, [1418] = { [sym_line_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_as] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3135), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3135), - [anon_sym_GT] = ACTIONS(3135), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_COLON] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3135), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_is] = ACTIONS(3135), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3135), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [sym_block_comment] = STATE(1418), + [sym_identifier] = ACTIONS(3430), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_as] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3430), + [anon_sym_GT] = ACTIONS(3430), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_RBRACK] = ACTIONS(3428), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_mut] = ACTIONS(3430), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_go] = ACTIONS(3430), + [anon_sym_spawn] = ACTIONS(3430), + [anon_sym_json_DOTdecode] = ACTIONS(3428), + [anon_sym_LBRACK2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_LT_DASH] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3430), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_or] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_nil] = ACTIONS(3430), + [anon_sym_QMARK_DOT] = ACTIONS(3428), + [anon_sym_POUND_LBRACK] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_DOLLARif] = ACTIONS(3430), + [anon_sym_is] = ACTIONS(3430), + [anon_sym_BANGis] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3430), + [anon_sym_BANGin] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_select] = ACTIONS(3430), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(3430), + [anon_sym_sql] = ACTIONS(3430), + [sym_int_literal] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3428), + [sym_rune_literal] = ACTIONS(3428), + [sym_pseudo_compile_time_identifier] = ACTIONS(3430), + [anon_sym_shared] = ACTIONS(3430), + [anon_sym_map_LBRACK] = ACTIONS(3428), + [anon_sym_chan] = ACTIONS(3430), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3430), + [sym___double_quote] = ACTIONS(3428), + [sym___single_quote] = ACTIONS(3428), + [sym___c_double_quote] = ACTIONS(3428), + [sym___c_single_quote] = ACTIONS(3428), + [sym___r_double_quote] = ACTIONS(3428), + [sym___r_single_quote] = ACTIONS(3428), }, [1419] = { [sym_line_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3051), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3051), - [anon_sym_as] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_fn] = ACTIONS(3051), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3049), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3051), - [anon_sym_mut] = ACTIONS(3051), - [anon_sym_COLON] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_go] = ACTIONS(3051), - [anon_sym_spawn] = ACTIONS(3051), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3051), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3051), - [sym_none] = ACTIONS(3051), - [sym_true] = ACTIONS(3051), - [sym_false] = ACTIONS(3051), - [sym_nil] = ACTIONS(3051), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3051), - [anon_sym_DOLLARif] = ACTIONS(3051), - [anon_sym_is] = ACTIONS(3051), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3051), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3051), - [anon_sym_select] = ACTIONS(3051), - [anon_sym_lock] = ACTIONS(3051), - [anon_sym_rlock] = ACTIONS(3051), - [anon_sym_unsafe] = ACTIONS(3051), - [anon_sym_sql] = ACTIONS(3051), - [sym_int_literal] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [sym_pseudo_compile_time_identifier] = ACTIONS(3051), - [anon_sym_shared] = ACTIONS(3051), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3051), - [anon_sym_thread] = ACTIONS(3051), - [anon_sym_atomic] = ACTIONS(3051), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), + [sym_block_comment] = STATE(1419), + [sym_identifier] = ACTIONS(2981), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_as] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_COMMA] = ACTIONS(2979), + [anon_sym_RBRACE] = ACTIONS(2979), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_RBRACK] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_COLON] = ACTIONS(2979), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2979), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2979), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_AMP_CARET] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_or] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_QMARK_DOT] = ACTIONS(2979), + [anon_sym_POUND_LBRACK] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_is] = ACTIONS(2981), + [anon_sym_BANGis] = ACTIONS(2979), + [anon_sym_in] = ACTIONS(2981), + [anon_sym_BANGin] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2979), + [sym_rune_literal] = ACTIONS(2979), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2979), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [sym___double_quote] = ACTIONS(2979), + [sym___single_quote] = ACTIONS(2979), + [sym___c_double_quote] = ACTIONS(2979), + [sym___c_single_quote] = ACTIONS(2979), + [sym___r_double_quote] = ACTIONS(2979), + [sym___r_single_quote] = ACTIONS(2979), }, [1420] = { [sym_line_comment] = STATE(1420), - [sym_identifier] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_as] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3127), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3127), - [anon_sym_GT] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_RBRACK] = ACTIONS(3125), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_mut] = ACTIONS(3127), - [anon_sym_COLON] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3127), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3127), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_nil] = ACTIONS(3127), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_DOLLARif] = ACTIONS(3127), - [anon_sym_is] = ACTIONS(3127), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_rlock] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_sql] = ACTIONS(3127), - [sym_int_literal] = ACTIONS(3127), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [sym_pseudo_compile_time_identifier] = ACTIONS(3127), - [anon_sym_shared] = ACTIONS(3127), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3127), - [anon_sym_thread] = ACTIONS(3127), - [anon_sym_atomic] = ACTIONS(3127), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), + [sym_block_comment] = STATE(1420), + [sym_identifier] = ACTIONS(2985), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_AMP_CARET] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2983), + [sym___single_quote] = ACTIONS(2983), + [sym___c_double_quote] = ACTIONS(2983), + [sym___c_single_quote] = ACTIONS(2983), + [sym___r_double_quote] = ACTIONS(2983), + [sym___r_single_quote] = ACTIONS(2983), }, [1421] = { [sym_line_comment] = STATE(1421), - [sym_identifier] = ACTIONS(3411), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_as] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3411), - [anon_sym_fn] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_GT] = ACTIONS(3411), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3409), - [anon_sym_struct] = ACTIONS(3411), - [anon_sym_mut] = ACTIONS(3411), - [anon_sym_COLON] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_go] = ACTIONS(3411), - [anon_sym_spawn] = ACTIONS(3411), - [anon_sym_json_DOTdecode] = ACTIONS(3409), - [anon_sym_LBRACK2] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3411), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3411), - [anon_sym_GT_GT_GT] = ACTIONS(3409), - [anon_sym_AMP_CARET] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3411), - [sym_none] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_nil] = ACTIONS(3411), - [anon_sym_QMARK_DOT] = ACTIONS(3409), - [anon_sym_POUND_LBRACK] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_DOLLARif] = ACTIONS(3411), - [anon_sym_is] = ACTIONS(3411), - [anon_sym_BANGis] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3411), - [anon_sym_BANGin] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3411), - [anon_sym_select] = ACTIONS(3411), - [anon_sym_lock] = ACTIONS(3411), - [anon_sym_rlock] = ACTIONS(3411), - [anon_sym_unsafe] = ACTIONS(3411), - [anon_sym_sql] = ACTIONS(3411), - [sym_int_literal] = ACTIONS(3411), - [sym_float_literal] = ACTIONS(3409), - [sym_rune_literal] = ACTIONS(3409), - [sym_pseudo_compile_time_identifier] = ACTIONS(3411), - [anon_sym_shared] = ACTIONS(3411), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3411), - [anon_sym_thread] = ACTIONS(3411), - [anon_sym_atomic] = ACTIONS(3411), - [sym___double_quote] = ACTIONS(3409), - [sym___single_quote] = ACTIONS(3409), - [sym___c_double_quote] = ACTIONS(3409), - [sym___c_single_quote] = ACTIONS(3409), - [sym___r_double_quote] = ACTIONS(3409), - [sym___r_single_quote] = ACTIONS(3409), + [sym_block_comment] = STATE(1421), + [sym_identifier] = ACTIONS(2989), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [anon_sym_LT_EQ] = ACTIONS(2987), + [anon_sym_GT_EQ] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_COLON] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2987), + [anon_sym_AMP_CARET] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2987), + [sym___single_quote] = ACTIONS(2987), + [sym___c_double_quote] = ACTIONS(2987), + [sym___c_single_quote] = ACTIONS(2987), + [sym___r_double_quote] = ACTIONS(2987), + [sym___r_single_quote] = ACTIONS(2987), }, [1422] = { [sym_line_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3339), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3337), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3337), - [anon_sym_LT_LT] = ACTIONS(3337), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3337), - [anon_sym_AMP_CARET] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3337), - [anon_sym_POUND_LBRACK] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3337), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3337), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3337), - [sym_rune_literal] = ACTIONS(3337), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3337), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3337), - [sym___single_quote] = ACTIONS(3337), - [sym___c_double_quote] = ACTIONS(3337), - [sym___c_single_quote] = ACTIONS(3337), - [sym___r_double_quote] = ACTIONS(3337), - [sym___r_single_quote] = ACTIONS(3337), + [sym_block_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3434), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3434), + [anon_sym_as] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_RBRACK] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_mut] = ACTIONS(3434), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_go] = ACTIONS(3434), + [anon_sym_spawn] = ACTIONS(3434), + [anon_sym_json_DOTdecode] = ACTIONS(3432), + [anon_sym_LBRACK2] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_CARET] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_LT_DASH] = ACTIONS(3432), + [anon_sym_LT_LT] = ACTIONS(3432), + [anon_sym_GT_GT] = ACTIONS(3434), + [anon_sym_GT_GT_GT] = ACTIONS(3432), + [anon_sym_AMP_CARET] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_or] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_nil] = ACTIONS(3434), + [anon_sym_QMARK_DOT] = ACTIONS(3432), + [anon_sym_POUND_LBRACK] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_DOLLARif] = ACTIONS(3434), + [anon_sym_is] = ACTIONS(3434), + [anon_sym_BANGis] = ACTIONS(3432), + [anon_sym_in] = ACTIONS(3434), + [anon_sym_BANGin] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_lock] = ACTIONS(3434), + [anon_sym_rlock] = ACTIONS(3434), + [anon_sym_unsafe] = ACTIONS(3434), + [anon_sym_sql] = ACTIONS(3434), + [sym_int_literal] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3432), + [sym_rune_literal] = ACTIONS(3432), + [sym_pseudo_compile_time_identifier] = ACTIONS(3434), + [anon_sym_shared] = ACTIONS(3434), + [anon_sym_map_LBRACK] = ACTIONS(3432), + [anon_sym_chan] = ACTIONS(3434), + [anon_sym_thread] = ACTIONS(3434), + [anon_sym_atomic] = ACTIONS(3434), + [sym___double_quote] = ACTIONS(3432), + [sym___single_quote] = ACTIONS(3432), + [sym___c_double_quote] = ACTIONS(3432), + [sym___c_single_quote] = ACTIONS(3432), + [sym___r_double_quote] = ACTIONS(3432), + [sym___r_single_quote] = ACTIONS(3432), }, [1423] = { [sym_line_comment] = STATE(1423), - [sym_identifier] = ACTIONS(3159), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3159), - [anon_sym_as] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3159), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_mut] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_go] = ACTIONS(3159), - [anon_sym_spawn] = ACTIONS(3159), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3159), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3159), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3159), - [sym_none] = ACTIONS(3159), - [sym_true] = ACTIONS(3159), - [sym_false] = ACTIONS(3159), - [sym_nil] = ACTIONS(3159), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_DOLLARif] = ACTIONS(3159), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_rlock] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_sql] = ACTIONS(3159), - [sym_int_literal] = ACTIONS(3159), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [sym_pseudo_compile_time_identifier] = ACTIONS(3159), - [anon_sym_shared] = ACTIONS(3159), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3159), - [anon_sym_thread] = ACTIONS(3159), - [anon_sym_atomic] = ACTIONS(3159), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [sym_block_comment] = STATE(1423), + [sym_identifier] = ACTIONS(3410), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3410), + [anon_sym_as] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_COMMA] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_fn] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_GT] = ACTIONS(3410), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_RBRACK] = ACTIONS(3408), + [anon_sym_struct] = ACTIONS(3410), + [anon_sym_mut] = ACTIONS(3410), + [anon_sym_COLON] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_QMARK] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_go] = ACTIONS(3410), + [anon_sym_spawn] = ACTIONS(3410), + [anon_sym_json_DOTdecode] = ACTIONS(3408), + [anon_sym_LBRACK2] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3410), + [anon_sym_LT_DASH] = ACTIONS(3408), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_or] = ACTIONS(3410), + [sym_none] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_nil] = ACTIONS(3410), + [anon_sym_QMARK_DOT] = ACTIONS(3408), + [anon_sym_POUND_LBRACK] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_DOLLARif] = ACTIONS(3410), + [anon_sym_is] = ACTIONS(3410), + [anon_sym_BANGis] = ACTIONS(3408), + [anon_sym_in] = ACTIONS(3410), + [anon_sym_BANGin] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3410), + [anon_sym_select] = ACTIONS(3410), + [anon_sym_lock] = ACTIONS(3410), + [anon_sym_rlock] = ACTIONS(3410), + [anon_sym_unsafe] = ACTIONS(3410), + [anon_sym_sql] = ACTIONS(3410), + [sym_int_literal] = ACTIONS(3410), + [sym_float_literal] = ACTIONS(3408), + [sym_rune_literal] = ACTIONS(3408), + [sym_pseudo_compile_time_identifier] = ACTIONS(3410), + [anon_sym_shared] = ACTIONS(3410), + [anon_sym_map_LBRACK] = ACTIONS(3408), + [anon_sym_chan] = ACTIONS(3410), + [anon_sym_thread] = ACTIONS(3410), + [anon_sym_atomic] = ACTIONS(3410), + [sym___double_quote] = ACTIONS(3408), + [sym___single_quote] = ACTIONS(3408), + [sym___c_double_quote] = ACTIONS(3408), + [sym___c_single_quote] = ACTIONS(3408), + [sym___r_double_quote] = ACTIONS(3408), + [sym___r_single_quote] = ACTIONS(3408), }, [1424] = { [sym_line_comment] = STATE(1424), - [sym_identifier] = ACTIONS(3163), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_as] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_fn] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_mut] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_go] = ACTIONS(3163), - [anon_sym_spawn] = ACTIONS(3163), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3163), - [sym_none] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_nil] = ACTIONS(3163), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_DOLLARif] = ACTIONS(3163), - [anon_sym_is] = ACTIONS(3163), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3163), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_rlock] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_sql] = ACTIONS(3163), - [sym_int_literal] = ACTIONS(3163), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [sym_pseudo_compile_time_identifier] = ACTIONS(3163), - [anon_sym_shared] = ACTIONS(3163), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3163), - [anon_sym_thread] = ACTIONS(3163), - [anon_sym_atomic] = ACTIONS(3163), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), + [sym_block_comment] = STATE(1424), + [sym_identifier] = ACTIONS(2993), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_AMP_CARET] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2991), + [sym___single_quote] = ACTIONS(2991), + [sym___c_double_quote] = ACTIONS(2991), + [sym___c_single_quote] = ACTIONS(2991), + [sym___r_double_quote] = ACTIONS(2991), + [sym___r_single_quote] = ACTIONS(2991), }, [1425] = { [sym_line_comment] = STATE(1425), - [sym_identifier] = ACTIONS(3171), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_as] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3171), - [anon_sym_fn] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3171), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3171), - [anon_sym_GT] = ACTIONS(3171), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3169), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_mut] = ACTIONS(3171), - [anon_sym_COLON] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3171), - [anon_sym_go] = ACTIONS(3171), - [anon_sym_spawn] = ACTIONS(3171), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3171), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3171), - [sym_none] = ACTIONS(3171), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [sym_nil] = ACTIONS(3171), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_DOLLARif] = ACTIONS(3171), - [anon_sym_is] = ACTIONS(3171), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3171), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_rlock] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_sql] = ACTIONS(3171), - [sym_int_literal] = ACTIONS(3171), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [sym_pseudo_compile_time_identifier] = ACTIONS(3171), - [anon_sym_shared] = ACTIONS(3171), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3171), - [anon_sym_thread] = ACTIONS(3171), - [anon_sym_atomic] = ACTIONS(3171), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), + [sym_block_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_COLON] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3007), + [sym___single_quote] = ACTIONS(3007), + [sym___c_double_quote] = ACTIONS(3007), + [sym___c_single_quote] = ACTIONS(3007), + [sym___r_double_quote] = ACTIONS(3007), + [sym___r_single_quote] = ACTIONS(3007), }, [1426] = { [sym_line_comment] = STATE(1426), - [sym_identifier] = ACTIONS(3175), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_as] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_fn] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3175), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3175), - [anon_sym_GT] = ACTIONS(3175), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_mut] = ACTIONS(3175), - [anon_sym_COLON] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3175), - [anon_sym_go] = ACTIONS(3175), - [anon_sym_spawn] = ACTIONS(3175), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3175), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3175), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3175), - [sym_none] = ACTIONS(3175), - [sym_true] = ACTIONS(3175), - [sym_false] = ACTIONS(3175), - [sym_nil] = ACTIONS(3175), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_DOLLARif] = ACTIONS(3175), - [anon_sym_is] = ACTIONS(3175), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3175), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_rlock] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_sql] = ACTIONS(3175), - [sym_int_literal] = ACTIONS(3175), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3175), - [anon_sym_shared] = ACTIONS(3175), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3175), - [anon_sym_thread] = ACTIONS(3175), - [anon_sym_atomic] = ACTIONS(3175), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [sym_block_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3438), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_as] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_COMMA] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_PERCENT] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3438), + [anon_sym_GT] = ACTIONS(3438), + [anon_sym_EQ_EQ] = ACTIONS(3436), + [anon_sym_BANG_EQ] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_RBRACK] = ACTIONS(3436), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_mut] = ACTIONS(3438), + [anon_sym_COLON] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(3438), + [anon_sym_spawn] = ACTIONS(3438), + [anon_sym_json_DOTdecode] = ACTIONS(3436), + [anon_sym_LBRACK2] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3436), + [anon_sym_GT_GT] = ACTIONS(3438), + [anon_sym_GT_GT_GT] = ACTIONS(3436), + [anon_sym_AMP_CARET] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_or] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_nil] = ACTIONS(3438), + [anon_sym_QMARK_DOT] = ACTIONS(3436), + [anon_sym_POUND_LBRACK] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_DOLLARif] = ACTIONS(3438), + [anon_sym_is] = ACTIONS(3438), + [anon_sym_BANGis] = ACTIONS(3436), + [anon_sym_in] = ACTIONS(3438), + [anon_sym_BANGin] = ACTIONS(3436), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_select] = ACTIONS(3438), + [anon_sym_lock] = ACTIONS(3438), + [anon_sym_rlock] = ACTIONS(3438), + [anon_sym_unsafe] = ACTIONS(3438), + [anon_sym_sql] = ACTIONS(3438), + [sym_int_literal] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3436), + [sym_rune_literal] = ACTIONS(3436), + [sym_pseudo_compile_time_identifier] = ACTIONS(3438), + [anon_sym_shared] = ACTIONS(3438), + [anon_sym_map_LBRACK] = ACTIONS(3436), + [anon_sym_chan] = ACTIONS(3438), + [anon_sym_thread] = ACTIONS(3438), + [anon_sym_atomic] = ACTIONS(3438), + [sym___double_quote] = ACTIONS(3436), + [sym___single_quote] = ACTIONS(3436), + [sym___c_double_quote] = ACTIONS(3436), + [sym___c_single_quote] = ACTIONS(3436), + [sym___r_double_quote] = ACTIONS(3436), + [sym___r_single_quote] = ACTIONS(3436), }, [1427] = { [sym_line_comment] = STATE(1427), - [sym_identifier] = ACTIONS(3287), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_COMMA] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3285), - [anon_sym_BANG_EQ] = ACTIONS(3285), - [anon_sym_LT_EQ] = ACTIONS(3285), - [anon_sym_GT_EQ] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3285), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_CARET] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_CARET] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3285), - [anon_sym_POUND_LBRACK] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3285), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3285), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3285), - [sym_rune_literal] = ACTIONS(3285), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3285), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3285), - [sym___single_quote] = ACTIONS(3285), - [sym___c_double_quote] = ACTIONS(3285), - [sym___c_single_quote] = ACTIONS(3285), - [sym___r_double_quote] = ACTIONS(3285), - [sym___r_single_quote] = ACTIONS(3285), + [sym_block_comment] = STATE(1427), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_COLON] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2969), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_CARET] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2969), + [anon_sym_POUND_LBRACK] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2969), + [sym_rune_literal] = ACTIONS(2969), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2969), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2969), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2969), + [sym___c_single_quote] = ACTIONS(2969), + [sym___r_double_quote] = ACTIONS(2969), + [sym___r_single_quote] = ACTIONS(2969), }, [1428] = { [sym_line_comment] = STATE(1428), - [sym_identifier] = ACTIONS(3335), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3948), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3333), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3333), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3333), - [anon_sym_AMP_CARET] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3333), - [anon_sym_POUND_LBRACK] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3333), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3333), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3333), - [sym_rune_literal] = ACTIONS(3333), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3333), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3333), - [sym___single_quote] = ACTIONS(3333), - [sym___c_double_quote] = ACTIONS(3333), - [sym___c_single_quote] = ACTIONS(3333), - [sym___r_double_quote] = ACTIONS(3333), - [sym___r_single_quote] = ACTIONS(3333), + [sym_block_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3360), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3360), + [anon_sym_AMP_CARET] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3360), + [anon_sym_POUND_LBRACK] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3360), + [sym_rune_literal] = ACTIONS(3360), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3360), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3360), + [sym___single_quote] = ACTIONS(3360), + [sym___c_double_quote] = ACTIONS(3360), + [sym___c_single_quote] = ACTIONS(3360), + [sym___r_double_quote] = ACTIONS(3360), + [sym___r_single_quote] = ACTIONS(3360), }, [1429] = { [sym_line_comment] = STATE(1429), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_COLON] = ACTIONS(2745), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [sym_block_comment] = STATE(1429), + [sym_identifier] = ACTIONS(3402), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3948), + [anon_sym_DOT] = ACTIONS(3402), + [anon_sym_as] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_COMMA] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_fn] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_RBRACK] = ACTIONS(3948), + [anon_sym_struct] = ACTIONS(3402), + [anon_sym_mut] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_go] = ACTIONS(3402), + [anon_sym_spawn] = ACTIONS(3402), + [anon_sym_json_DOTdecode] = ACTIONS(3400), + [anon_sym_LBRACK2] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_or] = ACTIONS(3402), + [sym_none] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_nil] = ACTIONS(3402), + [anon_sym_QMARK_DOT] = ACTIONS(3400), + [anon_sym_POUND_LBRACK] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_DOLLARif] = ACTIONS(3402), + [anon_sym_is] = ACTIONS(3402), + [anon_sym_BANGis] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3402), + [anon_sym_BANGin] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3402), + [anon_sym_select] = ACTIONS(3402), + [anon_sym_lock] = ACTIONS(3402), + [anon_sym_rlock] = ACTIONS(3402), + [anon_sym_unsafe] = ACTIONS(3402), + [anon_sym_sql] = ACTIONS(3402), + [sym_int_literal] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3400), + [sym_rune_literal] = ACTIONS(3400), + [sym_pseudo_compile_time_identifier] = ACTIONS(3402), + [anon_sym_shared] = ACTIONS(3402), + [anon_sym_map_LBRACK] = ACTIONS(3400), + [anon_sym_chan] = ACTIONS(3402), + [anon_sym_thread] = ACTIONS(3402), + [anon_sym_atomic] = ACTIONS(3402), + [sym___double_quote] = ACTIONS(3400), + [sym___single_quote] = ACTIONS(3400), + [sym___c_double_quote] = ACTIONS(3400), + [sym___c_single_quote] = ACTIONS(3400), + [sym___r_double_quote] = ACTIONS(3400), + [sym___r_single_quote] = ACTIONS(3400), }, [1430] = { [sym_line_comment] = STATE(1430), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(623), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym___global] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_pub] = ACTIONS(623), - [anon_sym_mut] = ACTIONS(623), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym_block_comment] = STATE(1430), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2761), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_COLON] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2701), + [sym___single_quote] = ACTIONS(2701), + [sym___c_double_quote] = ACTIONS(2701), + [sym___c_single_quote] = ACTIONS(2701), + [sym___r_double_quote] = ACTIONS(2701), + [sym___r_single_quote] = ACTIONS(2701), }, [1431] = { [sym_line_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3055), + [sym_block_comment] = STATE(1431), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_COLON] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym___global] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_mut] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_AT_LBRACK] = ACTIONS(597), }, [1432] = { [sym_line_comment] = STATE(1432), - [sym_identifier] = ACTIONS(3055), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3055), - [anon_sym_as] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_fn] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3055), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_GT] = ACTIONS(3055), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3053), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3055), - [anon_sym_mut] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_go] = ACTIONS(3055), - [anon_sym_spawn] = ACTIONS(3055), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3055), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3055), - [sym_none] = ACTIONS(3055), - [sym_true] = ACTIONS(3055), - [sym_false] = ACTIONS(3055), - [sym_nil] = ACTIONS(3055), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3055), - [anon_sym_DOLLARif] = ACTIONS(3055), - [anon_sym_is] = ACTIONS(3055), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3055), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3055), - [anon_sym_select] = ACTIONS(3055), - [anon_sym_lock] = ACTIONS(3055), - [anon_sym_rlock] = ACTIONS(3055), - [anon_sym_unsafe] = ACTIONS(3055), - [anon_sym_sql] = ACTIONS(3055), - [sym_int_literal] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [sym_pseudo_compile_time_identifier] = ACTIONS(3055), - [anon_sym_shared] = ACTIONS(3055), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3055), - [anon_sym_thread] = ACTIONS(3055), - [anon_sym_atomic] = ACTIONS(3055), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), + [sym_block_comment] = STATE(1432), + [sym_identifier] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), }, [1433] = { [sym_line_comment] = STATE(1433), - [sym_identifier] = ACTIONS(3431), + [sym_block_comment] = STATE(1433), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), - }, - [1434] = { - [sym_line_comment] = STATE(1434), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym___global] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_pub] = ACTIONS(567), - [anon_sym_mut] = ACTIONS(567), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym___global] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(611), + [anon_sym_mut] = ACTIONS(611), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), [anon_sym_QMARK] = ACTIONS(515), [anon_sym_BANG] = ACTIONS(3953), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_AT_LBRACK] = ACTIONS(567), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_AT_LBRACK] = ACTIONS(611), + }, + [1434] = { + [sym_line_comment] = STATE(1434), + [sym_block_comment] = STATE(1434), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2971), + [anon_sym_as] = ACTIONS(2971), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_COMMA] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_PLUS] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2971), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_SLASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2969), + [anon_sym_BANG_EQ] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_RBRACK] = ACTIONS(2969), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_mut] = ACTIONS(2971), + [anon_sym_PLUS_PLUS] = ACTIONS(2969), + [anon_sym_DASH_DASH] = ACTIONS(2969), + [anon_sym_QMARK] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2971), + [anon_sym_go] = ACTIONS(2971), + [anon_sym_spawn] = ACTIONS(2971), + [anon_sym_json_DOTdecode] = ACTIONS(2969), + [anon_sym_LBRACK2] = ACTIONS(2971), + [anon_sym_TILDE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2971), + [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2969), + [anon_sym_GT_GT] = ACTIONS(2971), + [anon_sym_GT_GT_GT] = ACTIONS(2969), + [anon_sym_AMP_CARET] = ACTIONS(2969), + [anon_sym_AMP_AMP] = ACTIONS(2969), + [anon_sym_PIPE_PIPE] = ACTIONS(2969), + [anon_sym_or] = ACTIONS(2971), + [sym_none] = ACTIONS(2971), + [sym_true] = ACTIONS(2971), + [sym_false] = ACTIONS(2971), + [sym_nil] = ACTIONS(2971), + [anon_sym_QMARK_DOT] = ACTIONS(2969), + [anon_sym_POUND_LBRACK] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_DOLLARif] = ACTIONS(2971), + [anon_sym_is] = ACTIONS(2971), + [anon_sym_BANGis] = ACTIONS(2969), + [anon_sym_in] = ACTIONS(2971), + [anon_sym_BANGin] = ACTIONS(2969), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_select] = ACTIONS(2971), + [anon_sym_lock] = ACTIONS(2971), + [anon_sym_rlock] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_sql] = ACTIONS(2971), + [sym_int_literal] = ACTIONS(2971), + [sym_float_literal] = ACTIONS(2969), + [sym_rune_literal] = ACTIONS(2969), + [sym_pseudo_compile_time_identifier] = ACTIONS(2971), + [anon_sym_shared] = ACTIONS(2971), + [anon_sym_map_LBRACK] = ACTIONS(2969), + [anon_sym_chan] = ACTIONS(2971), + [anon_sym_thread] = ACTIONS(2971), + [anon_sym_atomic] = ACTIONS(2971), + [sym___double_quote] = ACTIONS(2969), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2969), + [sym___c_single_quote] = ACTIONS(2969), + [sym___r_double_quote] = ACTIONS(2969), + [sym___r_single_quote] = ACTIONS(2969), }, [1435] = { [sym_line_comment] = STATE(1435), - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(2188), - [sym_plain_type] = STATE(2227), - [sym__plain_type_without_special] = STATE(2220), - [sym_anon_struct_type] = STATE(2221), - [sym_multi_return_type] = STATE(2220), - [sym_result_type] = STATE(2220), - [sym_option_type] = STATE(2220), - [sym_qualified_type] = STATE(2188), - [sym_fixed_array_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_wrong_pointer_type] = STATE(2221), - [sym_map_type] = STATE(2221), - [sym_channel_type] = STATE(2221), - [sym_shared_type] = STATE(2221), - [sym_thread_type] = STATE(2221), - [sym_atomic_type] = STATE(2221), - [sym_generic_type] = STATE(2221), - [sym_function_type] = STATE(2221), + [sym_block_comment] = STATE(1435), + [sym_reference_expression] = STATE(4571), + [sym_type_reference_expression] = STATE(2195), + [sym_plain_type] = STATE(2231), + [sym__plain_type_without_special] = STATE(2218), + [sym_anon_struct_type] = STATE(2219), + [sym_multi_return_type] = STATE(2218), + [sym_result_type] = STATE(2218), + [sym_option_type] = STATE(2218), + [sym_qualified_type] = STATE(2195), + [sym_fixed_array_type] = STATE(2219), + [sym_array_type] = STATE(2219), + [sym_pointer_type] = STATE(2219), + [sym_wrong_pointer_type] = STATE(2219), + [sym_map_type] = STATE(2219), + [sym_channel_type] = STATE(2219), + [sym_shared_type] = STATE(2219), + [sym_thread_type] = STATE(2219), + [sym_atomic_type] = STATE(2219), + [sym_generic_type] = STATE(2219), + [sym_function_type] = STATE(2219), [sym_identifier] = ACTIONS(3955), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym___global] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), + [anon_sym___global] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), [anon_sym_fn] = ACTIONS(3959), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), [anon_sym_struct] = ACTIONS(3963), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), + [anon_sym_pub] = ACTIONS(601), + [anon_sym_mut] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), [anon_sym_QMARK] = ACTIONS(3965), [anon_sym_BANG] = ACTIONS(3967), [anon_sym_LBRACK2] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(589), + [anon_sym_CARET] = ACTIONS(601), [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), [anon_sym_shared] = ACTIONS(3973), [anon_sym_map_LBRACK] = ACTIONS(3975), [anon_sym_chan] = ACTIONS(3977), [anon_sym_thread] = ACTIONS(3979), [anon_sym_atomic] = ACTIONS(3981), - [anon_sym_AT_LBRACK] = ACTIONS(589), + [anon_sym_AT_LBRACK] = ACTIONS(601), }, [1436] = { [sym_line_comment] = STATE(1436), - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(2188), - [sym_plain_type] = STATE(2264), - [sym__plain_type_without_special] = STATE(2220), - [sym_anon_struct_type] = STATE(2221), - [sym_multi_return_type] = STATE(2220), - [sym_result_type] = STATE(2220), - [sym_option_type] = STATE(2220), - [sym_qualified_type] = STATE(2188), - [sym_fixed_array_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_wrong_pointer_type] = STATE(2221), - [sym_map_type] = STATE(2221), - [sym_channel_type] = STATE(2221), - [sym_shared_type] = STATE(2221), - [sym_thread_type] = STATE(2221), - [sym_atomic_type] = STATE(2221), - [sym_generic_type] = STATE(2221), - [sym_function_type] = STATE(2221), + [sym_block_comment] = STATE(1436), + [sym_reference_expression] = STATE(4571), + [sym_type_reference_expression] = STATE(2195), + [sym_plain_type] = STATE(2272), + [sym__plain_type_without_special] = STATE(2218), + [sym_anon_struct_type] = STATE(2219), + [sym_multi_return_type] = STATE(2218), + [sym_result_type] = STATE(2218), + [sym_option_type] = STATE(2218), + [sym_qualified_type] = STATE(2195), + [sym_fixed_array_type] = STATE(2219), + [sym_array_type] = STATE(2219), + [sym_pointer_type] = STATE(2219), + [sym_wrong_pointer_type] = STATE(2219), + [sym_map_type] = STATE(2219), + [sym_channel_type] = STATE(2219), + [sym_shared_type] = STATE(2219), + [sym_thread_type] = STATE(2219), + [sym_atomic_type] = STATE(2219), + [sym_generic_type] = STATE(2219), + [sym_function_type] = STATE(2219), [sym_identifier] = ACTIONS(3955), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym___global] = ACTIONS(619), - [anon_sym_PIPE] = ACTIONS(619), + [anon_sym___global] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), [anon_sym_fn] = ACTIONS(3959), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_DOT_DOT_DOT] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), [anon_sym_struct] = ACTIONS(3963), - [anon_sym_pub] = ACTIONS(619), - [anon_sym_mut] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(605), + [anon_sym_mut] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), [anon_sym_QMARK] = ACTIONS(3965), [anon_sym_BANG] = ACTIONS(3967), [anon_sym_LBRACK2] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(605), [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), [anon_sym_shared] = ACTIONS(3973), [anon_sym_map_LBRACK] = ACTIONS(3975), [anon_sym_chan] = ACTIONS(3977), [anon_sym_thread] = ACTIONS(3979), [anon_sym_atomic] = ACTIONS(3981), - [anon_sym_AT_LBRACK] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(605), }, [1437] = { [sym_line_comment] = STATE(1437), - [sym_identifier] = ACTIONS(3431), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3431), - [anon_sym_fn] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3431), - [anon_sym_DASH] = ACTIONS(3431), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3431), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3431), - [anon_sym_GT] = ACTIONS(3431), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3431), - [anon_sym_mut] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3431), - [anon_sym_BANG] = ACTIONS(3431), - [anon_sym_go] = ACTIONS(3431), - [anon_sym_spawn] = ACTIONS(3431), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3431), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3431), - [sym_none] = ACTIONS(3431), - [sym_true] = ACTIONS(3431), - [sym_false] = ACTIONS(3431), - [sym_nil] = ACTIONS(3431), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3431), - [anon_sym_DOLLARif] = ACTIONS(3431), - [anon_sym_is] = ACTIONS(3431), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3431), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3431), - [anon_sym_select] = ACTIONS(3431), - [anon_sym_lock] = ACTIONS(3431), - [anon_sym_rlock] = ACTIONS(3431), - [anon_sym_unsafe] = ACTIONS(3431), - [anon_sym_sql] = ACTIONS(3431), - [sym_int_literal] = ACTIONS(3431), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3431), - [anon_sym_shared] = ACTIONS(3431), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3431), - [anon_sym_thread] = ACTIONS(3431), - [anon_sym_atomic] = ACTIONS(3431), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), - }, - [1438] = { - [sym_line_comment] = STATE(1438), - [sym_reference_expression] = STATE(4563), - [sym_type_reference_expression] = STATE(2188), - [sym_plain_type] = STATE(2268), - [sym__plain_type_without_special] = STATE(2220), - [sym_anon_struct_type] = STATE(2221), - [sym_multi_return_type] = STATE(2220), - [sym_result_type] = STATE(2220), - [sym_option_type] = STATE(2220), - [sym_qualified_type] = STATE(2188), - [sym_fixed_array_type] = STATE(2221), - [sym_array_type] = STATE(2221), - [sym_pointer_type] = STATE(2221), - [sym_wrong_pointer_type] = STATE(2221), - [sym_map_type] = STATE(2221), - [sym_channel_type] = STATE(2221), - [sym_shared_type] = STATE(2221), - [sym_thread_type] = STATE(2221), - [sym_atomic_type] = STATE(2221), - [sym_generic_type] = STATE(2221), - [sym_function_type] = STATE(2221), + [sym_block_comment] = STATE(1437), + [sym_reference_expression] = STATE(4571), + [sym_type_reference_expression] = STATE(2195), + [sym_plain_type] = STATE(2276), + [sym__plain_type_without_special] = STATE(2218), + [sym_anon_struct_type] = STATE(2219), + [sym_multi_return_type] = STATE(2218), + [sym_result_type] = STATE(2218), + [sym_option_type] = STATE(2218), + [sym_qualified_type] = STATE(2195), + [sym_fixed_array_type] = STATE(2219), + [sym_array_type] = STATE(2219), + [sym_pointer_type] = STATE(2219), + [sym_wrong_pointer_type] = STATE(2219), + [sym_map_type] = STATE(2219), + [sym_channel_type] = STATE(2219), + [sym_shared_type] = STATE(2219), + [sym_thread_type] = STATE(2219), + [sym_atomic_type] = STATE(2219), + [sym_generic_type] = STATE(2219), + [sym_function_type] = STATE(2219), [sym_identifier] = ACTIONS(3955), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(3957), - [anon_sym___global] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), + [anon_sym___global] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_fn] = ACTIONS(3959), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(3961), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), [anon_sym_struct] = ACTIONS(3963), - [anon_sym_pub] = ACTIONS(627), - [anon_sym_mut] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), + [anon_sym_pub] = ACTIONS(567), + [anon_sym_mut] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), [anon_sym_QMARK] = ACTIONS(3965), [anon_sym_BANG] = ACTIONS(3967), [anon_sym_LBRACK2] = ACTIONS(3969), - [anon_sym_CARET] = ACTIONS(627), + [anon_sym_CARET] = ACTIONS(567), [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), [anon_sym_shared] = ACTIONS(3973), [anon_sym_map_LBRACK] = ACTIONS(3975), [anon_sym_chan] = ACTIONS(3977), [anon_sym_thread] = ACTIONS(3979), [anon_sym_atomic] = ACTIONS(3981), - [anon_sym_AT_LBRACK] = ACTIONS(627), + [anon_sym_AT_LBRACK] = ACTIONS(567), + }, + [1438] = { + [sym_line_comment] = STATE(1438), + [sym_block_comment] = STATE(1438), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_as] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_COMMA] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2701), + [anon_sym_BANG_EQ] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_RBRACK] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_PLUS_PLUS] = ACTIONS(2701), + [anon_sym_DASH_DASH] = ACTIONS(2701), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2701), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2701), + [anon_sym_GT_GT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2701), + [anon_sym_AMP_CARET] = ACTIONS(2701), + [anon_sym_AMP_AMP] = ACTIONS(2701), + [anon_sym_PIPE_PIPE] = ACTIONS(2701), + [anon_sym_or] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_QMARK_DOT] = ACTIONS(2701), + [anon_sym_POUND_LBRACK] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_is] = ACTIONS(2703), + [anon_sym_BANGis] = ACTIONS(2701), + [anon_sym_in] = ACTIONS(2703), + [anon_sym_BANGin] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2701), + [sym_rune_literal] = ACTIONS(2701), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2701), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2701), + [sym___single_quote] = ACTIONS(2701), + [sym___c_double_quote] = ACTIONS(2701), + [sym___c_single_quote] = ACTIONS(2701), + [sym___r_double_quote] = ACTIONS(2701), + [sym___r_single_quote] = ACTIONS(2701), }, [1439] = { [sym_line_comment] = STATE(1439), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_as] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_COMMA] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_SLASH] = ACTIONS(2747), - [anon_sym_PERCENT] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_GT] = ACTIONS(2747), - [anon_sym_EQ_EQ] = ACTIONS(2745), - [anon_sym_BANG_EQ] = ACTIONS(2745), - [anon_sym_LT_EQ] = ACTIONS(2745), - [anon_sym_GT_EQ] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_RBRACK] = ACTIONS(2745), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_PLUS_PLUS] = ACTIONS(2745), - [anon_sym_DASH_DASH] = ACTIONS(2745), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2745), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2745), - [anon_sym_CARET] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2745), - [anon_sym_LT_LT] = ACTIONS(2745), - [anon_sym_GT_GT] = ACTIONS(2747), - [anon_sym_GT_GT_GT] = ACTIONS(2745), - [anon_sym_AMP_CARET] = ACTIONS(2745), - [anon_sym_AMP_AMP] = ACTIONS(2745), - [anon_sym_PIPE_PIPE] = ACTIONS(2745), - [anon_sym_or] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_QMARK_DOT] = ACTIONS(2745), - [anon_sym_POUND_LBRACK] = ACTIONS(2745), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_is] = ACTIONS(2747), - [anon_sym_BANGis] = ACTIONS(2745), - [anon_sym_in] = ACTIONS(2747), - [anon_sym_BANGin] = ACTIONS(2745), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2745), - [sym_rune_literal] = ACTIONS(2745), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2745), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2745), - [sym___single_quote] = ACTIONS(2745), - [sym___c_double_quote] = ACTIONS(2745), - [sym___c_single_quote] = ACTIONS(2745), - [sym___r_double_quote] = ACTIONS(2745), - [sym___r_single_quote] = ACTIONS(2745), + [sym_block_comment] = STATE(1439), + [sym_identifier] = ACTIONS(3013), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3015), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3950), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), }, [1440] = { [sym_line_comment] = STATE(1440), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(2345), - [sym_plain_type] = STATE(2379), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(2345), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(1440), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(2343), + [sym_plain_type] = STATE(2444), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(2343), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(3983), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_RPAREN] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), [anon_sym_fn] = ACTIONS(3985), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_RBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), [anon_sym_QMARK] = ACTIONS(3989), [anon_sym_BANG] = ACTIONS(3991), [anon_sym_LBRACK2] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(599), [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_COLON_EQ] = ACTIONS(599), [anon_sym_shared] = ACTIONS(3997), [anon_sym_map_LBRACK] = ACTIONS(3999), [anon_sym_chan] = ACTIONS(4001), [anon_sym_thread] = ACTIONS(4003), [anon_sym_atomic] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(585), + [anon_sym_DOT_DOT] = ACTIONS(599), }, [1441] = { [sym_line_comment] = STATE(1441), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(2345), - [sym_plain_type] = STATE(2476), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(2345), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), + [sym_block_comment] = STATE(1441), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(2343), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(2343), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), [sym_identifier] = ACTIONS(3983), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(567), [anon_sym_fn] = ACTIONS(3985), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(619), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_RBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(567), + [anon_sym_PLUS_PLUS] = ACTIONS(563), + [anon_sym_DASH_DASH] = ACTIONS(563), [anon_sym_QMARK] = ACTIONS(3989), [anon_sym_BANG] = ACTIONS(3991), [anon_sym_LBRACK2] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(563), [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), [anon_sym_shared] = ACTIONS(3997), [anon_sym_map_LBRACK] = ACTIONS(3999), [anon_sym_chan] = ACTIONS(4001), [anon_sym_thread] = ACTIONS(4003), [anon_sym_atomic] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(617), + [anon_sym_DOT_DOT] = ACTIONS(563), }, [1442] = { [sym_line_comment] = STATE(1442), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(2345), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(2345), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(3983), + [sym_block_comment] = STATE(1442), + [sym_type_parameters] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(627), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(4007), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), + }, + [1443] = { + [sym_line_comment] = STATE(1443), + [sym_block_comment] = STATE(1443), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(2343), + [sym_plain_type] = STATE(2451), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(2343), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(3983), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_PIPE] = ACTIONS(605), [anon_sym_fn] = ACTIONS(3985), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(605), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), [anon_sym_QMARK] = ACTIONS(3989), [anon_sym_BANG] = ACTIONS(3991), [anon_sym_LBRACK2] = ACTIONS(3993), - [anon_sym_CARET] = ACTIONS(625), + [anon_sym_CARET] = ACTIONS(603), [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_COLON_EQ] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_COLON_EQ] = ACTIONS(603), [anon_sym_shared] = ACTIONS(3997), [anon_sym_map_LBRACK] = ACTIONS(3999), [anon_sym_chan] = ACTIONS(4001), [anon_sym_thread] = ACTIONS(4003), [anon_sym_atomic] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(625), - }, - [1443] = { - [sym_line_comment] = STATE(1443), - [sym_type_parameters] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), + [anon_sym_DOT_DOT] = ACTIONS(603), }, [1444] = { [sym_line_comment] = STATE(1444), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(621), - }, - [1445] = { - [sym_line_comment] = STATE(1445), - [aux_sym__type_union_list_repeat1] = STATE(1447), + [sym_block_comment] = STATE(1444), + [aux_sym_strictly_expression_list_repeat1] = STATE(1453), [ts_builtin_sym_end] = ACTIONS(4009), [sym_identifier] = ACTIONS(4011), - [anon_sym_LF] = ACTIONS(4013), - [anon_sym_CR] = ACTIONS(4013), - [anon_sym_CR_LF] = ACTIONS(4013), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_LF] = ACTIONS(4011), + [anon_sym_CR] = ACTIONS(4011), + [anon_sym_CR_LF] = ACTIONS(4011), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4011), [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_COMMA] = ACTIONS(3508), [anon_sym_const] = ACTIONS(4011), [anon_sym_LPAREN] = ACTIONS(4011), [anon_sym___global] = ACTIONS(4011), [anon_sym_type] = ACTIONS(4011), - [anon_sym_PIPE] = ACTIONS(4016), [anon_sym_fn] = ACTIONS(4011), [anon_sym_PLUS] = ACTIONS(4011), [anon_sym_DASH] = ACTIONS(4011), @@ -185218,99 +179827,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4011), [sym___r_single_quote] = ACTIONS(4011), }, + [1445] = { + [sym_line_comment] = STATE(1445), + [sym_block_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), + }, [1446] = { [sym_line_comment] = STATE(1446), - [aux_sym_strictly_expression_list_repeat1] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(4018), - [sym_identifier] = ACTIONS(4020), - [anon_sym_LF] = ACTIONS(4020), - [anon_sym_CR] = ACTIONS(4020), - [anon_sym_CR_LF] = ACTIONS(4020), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym___global] = ACTIONS(4020), - [anon_sym_type] = ACTIONS(4020), - [anon_sym_fn] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_pub] = ACTIONS(4020), - [anon_sym_mut] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_interface] = ACTIONS(4020), - [anon_sym_QMARK] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4020), - [anon_sym_go] = ACTIONS(4020), - [anon_sym_spawn] = ACTIONS(4020), - [anon_sym_json_DOTdecode] = ACTIONS(4020), - [anon_sym_LBRACK2] = ACTIONS(4020), - [anon_sym_TILDE] = ACTIONS(4020), - [anon_sym_CARET] = ACTIONS(4020), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_LT_DASH] = ACTIONS(4020), - [sym_none] = ACTIONS(4020), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [sym_nil] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_DOLLARif] = ACTIONS(4020), - [anon_sym_match] = ACTIONS(4020), - [anon_sym_select] = ACTIONS(4020), - [anon_sym_lock] = ACTIONS(4020), - [anon_sym_rlock] = ACTIONS(4020), - [anon_sym_unsafe] = ACTIONS(4020), - [anon_sym_sql] = ACTIONS(4020), - [sym_int_literal] = ACTIONS(4020), - [sym_float_literal] = ACTIONS(4020), - [sym_rune_literal] = ACTIONS(4020), - [sym_pseudo_compile_time_identifier] = ACTIONS(4020), - [anon_sym_shared] = ACTIONS(4020), - [anon_sym_map_LBRACK] = ACTIONS(4020), - [anon_sym_chan] = ACTIONS(4020), - [anon_sym_thread] = ACTIONS(4020), - [anon_sym_atomic] = ACTIONS(4020), - [anon_sym_assert] = ACTIONS(4020), - [anon_sym_defer] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_DOLLARfor] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_POUND] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym_AT_LBRACK] = ACTIONS(4020), - [sym___double_quote] = ACTIONS(4020), - [sym___single_quote] = ACTIONS(4020), - [sym___c_double_quote] = ACTIONS(4020), - [sym___c_single_quote] = ACTIONS(4020), - [sym___r_double_quote] = ACTIONS(4020), - [sym___r_single_quote] = ACTIONS(4020), + [sym_block_comment] = STATE(1446), + [aux_sym__type_union_list_repeat1] = STATE(1447), + [ts_builtin_sym_end] = ACTIONS(4013), + [sym_identifier] = ACTIONS(4015), + [anon_sym_LF] = ACTIONS(4017), + [anon_sym_CR] = ACTIONS(4017), + [anon_sym_CR_LF] = ACTIONS(4017), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4015), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_const] = ACTIONS(4015), + [anon_sym_LPAREN] = ACTIONS(4015), + [anon_sym___global] = ACTIONS(4015), + [anon_sym_type] = ACTIONS(4015), + [anon_sym_PIPE] = ACTIONS(4020), + [anon_sym_fn] = ACTIONS(4015), + [anon_sym_PLUS] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4015), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_struct] = ACTIONS(4015), + [anon_sym_union] = ACTIONS(4015), + [anon_sym_pub] = ACTIONS(4015), + [anon_sym_mut] = ACTIONS(4015), + [anon_sym_enum] = ACTIONS(4015), + [anon_sym_interface] = ACTIONS(4015), + [anon_sym_QMARK] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4015), + [anon_sym_go] = ACTIONS(4015), + [anon_sym_spawn] = ACTIONS(4015), + [anon_sym_json_DOTdecode] = ACTIONS(4015), + [anon_sym_LBRACK2] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_CARET] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4015), + [anon_sym_LT_DASH] = ACTIONS(4015), + [sym_none] = ACTIONS(4015), + [sym_true] = ACTIONS(4015), + [sym_false] = ACTIONS(4015), + [sym_nil] = ACTIONS(4015), + [anon_sym_if] = ACTIONS(4015), + [anon_sym_DOLLARif] = ACTIONS(4015), + [anon_sym_match] = ACTIONS(4015), + [anon_sym_select] = ACTIONS(4015), + [anon_sym_lock] = ACTIONS(4015), + [anon_sym_rlock] = ACTIONS(4015), + [anon_sym_unsafe] = ACTIONS(4015), + [anon_sym_sql] = ACTIONS(4015), + [sym_int_literal] = ACTIONS(4015), + [sym_float_literal] = ACTIONS(4015), + [sym_rune_literal] = ACTIONS(4015), + [sym_pseudo_compile_time_identifier] = ACTIONS(4015), + [anon_sym_shared] = ACTIONS(4015), + [anon_sym_map_LBRACK] = ACTIONS(4015), + [anon_sym_chan] = ACTIONS(4015), + [anon_sym_thread] = ACTIONS(4015), + [anon_sym_atomic] = ACTIONS(4015), + [anon_sym_assert] = ACTIONS(4015), + [anon_sym_defer] = ACTIONS(4015), + [anon_sym_goto] = ACTIONS(4015), + [anon_sym_break] = ACTIONS(4015), + [anon_sym_continue] = ACTIONS(4015), + [anon_sym_return] = ACTIONS(4015), + [anon_sym_DOLLARfor] = ACTIONS(4015), + [anon_sym_for] = ACTIONS(4015), + [anon_sym_POUND] = ACTIONS(4015), + [anon_sym_asm] = ACTIONS(4015), + [anon_sym_AT_LBRACK] = ACTIONS(4015), + [sym___double_quote] = ACTIONS(4015), + [sym___single_quote] = ACTIONS(4015), + [sym___c_double_quote] = ACTIONS(4015), + [sym___c_single_quote] = ACTIONS(4015), + [sym___r_double_quote] = ACTIONS(4015), + [sym___r_single_quote] = ACTIONS(4015), }, [1447] = { [sym_line_comment] = STATE(1447), - [aux_sym__type_union_list_repeat1] = STATE(1447), + [sym_block_comment] = STATE(1447), + [aux_sym__type_union_list_repeat1] = STATE(1450), [ts_builtin_sym_end] = ACTIONS(4022), [sym_identifier] = ACTIONS(4024), [anon_sym_LF] = ACTIONS(4026), [anon_sym_CR] = ACTIONS(4026), [anon_sym_CR_LF] = ACTIONS(4026), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4024), [anon_sym_LBRACE] = ACTIONS(4024), [anon_sym_const] = ACTIONS(4024), [anon_sym_LPAREN] = ACTIONS(4024), [anon_sym___global] = ACTIONS(4024), [anon_sym_type] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4029), + [anon_sym_PIPE] = ACTIONS(4020), [anon_sym_fn] = ACTIONS(4024), [anon_sym_PLUS] = ACTIONS(4024), [anon_sym_DASH] = ACTIONS(4024), @@ -185372,849 +180060,861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1448] = { [sym_line_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1448), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_CR] = ACTIONS(597), + [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(597), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_LT_EQ] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(597), + [anon_sym_AMP_CARET] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(597), + [anon_sym_POUND_LBRACK] = ACTIONS(597), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(597), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1449] = { [sym_line_comment] = STATE(1449), - [aux_sym_strictly_expression_list_repeat1] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_CR] = ACTIONS(1761), - [anon_sym_CR_LF] = ACTIONS(1761), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1761), - [anon_sym_LBRACE] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1761), - [anon_sym___global] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_PLUS] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1761), - [anon_sym_STAR] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_mut] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_interface] = ACTIONS(1761), - [anon_sym_QMARK] = ACTIONS(1761), - [anon_sym_BANG] = ACTIONS(1761), - [anon_sym_go] = ACTIONS(1761), - [anon_sym_spawn] = ACTIONS(1761), - [anon_sym_json_DOTdecode] = ACTIONS(1761), - [anon_sym_LBRACK2] = ACTIONS(1761), - [anon_sym_TILDE] = ACTIONS(1761), - [anon_sym_CARET] = ACTIONS(1761), - [anon_sym_AMP] = ACTIONS(1761), - [anon_sym_LT_DASH] = ACTIONS(1761), - [sym_none] = ACTIONS(1761), - [sym_true] = ACTIONS(1761), - [sym_false] = ACTIONS(1761), - [sym_nil] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_DOLLARif] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_select] = ACTIONS(1761), - [anon_sym_lock] = ACTIONS(1761), - [anon_sym_rlock] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_sql] = ACTIONS(1761), - [sym_int_literal] = ACTIONS(1761), - [sym_float_literal] = ACTIONS(1761), - [sym_rune_literal] = ACTIONS(1761), - [sym_pseudo_compile_time_identifier] = ACTIONS(1761), - [anon_sym_shared] = ACTIONS(1761), - [anon_sym_map_LBRACK] = ACTIONS(1761), - [anon_sym_chan] = ACTIONS(1761), - [anon_sym_thread] = ACTIONS(1761), - [anon_sym_atomic] = ACTIONS(1761), - [anon_sym_assert] = ACTIONS(1761), - [anon_sym_defer] = ACTIONS(1761), - [anon_sym_goto] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_DOLLARfor] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_POUND] = ACTIONS(1761), - [anon_sym_asm] = ACTIONS(1761), - [anon_sym_AT_LBRACK] = ACTIONS(1761), - [sym___double_quote] = ACTIONS(1761), - [sym___single_quote] = ACTIONS(1761), - [sym___c_double_quote] = ACTIONS(1761), - [sym___c_single_quote] = ACTIONS(1761), - [sym___r_double_quote] = ACTIONS(1761), - [sym___r_single_quote] = ACTIONS(1761), + [sym_block_comment] = STATE(1449), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(595), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(595), }, [1450] = { [sym_line_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(3137), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LF] = ACTIONS(3139), - [anon_sym_CR] = ACTIONS(3139), - [anon_sym_CR_LF] = ACTIONS(3139), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym___global] = ACTIONS(3139), - [anon_sym_type] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3139), - [anon_sym_fn] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_union] = ACTIONS(3139), - [anon_sym_pub] = ACTIONS(3139), - [anon_sym_mut] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3139), - [anon_sym_go] = ACTIONS(3139), - [anon_sym_spawn] = ACTIONS(3139), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3139), - [sym_none] = ACTIONS(3139), - [sym_true] = ACTIONS(3139), - [sym_false] = ACTIONS(3139), - [sym_nil] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_DOLLARif] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_rlock] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_sql] = ACTIONS(3139), - [sym_int_literal] = ACTIONS(3139), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [sym_pseudo_compile_time_identifier] = ACTIONS(3139), - [anon_sym_shared] = ACTIONS(3139), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3139), - [anon_sym_thread] = ACTIONS(3139), - [anon_sym_atomic] = ACTIONS(3139), - [anon_sym_assert] = ACTIONS(3139), - [anon_sym_defer] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_DOLLARfor] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_POUND] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(3139), - [anon_sym_AT_LBRACK] = ACTIONS(3139), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), + [sym_block_comment] = STATE(1450), + [aux_sym__type_union_list_repeat1] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(4029), + [sym_identifier] = ACTIONS(4031), + [anon_sym_LF] = ACTIONS(4033), + [anon_sym_CR] = ACTIONS(4033), + [anon_sym_CR_LF] = ACTIONS(4033), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(4031), + [anon_sym_const] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym___global] = ACTIONS(4031), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_PIPE] = ACTIONS(4036), + [anon_sym_fn] = ACTIONS(4031), + [anon_sym_PLUS] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4031), + [anon_sym_STAR] = ACTIONS(4031), + [anon_sym_struct] = ACTIONS(4031), + [anon_sym_union] = ACTIONS(4031), + [anon_sym_pub] = ACTIONS(4031), + [anon_sym_mut] = ACTIONS(4031), + [anon_sym_enum] = ACTIONS(4031), + [anon_sym_interface] = ACTIONS(4031), + [anon_sym_QMARK] = ACTIONS(4031), + [anon_sym_BANG] = ACTIONS(4031), + [anon_sym_go] = ACTIONS(4031), + [anon_sym_spawn] = ACTIONS(4031), + [anon_sym_json_DOTdecode] = ACTIONS(4031), + [anon_sym_LBRACK2] = ACTIONS(4031), + [anon_sym_TILDE] = ACTIONS(4031), + [anon_sym_CARET] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4031), + [anon_sym_LT_DASH] = ACTIONS(4031), + [sym_none] = ACTIONS(4031), + [sym_true] = ACTIONS(4031), + [sym_false] = ACTIONS(4031), + [sym_nil] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_DOLLARif] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_select] = ACTIONS(4031), + [anon_sym_lock] = ACTIONS(4031), + [anon_sym_rlock] = ACTIONS(4031), + [anon_sym_unsafe] = ACTIONS(4031), + [anon_sym_sql] = ACTIONS(4031), + [sym_int_literal] = ACTIONS(4031), + [sym_float_literal] = ACTIONS(4031), + [sym_rune_literal] = ACTIONS(4031), + [sym_pseudo_compile_time_identifier] = ACTIONS(4031), + [anon_sym_shared] = ACTIONS(4031), + [anon_sym_map_LBRACK] = ACTIONS(4031), + [anon_sym_chan] = ACTIONS(4031), + [anon_sym_thread] = ACTIONS(4031), + [anon_sym_atomic] = ACTIONS(4031), + [anon_sym_assert] = ACTIONS(4031), + [anon_sym_defer] = ACTIONS(4031), + [anon_sym_goto] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_DOLLARfor] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_POUND] = ACTIONS(4031), + [anon_sym_asm] = ACTIONS(4031), + [anon_sym_AT_LBRACK] = ACTIONS(4031), + [sym___double_quote] = ACTIONS(4031), + [sym___single_quote] = ACTIONS(4031), + [sym___c_double_quote] = ACTIONS(4031), + [sym___c_single_quote] = ACTIONS(4031), + [sym___r_double_quote] = ACTIONS(4031), + [sym___r_single_quote] = ACTIONS(4031), }, [1451] = { [sym_line_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym_identifier] = ACTIONS(3135), - [anon_sym_LF] = ACTIONS(3135), - [anon_sym_CR] = ACTIONS(3135), - [anon_sym_CR_LF] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym___global] = ACTIONS(3135), - [anon_sym_type] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3135), - [anon_sym_fn] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_union] = ACTIONS(3135), - [anon_sym_pub] = ACTIONS(3135), - [anon_sym_mut] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3135), - [anon_sym_go] = ACTIONS(3135), - [anon_sym_spawn] = ACTIONS(3135), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3135), - [sym_none] = ACTIONS(3135), - [sym_true] = ACTIONS(3135), - [sym_false] = ACTIONS(3135), - [sym_nil] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_DOLLARif] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_rlock] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_sql] = ACTIONS(3135), - [sym_int_literal] = ACTIONS(3135), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3135), - [anon_sym_shared] = ACTIONS(3135), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3135), - [anon_sym_thread] = ACTIONS(3135), - [anon_sym_atomic] = ACTIONS(3135), - [anon_sym_assert] = ACTIONS(3135), - [anon_sym_defer] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_DOLLARfor] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_POUND] = ACTIONS(3135), - [anon_sym_asm] = ACTIONS(3135), - [anon_sym_AT_LBRACK] = ACTIONS(3135), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [sym_block_comment] = STATE(1451), + [aux_sym_strictly_expression_list_repeat1] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(1723), + [anon_sym_LF] = ACTIONS(1723), + [anon_sym_CR] = ACTIONS(1723), + [anon_sym_CR_LF] = ACTIONS(1723), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym___global] = ACTIONS(1723), + [anon_sym_type] = ACTIONS(1723), + [anon_sym_fn] = ACTIONS(1723), + [anon_sym_PLUS] = ACTIONS(1723), + [anon_sym_DASH] = ACTIONS(1723), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_struct] = ACTIONS(1723), + [anon_sym_union] = ACTIONS(1723), + [anon_sym_pub] = ACTIONS(1723), + [anon_sym_mut] = ACTIONS(1723), + [anon_sym_enum] = ACTIONS(1723), + [anon_sym_interface] = ACTIONS(1723), + [anon_sym_QMARK] = ACTIONS(1723), + [anon_sym_BANG] = ACTIONS(1723), + [anon_sym_go] = ACTIONS(1723), + [anon_sym_spawn] = ACTIONS(1723), + [anon_sym_json_DOTdecode] = ACTIONS(1723), + [anon_sym_LBRACK2] = ACTIONS(1723), + [anon_sym_TILDE] = ACTIONS(1723), + [anon_sym_CARET] = ACTIONS(1723), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1723), + [sym_none] = ACTIONS(1723), + [sym_true] = ACTIONS(1723), + [sym_false] = ACTIONS(1723), + [sym_nil] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_DOLLARif] = ACTIONS(1723), + [anon_sym_match] = ACTIONS(1723), + [anon_sym_select] = ACTIONS(1723), + [anon_sym_lock] = ACTIONS(1723), + [anon_sym_rlock] = ACTIONS(1723), + [anon_sym_unsafe] = ACTIONS(1723), + [anon_sym_sql] = ACTIONS(1723), + [sym_int_literal] = ACTIONS(1723), + [sym_float_literal] = ACTIONS(1723), + [sym_rune_literal] = ACTIONS(1723), + [sym_pseudo_compile_time_identifier] = ACTIONS(1723), + [anon_sym_shared] = ACTIONS(1723), + [anon_sym_map_LBRACK] = ACTIONS(1723), + [anon_sym_chan] = ACTIONS(1723), + [anon_sym_thread] = ACTIONS(1723), + [anon_sym_atomic] = ACTIONS(1723), + [anon_sym_assert] = ACTIONS(1723), + [anon_sym_defer] = ACTIONS(1723), + [anon_sym_goto] = ACTIONS(1723), + [anon_sym_break] = ACTIONS(1723), + [anon_sym_continue] = ACTIONS(1723), + [anon_sym_return] = ACTIONS(1723), + [anon_sym_DOLLARfor] = ACTIONS(1723), + [anon_sym_for] = ACTIONS(1723), + [anon_sym_POUND] = ACTIONS(1723), + [anon_sym_asm] = ACTIONS(1723), + [anon_sym_AT_LBRACK] = ACTIONS(1723), + [sym___double_quote] = ACTIONS(1723), + [sym___single_quote] = ACTIONS(1723), + [sym___c_double_quote] = ACTIONS(1723), + [sym___c_single_quote] = ACTIONS(1723), + [sym___r_double_quote] = ACTIONS(1723), + [sym___r_single_quote] = ACTIONS(1723), }, [1452] = { [sym_line_comment] = STATE(1452), - [aux_sym_strictly_expression_list_repeat1] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_CR] = ACTIONS(1719), - [anon_sym_CR_LF] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym___global] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_pub] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_go] = ACTIONS(1719), - [anon_sym_spawn] = ACTIONS(1719), - [anon_sym_json_DOTdecode] = ACTIONS(1719), - [anon_sym_LBRACK2] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_LT_DASH] = ACTIONS(1719), - [sym_none] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_nil] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_DOLLARif] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_select] = ACTIONS(1719), - [anon_sym_lock] = ACTIONS(1719), - [anon_sym_rlock] = ACTIONS(1719), - [anon_sym_unsafe] = ACTIONS(1719), - [anon_sym_sql] = ACTIONS(1719), - [sym_int_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), - [sym_rune_literal] = ACTIONS(1719), - [sym_pseudo_compile_time_identifier] = ACTIONS(1719), - [anon_sym_shared] = ACTIONS(1719), - [anon_sym_map_LBRACK] = ACTIONS(1719), - [anon_sym_chan] = ACTIONS(1719), - [anon_sym_thread] = ACTIONS(1719), - [anon_sym_atomic] = ACTIONS(1719), - [anon_sym_assert] = ACTIONS(1719), - [anon_sym_defer] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_DOLLARfor] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_asm] = ACTIONS(1719), - [anon_sym_AT_LBRACK] = ACTIONS(1719), - [sym___double_quote] = ACTIONS(1719), - [sym___single_quote] = ACTIONS(1719), - [sym___c_double_quote] = ACTIONS(1719), - [sym___c_single_quote] = ACTIONS(1719), - [sym___r_double_quote] = ACTIONS(1719), - [sym___r_single_quote] = ACTIONS(1719), + [sym_block_comment] = STATE(1452), + [aux_sym_strictly_expression_list_repeat1] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(4039), + [sym_identifier] = ACTIONS(4041), + [anon_sym_LF] = ACTIONS(4041), + [anon_sym_CR] = ACTIONS(4041), + [anon_sym_CR_LF] = ACTIONS(4041), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4041), + [anon_sym_LBRACE] = ACTIONS(4041), + [anon_sym_COMMA] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_LPAREN] = ACTIONS(4041), + [anon_sym___global] = ACTIONS(4041), + [anon_sym_type] = ACTIONS(4041), + [anon_sym_fn] = ACTIONS(4041), + [anon_sym_PLUS] = ACTIONS(4041), + [anon_sym_DASH] = ACTIONS(4041), + [anon_sym_STAR] = ACTIONS(4041), + [anon_sym_struct] = ACTIONS(4041), + [anon_sym_union] = ACTIONS(4041), + [anon_sym_pub] = ACTIONS(4041), + [anon_sym_mut] = ACTIONS(4041), + [anon_sym_enum] = ACTIONS(4041), + [anon_sym_interface] = ACTIONS(4041), + [anon_sym_QMARK] = ACTIONS(4041), + [anon_sym_BANG] = ACTIONS(4041), + [anon_sym_go] = ACTIONS(4041), + [anon_sym_spawn] = ACTIONS(4041), + [anon_sym_json_DOTdecode] = ACTIONS(4041), + [anon_sym_LBRACK2] = ACTIONS(4041), + [anon_sym_TILDE] = ACTIONS(4041), + [anon_sym_CARET] = ACTIONS(4041), + [anon_sym_AMP] = ACTIONS(4041), + [anon_sym_LT_DASH] = ACTIONS(4041), + [sym_none] = ACTIONS(4041), + [sym_true] = ACTIONS(4041), + [sym_false] = ACTIONS(4041), + [sym_nil] = ACTIONS(4041), + [anon_sym_if] = ACTIONS(4041), + [anon_sym_DOLLARif] = ACTIONS(4041), + [anon_sym_match] = ACTIONS(4041), + [anon_sym_select] = ACTIONS(4041), + [anon_sym_lock] = ACTIONS(4041), + [anon_sym_rlock] = ACTIONS(4041), + [anon_sym_unsafe] = ACTIONS(4041), + [anon_sym_sql] = ACTIONS(4041), + [sym_int_literal] = ACTIONS(4041), + [sym_float_literal] = ACTIONS(4041), + [sym_rune_literal] = ACTIONS(4041), + [sym_pseudo_compile_time_identifier] = ACTIONS(4041), + [anon_sym_shared] = ACTIONS(4041), + [anon_sym_map_LBRACK] = ACTIONS(4041), + [anon_sym_chan] = ACTIONS(4041), + [anon_sym_thread] = ACTIONS(4041), + [anon_sym_atomic] = ACTIONS(4041), + [anon_sym_assert] = ACTIONS(4041), + [anon_sym_defer] = ACTIONS(4041), + [anon_sym_goto] = ACTIONS(4041), + [anon_sym_break] = ACTIONS(4041), + [anon_sym_continue] = ACTIONS(4041), + [anon_sym_return] = ACTIONS(4041), + [anon_sym_DOLLARfor] = ACTIONS(4041), + [anon_sym_for] = ACTIONS(4041), + [anon_sym_POUND] = ACTIONS(4041), + [anon_sym_asm] = ACTIONS(4041), + [anon_sym_AT_LBRACK] = ACTIONS(4041), + [sym___double_quote] = ACTIONS(4041), + [sym___single_quote] = ACTIONS(4041), + [sym___c_double_quote] = ACTIONS(4041), + [sym___c_single_quote] = ACTIONS(4041), + [sym___r_double_quote] = ACTIONS(4041), + [sym___r_single_quote] = ACTIONS(4041), }, [1453] = { [sym_line_comment] = STATE(1453), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(623), - [anon_sym_CR] = ACTIONS(623), - [anon_sym_CR_LF] = ACTIONS(623), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(623), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(623), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(623), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_LT_EQ] = ACTIONS(623), - [anon_sym_GT_EQ] = ACTIONS(623), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(623), - [anon_sym_DASH_DASH] = ACTIONS(623), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(623), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(623), - [anon_sym_AMP_CARET] = ACTIONS(623), - [anon_sym_AMP_AMP] = ACTIONS(623), - [anon_sym_PIPE_PIPE] = ACTIONS(623), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(623), - [anon_sym_POUND_LBRACK] = ACTIONS(623), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(623), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(623), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_block_comment] = STATE(1453), + [aux_sym_strictly_expression_list_repeat1] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(4043), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_LT_DASH] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), }, [1454] = { [sym_line_comment] = STATE(1454), - [aux_sym__type_union_list_repeat1] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(4035), - [sym_identifier] = ACTIONS(4037), - [anon_sym_LF] = ACTIONS(4039), - [anon_sym_CR] = ACTIONS(4039), - [anon_sym_CR_LF] = ACTIONS(4039), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4037), - [anon_sym_LBRACE] = ACTIONS(4037), - [anon_sym_const] = ACTIONS(4037), - [anon_sym_LPAREN] = ACTIONS(4037), - [anon_sym___global] = ACTIONS(4037), - [anon_sym_type] = ACTIONS(4037), - [anon_sym_PIPE] = ACTIONS(4016), - [anon_sym_fn] = ACTIONS(4037), - [anon_sym_PLUS] = ACTIONS(4037), - [anon_sym_DASH] = ACTIONS(4037), - [anon_sym_STAR] = ACTIONS(4037), - [anon_sym_struct] = ACTIONS(4037), - [anon_sym_union] = ACTIONS(4037), - [anon_sym_pub] = ACTIONS(4037), - [anon_sym_mut] = ACTIONS(4037), - [anon_sym_enum] = ACTIONS(4037), - [anon_sym_interface] = ACTIONS(4037), - [anon_sym_QMARK] = ACTIONS(4037), - [anon_sym_BANG] = ACTIONS(4037), - [anon_sym_go] = ACTIONS(4037), - [anon_sym_spawn] = ACTIONS(4037), - [anon_sym_json_DOTdecode] = ACTIONS(4037), - [anon_sym_LBRACK2] = ACTIONS(4037), - [anon_sym_TILDE] = ACTIONS(4037), - [anon_sym_CARET] = ACTIONS(4037), - [anon_sym_AMP] = ACTIONS(4037), - [anon_sym_LT_DASH] = ACTIONS(4037), - [sym_none] = ACTIONS(4037), - [sym_true] = ACTIONS(4037), - [sym_false] = ACTIONS(4037), - [sym_nil] = ACTIONS(4037), - [anon_sym_if] = ACTIONS(4037), - [anon_sym_DOLLARif] = ACTIONS(4037), - [anon_sym_match] = ACTIONS(4037), - [anon_sym_select] = ACTIONS(4037), - [anon_sym_lock] = ACTIONS(4037), - [anon_sym_rlock] = ACTIONS(4037), - [anon_sym_unsafe] = ACTIONS(4037), - [anon_sym_sql] = ACTIONS(4037), - [sym_int_literal] = ACTIONS(4037), - [sym_float_literal] = ACTIONS(4037), - [sym_rune_literal] = ACTIONS(4037), - [sym_pseudo_compile_time_identifier] = ACTIONS(4037), - [anon_sym_shared] = ACTIONS(4037), - [anon_sym_map_LBRACK] = ACTIONS(4037), - [anon_sym_chan] = ACTIONS(4037), - [anon_sym_thread] = ACTIONS(4037), - [anon_sym_atomic] = ACTIONS(4037), - [anon_sym_assert] = ACTIONS(4037), - [anon_sym_defer] = ACTIONS(4037), - [anon_sym_goto] = ACTIONS(4037), - [anon_sym_break] = ACTIONS(4037), - [anon_sym_continue] = ACTIONS(4037), - [anon_sym_return] = ACTIONS(4037), - [anon_sym_DOLLARfor] = ACTIONS(4037), - [anon_sym_for] = ACTIONS(4037), - [anon_sym_POUND] = ACTIONS(4037), - [anon_sym_asm] = ACTIONS(4037), - [anon_sym_AT_LBRACK] = ACTIONS(4037), - [sym___double_quote] = ACTIONS(4037), - [sym___single_quote] = ACTIONS(4037), - [sym___c_double_quote] = ACTIONS(4037), - [sym___c_single_quote] = ACTIONS(4037), - [sym___r_double_quote] = ACTIONS(4037), - [sym___r_single_quote] = ACTIONS(4037), + [sym_block_comment] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_identifier] = ACTIONS(3020), + [anon_sym_LF] = ACTIONS(3020), + [anon_sym_CR] = ACTIONS(3020), + [anon_sym_CR_LF] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3020), + [anon_sym_LBRACE] = ACTIONS(3020), + [anon_sym_const] = ACTIONS(3020), + [anon_sym_LPAREN] = ACTIONS(3020), + [anon_sym___global] = ACTIONS(3020), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_PIPE] = ACTIONS(3020), + [anon_sym_fn] = ACTIONS(3020), + [anon_sym_PLUS] = ACTIONS(3020), + [anon_sym_DASH] = ACTIONS(3020), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_struct] = ACTIONS(3020), + [anon_sym_union] = ACTIONS(3020), + [anon_sym_pub] = ACTIONS(3020), + [anon_sym_mut] = ACTIONS(3020), + [anon_sym_enum] = ACTIONS(3020), + [anon_sym_interface] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_BANG] = ACTIONS(3020), + [anon_sym_go] = ACTIONS(3020), + [anon_sym_spawn] = ACTIONS(3020), + [anon_sym_json_DOTdecode] = ACTIONS(3020), + [anon_sym_LBRACK2] = ACTIONS(3020), + [anon_sym_TILDE] = ACTIONS(3020), + [anon_sym_CARET] = ACTIONS(3020), + [anon_sym_AMP] = ACTIONS(3020), + [anon_sym_LT_DASH] = ACTIONS(3020), + [sym_none] = ACTIONS(3020), + [sym_true] = ACTIONS(3020), + [sym_false] = ACTIONS(3020), + [sym_nil] = ACTIONS(3020), + [anon_sym_if] = ACTIONS(3020), + [anon_sym_DOLLARif] = ACTIONS(3020), + [anon_sym_match] = ACTIONS(3020), + [anon_sym_select] = ACTIONS(3020), + [anon_sym_lock] = ACTIONS(3020), + [anon_sym_rlock] = ACTIONS(3020), + [anon_sym_unsafe] = ACTIONS(3020), + [anon_sym_sql] = ACTIONS(3020), + [sym_int_literal] = ACTIONS(3020), + [sym_float_literal] = ACTIONS(3020), + [sym_rune_literal] = ACTIONS(3020), + [sym_pseudo_compile_time_identifier] = ACTIONS(3020), + [anon_sym_shared] = ACTIONS(3020), + [anon_sym_map_LBRACK] = ACTIONS(3020), + [anon_sym_chan] = ACTIONS(3020), + [anon_sym_thread] = ACTIONS(3020), + [anon_sym_atomic] = ACTIONS(3020), + [anon_sym_assert] = ACTIONS(3020), + [anon_sym_defer] = ACTIONS(3020), + [anon_sym_goto] = ACTIONS(3020), + [anon_sym_break] = ACTIONS(3020), + [anon_sym_continue] = ACTIONS(3020), + [anon_sym_return] = ACTIONS(3020), + [anon_sym_DOLLARfor] = ACTIONS(3020), + [anon_sym_for] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3020), + [anon_sym_asm] = ACTIONS(3020), + [anon_sym_AT_LBRACK] = ACTIONS(3020), + [sym___double_quote] = ACTIONS(3020), + [sym___single_quote] = ACTIONS(3020), + [sym___c_double_quote] = ACTIONS(3020), + [sym___c_single_quote] = ACTIONS(3020), + [sym___r_double_quote] = ACTIONS(3020), + [sym___r_single_quote] = ACTIONS(3020), }, [1455] = { [sym_line_comment] = STATE(1455), - [aux_sym_strictly_expression_list_repeat1] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(4042), - [sym_identifier] = ACTIONS(4044), - [anon_sym_LF] = ACTIONS(4044), - [anon_sym_CR] = ACTIONS(4044), - [anon_sym_CR_LF] = ACTIONS(4044), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4044), - [anon_sym_COMMA] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_LPAREN] = ACTIONS(4044), - [anon_sym___global] = ACTIONS(4044), - [anon_sym_type] = ACTIONS(4044), - [anon_sym_fn] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_pub] = ACTIONS(4044), - [anon_sym_mut] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_interface] = ACTIONS(4044), - [anon_sym_QMARK] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(4044), - [anon_sym_go] = ACTIONS(4044), - [anon_sym_spawn] = ACTIONS(4044), - [anon_sym_json_DOTdecode] = ACTIONS(4044), - [anon_sym_LBRACK2] = ACTIONS(4044), - [anon_sym_TILDE] = ACTIONS(4044), - [anon_sym_CARET] = ACTIONS(4044), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_LT_DASH] = ACTIONS(4044), - [sym_none] = ACTIONS(4044), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [sym_nil] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_DOLLARif] = ACTIONS(4044), - [anon_sym_match] = ACTIONS(4044), - [anon_sym_select] = ACTIONS(4044), - [anon_sym_lock] = ACTIONS(4044), - [anon_sym_rlock] = ACTIONS(4044), - [anon_sym_unsafe] = ACTIONS(4044), - [anon_sym_sql] = ACTIONS(4044), - [sym_int_literal] = ACTIONS(4044), - [sym_float_literal] = ACTIONS(4044), - [sym_rune_literal] = ACTIONS(4044), - [sym_pseudo_compile_time_identifier] = ACTIONS(4044), - [anon_sym_shared] = ACTIONS(4044), - [anon_sym_map_LBRACK] = ACTIONS(4044), - [anon_sym_chan] = ACTIONS(4044), - [anon_sym_thread] = ACTIONS(4044), - [anon_sym_atomic] = ACTIONS(4044), - [anon_sym_assert] = ACTIONS(4044), - [anon_sym_defer] = ACTIONS(4044), - [anon_sym_goto] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_DOLLARfor] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_POUND] = ACTIONS(4044), - [anon_sym_asm] = ACTIONS(4044), - [anon_sym_AT_LBRACK] = ACTIONS(4044), - [sym___double_quote] = ACTIONS(4044), - [sym___single_quote] = ACTIONS(4044), - [sym___c_double_quote] = ACTIONS(4044), - [sym___c_single_quote] = ACTIONS(4044), - [sym___r_double_quote] = ACTIONS(4044), - [sym___r_single_quote] = ACTIONS(4044), + [sym_block_comment] = STATE(1455), + [ts_builtin_sym_end] = ACTIONS(3022), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LF] = ACTIONS(3024), + [anon_sym_CR] = ACTIONS(3024), + [anon_sym_CR_LF] = ACTIONS(3024), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3024), + [anon_sym_LBRACE] = ACTIONS(3024), + [anon_sym_const] = ACTIONS(3024), + [anon_sym_LPAREN] = ACTIONS(3024), + [anon_sym___global] = ACTIONS(3024), + [anon_sym_type] = ACTIONS(3024), + [anon_sym_PIPE] = ACTIONS(3024), + [anon_sym_fn] = ACTIONS(3024), + [anon_sym_PLUS] = ACTIONS(3024), + [anon_sym_DASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(3022), + [anon_sym_struct] = ACTIONS(3024), + [anon_sym_union] = ACTIONS(3024), + [anon_sym_pub] = ACTIONS(3024), + [anon_sym_mut] = ACTIONS(3024), + [anon_sym_enum] = ACTIONS(3024), + [anon_sym_interface] = ACTIONS(3024), + [anon_sym_QMARK] = ACTIONS(3024), + [anon_sym_BANG] = ACTIONS(3024), + [anon_sym_go] = ACTIONS(3024), + [anon_sym_spawn] = ACTIONS(3024), + [anon_sym_json_DOTdecode] = ACTIONS(3024), + [anon_sym_LBRACK2] = ACTIONS(3024), + [anon_sym_TILDE] = ACTIONS(3024), + [anon_sym_CARET] = ACTIONS(3024), + [anon_sym_AMP] = ACTIONS(3024), + [anon_sym_LT_DASH] = ACTIONS(3024), + [sym_none] = ACTIONS(3024), + [sym_true] = ACTIONS(3024), + [sym_false] = ACTIONS(3024), + [sym_nil] = ACTIONS(3024), + [anon_sym_if] = ACTIONS(3024), + [anon_sym_DOLLARif] = ACTIONS(3024), + [anon_sym_match] = ACTIONS(3024), + [anon_sym_select] = ACTIONS(3024), + [anon_sym_lock] = ACTIONS(3024), + [anon_sym_rlock] = ACTIONS(3024), + [anon_sym_unsafe] = ACTIONS(3024), + [anon_sym_sql] = ACTIONS(3024), + [sym_int_literal] = ACTIONS(3024), + [sym_float_literal] = ACTIONS(3024), + [sym_rune_literal] = ACTIONS(3024), + [sym_pseudo_compile_time_identifier] = ACTIONS(3024), + [anon_sym_shared] = ACTIONS(3024), + [anon_sym_map_LBRACK] = ACTIONS(3024), + [anon_sym_chan] = ACTIONS(3024), + [anon_sym_thread] = ACTIONS(3024), + [anon_sym_atomic] = ACTIONS(3024), + [anon_sym_assert] = ACTIONS(3024), + [anon_sym_defer] = ACTIONS(3024), + [anon_sym_goto] = ACTIONS(3024), + [anon_sym_break] = ACTIONS(3024), + [anon_sym_continue] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3024), + [anon_sym_DOLLARfor] = ACTIONS(3024), + [anon_sym_for] = ACTIONS(3024), + [anon_sym_POUND] = ACTIONS(3024), + [anon_sym_asm] = ACTIONS(3024), + [anon_sym_AT_LBRACK] = ACTIONS(3024), + [sym___double_quote] = ACTIONS(3024), + [sym___single_quote] = ACTIONS(3024), + [sym___c_double_quote] = ACTIONS(3024), + [sym___c_single_quote] = ACTIONS(3024), + [sym___r_double_quote] = ACTIONS(3024), + [sym___r_single_quote] = ACTIONS(3024), }, [1456] = { [sym_line_comment] = STATE(1456), - [sym_block] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(4046), - [sym_identifier] = ACTIONS(4048), - [anon_sym_LF] = ACTIONS(4048), - [anon_sym_CR] = ACTIONS(4048), - [anon_sym_CR_LF] = ACTIONS(4048), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_LPAREN] = ACTIONS(4048), - [anon_sym___global] = ACTIONS(4048), - [anon_sym_type] = ACTIONS(4048), - [anon_sym_fn] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_pub] = ACTIONS(4048), - [anon_sym_mut] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_interface] = ACTIONS(4048), - [anon_sym_QMARK] = ACTIONS(4048), - [anon_sym_BANG] = ACTIONS(4048), - [anon_sym_go] = ACTIONS(4048), - [anon_sym_spawn] = ACTIONS(4048), - [anon_sym_json_DOTdecode] = ACTIONS(4048), - [anon_sym_LBRACK2] = ACTIONS(4048), - [anon_sym_TILDE] = ACTIONS(4048), - [anon_sym_CARET] = ACTIONS(4048), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_LT_DASH] = ACTIONS(4048), - [sym_none] = ACTIONS(4048), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [sym_nil] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_DOLLARif] = ACTIONS(4048), - [anon_sym_match] = ACTIONS(4048), - [anon_sym_select] = ACTIONS(4048), - [anon_sym_lock] = ACTIONS(4048), - [anon_sym_rlock] = ACTIONS(4048), - [anon_sym_unsafe] = ACTIONS(4048), - [anon_sym_sql] = ACTIONS(4048), - [sym_int_literal] = ACTIONS(4048), - [sym_float_literal] = ACTIONS(4048), - [sym_rune_literal] = ACTIONS(4048), - [sym_pseudo_compile_time_identifier] = ACTIONS(4048), - [anon_sym_shared] = ACTIONS(4048), - [anon_sym_map_LBRACK] = ACTIONS(4048), - [anon_sym_chan] = ACTIONS(4048), - [anon_sym_thread] = ACTIONS(4048), - [anon_sym_atomic] = ACTIONS(4048), - [anon_sym_assert] = ACTIONS(4048), - [anon_sym_defer] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_DOLLARfor] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_POUND] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym_AT_LBRACK] = ACTIONS(4048), - [sym___double_quote] = ACTIONS(4048), - [sym___single_quote] = ACTIONS(4048), - [sym___c_double_quote] = ACTIONS(4048), - [sym___c_single_quote] = ACTIONS(4048), - [sym___r_double_quote] = ACTIONS(4048), - [sym___r_single_quote] = ACTIONS(4048), + [sym_block_comment] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_LF] = ACTIONS(3422), + [anon_sym_CR] = ACTIONS(3422), + [anon_sym_CR_LF] = ACTIONS(3422), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym___global] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_fn] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_struct] = ACTIONS(3422), + [anon_sym_union] = ACTIONS(3422), + [anon_sym_pub] = ACTIONS(3422), + [anon_sym_mut] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_QMARK] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3422), + [anon_sym_go] = ACTIONS(3422), + [anon_sym_spawn] = ACTIONS(3422), + [anon_sym_json_DOTdecode] = ACTIONS(3422), + [anon_sym_LBRACK2] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3422), + [anon_sym_LT_DASH] = ACTIONS(3422), + [sym_none] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_nil] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_DOLLARif] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3422), + [anon_sym_select] = ACTIONS(3422), + [anon_sym_lock] = ACTIONS(3422), + [anon_sym_rlock] = ACTIONS(3422), + [anon_sym_unsafe] = ACTIONS(3422), + [anon_sym_sql] = ACTIONS(3422), + [sym_int_literal] = ACTIONS(3422), + [sym_float_literal] = ACTIONS(3422), + [sym_rune_literal] = ACTIONS(3422), + [sym_pseudo_compile_time_identifier] = ACTIONS(3422), + [anon_sym_shared] = ACTIONS(3422), + [anon_sym_map_LBRACK] = ACTIONS(3422), + [anon_sym_chan] = ACTIONS(3422), + [anon_sym_thread] = ACTIONS(3422), + [anon_sym_atomic] = ACTIONS(3422), + [anon_sym_assert] = ACTIONS(3422), + [anon_sym_defer] = ACTIONS(3422), + [anon_sym_goto] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_DOLLARfor] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_POUND] = ACTIONS(3422), + [anon_sym_asm] = ACTIONS(3422), + [anon_sym_AT_LBRACK] = ACTIONS(3422), + [sym___double_quote] = ACTIONS(3422), + [sym___single_quote] = ACTIONS(3422), + [sym___c_double_quote] = ACTIONS(3422), + [sym___c_single_quote] = ACTIONS(3422), + [sym___r_double_quote] = ACTIONS(3422), + [sym___r_single_quote] = ACTIONS(3422), }, [1457] = { [sym_line_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(3149), - [sym_identifier] = ACTIONS(3151), - [anon_sym_LF] = ACTIONS(3151), - [anon_sym_CR] = ACTIONS(3151), - [anon_sym_CR_LF] = ACTIONS(3151), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym___global] = ACTIONS(3151), - [anon_sym_type] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3151), - [anon_sym_fn] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_union] = ACTIONS(3151), - [anon_sym_pub] = ACTIONS(3151), - [anon_sym_mut] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3151), - [anon_sym_go] = ACTIONS(3151), - [anon_sym_spawn] = ACTIONS(3151), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3151), - [sym_none] = ACTIONS(3151), - [sym_true] = ACTIONS(3151), - [sym_false] = ACTIONS(3151), - [sym_nil] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_DOLLARif] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_rlock] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_sql] = ACTIONS(3151), - [sym_int_literal] = ACTIONS(3151), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [sym_pseudo_compile_time_identifier] = ACTIONS(3151), - [anon_sym_shared] = ACTIONS(3151), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3151), - [anon_sym_thread] = ACTIONS(3151), - [anon_sym_atomic] = ACTIONS(3151), - [anon_sym_assert] = ACTIONS(3151), - [anon_sym_defer] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_DOLLARfor] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_POUND] = ACTIONS(3151), - [anon_sym_asm] = ACTIONS(3151), - [anon_sym_AT_LBRACK] = ACTIONS(3151), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), + [sym_block_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_LF] = ACTIONS(3430), + [anon_sym_CR] = ACTIONS(3430), + [anon_sym_CR_LF] = ACTIONS(3430), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym___global] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3430), + [anon_sym_fn] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_struct] = ACTIONS(3430), + [anon_sym_union] = ACTIONS(3430), + [anon_sym_pub] = ACTIONS(3430), + [anon_sym_mut] = ACTIONS(3430), + [anon_sym_enum] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3430), + [anon_sym_go] = ACTIONS(3430), + [anon_sym_spawn] = ACTIONS(3430), + [anon_sym_json_DOTdecode] = ACTIONS(3430), + [anon_sym_LBRACK2] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3430), + [anon_sym_LT_DASH] = ACTIONS(3430), + [sym_none] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_nil] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_DOLLARif] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3430), + [anon_sym_select] = ACTIONS(3430), + [anon_sym_lock] = ACTIONS(3430), + [anon_sym_rlock] = ACTIONS(3430), + [anon_sym_unsafe] = ACTIONS(3430), + [anon_sym_sql] = ACTIONS(3430), + [sym_int_literal] = ACTIONS(3430), + [sym_float_literal] = ACTIONS(3430), + [sym_rune_literal] = ACTIONS(3430), + [sym_pseudo_compile_time_identifier] = ACTIONS(3430), + [anon_sym_shared] = ACTIONS(3430), + [anon_sym_map_LBRACK] = ACTIONS(3430), + [anon_sym_chan] = ACTIONS(3430), + [anon_sym_thread] = ACTIONS(3430), + [anon_sym_atomic] = ACTIONS(3430), + [anon_sym_assert] = ACTIONS(3430), + [anon_sym_defer] = ACTIONS(3430), + [anon_sym_goto] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_DOLLARfor] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_POUND] = ACTIONS(3430), + [anon_sym_asm] = ACTIONS(3430), + [anon_sym_AT_LBRACK] = ACTIONS(3430), + [sym___double_quote] = ACTIONS(3430), + [sym___single_quote] = ACTIONS(3430), + [sym___c_double_quote] = ACTIONS(3430), + [sym___c_single_quote] = ACTIONS(3430), + [sym___r_double_quote] = ACTIONS(3430), + [sym___r_single_quote] = ACTIONS(3430), }, [1458] = { [sym_line_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), + [sym_block_comment] = STATE(1458), + [sym_label_reference] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4048), + [anon_sym_LF] = ACTIONS(4050), + [anon_sym_CR] = ACTIONS(4050), + [anon_sym_CR_LF] = ACTIONS(4050), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_const] = ACTIONS(4050), + [anon_sym_LPAREN] = ACTIONS(4050), + [anon_sym___global] = ACTIONS(4050), + [anon_sym_type] = ACTIONS(4050), + [anon_sym_fn] = ACTIONS(4050), + [anon_sym_PLUS] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_struct] = ACTIONS(4050), + [anon_sym_union] = ACTIONS(4050), + [anon_sym_pub] = ACTIONS(4050), + [anon_sym_mut] = ACTIONS(4050), + [anon_sym_enum] = ACTIONS(4050), + [anon_sym_interface] = ACTIONS(4050), + [anon_sym_QMARK] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_go] = ACTIONS(4050), + [anon_sym_spawn] = ACTIONS(4050), + [anon_sym_json_DOTdecode] = ACTIONS(4050), + [anon_sym_LBRACK2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_CARET] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_LT_DASH] = ACTIONS(4050), + [sym_none] = ACTIONS(4050), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [sym_nil] = ACTIONS(4050), + [anon_sym_if] = ACTIONS(4050), + [anon_sym_DOLLARif] = ACTIONS(4050), + [anon_sym_match] = ACTIONS(4050), + [anon_sym_select] = ACTIONS(4050), + [anon_sym_lock] = ACTIONS(4050), + [anon_sym_rlock] = ACTIONS(4050), + [anon_sym_unsafe] = ACTIONS(4050), + [anon_sym_sql] = ACTIONS(4050), + [sym_int_literal] = ACTIONS(4050), + [sym_float_literal] = ACTIONS(4050), + [sym_rune_literal] = ACTIONS(4050), + [sym_pseudo_compile_time_identifier] = ACTIONS(4050), + [anon_sym_shared] = ACTIONS(4050), + [anon_sym_map_LBRACK] = ACTIONS(4050), + [anon_sym_chan] = ACTIONS(4050), + [anon_sym_thread] = ACTIONS(4050), + [anon_sym_atomic] = ACTIONS(4050), + [anon_sym_assert] = ACTIONS(4050), + [anon_sym_defer] = ACTIONS(4050), + [anon_sym_goto] = ACTIONS(4050), + [anon_sym_break] = ACTIONS(4050), + [anon_sym_continue] = ACTIONS(4050), + [anon_sym_return] = ACTIONS(4050), + [anon_sym_DOLLARfor] = ACTIONS(4050), + [anon_sym_for] = ACTIONS(4050), + [anon_sym_POUND] = ACTIONS(4050), + [anon_sym_asm] = ACTIONS(4050), + [anon_sym_AT_LBRACK] = ACTIONS(4050), + [sym___double_quote] = ACTIONS(4050), + [sym___single_quote] = ACTIONS(4050), + [sym___c_double_quote] = ACTIONS(4050), + [sym___c_single_quote] = ACTIONS(4050), + [sym___r_double_quote] = ACTIONS(4050), + [sym___r_single_quote] = ACTIONS(4050), }, [1459] = { [sym_line_comment] = STATE(1459), - [sym_block] = STATE(1579), + [sym_block_comment] = STATE(1459), + [sym_label_reference] = STATE(1531), [ts_builtin_sym_end] = ACTIONS(4052), - [sym_identifier] = ACTIONS(4054), + [sym_identifier] = ACTIONS(4048), [anon_sym_LF] = ACTIONS(4054), [anon_sym_CR] = ACTIONS(4054), [anon_sym_CR_LF] = ACTIONS(4054), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4054), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4054), [anon_sym_const] = ACTIONS(4054), [anon_sym_LPAREN] = ACTIONS(4054), [anon_sym___global] = ACTIONS(4054), @@ -186280,691 +180980,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1460] = { [sym_line_comment] = STATE(1460), - [sym_block] = STATE(1522), - [ts_builtin_sym_end] = ACTIONS(4056), - [sym_identifier] = ACTIONS(4058), - [anon_sym_LF] = ACTIONS(4058), - [anon_sym_CR] = ACTIONS(4058), - [anon_sym_CR_LF] = ACTIONS(4058), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4058), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4058), - [anon_sym_LPAREN] = ACTIONS(4058), - [anon_sym___global] = ACTIONS(4058), - [anon_sym_type] = ACTIONS(4058), - [anon_sym_fn] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4058), - [anon_sym_DASH] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_struct] = ACTIONS(4058), - [anon_sym_union] = ACTIONS(4058), - [anon_sym_pub] = ACTIONS(4058), - [anon_sym_mut] = ACTIONS(4058), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_interface] = ACTIONS(4058), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_go] = ACTIONS(4058), - [anon_sym_spawn] = ACTIONS(4058), - [anon_sym_json_DOTdecode] = ACTIONS(4058), - [anon_sym_LBRACK2] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [anon_sym_CARET] = ACTIONS(4058), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_LT_DASH] = ACTIONS(4058), - [sym_none] = ACTIONS(4058), - [sym_true] = ACTIONS(4058), - [sym_false] = ACTIONS(4058), - [sym_nil] = ACTIONS(4058), - [anon_sym_if] = ACTIONS(4058), - [anon_sym_DOLLARif] = ACTIONS(4058), - [anon_sym_match] = ACTIONS(4058), - [anon_sym_select] = ACTIONS(4058), - [anon_sym_lock] = ACTIONS(4058), - [anon_sym_rlock] = ACTIONS(4058), - [anon_sym_unsafe] = ACTIONS(4058), - [anon_sym_sql] = ACTIONS(4058), - [sym_int_literal] = ACTIONS(4058), - [sym_float_literal] = ACTIONS(4058), - [sym_rune_literal] = ACTIONS(4058), - [sym_pseudo_compile_time_identifier] = ACTIONS(4058), - [anon_sym_shared] = ACTIONS(4058), - [anon_sym_map_LBRACK] = ACTIONS(4058), - [anon_sym_chan] = ACTIONS(4058), - [anon_sym_thread] = ACTIONS(4058), - [anon_sym_atomic] = ACTIONS(4058), - [anon_sym_assert] = ACTIONS(4058), - [anon_sym_defer] = ACTIONS(4058), - [anon_sym_goto] = ACTIONS(4058), - [anon_sym_break] = ACTIONS(4058), - [anon_sym_continue] = ACTIONS(4058), - [anon_sym_return] = ACTIONS(4058), - [anon_sym_DOLLARfor] = ACTIONS(4058), - [anon_sym_for] = ACTIONS(4058), - [anon_sym_POUND] = ACTIONS(4058), - [anon_sym_asm] = ACTIONS(4058), - [anon_sym_AT_LBRACK] = ACTIONS(4058), - [sym___double_quote] = ACTIONS(4058), - [sym___single_quote] = ACTIONS(4058), - [sym___c_double_quote] = ACTIONS(4058), - [sym___c_single_quote] = ACTIONS(4058), - [sym___r_double_quote] = ACTIONS(4058), - [sym___r_single_quote] = ACTIONS(4058), + [sym_block_comment] = STATE(1460), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_LF] = ACTIONS(611), + [anon_sym_CR] = ACTIONS(611), + [anon_sym_CR_LF] = ACTIONS(611), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(611), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(617), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(611), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_LT_EQ] = ACTIONS(611), + [anon_sym_GT_EQ] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(611), + [anon_sym_DASH_DASH] = ACTIONS(611), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4056), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(611), + [anon_sym_AMP_CARET] = ACTIONS(611), + [anon_sym_AMP_AMP] = ACTIONS(611), + [anon_sym_PIPE_PIPE] = ACTIONS(611), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(611), + [anon_sym_POUND_LBRACK] = ACTIONS(611), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(611), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(611), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(549), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1461] = { [sym_line_comment] = STATE(1461), - [sym_reference_expression] = STATE(4483), - [sym_type_reference_expression] = STATE(2493), - [sym_plain_type] = STATE(2596), - [sym__plain_type_without_special] = STATE(2608), - [sym_anon_struct_type] = STATE(2607), - [sym_multi_return_type] = STATE(2608), - [sym_result_type] = STATE(2608), - [sym_option_type] = STATE(2608), - [sym_qualified_type] = STATE(2493), - [sym_fixed_array_type] = STATE(2607), - [sym_array_type] = STATE(2607), - [sym_pointer_type] = STATE(2607), - [sym_wrong_pointer_type] = STATE(2607), - [sym_map_type] = STATE(2607), - [sym_channel_type] = STATE(2607), - [sym_shared_type] = STATE(2607), - [sym_thread_type] = STATE(2607), - [sym_atomic_type] = STATE(2607), - [sym_generic_type] = STATE(2607), - [sym_function_type] = STATE(2607), + [sym_block_comment] = STATE(1461), + [sym_block] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(4058), [sym_identifier] = ACTIONS(4060), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4066), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(4070), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_LBRACK2] = ACTIONS(4074), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(4078), - [anon_sym_map_LBRACK] = ACTIONS(4080), - [anon_sym_chan] = ACTIONS(4082), - [anon_sym_thread] = ACTIONS(4084), - [anon_sym_atomic] = ACTIONS(4086), + [anon_sym_LF] = ACTIONS(4060), + [anon_sym_CR] = ACTIONS(4060), + [anon_sym_CR_LF] = ACTIONS(4060), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(4060), + [anon_sym___global] = ACTIONS(4060), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_fn] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_pub] = ACTIONS(4060), + [anon_sym_mut] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_interface] = ACTIONS(4060), + [anon_sym_QMARK] = ACTIONS(4060), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_go] = ACTIONS(4060), + [anon_sym_spawn] = ACTIONS(4060), + [anon_sym_json_DOTdecode] = ACTIONS(4060), + [anon_sym_LBRACK2] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_CARET] = ACTIONS(4060), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_LT_DASH] = ACTIONS(4060), + [sym_none] = ACTIONS(4060), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_nil] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_DOLLARif] = ACTIONS(4060), + [anon_sym_match] = ACTIONS(4060), + [anon_sym_select] = ACTIONS(4060), + [anon_sym_lock] = ACTIONS(4060), + [anon_sym_rlock] = ACTIONS(4060), + [anon_sym_unsafe] = ACTIONS(4060), + [anon_sym_sql] = ACTIONS(4060), + [sym_int_literal] = ACTIONS(4060), + [sym_float_literal] = ACTIONS(4060), + [sym_rune_literal] = ACTIONS(4060), + [sym_pseudo_compile_time_identifier] = ACTIONS(4060), + [anon_sym_shared] = ACTIONS(4060), + [anon_sym_map_LBRACK] = ACTIONS(4060), + [anon_sym_chan] = ACTIONS(4060), + [anon_sym_thread] = ACTIONS(4060), + [anon_sym_atomic] = ACTIONS(4060), + [anon_sym_assert] = ACTIONS(4060), + [anon_sym_defer] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_DOLLARfor] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_POUND] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym_AT_LBRACK] = ACTIONS(4060), + [sym___double_quote] = ACTIONS(4060), + [sym___single_quote] = ACTIONS(4060), + [sym___c_double_quote] = ACTIONS(4060), + [sym___c_single_quote] = ACTIONS(4060), + [sym___r_double_quote] = ACTIONS(4060), + [sym___r_single_quote] = ACTIONS(4060), }, [1462] = { [sym_line_comment] = STATE(1462), - [ts_builtin_sym_end] = ACTIONS(4022), - [sym_identifier] = ACTIONS(4024), - [anon_sym_LF] = ACTIONS(4024), - [anon_sym_CR] = ACTIONS(4024), - [anon_sym_CR_LF] = ACTIONS(4024), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_LPAREN] = ACTIONS(4024), - [anon_sym___global] = ACTIONS(4024), - [anon_sym_type] = ACTIONS(4024), - [anon_sym_PIPE] = ACTIONS(4024), - [anon_sym_fn] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_pub] = ACTIONS(4024), - [anon_sym_mut] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_interface] = ACTIONS(4024), - [anon_sym_QMARK] = ACTIONS(4024), - [anon_sym_BANG] = ACTIONS(4024), - [anon_sym_go] = ACTIONS(4024), - [anon_sym_spawn] = ACTIONS(4024), - [anon_sym_json_DOTdecode] = ACTIONS(4024), - [anon_sym_LBRACK2] = ACTIONS(4024), - [anon_sym_TILDE] = ACTIONS(4024), - [anon_sym_CARET] = ACTIONS(4024), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_LT_DASH] = ACTIONS(4024), - [sym_none] = ACTIONS(4024), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [sym_nil] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_DOLLARif] = ACTIONS(4024), - [anon_sym_match] = ACTIONS(4024), - [anon_sym_select] = ACTIONS(4024), - [anon_sym_lock] = ACTIONS(4024), - [anon_sym_rlock] = ACTIONS(4024), - [anon_sym_unsafe] = ACTIONS(4024), - [anon_sym_sql] = ACTIONS(4024), - [sym_int_literal] = ACTIONS(4024), - [sym_float_literal] = ACTIONS(4024), - [sym_rune_literal] = ACTIONS(4024), - [sym_pseudo_compile_time_identifier] = ACTIONS(4024), - [anon_sym_shared] = ACTIONS(4024), - [anon_sym_map_LBRACK] = ACTIONS(4024), - [anon_sym_chan] = ACTIONS(4024), - [anon_sym_thread] = ACTIONS(4024), - [anon_sym_atomic] = ACTIONS(4024), - [anon_sym_assert] = ACTIONS(4024), - [anon_sym_defer] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_DOLLARfor] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_POUND] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym_AT_LBRACK] = ACTIONS(4024), - [sym___double_quote] = ACTIONS(4024), - [sym___single_quote] = ACTIONS(4024), - [sym___c_double_quote] = ACTIONS(4024), - [sym___c_single_quote] = ACTIONS(4024), - [sym___r_double_quote] = ACTIONS(4024), - [sym___r_single_quote] = ACTIONS(4024), + [sym_block_comment] = STATE(1462), + [sym_reference_expression] = STATE(4491), + [sym_type_reference_expression] = STATE(2487), + [sym_plain_type] = STATE(2613), + [sym__plain_type_without_special] = STATE(2603), + [sym_anon_struct_type] = STATE(2647), + [sym_multi_return_type] = STATE(2603), + [sym_result_type] = STATE(2603), + [sym_option_type] = STATE(2603), + [sym_qualified_type] = STATE(2487), + [sym_fixed_array_type] = STATE(2647), + [sym_array_type] = STATE(2647), + [sym_pointer_type] = STATE(2647), + [sym_wrong_pointer_type] = STATE(2647), + [sym_map_type] = STATE(2647), + [sym_channel_type] = STATE(2647), + [sym_shared_type] = STATE(2647), + [sym_thread_type] = STATE(2647), + [sym_atomic_type] = STATE(2647), + [sym_generic_type] = STATE(2647), + [sym_function_type] = STATE(2647), + [sym_identifier] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_CR] = ACTIONS(601), + [anon_sym_CR_LF] = ACTIONS(601), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_COMMA] = ACTIONS(601), + [anon_sym_RBRACE] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(601), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_LT_EQ] = ACTIONS(601), + [anon_sym_GT_EQ] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(601), + [anon_sym_DASH_DASH] = ACTIONS(601), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4078), + [anon_sym_CARET] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_LT] = ACTIONS(601), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(601), + [anon_sym_AMP_CARET] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(601), + [anon_sym_POUND_LBRACK] = ACTIONS(601), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(601), + [anon_sym_shared] = ACTIONS(4082), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4086), + [anon_sym_thread] = ACTIONS(4088), + [anon_sym_atomic] = ACTIONS(4090), }, [1463] = { [sym_line_comment] = STATE(1463), - [sym_reference_expression] = STATE(4483), - [sym_type_reference_expression] = STATE(2493), - [sym_plain_type] = STATE(2548), - [sym__plain_type_without_special] = STATE(2608), - [sym_anon_struct_type] = STATE(2607), - [sym_multi_return_type] = STATE(2608), - [sym_result_type] = STATE(2608), - [sym_option_type] = STATE(2608), - [sym_qualified_type] = STATE(2493), - [sym_fixed_array_type] = STATE(2607), - [sym_array_type] = STATE(2607), - [sym_pointer_type] = STATE(2607), - [sym_wrong_pointer_type] = STATE(2607), - [sym_map_type] = STATE(2607), - [sym_channel_type] = STATE(2607), - [sym_shared_type] = STATE(2607), - [sym_thread_type] = STATE(2607), - [sym_atomic_type] = STATE(2607), - [sym_generic_type] = STATE(2607), - [sym_function_type] = STATE(2607), - [sym_identifier] = ACTIONS(4060), - [anon_sym_LF] = ACTIONS(619), - [anon_sym_CR] = ACTIONS(619), - [anon_sym_CR_LF] = ACTIONS(619), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(619), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4066), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(619), - [anon_sym_BANG_EQ] = ACTIONS(619), - [anon_sym_LT_EQ] = ACTIONS(619), - [anon_sym_GT_EQ] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_QMARK] = ACTIONS(4070), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_LBRACK2] = ACTIONS(4074), - [anon_sym_CARET] = ACTIONS(619), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_LT_LT] = ACTIONS(619), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(619), - [anon_sym_AMP_CARET] = ACTIONS(619), - [anon_sym_AMP_AMP] = ACTIONS(619), - [anon_sym_PIPE_PIPE] = ACTIONS(619), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(619), - [anon_sym_POUND_LBRACK] = ACTIONS(619), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(619), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(619), - [anon_sym_shared] = ACTIONS(4078), - [anon_sym_map_LBRACK] = ACTIONS(4080), - [anon_sym_chan] = ACTIONS(4082), - [anon_sym_thread] = ACTIONS(4084), - [anon_sym_atomic] = ACTIONS(4086), - }, - [1464] = { - [sym_line_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), - }, - [1465] = { - [sym_line_comment] = STATE(1465), - [sym_reference_expression] = STATE(4483), - [sym_type_reference_expression] = STATE(2493), - [sym_plain_type] = STATE(2541), - [sym__plain_type_without_special] = STATE(2608), - [sym_anon_struct_type] = STATE(2607), - [sym_multi_return_type] = STATE(2608), - [sym_result_type] = STATE(2608), - [sym_option_type] = STATE(2608), - [sym_qualified_type] = STATE(2493), - [sym_fixed_array_type] = STATE(2607), - [sym_array_type] = STATE(2607), - [sym_pointer_type] = STATE(2607), - [sym_wrong_pointer_type] = STATE(2607), - [sym_map_type] = STATE(2607), - [sym_channel_type] = STATE(2607), - [sym_shared_type] = STATE(2607), - [sym_thread_type] = STATE(2607), - [sym_atomic_type] = STATE(2607), - [sym_generic_type] = STATE(2607), - [sym_function_type] = STATE(2607), - [sym_identifier] = ACTIONS(4060), - [anon_sym_LF] = ACTIONS(627), - [anon_sym_CR] = ACTIONS(627), - [anon_sym_CR_LF] = ACTIONS(627), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_RBRACE] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(4062), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(4066), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(4068), - [anon_sym_PLUS_PLUS] = ACTIONS(627), - [anon_sym_DASH_DASH] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(4070), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_LBRACK2] = ACTIONS(4074), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(627), - [anon_sym_AMP_CARET] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(627), - [anon_sym_POUND_LBRACK] = ACTIONS(627), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(627), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(627), - [anon_sym_shared] = ACTIONS(4078), - [anon_sym_map_LBRACK] = ACTIONS(4080), - [anon_sym_chan] = ACTIONS(4082), - [anon_sym_thread] = ACTIONS(4084), - [anon_sym_atomic] = ACTIONS(4086), - }, - [1466] = { - [sym_line_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym___global] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_union] = ACTIONS(3315), - [anon_sym_pub] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [anon_sym_assert] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_DOLLARfor] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_asm] = ACTIONS(3315), - [anon_sym_AT_LBRACK] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), - }, - [1467] = { - [sym_line_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(3393), - [sym_identifier] = ACTIONS(3395), - [anon_sym_LF] = ACTIONS(3395), - [anon_sym_CR] = ACTIONS(3395), - [anon_sym_CR_LF] = ACTIONS(3395), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym___global] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_fn] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3395), - [anon_sym_union] = ACTIONS(3395), - [anon_sym_pub] = ACTIONS(3395), - [anon_sym_mut] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(3395), - [anon_sym_spawn] = ACTIONS(3395), - [anon_sym_json_DOTdecode] = ACTIONS(3395), - [anon_sym_LBRACK2] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_DASH] = ACTIONS(3395), - [sym_none] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_nil] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_DOLLARif] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3395), - [anon_sym_select] = ACTIONS(3395), - [anon_sym_lock] = ACTIONS(3395), - [anon_sym_rlock] = ACTIONS(3395), - [anon_sym_unsafe] = ACTIONS(3395), - [anon_sym_sql] = ACTIONS(3395), - [sym_int_literal] = ACTIONS(3395), - [sym_float_literal] = ACTIONS(3395), - [sym_rune_literal] = ACTIONS(3395), - [sym_pseudo_compile_time_identifier] = ACTIONS(3395), - [anon_sym_shared] = ACTIONS(3395), - [anon_sym_map_LBRACK] = ACTIONS(3395), - [anon_sym_chan] = ACTIONS(3395), - [anon_sym_thread] = ACTIONS(3395), - [anon_sym_atomic] = ACTIONS(3395), - [anon_sym_assert] = ACTIONS(3395), - [anon_sym_defer] = ACTIONS(3395), - [anon_sym_goto] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_DOLLARfor] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_POUND] = ACTIONS(3395), - [anon_sym_asm] = ACTIONS(3395), - [anon_sym_AT_LBRACK] = ACTIONS(3395), - [sym___double_quote] = ACTIONS(3395), - [sym___single_quote] = ACTIONS(3395), - [sym___c_double_quote] = ACTIONS(3395), - [sym___c_single_quote] = ACTIONS(3395), - [sym___r_double_quote] = ACTIONS(3395), - [sym___r_single_quote] = ACTIONS(3395), - }, - [1468] = { - [sym_line_comment] = STATE(1468), - [sym_block] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(4088), - [sym_identifier] = ACTIONS(4090), - [anon_sym_LF] = ACTIONS(4090), - [anon_sym_CR] = ACTIONS(4090), - [anon_sym_CR_LF] = ACTIONS(4090), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4090), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym___global] = ACTIONS(4090), - [anon_sym_type] = ACTIONS(4090), - [anon_sym_fn] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_struct] = ACTIONS(4090), - [anon_sym_union] = ACTIONS(4090), - [anon_sym_pub] = ACTIONS(4090), - [anon_sym_mut] = ACTIONS(4090), - [anon_sym_enum] = ACTIONS(4090), - [anon_sym_interface] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_go] = ACTIONS(4090), - [anon_sym_spawn] = ACTIONS(4090), - [anon_sym_json_DOTdecode] = ACTIONS(4090), - [anon_sym_LBRACK2] = ACTIONS(4090), - [anon_sym_TILDE] = ACTIONS(4090), - [anon_sym_CARET] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4090), - [anon_sym_LT_DASH] = ACTIONS(4090), - [sym_none] = ACTIONS(4090), - [sym_true] = ACTIONS(4090), - [sym_false] = ACTIONS(4090), - [sym_nil] = ACTIONS(4090), - [anon_sym_if] = ACTIONS(4090), - [anon_sym_DOLLARif] = ACTIONS(4090), - [anon_sym_match] = ACTIONS(4090), - [anon_sym_select] = ACTIONS(4090), - [anon_sym_lock] = ACTIONS(4090), - [anon_sym_rlock] = ACTIONS(4090), - [anon_sym_unsafe] = ACTIONS(4090), - [anon_sym_sql] = ACTIONS(4090), - [sym_int_literal] = ACTIONS(4090), - [sym_float_literal] = ACTIONS(4090), - [sym_rune_literal] = ACTIONS(4090), - [sym_pseudo_compile_time_identifier] = ACTIONS(4090), - [anon_sym_shared] = ACTIONS(4090), - [anon_sym_map_LBRACK] = ACTIONS(4090), - [anon_sym_chan] = ACTIONS(4090), - [anon_sym_thread] = ACTIONS(4090), - [anon_sym_atomic] = ACTIONS(4090), - [anon_sym_assert] = ACTIONS(4090), - [anon_sym_defer] = ACTIONS(4090), - [anon_sym_goto] = ACTIONS(4090), - [anon_sym_break] = ACTIONS(4090), - [anon_sym_continue] = ACTIONS(4090), - [anon_sym_return] = ACTIONS(4090), - [anon_sym_DOLLARfor] = ACTIONS(4090), - [anon_sym_for] = ACTIONS(4090), - [anon_sym_POUND] = ACTIONS(4090), - [anon_sym_asm] = ACTIONS(4090), - [anon_sym_AT_LBRACK] = ACTIONS(4090), - [sym___double_quote] = ACTIONS(4090), - [sym___single_quote] = ACTIONS(4090), - [sym___c_double_quote] = ACTIONS(4090), - [sym___c_single_quote] = ACTIONS(4090), - [sym___r_double_quote] = ACTIONS(4090), - [sym___r_single_quote] = ACTIONS(4090), - }, - [1469] = { - [sym_line_comment] = STATE(1469), - [sym_block] = STATE(1561), + [sym_block_comment] = STATE(1463), + [sym_block] = STATE(1576), [ts_builtin_sym_end] = ACTIONS(4092), [sym_identifier] = ACTIONS(4094), [anon_sym_LF] = ACTIONS(4094), [anon_sym_CR] = ACTIONS(4094), [anon_sym_CR_LF] = ACTIONS(4094), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4094), [anon_sym_LPAREN] = ACTIONS(4094), [anon_sym___global] = ACTIONS(4094), @@ -187028,93 +181282,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4094), [sym___r_single_quote] = ACTIONS(4094), }, - [1470] = { - [sym_line_comment] = STATE(1470), - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), - }, - [1471] = { - [sym_line_comment] = STATE(1471), - [sym_block] = STATE(1549), + [1464] = { + [sym_line_comment] = STATE(1464), + [sym_block_comment] = STATE(1464), + [sym_block] = STATE(1577), [ts_builtin_sym_end] = ACTIONS(4096), [sym_identifier] = ACTIONS(4098), [anon_sym_LF] = ACTIONS(4098), [anon_sym_CR] = ACTIONS(4098), [anon_sym_CR_LF] = ACTIONS(4098), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4098), [anon_sym_LPAREN] = ACTIONS(4098), [anon_sym___global] = ACTIONS(4098), @@ -187178,168 +181358,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4098), [sym___r_single_quote] = ACTIONS(4098), }, - [1472] = { - [sym_line_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym___global] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_union] = ACTIONS(3355), - [anon_sym_pub] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [anon_sym_assert] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_DOLLARfor] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_POUND] = ACTIONS(3355), - [anon_sym_asm] = ACTIONS(3355), - [anon_sym_AT_LBRACK] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), - }, - [1473] = { - [sym_line_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym___global] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_union] = ACTIONS(3363), - [anon_sym_pub] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [anon_sym_assert] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_DOLLARfor] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_asm] = ACTIONS(3363), - [anon_sym_AT_LBRACK] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), + [1465] = { + [sym_line_comment] = STATE(1465), + [sym_block_comment] = STATE(1465), + [sym_reference_expression] = STATE(4491), + [sym_type_reference_expression] = STATE(2487), + [sym_plain_type] = STATE(2597), + [sym__plain_type_without_special] = STATE(2603), + [sym_anon_struct_type] = STATE(2647), + [sym_multi_return_type] = STATE(2603), + [sym_result_type] = STATE(2603), + [sym_option_type] = STATE(2603), + [sym_qualified_type] = STATE(2487), + [sym_fixed_array_type] = STATE(2647), + [sym_array_type] = STATE(2647), + [sym_pointer_type] = STATE(2647), + [sym_wrong_pointer_type] = STATE(2647), + [sym_map_type] = STATE(2647), + [sym_channel_type] = STATE(2647), + [sym_shared_type] = STATE(2647), + [sym_thread_type] = STATE(2647), + [sym_atomic_type] = STATE(2647), + [sym_generic_type] = STATE(2647), + [sym_function_type] = STATE(2647), + [sym_identifier] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(605), + [anon_sym_CR] = ACTIONS(605), + [anon_sym_CR_LF] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_COMMA] = ACTIONS(605), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(605), + [anon_sym_BANG_EQ] = ACTIONS(605), + [anon_sym_LT_EQ] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(605), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(605), + [anon_sym_DASH_DASH] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4078), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(605), + [anon_sym_AMP_CARET] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(605), + [anon_sym_PIPE_PIPE] = ACTIONS(605), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(605), + [anon_sym_POUND_LBRACK] = ACTIONS(605), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(605), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(605), + [anon_sym_shared] = ACTIONS(4082), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4086), + [anon_sym_thread] = ACTIONS(4088), + [anon_sym_atomic] = ACTIONS(4090), }, - [1474] = { - [sym_line_comment] = STATE(1474), - [sym_block] = STATE(1601), + [1466] = { + [sym_line_comment] = STATE(1466), + [sym_block_comment] = STATE(1466), + [sym_block] = STATE(1589), [ts_builtin_sym_end] = ACTIONS(4100), [sym_identifier] = ACTIONS(4102), [anon_sym_LF] = ACTIONS(4102), [anon_sym_CR] = ACTIONS(4102), [anon_sym_CR_LF] = ACTIONS(4102), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4102), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4102), [anon_sym_LPAREN] = ACTIONS(4102), [anon_sym___global] = ACTIONS(4102), @@ -187403,93 +181510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4102), [sym___r_single_quote] = ACTIONS(4102), }, - [1475] = { - [sym_line_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym___global] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_union] = ACTIONS(3367), - [anon_sym_pub] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_DOLLARfor] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(3367), - [anon_sym_asm] = ACTIONS(3367), - [anon_sym_AT_LBRACK] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), - }, - [1476] = { - [sym_line_comment] = STATE(1476), - [sym_block] = STATE(1591), + [1467] = { + [sym_line_comment] = STATE(1467), + [sym_block_comment] = STATE(1467), + [sym_block] = STATE(1596), [ts_builtin_sym_end] = ACTIONS(4104), [sym_identifier] = ACTIONS(4106), [anon_sym_LF] = ACTIONS(4106), [anon_sym_CR] = ACTIONS(4106), [anon_sym_CR_LF] = ACTIONS(4106), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4106), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4106), [anon_sym_LPAREN] = ACTIONS(4106), [anon_sym___global] = ACTIONS(4106), @@ -187553,18 +181586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4106), [sym___r_single_quote] = ACTIONS(4106), }, - [1477] = { - [sym_line_comment] = STATE(1477), - [sym_block] = STATE(1592), + [1468] = { + [sym_line_comment] = STATE(1468), + [sym_block_comment] = STATE(1468), + [sym_block] = STATE(1597), [ts_builtin_sym_end] = ACTIONS(4108), [sym_identifier] = ACTIONS(4110), [anon_sym_LF] = ACTIONS(4110), [anon_sym_CR] = ACTIONS(4110), [anon_sym_CR_LF] = ACTIONS(4110), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4110), [anon_sym_LPAREN] = ACTIONS(4110), [anon_sym___global] = ACTIONS(4110), @@ -187628,18 +181662,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4110), [sym___r_single_quote] = ACTIONS(4110), }, - [1478] = { - [sym_line_comment] = STATE(1478), - [sym_block] = STATE(1532), + [1469] = { + [sym_line_comment] = STATE(1469), + [sym_block_comment] = STATE(1469), + [sym_block] = STATE(1583), [ts_builtin_sym_end] = ACTIONS(4112), [sym_identifier] = ACTIONS(4114), [anon_sym_LF] = ACTIONS(4114), [anon_sym_CR] = ACTIONS(4114), [anon_sym_CR_LF] = ACTIONS(4114), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4114), [anon_sym_LPAREN] = ACTIONS(4114), [anon_sym___global] = ACTIONS(4114), @@ -187703,18 +181738,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4114), [sym___r_single_quote] = ACTIONS(4114), }, - [1479] = { - [sym_line_comment] = STATE(1479), - [sym_block] = STATE(1580), + [1470] = { + [sym_line_comment] = STATE(1470), + [sym_block_comment] = STATE(1470), + [sym_reference_expression] = STATE(4491), + [sym_type_reference_expression] = STATE(2487), + [sym_plain_type] = STATE(2566), + [sym__plain_type_without_special] = STATE(2603), + [sym_anon_struct_type] = STATE(2647), + [sym_multi_return_type] = STATE(2603), + [sym_result_type] = STATE(2603), + [sym_option_type] = STATE(2603), + [sym_qualified_type] = STATE(2487), + [sym_fixed_array_type] = STATE(2647), + [sym_array_type] = STATE(2647), + [sym_pointer_type] = STATE(2647), + [sym_wrong_pointer_type] = STATE(2647), + [sym_map_type] = STATE(2647), + [sym_channel_type] = STATE(2647), + [sym_shared_type] = STATE(2647), + [sym_thread_type] = STATE(2647), + [sym_atomic_type] = STATE(2647), + [sym_generic_type] = STATE(2647), + [sym_function_type] = STATE(2647), + [sym_identifier] = ACTIONS(4064), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_CR] = ACTIONS(567), + [anon_sym_CR_LF] = ACTIONS(567), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_DOT] = ACTIONS(567), + [anon_sym_as] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_RBRACE] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_fn] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(567), + [anon_sym_DASH] = ACTIONS(567), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(567), + [anon_sym_PERCENT] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(567), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LBRACK] = ACTIONS(563), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(567), + [anon_sym_DASH_DASH] = ACTIONS(567), + [anon_sym_QMARK] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4076), + [anon_sym_LBRACK2] = ACTIONS(4078), + [anon_sym_CARET] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(4080), + [anon_sym_LT_LT] = ACTIONS(567), + [anon_sym_GT_GT] = ACTIONS(567), + [anon_sym_GT_GT_GT] = ACTIONS(567), + [anon_sym_AMP_CARET] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_or] = ACTIONS(567), + [anon_sym_QMARK_DOT] = ACTIONS(567), + [anon_sym_POUND_LBRACK] = ACTIONS(567), + [anon_sym_is] = ACTIONS(567), + [anon_sym_BANGis] = ACTIONS(567), + [anon_sym_in] = ACTIONS(567), + [anon_sym_BANGin] = ACTIONS(567), + [anon_sym_shared] = ACTIONS(4082), + [anon_sym_map_LBRACK] = ACTIONS(4084), + [anon_sym_chan] = ACTIONS(4086), + [anon_sym_thread] = ACTIONS(4088), + [anon_sym_atomic] = ACTIONS(4090), + }, + [1471] = { + [sym_line_comment] = STATE(1471), + [sym_block_comment] = STATE(1471), + [sym_block] = STATE(1600), [ts_builtin_sym_end] = ACTIONS(4116), [sym_identifier] = ACTIONS(4118), [anon_sym_LF] = ACTIONS(4118), [anon_sym_CR] = ACTIONS(4118), [anon_sym_CR_LF] = ACTIONS(4118), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4118), [anon_sym_LPAREN] = ACTIONS(4118), [anon_sym___global] = ACTIONS(4118), @@ -187778,93 +181890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4118), [sym___r_single_quote] = ACTIONS(4118), }, - [1480] = { - [sym_line_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [sym_pseudo_compile_time_identifier] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [1481] = { - [sym_line_comment] = STATE(1481), - [sym_block] = STATE(1607), + [1472] = { + [sym_line_comment] = STATE(1472), + [sym_block_comment] = STATE(1472), + [sym_block] = STATE(1601), [ts_builtin_sym_end] = ACTIONS(4120), [sym_identifier] = ACTIONS(4122), [anon_sym_LF] = ACTIONS(4122), [anon_sym_CR] = ACTIONS(4122), [anon_sym_CR_LF] = ACTIONS(4122), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4122), [anon_sym_LPAREN] = ACTIONS(4122), [anon_sym___global] = ACTIONS(4122), @@ -187928,93 +181966,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4122), [sym___r_single_quote] = ACTIONS(4122), }, - [1482] = { - [sym_line_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), - }, - [1483] = { - [sym_line_comment] = STATE(1483), - [sym_block] = STATE(1578), + [1473] = { + [sym_line_comment] = STATE(1473), + [sym_block_comment] = STATE(1473), + [sym_block] = STATE(1610), [ts_builtin_sym_end] = ACTIONS(4124), [sym_identifier] = ACTIONS(4126), [anon_sym_LF] = ACTIONS(4126), [anon_sym_CR] = ACTIONS(4126), [anon_sym_CR_LF] = ACTIONS(4126), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4126), [anon_sym_LPAREN] = ACTIONS(4126), [anon_sym___global] = ACTIONS(4126), @@ -188078,18 +182042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4126), [sym___r_single_quote] = ACTIONS(4126), }, - [1484] = { - [sym_line_comment] = STATE(1484), - [sym_block] = STATE(1568), + [1474] = { + [sym_line_comment] = STATE(1474), + [sym_block_comment] = STATE(1474), + [sym_block] = STATE(1607), [ts_builtin_sym_end] = ACTIONS(4128), [sym_identifier] = ACTIONS(4130), [anon_sym_LF] = ACTIONS(4130), [anon_sym_CR] = ACTIONS(4130), [anon_sym_CR_LF] = ACTIONS(4130), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4130), [anon_sym_LPAREN] = ACTIONS(4130), [anon_sym___global] = ACTIONS(4130), @@ -188153,93 +182118,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4130), [sym___r_single_quote] = ACTIONS(4130), }, - [1485] = { - [sym_line_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym___global] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_union] = ACTIONS(3267), - [anon_sym_pub] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [anon_sym_assert] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_goto] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_DOLLARfor] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_asm] = ACTIONS(3267), - [anon_sym_AT_LBRACK] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), + [1475] = { + [sym_line_comment] = STATE(1475), + [sym_block_comment] = STATE(1475), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), }, - [1486] = { - [sym_line_comment] = STATE(1486), - [sym_block] = STATE(1603), + [1476] = { + [sym_line_comment] = STATE(1476), + [sym_block_comment] = STATE(1476), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), + }, + [1477] = { + [sym_line_comment] = STATE(1477), + [sym_block_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), + }, + [1478] = { + [sym_line_comment] = STATE(1478), + [sym_block_comment] = STATE(1478), + [sym_block] = STATE(1605), [ts_builtin_sym_end] = ACTIONS(4132), [sym_identifier] = ACTIONS(4134), [anon_sym_LF] = ACTIONS(4134), [anon_sym_CR] = ACTIONS(4134), [anon_sym_CR_LF] = ACTIONS(4134), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4134), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4134), [anon_sym_LPAREN] = ACTIONS(4134), [anon_sym___global] = ACTIONS(4134), @@ -188303,318 +182422,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4134), [sym___r_single_quote] = ACTIONS(4134), }, - [1487] = { - [sym_line_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym___global] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_pub] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [anon_sym_assert] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_DOLLARfor] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym_AT_LBRACK] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), - }, - [1488] = { - [sym_line_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(3145), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym___global] = ACTIONS(3147), - [anon_sym_type] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_union] = ACTIONS(3147), - [anon_sym_pub] = ACTIONS(3147), - [anon_sym_mut] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_go] = ACTIONS(3147), - [anon_sym_spawn] = ACTIONS(3147), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [sym_none] = ACTIONS(3147), - [sym_true] = ACTIONS(3147), - [sym_false] = ACTIONS(3147), - [sym_nil] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOLLARif] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_rlock] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_sql] = ACTIONS(3147), - [sym_int_literal] = ACTIONS(3147), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [sym_pseudo_compile_time_identifier] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - [anon_sym_assert] = ACTIONS(3147), - [anon_sym_defer] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_DOLLARfor] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_POUND] = ACTIONS(3147), - [anon_sym_asm] = ACTIONS(3147), - [anon_sym_AT_LBRACK] = ACTIONS(3147), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), - }, - [1489] = { - [sym_line_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(3141), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym___global] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_union] = ACTIONS(3143), - [anon_sym_pub] = ACTIONS(3143), - [anon_sym_mut] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_go] = ACTIONS(3143), - [anon_sym_spawn] = ACTIONS(3143), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3143), - [sym_none] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_nil] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_DOLLARif] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_rlock] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_sql] = ACTIONS(3143), - [sym_int_literal] = ACTIONS(3143), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [sym_pseudo_compile_time_identifier] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - [anon_sym_assert] = ACTIONS(3143), - [anon_sym_defer] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_DOLLARfor] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_POUND] = ACTIONS(3143), - [anon_sym_asm] = ACTIONS(3143), - [anon_sym_AT_LBRACK] = ACTIONS(3143), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), - }, - [1490] = { - [sym_line_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [1479] = { + [sym_line_comment] = STATE(1479), + [sym_block_comment] = STATE(1479), + [ts_builtin_sym_end] = ACTIONS(4029), + [sym_identifier] = ACTIONS(4031), + [anon_sym_LF] = ACTIONS(4031), + [anon_sym_CR] = ACTIONS(4031), + [anon_sym_CR_LF] = ACTIONS(4031), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(4031), + [anon_sym_const] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(4031), + [anon_sym___global] = ACTIONS(4031), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_PIPE] = ACTIONS(4031), + [anon_sym_fn] = ACTIONS(4031), + [anon_sym_PLUS] = ACTIONS(4031), + [anon_sym_DASH] = ACTIONS(4031), + [anon_sym_STAR] = ACTIONS(4031), + [anon_sym_struct] = ACTIONS(4031), + [anon_sym_union] = ACTIONS(4031), + [anon_sym_pub] = ACTIONS(4031), + [anon_sym_mut] = ACTIONS(4031), + [anon_sym_enum] = ACTIONS(4031), + [anon_sym_interface] = ACTIONS(4031), + [anon_sym_QMARK] = ACTIONS(4031), + [anon_sym_BANG] = ACTIONS(4031), + [anon_sym_go] = ACTIONS(4031), + [anon_sym_spawn] = ACTIONS(4031), + [anon_sym_json_DOTdecode] = ACTIONS(4031), + [anon_sym_LBRACK2] = ACTIONS(4031), + [anon_sym_TILDE] = ACTIONS(4031), + [anon_sym_CARET] = ACTIONS(4031), + [anon_sym_AMP] = ACTIONS(4031), + [anon_sym_LT_DASH] = ACTIONS(4031), + [sym_none] = ACTIONS(4031), + [sym_true] = ACTIONS(4031), + [sym_false] = ACTIONS(4031), + [sym_nil] = ACTIONS(4031), + [anon_sym_if] = ACTIONS(4031), + [anon_sym_DOLLARif] = ACTIONS(4031), + [anon_sym_match] = ACTIONS(4031), + [anon_sym_select] = ACTIONS(4031), + [anon_sym_lock] = ACTIONS(4031), + [anon_sym_rlock] = ACTIONS(4031), + [anon_sym_unsafe] = ACTIONS(4031), + [anon_sym_sql] = ACTIONS(4031), + [sym_int_literal] = ACTIONS(4031), + [sym_float_literal] = ACTIONS(4031), + [sym_rune_literal] = ACTIONS(4031), + [sym_pseudo_compile_time_identifier] = ACTIONS(4031), + [anon_sym_shared] = ACTIONS(4031), + [anon_sym_map_LBRACK] = ACTIONS(4031), + [anon_sym_chan] = ACTIONS(4031), + [anon_sym_thread] = ACTIONS(4031), + [anon_sym_atomic] = ACTIONS(4031), + [anon_sym_assert] = ACTIONS(4031), + [anon_sym_defer] = ACTIONS(4031), + [anon_sym_goto] = ACTIONS(4031), + [anon_sym_break] = ACTIONS(4031), + [anon_sym_continue] = ACTIONS(4031), + [anon_sym_return] = ACTIONS(4031), + [anon_sym_DOLLARfor] = ACTIONS(4031), + [anon_sym_for] = ACTIONS(4031), + [anon_sym_POUND] = ACTIONS(4031), + [anon_sym_asm] = ACTIONS(4031), + [anon_sym_AT_LBRACK] = ACTIONS(4031), + [sym___double_quote] = ACTIONS(4031), + [sym___single_quote] = ACTIONS(4031), + [sym___c_double_quote] = ACTIONS(4031), + [sym___c_single_quote] = ACTIONS(4031), + [sym___r_double_quote] = ACTIONS(4031), + [sym___r_single_quote] = ACTIONS(4031), }, - [1491] = { - [sym_line_comment] = STATE(1491), - [sym_block] = STATE(1595), + [1480] = { + [sym_line_comment] = STATE(1480), + [sym_block_comment] = STATE(1480), + [sym_block] = STATE(1598), [ts_builtin_sym_end] = ACTIONS(4136), [sym_identifier] = ACTIONS(4138), [anon_sym_LF] = ACTIONS(4138), [anon_sym_CR] = ACTIONS(4138), [anon_sym_CR_LF] = ACTIONS(4138), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4138), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4138), [anon_sym_LPAREN] = ACTIONS(4138), [anon_sym___global] = ACTIONS(4138), @@ -188678,243 +182574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4138), [sym___r_single_quote] = ACTIONS(4138), }, - [1492] = { - [sym_line_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym_identifier] = ACTIONS(3131), - [anon_sym_LF] = ACTIONS(3131), - [anon_sym_CR] = ACTIONS(3131), - [anon_sym_CR_LF] = ACTIONS(3131), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym___global] = ACTIONS(3131), - [anon_sym_type] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3131), - [anon_sym_fn] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_pub] = ACTIONS(3131), - [anon_sym_mut] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_interface] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3131), - [anon_sym_go] = ACTIONS(3131), - [anon_sym_spawn] = ACTIONS(3131), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3131), - [anon_sym_LT_DASH] = ACTIONS(3131), - [sym_none] = ACTIONS(3131), - [sym_true] = ACTIONS(3131), - [sym_false] = ACTIONS(3131), - [sym_nil] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_DOLLARif] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_rlock] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_sql] = ACTIONS(3131), - [sym_int_literal] = ACTIONS(3131), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3131), - [anon_sym_shared] = ACTIONS(3131), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3131), - [anon_sym_thread] = ACTIONS(3131), - [anon_sym_atomic] = ACTIONS(3131), - [anon_sym_assert] = ACTIONS(3131), - [anon_sym_defer] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_DOLLARfor] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_POUND] = ACTIONS(3131), - [anon_sym_asm] = ACTIONS(3131), - [anon_sym_AT_LBRACK] = ACTIONS(3131), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), - }, - [1493] = { - [sym_line_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym_identifier] = ACTIONS(3127), - [anon_sym_LF] = ACTIONS(3127), - [anon_sym_CR] = ACTIONS(3127), - [anon_sym_CR_LF] = ACTIONS(3127), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym___global] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_union] = ACTIONS(3127), - [anon_sym_pub] = ACTIONS(3127), - [anon_sym_mut] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_interface] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3127), - [anon_sym_go] = ACTIONS(3127), - [anon_sym_spawn] = ACTIONS(3127), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_LT_DASH] = ACTIONS(3127), - [sym_none] = ACTIONS(3127), - [sym_true] = ACTIONS(3127), - [sym_false] = ACTIONS(3127), - [sym_nil] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_DOLLARif] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_rlock] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_sql] = ACTIONS(3127), - [sym_int_literal] = ACTIONS(3127), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [sym_pseudo_compile_time_identifier] = ACTIONS(3127), - [anon_sym_shared] = ACTIONS(3127), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3127), - [anon_sym_thread] = ACTIONS(3127), - [anon_sym_atomic] = ACTIONS(3127), - [anon_sym_assert] = ACTIONS(3127), - [anon_sym_defer] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_DOLLARfor] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_asm] = ACTIONS(3127), - [anon_sym_AT_LBRACK] = ACTIONS(3127), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), - }, - [1494] = { - [sym_line_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [sym_pseudo_compile_time_identifier] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), - }, - [1495] = { - [sym_line_comment] = STATE(1495), - [sym_block] = STATE(1598), + [1481] = { + [sym_line_comment] = STATE(1481), + [sym_block_comment] = STATE(1481), + [sym_block] = STATE(1611), [ts_builtin_sym_end] = ACTIONS(4140), [sym_identifier] = ACTIONS(4142), [anon_sym_LF] = ACTIONS(4142), [anon_sym_CR] = ACTIONS(4142), [anon_sym_CR_LF] = ACTIONS(4142), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4142), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4142), [anon_sym_LPAREN] = ACTIONS(4142), [anon_sym___global] = ACTIONS(4142), @@ -188978,22 +182650,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4142), [sym___r_single_quote] = ACTIONS(4142), }, - [1496] = { - [sym_line_comment] = STATE(1496), + [1482] = { + [sym_line_comment] = STATE(1482), + [sym_block_comment] = STATE(1482), + [sym_block] = STATE(1609), [ts_builtin_sym_end] = ACTIONS(4144), [sym_identifier] = ACTIONS(4146), [anon_sym_LF] = ACTIONS(4146), [anon_sym_CR] = ACTIONS(4146), [anon_sym_CR_LF] = ACTIONS(4146), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4146), - [anon_sym_LBRACE] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4146), [anon_sym_LPAREN] = ACTIONS(4146), [anon_sym___global] = ACTIONS(4146), [anon_sym_type] = ACTIONS(4146), - [anon_sym_PIPE] = ACTIONS(4146), [anon_sym_fn] = ACTIONS(4146), [anon_sym_PLUS] = ACTIONS(4146), [anon_sym_DASH] = ACTIONS(4146), @@ -189053,397 +182726,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4146), [sym___r_single_quote] = ACTIONS(4146), }, - [1497] = { - [sym_line_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(1719), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_CR] = ACTIONS(1719), - [anon_sym_CR_LF] = ACTIONS(1719), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_COMMA] = ACTIONS(1719), - [anon_sym_const] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym___global] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1719), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_struct] = ACTIONS(1719), - [anon_sym_union] = ACTIONS(1719), - [anon_sym_pub] = ACTIONS(1719), - [anon_sym_mut] = ACTIONS(1719), - [anon_sym_enum] = ACTIONS(1719), - [anon_sym_interface] = ACTIONS(1719), - [anon_sym_QMARK] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_go] = ACTIONS(1719), - [anon_sym_spawn] = ACTIONS(1719), - [anon_sym_json_DOTdecode] = ACTIONS(1719), - [anon_sym_LBRACK2] = ACTIONS(1719), - [anon_sym_TILDE] = ACTIONS(1719), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_LT_DASH] = ACTIONS(1719), - [sym_none] = ACTIONS(1719), - [sym_true] = ACTIONS(1719), - [sym_false] = ACTIONS(1719), - [sym_nil] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_DOLLARif] = ACTIONS(1719), - [anon_sym_match] = ACTIONS(1719), - [anon_sym_select] = ACTIONS(1719), - [anon_sym_lock] = ACTIONS(1719), - [anon_sym_rlock] = ACTIONS(1719), - [anon_sym_unsafe] = ACTIONS(1719), - [anon_sym_sql] = ACTIONS(1719), - [sym_int_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), - [sym_rune_literal] = ACTIONS(1719), - [sym_pseudo_compile_time_identifier] = ACTIONS(1719), - [anon_sym_shared] = ACTIONS(1719), - [anon_sym_map_LBRACK] = ACTIONS(1719), - [anon_sym_chan] = ACTIONS(1719), - [anon_sym_thread] = ACTIONS(1719), - [anon_sym_atomic] = ACTIONS(1719), - [anon_sym_assert] = ACTIONS(1719), - [anon_sym_defer] = ACTIONS(1719), - [anon_sym_goto] = ACTIONS(1719), - [anon_sym_break] = ACTIONS(1719), - [anon_sym_continue] = ACTIONS(1719), - [anon_sym_return] = ACTIONS(1719), - [anon_sym_DOLLARfor] = ACTIONS(1719), - [anon_sym_for] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_asm] = ACTIONS(1719), - [anon_sym_AT_LBRACK] = ACTIONS(1719), - [sym___double_quote] = ACTIONS(1719), - [sym___single_quote] = ACTIONS(1719), - [sym___c_double_quote] = ACTIONS(1719), - [sym___c_single_quote] = ACTIONS(1719), - [sym___r_double_quote] = ACTIONS(1719), - [sym___r_single_quote] = ACTIONS(1719), + [1483] = { + [sym_line_comment] = STATE(1483), + [sym_block_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3038), + [sym_identifier] = ACTIONS(3040), + [anon_sym_LF] = ACTIONS(3040), + [anon_sym_CR] = ACTIONS(3040), + [anon_sym_CR_LF] = ACTIONS(3040), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(3040), + [anon_sym_const] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3040), + [anon_sym___global] = ACTIONS(3040), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_PIPE] = ACTIONS(3040), + [anon_sym_fn] = ACTIONS(3040), + [anon_sym_PLUS] = ACTIONS(3040), + [anon_sym_DASH] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(3040), + [anon_sym_struct] = ACTIONS(3040), + [anon_sym_union] = ACTIONS(3040), + [anon_sym_pub] = ACTIONS(3040), + [anon_sym_mut] = ACTIONS(3040), + [anon_sym_enum] = ACTIONS(3040), + [anon_sym_interface] = ACTIONS(3040), + [anon_sym_QMARK] = ACTIONS(3040), + [anon_sym_BANG] = ACTIONS(3040), + [anon_sym_go] = ACTIONS(3040), + [anon_sym_spawn] = ACTIONS(3040), + [anon_sym_json_DOTdecode] = ACTIONS(3040), + [anon_sym_LBRACK2] = ACTIONS(3040), + [anon_sym_TILDE] = ACTIONS(3040), + [anon_sym_CARET] = ACTIONS(3040), + [anon_sym_AMP] = ACTIONS(3040), + [anon_sym_LT_DASH] = ACTIONS(3040), + [sym_none] = ACTIONS(3040), + [sym_true] = ACTIONS(3040), + [sym_false] = ACTIONS(3040), + [sym_nil] = ACTIONS(3040), + [anon_sym_if] = ACTIONS(3040), + [anon_sym_DOLLARif] = ACTIONS(3040), + [anon_sym_match] = ACTIONS(3040), + [anon_sym_select] = ACTIONS(3040), + [anon_sym_lock] = ACTIONS(3040), + [anon_sym_rlock] = ACTIONS(3040), + [anon_sym_unsafe] = ACTIONS(3040), + [anon_sym_sql] = ACTIONS(3040), + [sym_int_literal] = ACTIONS(3040), + [sym_float_literal] = ACTIONS(3040), + [sym_rune_literal] = ACTIONS(3040), + [sym_pseudo_compile_time_identifier] = ACTIONS(3040), + [anon_sym_shared] = ACTIONS(3040), + [anon_sym_map_LBRACK] = ACTIONS(3040), + [anon_sym_chan] = ACTIONS(3040), + [anon_sym_thread] = ACTIONS(3040), + [anon_sym_atomic] = ACTIONS(3040), + [anon_sym_assert] = ACTIONS(3040), + [anon_sym_defer] = ACTIONS(3040), + [anon_sym_goto] = ACTIONS(3040), + [anon_sym_break] = ACTIONS(3040), + [anon_sym_continue] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3040), + [anon_sym_DOLLARfor] = ACTIONS(3040), + [anon_sym_for] = ACTIONS(3040), + [anon_sym_POUND] = ACTIONS(3040), + [anon_sym_asm] = ACTIONS(3040), + [anon_sym_AT_LBRACK] = ACTIONS(3040), + [sym___double_quote] = ACTIONS(3040), + [sym___single_quote] = ACTIONS(3040), + [sym___c_double_quote] = ACTIONS(3040), + [sym___c_single_quote] = ACTIONS(3040), + [sym___r_double_quote] = ACTIONS(3040), + [sym___r_single_quote] = ACTIONS(3040), }, - [1498] = { - [sym_line_comment] = STATE(1498), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_LF] = ACTIONS(567), - [anon_sym_CR] = ACTIONS(567), - [anon_sym_CR_LF] = ACTIONS(567), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(567), - [anon_sym_DASH_DASH] = ACTIONS(567), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4148), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_AMP_CARET] = ACTIONS(567), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(567), - [anon_sym_POUND_LBRACK] = ACTIONS(567), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(567), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(567), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(549), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [1484] = { + [sym_line_comment] = STATE(1484), + [sym_block_comment] = STATE(1484), + [sym_block] = STATE(1608), + [ts_builtin_sym_end] = ACTIONS(4148), + [sym_identifier] = ACTIONS(4150), + [anon_sym_LF] = ACTIONS(4150), + [anon_sym_CR] = ACTIONS(4150), + [anon_sym_CR_LF] = ACTIONS(4150), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym___global] = ACTIONS(4150), + [anon_sym_type] = ACTIONS(4150), + [anon_sym_fn] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_pub] = ACTIONS(4150), + [anon_sym_mut] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_interface] = ACTIONS(4150), + [anon_sym_QMARK] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [anon_sym_go] = ACTIONS(4150), + [anon_sym_spawn] = ACTIONS(4150), + [anon_sym_json_DOTdecode] = ACTIONS(4150), + [anon_sym_LBRACK2] = ACTIONS(4150), + [anon_sym_TILDE] = ACTIONS(4150), + [anon_sym_CARET] = ACTIONS(4150), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_LT_DASH] = ACTIONS(4150), + [sym_none] = ACTIONS(4150), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [sym_nil] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_DOLLARif] = ACTIONS(4150), + [anon_sym_match] = ACTIONS(4150), + [anon_sym_select] = ACTIONS(4150), + [anon_sym_lock] = ACTIONS(4150), + [anon_sym_rlock] = ACTIONS(4150), + [anon_sym_unsafe] = ACTIONS(4150), + [anon_sym_sql] = ACTIONS(4150), + [sym_int_literal] = ACTIONS(4150), + [sym_float_literal] = ACTIONS(4150), + [sym_rune_literal] = ACTIONS(4150), + [sym_pseudo_compile_time_identifier] = ACTIONS(4150), + [anon_sym_shared] = ACTIONS(4150), + [anon_sym_map_LBRACK] = ACTIONS(4150), + [anon_sym_chan] = ACTIONS(4150), + [anon_sym_thread] = ACTIONS(4150), + [anon_sym_atomic] = ACTIONS(4150), + [anon_sym_assert] = ACTIONS(4150), + [anon_sym_defer] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_DOLLARfor] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_POUND] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym_AT_LBRACK] = ACTIONS(4150), + [sym___double_quote] = ACTIONS(4150), + [sym___single_quote] = ACTIONS(4150), + [sym___c_double_quote] = ACTIONS(4150), + [sym___c_single_quote] = ACTIONS(4150), + [sym___r_double_quote] = ACTIONS(4150), + [sym___r_single_quote] = ACTIONS(4150), }, - [1499] = { - [sym_line_comment] = STATE(1499), - [sym_block] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(4150), - [sym_identifier] = ACTIONS(4152), - [anon_sym_LF] = ACTIONS(4152), - [anon_sym_CR] = ACTIONS(4152), - [anon_sym_CR_LF] = ACTIONS(4152), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym___global] = ACTIONS(4152), - [anon_sym_type] = ACTIONS(4152), - [anon_sym_fn] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_pub] = ACTIONS(4152), - [anon_sym_mut] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_interface] = ACTIONS(4152), - [anon_sym_QMARK] = ACTIONS(4152), - [anon_sym_BANG] = ACTIONS(4152), - [anon_sym_go] = ACTIONS(4152), - [anon_sym_spawn] = ACTIONS(4152), - [anon_sym_json_DOTdecode] = ACTIONS(4152), - [anon_sym_LBRACK2] = ACTIONS(4152), - [anon_sym_TILDE] = ACTIONS(4152), - [anon_sym_CARET] = ACTIONS(4152), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_LT_DASH] = ACTIONS(4152), - [sym_none] = ACTIONS(4152), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [sym_nil] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_DOLLARif] = ACTIONS(4152), - [anon_sym_match] = ACTIONS(4152), - [anon_sym_select] = ACTIONS(4152), - [anon_sym_lock] = ACTIONS(4152), - [anon_sym_rlock] = ACTIONS(4152), - [anon_sym_unsafe] = ACTIONS(4152), - [anon_sym_sql] = ACTIONS(4152), - [sym_int_literal] = ACTIONS(4152), - [sym_float_literal] = ACTIONS(4152), - [sym_rune_literal] = ACTIONS(4152), - [sym_pseudo_compile_time_identifier] = ACTIONS(4152), - [anon_sym_shared] = ACTIONS(4152), - [anon_sym_map_LBRACK] = ACTIONS(4152), - [anon_sym_chan] = ACTIONS(4152), - [anon_sym_thread] = ACTIONS(4152), - [anon_sym_atomic] = ACTIONS(4152), - [anon_sym_assert] = ACTIONS(4152), - [anon_sym_defer] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_DOLLARfor] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_POUND] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym_AT_LBRACK] = ACTIONS(4152), - [sym___double_quote] = ACTIONS(4152), - [sym___single_quote] = ACTIONS(4152), - [sym___c_double_quote] = ACTIONS(4152), - [sym___c_single_quote] = ACTIONS(4152), - [sym___r_double_quote] = ACTIONS(4152), - [sym___r_single_quote] = ACTIONS(4152), + [1485] = { + [sym_line_comment] = STATE(1485), + [sym_block_comment] = STATE(1485), + [sym_block] = STATE(1606), + [ts_builtin_sym_end] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4154), + [anon_sym_LF] = ACTIONS(4154), + [anon_sym_CR] = ACTIONS(4154), + [anon_sym_CR_LF] = ACTIONS(4154), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym___global] = ACTIONS(4154), + [anon_sym_type] = ACTIONS(4154), + [anon_sym_fn] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_pub] = ACTIONS(4154), + [anon_sym_mut] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_interface] = ACTIONS(4154), + [anon_sym_QMARK] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4154), + [anon_sym_go] = ACTIONS(4154), + [anon_sym_spawn] = ACTIONS(4154), + [anon_sym_json_DOTdecode] = ACTIONS(4154), + [anon_sym_LBRACK2] = ACTIONS(4154), + [anon_sym_TILDE] = ACTIONS(4154), + [anon_sym_CARET] = ACTIONS(4154), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_LT_DASH] = ACTIONS(4154), + [sym_none] = ACTIONS(4154), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [sym_nil] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_DOLLARif] = ACTIONS(4154), + [anon_sym_match] = ACTIONS(4154), + [anon_sym_select] = ACTIONS(4154), + [anon_sym_lock] = ACTIONS(4154), + [anon_sym_rlock] = ACTIONS(4154), + [anon_sym_unsafe] = ACTIONS(4154), + [anon_sym_sql] = ACTIONS(4154), + [sym_int_literal] = ACTIONS(4154), + [sym_float_literal] = ACTIONS(4154), + [sym_rune_literal] = ACTIONS(4154), + [sym_pseudo_compile_time_identifier] = ACTIONS(4154), + [anon_sym_shared] = ACTIONS(4154), + [anon_sym_map_LBRACK] = ACTIONS(4154), + [anon_sym_chan] = ACTIONS(4154), + [anon_sym_thread] = ACTIONS(4154), + [anon_sym_atomic] = ACTIONS(4154), + [anon_sym_assert] = ACTIONS(4154), + [anon_sym_defer] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_DOLLARfor] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_POUND] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym_AT_LBRACK] = ACTIONS(4154), + [sym___double_quote] = ACTIONS(4154), + [sym___single_quote] = ACTIONS(4154), + [sym___c_double_quote] = ACTIONS(4154), + [sym___c_single_quote] = ACTIONS(4154), + [sym___r_double_quote] = ACTIONS(4154), + [sym___r_single_quote] = ACTIONS(4154), }, - [1500] = { - [sym_line_comment] = STATE(1500), - [sym_block] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(4154), - [sym_identifier] = ACTIONS(4156), - [anon_sym_LF] = ACTIONS(4156), - [anon_sym_CR] = ACTIONS(4156), - [anon_sym_CR_LF] = ACTIONS(4156), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_LPAREN] = ACTIONS(4156), - [anon_sym___global] = ACTIONS(4156), - [anon_sym_type] = ACTIONS(4156), - [anon_sym_fn] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_pub] = ACTIONS(4156), - [anon_sym_mut] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_interface] = ACTIONS(4156), - [anon_sym_QMARK] = ACTIONS(4156), - [anon_sym_BANG] = ACTIONS(4156), - [anon_sym_go] = ACTIONS(4156), - [anon_sym_spawn] = ACTIONS(4156), - [anon_sym_json_DOTdecode] = ACTIONS(4156), - [anon_sym_LBRACK2] = ACTIONS(4156), - [anon_sym_TILDE] = ACTIONS(4156), - [anon_sym_CARET] = ACTIONS(4156), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_LT_DASH] = ACTIONS(4156), - [sym_none] = ACTIONS(4156), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [sym_nil] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_DOLLARif] = ACTIONS(4156), - [anon_sym_match] = ACTIONS(4156), - [anon_sym_select] = ACTIONS(4156), - [anon_sym_lock] = ACTIONS(4156), - [anon_sym_rlock] = ACTIONS(4156), - [anon_sym_unsafe] = ACTIONS(4156), - [anon_sym_sql] = ACTIONS(4156), - [sym_int_literal] = ACTIONS(4156), - [sym_float_literal] = ACTIONS(4156), - [sym_rune_literal] = ACTIONS(4156), - [sym_pseudo_compile_time_identifier] = ACTIONS(4156), - [anon_sym_shared] = ACTIONS(4156), - [anon_sym_map_LBRACK] = ACTIONS(4156), - [anon_sym_chan] = ACTIONS(4156), - [anon_sym_thread] = ACTIONS(4156), - [anon_sym_atomic] = ACTIONS(4156), - [anon_sym_assert] = ACTIONS(4156), - [anon_sym_defer] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_DOLLARfor] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_POUND] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym_AT_LBRACK] = ACTIONS(4156), - [sym___double_quote] = ACTIONS(4156), - [sym___single_quote] = ACTIONS(4156), - [sym___c_double_quote] = ACTIONS(4156), - [sym___c_single_quote] = ACTIONS(4156), - [sym___r_double_quote] = ACTIONS(4156), - [sym___r_single_quote] = ACTIONS(4156), + [1486] = { + [sym_line_comment] = STATE(1486), + [sym_block_comment] = STATE(1486), + [sym_block] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4158), + [anon_sym_LF] = ACTIONS(4158), + [anon_sym_CR] = ACTIONS(4158), + [anon_sym_CR_LF] = ACTIONS(4158), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_LPAREN] = ACTIONS(4158), + [anon_sym___global] = ACTIONS(4158), + [anon_sym_type] = ACTIONS(4158), + [anon_sym_fn] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_pub] = ACTIONS(4158), + [anon_sym_mut] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_interface] = ACTIONS(4158), + [anon_sym_QMARK] = ACTIONS(4158), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_go] = ACTIONS(4158), + [anon_sym_spawn] = ACTIONS(4158), + [anon_sym_json_DOTdecode] = ACTIONS(4158), + [anon_sym_LBRACK2] = ACTIONS(4158), + [anon_sym_TILDE] = ACTIONS(4158), + [anon_sym_CARET] = ACTIONS(4158), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_LT_DASH] = ACTIONS(4158), + [sym_none] = ACTIONS(4158), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [sym_nil] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_DOLLARif] = ACTIONS(4158), + [anon_sym_match] = ACTIONS(4158), + [anon_sym_select] = ACTIONS(4158), + [anon_sym_lock] = ACTIONS(4158), + [anon_sym_rlock] = ACTIONS(4158), + [anon_sym_unsafe] = ACTIONS(4158), + [anon_sym_sql] = ACTIONS(4158), + [sym_int_literal] = ACTIONS(4158), + [sym_float_literal] = ACTIONS(4158), + [sym_rune_literal] = ACTIONS(4158), + [sym_pseudo_compile_time_identifier] = ACTIONS(4158), + [anon_sym_shared] = ACTIONS(4158), + [anon_sym_map_LBRACK] = ACTIONS(4158), + [anon_sym_chan] = ACTIONS(4158), + [anon_sym_thread] = ACTIONS(4158), + [anon_sym_atomic] = ACTIONS(4158), + [anon_sym_assert] = ACTIONS(4158), + [anon_sym_defer] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_DOLLARfor] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_POUND] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym_AT_LBRACK] = ACTIONS(4158), + [sym___double_quote] = ACTIONS(4158), + [sym___single_quote] = ACTIONS(4158), + [sym___c_double_quote] = ACTIONS(4158), + [sym___c_single_quote] = ACTIONS(4158), + [sym___r_double_quote] = ACTIONS(4158), + [sym___r_single_quote] = ACTIONS(4158), }, - [1501] = { - [sym_line_comment] = STATE(1501), - [sym_block] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4160), - [anon_sym_LF] = ACTIONS(4160), - [anon_sym_CR] = ACTIONS(4160), - [anon_sym_CR_LF] = ACTIONS(4160), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_LPAREN] = ACTIONS(4160), - [anon_sym___global] = ACTIONS(4160), - [anon_sym_type] = ACTIONS(4160), - [anon_sym_fn] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_pub] = ACTIONS(4160), - [anon_sym_mut] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_interface] = ACTIONS(4160), - [anon_sym_QMARK] = ACTIONS(4160), - [anon_sym_BANG] = ACTIONS(4160), - [anon_sym_go] = ACTIONS(4160), - [anon_sym_spawn] = ACTIONS(4160), - [anon_sym_json_DOTdecode] = ACTIONS(4160), - [anon_sym_LBRACK2] = ACTIONS(4160), - [anon_sym_TILDE] = ACTIONS(4160), - [anon_sym_CARET] = ACTIONS(4160), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_LT_DASH] = ACTIONS(4160), - [sym_none] = ACTIONS(4160), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [sym_nil] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_DOLLARif] = ACTIONS(4160), - [anon_sym_match] = ACTIONS(4160), - [anon_sym_select] = ACTIONS(4160), - [anon_sym_lock] = ACTIONS(4160), - [anon_sym_rlock] = ACTIONS(4160), - [anon_sym_unsafe] = ACTIONS(4160), - [anon_sym_sql] = ACTIONS(4160), - [sym_int_literal] = ACTIONS(4160), - [sym_float_literal] = ACTIONS(4160), - [sym_rune_literal] = ACTIONS(4160), - [sym_pseudo_compile_time_identifier] = ACTIONS(4160), - [anon_sym_shared] = ACTIONS(4160), - [anon_sym_map_LBRACK] = ACTIONS(4160), - [anon_sym_chan] = ACTIONS(4160), - [anon_sym_thread] = ACTIONS(4160), - [anon_sym_atomic] = ACTIONS(4160), - [anon_sym_assert] = ACTIONS(4160), - [anon_sym_defer] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_DOLLARfor] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_POUND] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym_AT_LBRACK] = ACTIONS(4160), - [sym___double_quote] = ACTIONS(4160), - [sym___single_quote] = ACTIONS(4160), - [sym___c_double_quote] = ACTIONS(4160), - [sym___c_single_quote] = ACTIONS(4160), - [sym___r_double_quote] = ACTIONS(4160), - [sym___r_single_quote] = ACTIONS(4160), + [1487] = { + [sym_line_comment] = STATE(1487), + [sym_block_comment] = STATE(1487), + [sym_block] = STATE(1602), + [ts_builtin_sym_end] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4162), + [anon_sym_LF] = ACTIONS(4162), + [anon_sym_CR] = ACTIONS(4162), + [anon_sym_CR_LF] = ACTIONS(4162), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_LPAREN] = ACTIONS(4162), + [anon_sym___global] = ACTIONS(4162), + [anon_sym_type] = ACTIONS(4162), + [anon_sym_fn] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_pub] = ACTIONS(4162), + [anon_sym_mut] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_interface] = ACTIONS(4162), + [anon_sym_QMARK] = ACTIONS(4162), + [anon_sym_BANG] = ACTIONS(4162), + [anon_sym_go] = ACTIONS(4162), + [anon_sym_spawn] = ACTIONS(4162), + [anon_sym_json_DOTdecode] = ACTIONS(4162), + [anon_sym_LBRACK2] = ACTIONS(4162), + [anon_sym_TILDE] = ACTIONS(4162), + [anon_sym_CARET] = ACTIONS(4162), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_LT_DASH] = ACTIONS(4162), + [sym_none] = ACTIONS(4162), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [sym_nil] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_DOLLARif] = ACTIONS(4162), + [anon_sym_match] = ACTIONS(4162), + [anon_sym_select] = ACTIONS(4162), + [anon_sym_lock] = ACTIONS(4162), + [anon_sym_rlock] = ACTIONS(4162), + [anon_sym_unsafe] = ACTIONS(4162), + [anon_sym_sql] = ACTIONS(4162), + [sym_int_literal] = ACTIONS(4162), + [sym_float_literal] = ACTIONS(4162), + [sym_rune_literal] = ACTIONS(4162), + [sym_pseudo_compile_time_identifier] = ACTIONS(4162), + [anon_sym_shared] = ACTIONS(4162), + [anon_sym_map_LBRACK] = ACTIONS(4162), + [anon_sym_chan] = ACTIONS(4162), + [anon_sym_thread] = ACTIONS(4162), + [anon_sym_atomic] = ACTIONS(4162), + [anon_sym_assert] = ACTIONS(4162), + [anon_sym_defer] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_DOLLARfor] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_POUND] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym_AT_LBRACK] = ACTIONS(4162), + [sym___double_quote] = ACTIONS(4162), + [sym___single_quote] = ACTIONS(4162), + [sym___c_double_quote] = ACTIONS(4162), + [sym___c_single_quote] = ACTIONS(4162), + [sym___r_double_quote] = ACTIONS(4162), + [sym___r_single_quote] = ACTIONS(4162), }, - [1502] = { - [sym_line_comment] = STATE(1502), - [sym_label_reference] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4164), + [1488] = { + [sym_line_comment] = STATE(1488), + [sym_block_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4166), [anon_sym_LF] = ACTIONS(4166), [anon_sym_CR] = ACTIONS(4166), [anon_sym_CR_LF] = ACTIONS(4166), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4166), [anon_sym_LBRACE] = ACTIONS(4166), [anon_sym_const] = ACTIONS(4166), [anon_sym_LPAREN] = ACTIONS(4166), [anon_sym___global] = ACTIONS(4166), [anon_sym_type] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), [anon_sym_fn] = ACTIONS(4166), [anon_sym_PLUS] = ACTIONS(4166), [anon_sym_DASH] = ACTIONS(4166), @@ -189503,18 +183182,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4166), [sym___r_single_quote] = ACTIONS(4166), }, - [1503] = { - [sym_line_comment] = STATE(1503), - [sym_label_reference] = STATE(1518), + [1489] = { + [sym_line_comment] = STATE(1489), + [sym_block_comment] = STATE(1489), + [sym_block] = STATE(1545), [ts_builtin_sym_end] = ACTIONS(4168), - [sym_identifier] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4170), [anon_sym_LF] = ACTIONS(4170), [anon_sym_CR] = ACTIONS(4170), [anon_sym_CR_LF] = ACTIONS(4170), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4170), - [anon_sym_LBRACE] = ACTIONS(4170), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4170), [anon_sym_LPAREN] = ACTIONS(4170), [anon_sym___global] = ACTIONS(4170), @@ -189578,318 +183258,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4170), [sym___r_single_quote] = ACTIONS(4170), }, - [1504] = { - [sym_line_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(3121), - [sym_identifier] = ACTIONS(3123), - [anon_sym_LF] = ACTIONS(3123), - [anon_sym_CR] = ACTIONS(3123), - [anon_sym_CR_LF] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym___global] = ACTIONS(3123), - [anon_sym_type] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3123), - [anon_sym_fn] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3123), - [anon_sym_pub] = ACTIONS(3123), - [anon_sym_mut] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_interface] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3123), - [anon_sym_go] = ACTIONS(3123), - [anon_sym_spawn] = ACTIONS(3123), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3123), - [sym_none] = ACTIONS(3123), - [sym_true] = ACTIONS(3123), - [sym_false] = ACTIONS(3123), - [sym_nil] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_DOLLARif] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_rlock] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_sql] = ACTIONS(3123), - [sym_int_literal] = ACTIONS(3123), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [sym_pseudo_compile_time_identifier] = ACTIONS(3123), - [anon_sym_shared] = ACTIONS(3123), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3123), - [anon_sym_thread] = ACTIONS(3123), - [anon_sym_atomic] = ACTIONS(3123), - [anon_sym_assert] = ACTIONS(3123), - [anon_sym_defer] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_DOLLARfor] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_POUND] = ACTIONS(3123), - [anon_sym_asm] = ACTIONS(3123), - [anon_sym_AT_LBRACK] = ACTIONS(3123), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), - }, - [1505] = { - [sym_line_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [anon_sym_LF] = ACTIONS(3155), - [anon_sym_CR] = ACTIONS(3155), - [anon_sym_CR_LF] = ACTIONS(3155), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym___global] = ACTIONS(3155), - [anon_sym_type] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_fn] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_pub] = ACTIONS(3155), - [anon_sym_mut] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3155), - [anon_sym_go] = ACTIONS(3155), - [anon_sym_spawn] = ACTIONS(3155), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT_DASH] = ACTIONS(3155), - [sym_none] = ACTIONS(3155), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [sym_nil] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_DOLLARif] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_rlock] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_sql] = ACTIONS(3155), - [sym_int_literal] = ACTIONS(3155), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [sym_pseudo_compile_time_identifier] = ACTIONS(3155), - [anon_sym_shared] = ACTIONS(3155), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3155), - [anon_sym_thread] = ACTIONS(3155), - [anon_sym_atomic] = ACTIONS(3155), - [anon_sym_assert] = ACTIONS(3155), - [anon_sym_defer] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_DOLLARfor] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_POUND] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym_AT_LBRACK] = ACTIONS(3155), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), - }, - [1506] = { - [sym_line_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3405), - [sym_identifier] = ACTIONS(3407), - [anon_sym_LF] = ACTIONS(3407), - [anon_sym_CR] = ACTIONS(3407), - [anon_sym_CR_LF] = ACTIONS(3407), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym___global] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3407), - [anon_sym_fn] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3407), - [anon_sym_union] = ACTIONS(3407), - [anon_sym_pub] = ACTIONS(3407), - [anon_sym_mut] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_QMARK] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_go] = ACTIONS(3407), - [anon_sym_spawn] = ACTIONS(3407), - [anon_sym_json_DOTdecode] = ACTIONS(3407), - [anon_sym_LBRACK2] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3407), - [anon_sym_LT_DASH] = ACTIONS(3407), - [sym_none] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_nil] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_DOLLARif] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3407), - [anon_sym_select] = ACTIONS(3407), - [anon_sym_lock] = ACTIONS(3407), - [anon_sym_rlock] = ACTIONS(3407), - [anon_sym_unsafe] = ACTIONS(3407), - [anon_sym_sql] = ACTIONS(3407), - [sym_int_literal] = ACTIONS(3407), - [sym_float_literal] = ACTIONS(3407), - [sym_rune_literal] = ACTIONS(3407), - [sym_pseudo_compile_time_identifier] = ACTIONS(3407), - [anon_sym_shared] = ACTIONS(3407), - [anon_sym_map_LBRACK] = ACTIONS(3407), - [anon_sym_chan] = ACTIONS(3407), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3407), - [anon_sym_assert] = ACTIONS(3407), - [anon_sym_defer] = ACTIONS(3407), - [anon_sym_goto] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_DOLLARfor] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_POUND] = ACTIONS(3407), - [anon_sym_asm] = ACTIONS(3407), - [anon_sym_AT_LBRACK] = ACTIONS(3407), - [sym___double_quote] = ACTIONS(3407), - [sym___single_quote] = ACTIONS(3407), - [sym___c_double_quote] = ACTIONS(3407), - [sym___c_single_quote] = ACTIONS(3407), - [sym___r_double_quote] = ACTIONS(3407), - [sym___r_single_quote] = ACTIONS(3407), - }, - [1507] = { - [sym_line_comment] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(2739), - [sym_identifier] = ACTIONS(2741), - [anon_sym_LF] = ACTIONS(2741), - [anon_sym_CR] = ACTIONS(2741), - [anon_sym_CR_LF] = ACTIONS(2741), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_const] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym___global] = ACTIONS(2741), - [anon_sym_type] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_fn] = ACTIONS(2741), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_struct] = ACTIONS(2741), - [anon_sym_union] = ACTIONS(2741), - [anon_sym_pub] = ACTIONS(2741), - [anon_sym_mut] = ACTIONS(2741), - [anon_sym_enum] = ACTIONS(2741), - [anon_sym_interface] = ACTIONS(2741), - [anon_sym_QMARK] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_go] = ACTIONS(2741), - [anon_sym_spawn] = ACTIONS(2741), - [anon_sym_json_DOTdecode] = ACTIONS(2741), - [anon_sym_LBRACK2] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_CARET] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(2741), - [sym_true] = ACTIONS(2741), - [sym_false] = ACTIONS(2741), - [sym_nil] = ACTIONS(2741), - [anon_sym_if] = ACTIONS(2741), - [anon_sym_DOLLARif] = ACTIONS(2741), - [anon_sym_match] = ACTIONS(2741), - [anon_sym_select] = ACTIONS(2741), - [anon_sym_lock] = ACTIONS(2741), - [anon_sym_rlock] = ACTIONS(2741), - [anon_sym_unsafe] = ACTIONS(2741), - [anon_sym_sql] = ACTIONS(2741), - [sym_int_literal] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - [sym_rune_literal] = ACTIONS(2741), - [sym_pseudo_compile_time_identifier] = ACTIONS(2741), - [anon_sym_shared] = ACTIONS(2741), - [anon_sym_map_LBRACK] = ACTIONS(2741), - [anon_sym_chan] = ACTIONS(2741), - [anon_sym_thread] = ACTIONS(2741), - [anon_sym_atomic] = ACTIONS(2741), - [anon_sym_assert] = ACTIONS(2741), - [anon_sym_defer] = ACTIONS(2741), - [anon_sym_goto] = ACTIONS(2741), - [anon_sym_break] = ACTIONS(2741), - [anon_sym_continue] = ACTIONS(2741), - [anon_sym_return] = ACTIONS(2741), - [anon_sym_DOLLARfor] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_asm] = ACTIONS(2741), - [anon_sym_AT_LBRACK] = ACTIONS(2741), - [sym___double_quote] = ACTIONS(2741), - [sym___single_quote] = ACTIONS(2741), - [sym___c_double_quote] = ACTIONS(2741), - [sym___c_single_quote] = ACTIONS(2741), - [sym___r_double_quote] = ACTIONS(2741), - [sym___r_single_quote] = ACTIONS(2741), + [1490] = { + [sym_line_comment] = STATE(1490), + [sym_block_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3142), + [anon_sym_LF] = ACTIONS(3142), + [anon_sym_CR] = ACTIONS(3142), + [anon_sym_CR_LF] = ACTIONS(3142), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym___global] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_PIPE] = ACTIONS(3142), + [anon_sym_fn] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3142), + [anon_sym_struct] = ACTIONS(3142), + [anon_sym_union] = ACTIONS(3142), + [anon_sym_pub] = ACTIONS(3142), + [anon_sym_mut] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_QMARK] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_go] = ACTIONS(3142), + [anon_sym_spawn] = ACTIONS(3142), + [anon_sym_json_DOTdecode] = ACTIONS(3142), + [anon_sym_LBRACK2] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_CARET] = ACTIONS(3142), + [anon_sym_AMP] = ACTIONS(3142), + [anon_sym_LT_DASH] = ACTIONS(3142), + [sym_none] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_nil] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_DOLLARif] = ACTIONS(3142), + [anon_sym_match] = ACTIONS(3142), + [anon_sym_select] = ACTIONS(3142), + [anon_sym_lock] = ACTIONS(3142), + [anon_sym_rlock] = ACTIONS(3142), + [anon_sym_unsafe] = ACTIONS(3142), + [anon_sym_sql] = ACTIONS(3142), + [sym_int_literal] = ACTIONS(3142), + [sym_float_literal] = ACTIONS(3142), + [sym_rune_literal] = ACTIONS(3142), + [sym_pseudo_compile_time_identifier] = ACTIONS(3142), + [anon_sym_shared] = ACTIONS(3142), + [anon_sym_map_LBRACK] = ACTIONS(3142), + [anon_sym_chan] = ACTIONS(3142), + [anon_sym_thread] = ACTIONS(3142), + [anon_sym_atomic] = ACTIONS(3142), + [anon_sym_assert] = ACTIONS(3142), + [anon_sym_defer] = ACTIONS(3142), + [anon_sym_goto] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_DOLLARfor] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_POUND] = ACTIONS(3142), + [anon_sym_asm] = ACTIONS(3142), + [anon_sym_AT_LBRACK] = ACTIONS(3142), + [sym___double_quote] = ACTIONS(3142), + [sym___single_quote] = ACTIONS(3142), + [sym___c_double_quote] = ACTIONS(3142), + [sym___c_single_quote] = ACTIONS(3142), + [sym___r_double_quote] = ACTIONS(3142), + [sym___r_single_quote] = ACTIONS(3142), }, - [1508] = { - [sym_line_comment] = STATE(1508), - [sym_block] = STATE(1540), + [1491] = { + [sym_line_comment] = STATE(1491), + [sym_block_comment] = STATE(1491), + [sym_block] = STATE(1547), [ts_builtin_sym_end] = ACTIONS(4172), [sym_identifier] = ACTIONS(4174), [anon_sym_LF] = ACTIONS(4174), [anon_sym_CR] = ACTIONS(4174), [anon_sym_CR_LF] = ACTIONS(4174), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4174), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4174), [anon_sym_LPAREN] = ACTIONS(4174), [anon_sym___global] = ACTIONS(4174), @@ -189953,93 +183410,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4174), [sym___r_single_quote] = ACTIONS(4174), }, - [1509] = { - [sym_line_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3117), - [sym_identifier] = ACTIONS(3119), - [anon_sym_LF] = ACTIONS(3119), - [anon_sym_CR] = ACTIONS(3119), - [anon_sym_CR_LF] = ACTIONS(3119), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym___global] = ACTIONS(3119), - [anon_sym_type] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3119), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_pub] = ACTIONS(3119), - [anon_sym_mut] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_go] = ACTIONS(3119), - [anon_sym_spawn] = ACTIONS(3119), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3119), - [sym_none] = ACTIONS(3119), - [sym_true] = ACTIONS(3119), - [sym_false] = ACTIONS(3119), - [sym_nil] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_DOLLARif] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_rlock] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_sql] = ACTIONS(3119), - [sym_int_literal] = ACTIONS(3119), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [sym_pseudo_compile_time_identifier] = ACTIONS(3119), - [anon_sym_shared] = ACTIONS(3119), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3119), - [anon_sym_thread] = ACTIONS(3119), - [anon_sym_atomic] = ACTIONS(3119), - [anon_sym_assert] = ACTIONS(3119), - [anon_sym_defer] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_DOLLARfor] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_POUND] = ACTIONS(3119), - [anon_sym_asm] = ACTIONS(3119), - [anon_sym_AT_LBRACK] = ACTIONS(3119), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), - }, - [1510] = { - [sym_line_comment] = STATE(1510), - [sym_block] = STATE(1523), + [1492] = { + [sym_line_comment] = STATE(1492), + [sym_block_comment] = STATE(1492), + [sym_block] = STATE(1550), [ts_builtin_sym_end] = ACTIONS(4176), [sym_identifier] = ACTIONS(4178), [anon_sym_LF] = ACTIONS(4178), [anon_sym_CR] = ACTIONS(4178), [anon_sym_CR_LF] = ACTIONS(4178), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4178), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4178), [anon_sym_LPAREN] = ACTIONS(4178), [anon_sym___global] = ACTIONS(4178), @@ -190103,243 +183486,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4178), [sym___r_single_quote] = ACTIONS(4178), }, - [1511] = { - [sym_line_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym___global] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_union] = ACTIONS(3275), - [anon_sym_pub] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [anon_sym_assert] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_goto] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_DOLLARfor] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_asm] = ACTIONS(3275), - [anon_sym_AT_LBRACK] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), - }, - [1512] = { - [sym_line_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym___global] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3295), - [anon_sym_pub] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_DOLLARfor] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3295), - [anon_sym_asm] = ACTIONS(3295), - [anon_sym_AT_LBRACK] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), - }, - [1513] = { - [sym_line_comment] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3401), - [sym_identifier] = ACTIONS(3403), - [anon_sym_LF] = ACTIONS(3403), - [anon_sym_CR] = ACTIONS(3403), - [anon_sym_CR_LF] = ACTIONS(3403), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym___global] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3403), - [anon_sym_fn] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3403), - [anon_sym_union] = ACTIONS(3403), - [anon_sym_pub] = ACTIONS(3403), - [anon_sym_mut] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_go] = ACTIONS(3403), - [anon_sym_spawn] = ACTIONS(3403), - [anon_sym_json_DOTdecode] = ACTIONS(3403), - [anon_sym_LBRACK2] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3403), - [anon_sym_LT_DASH] = ACTIONS(3403), - [sym_none] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_nil] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_DOLLARif] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3403), - [anon_sym_select] = ACTIONS(3403), - [anon_sym_lock] = ACTIONS(3403), - [anon_sym_rlock] = ACTIONS(3403), - [anon_sym_unsafe] = ACTIONS(3403), - [anon_sym_sql] = ACTIONS(3403), - [sym_int_literal] = ACTIONS(3403), - [sym_float_literal] = ACTIONS(3403), - [sym_rune_literal] = ACTIONS(3403), - [sym_pseudo_compile_time_identifier] = ACTIONS(3403), - [anon_sym_shared] = ACTIONS(3403), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3403), - [anon_sym_thread] = ACTIONS(3403), - [anon_sym_atomic] = ACTIONS(3403), - [anon_sym_assert] = ACTIONS(3403), - [anon_sym_defer] = ACTIONS(3403), - [anon_sym_goto] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_DOLLARfor] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_POUND] = ACTIONS(3403), - [anon_sym_asm] = ACTIONS(3403), - [anon_sym_AT_LBRACK] = ACTIONS(3403), - [sym___double_quote] = ACTIONS(3403), - [sym___single_quote] = ACTIONS(3403), - [sym___c_double_quote] = ACTIONS(3403), - [sym___c_single_quote] = ACTIONS(3403), - [sym___r_double_quote] = ACTIONS(3403), - [sym___r_single_quote] = ACTIONS(3403), - }, - [1514] = { - [sym_line_comment] = STATE(1514), - [sym_block] = STATE(1609), + [1493] = { + [sym_line_comment] = STATE(1493), + [sym_block_comment] = STATE(1493), + [sym_block] = STATE(1613), [ts_builtin_sym_end] = ACTIONS(4180), [sym_identifier] = ACTIONS(4182), [anon_sym_LF] = ACTIONS(4182), [anon_sym_CR] = ACTIONS(4182), [anon_sym_CR_LF] = ACTIONS(4182), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4182), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4182), [anon_sym_LPAREN] = ACTIONS(4182), [anon_sym___global] = ACTIONS(4182), @@ -190403,18 +183562,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4182), [sym___r_single_quote] = ACTIONS(4182), }, - [1515] = { - [sym_line_comment] = STATE(1515), - [sym_block] = STATE(1544), + [1494] = { + [sym_line_comment] = STATE(1494), + [sym_block_comment] = STATE(1494), + [sym_block] = STATE(1612), [ts_builtin_sym_end] = ACTIONS(4184), [sym_identifier] = ACTIONS(4186), [anon_sym_LF] = ACTIONS(4186), [anon_sym_CR] = ACTIONS(4186), [anon_sym_CR_LF] = ACTIONS(4186), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4186), - [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_LBRACE] = ACTIONS(4062), [anon_sym_const] = ACTIONS(4186), [anon_sym_LPAREN] = ACTIONS(4186), [anon_sym___global] = ACTIONS(4186), @@ -190478,165 +183638,1764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4186), [sym___r_single_quote] = ACTIONS(4186), }, + [1495] = { + [sym_line_comment] = STATE(1495), + [sym_block_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2909), + [anon_sym_LF] = ACTIONS(2909), + [anon_sym_CR] = ACTIONS(2909), + [anon_sym_CR_LF] = ACTIONS(2909), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_const] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym___global] = ACTIONS(2909), + [anon_sym_type] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_fn] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2909), + [anon_sym_union] = ACTIONS(2909), + [anon_sym_pub] = ACTIONS(2909), + [anon_sym_mut] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_QMARK] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_go] = ACTIONS(2909), + [anon_sym_spawn] = ACTIONS(2909), + [anon_sym_json_DOTdecode] = ACTIONS(2909), + [anon_sym_LBRACK2] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_LT_DASH] = ACTIONS(2909), + [sym_none] = ACTIONS(2909), + [sym_true] = ACTIONS(2909), + [sym_false] = ACTIONS(2909), + [sym_nil] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_DOLLARif] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2909), + [anon_sym_select] = ACTIONS(2909), + [anon_sym_lock] = ACTIONS(2909), + [anon_sym_rlock] = ACTIONS(2909), + [anon_sym_unsafe] = ACTIONS(2909), + [anon_sym_sql] = ACTIONS(2909), + [sym_int_literal] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), + [sym_rune_literal] = ACTIONS(2909), + [sym_pseudo_compile_time_identifier] = ACTIONS(2909), + [anon_sym_shared] = ACTIONS(2909), + [anon_sym_map_LBRACK] = ACTIONS(2909), + [anon_sym_chan] = ACTIONS(2909), + [anon_sym_thread] = ACTIONS(2909), + [anon_sym_atomic] = ACTIONS(2909), + [anon_sym_assert] = ACTIONS(2909), + [anon_sym_defer] = ACTIONS(2909), + [anon_sym_goto] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_DOLLARfor] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2909), + [anon_sym_asm] = ACTIONS(2909), + [anon_sym_AT_LBRACK] = ACTIONS(2909), + [sym___double_quote] = ACTIONS(2909), + [sym___single_quote] = ACTIONS(2909), + [sym___c_double_quote] = ACTIONS(2909), + [sym___c_single_quote] = ACTIONS(2909), + [sym___r_double_quote] = ACTIONS(2909), + [sym___r_single_quote] = ACTIONS(2909), + }, + [1496] = { + [sym_line_comment] = STATE(1496), + [sym_block_comment] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_LF] = ACTIONS(2695), + [anon_sym_CR] = ACTIONS(2695), + [anon_sym_CR_LF] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym___global] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_mut] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_interface] = ACTIONS(2695), + [anon_sym_QMARK] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_go] = ACTIONS(2695), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(2695), + [anon_sym_LBRACK2] = ACTIONS(2695), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_LT_DASH] = ACTIONS(2695), + [sym_none] = ACTIONS(2695), + [sym_true] = ACTIONS(2695), + [sym_false] = ACTIONS(2695), + [sym_nil] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_DOLLARif] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_select] = ACTIONS(2695), + [anon_sym_lock] = ACTIONS(2695), + [anon_sym_rlock] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_sql] = ACTIONS(2695), + [sym_int_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + [sym_rune_literal] = ACTIONS(2695), + [sym_pseudo_compile_time_identifier] = ACTIONS(2695), + [anon_sym_shared] = ACTIONS(2695), + [anon_sym_map_LBRACK] = ACTIONS(2695), + [anon_sym_chan] = ACTIONS(2695), + [anon_sym_thread] = ACTIONS(2695), + [anon_sym_atomic] = ACTIONS(2695), + [anon_sym_assert] = ACTIONS(2695), + [anon_sym_defer] = ACTIONS(2695), + [anon_sym_goto] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_DOLLARfor] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_asm] = ACTIONS(2695), + [anon_sym_AT_LBRACK] = ACTIONS(2695), + [sym___double_quote] = ACTIONS(2695), + [sym___single_quote] = ACTIONS(2695), + [sym___c_double_quote] = ACTIONS(2695), + [sym___c_single_quote] = ACTIONS(2695), + [sym___r_double_quote] = ACTIONS(2695), + [sym___r_single_quote] = ACTIONS(2695), + }, + [1497] = { + [sym_line_comment] = STATE(1497), + [sym_block_comment] = STATE(1497), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_LF] = ACTIONS(3434), + [anon_sym_CR] = ACTIONS(3434), + [anon_sym_CR_LF] = ACTIONS(3434), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym___global] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_fn] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3434), + [anon_sym_union] = ACTIONS(3434), + [anon_sym_pub] = ACTIONS(3434), + [anon_sym_mut] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_go] = ACTIONS(3434), + [anon_sym_spawn] = ACTIONS(3434), + [anon_sym_json_DOTdecode] = ACTIONS(3434), + [anon_sym_LBRACK2] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3434), + [anon_sym_LT_DASH] = ACTIONS(3434), + [sym_none] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_nil] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_DOLLARif] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3434), + [anon_sym_select] = ACTIONS(3434), + [anon_sym_lock] = ACTIONS(3434), + [anon_sym_rlock] = ACTIONS(3434), + [anon_sym_unsafe] = ACTIONS(3434), + [anon_sym_sql] = ACTIONS(3434), + [sym_int_literal] = ACTIONS(3434), + [sym_float_literal] = ACTIONS(3434), + [sym_rune_literal] = ACTIONS(3434), + [sym_pseudo_compile_time_identifier] = ACTIONS(3434), + [anon_sym_shared] = ACTIONS(3434), + [anon_sym_map_LBRACK] = ACTIONS(3434), + [anon_sym_chan] = ACTIONS(3434), + [anon_sym_thread] = ACTIONS(3434), + [anon_sym_atomic] = ACTIONS(3434), + [anon_sym_assert] = ACTIONS(3434), + [anon_sym_defer] = ACTIONS(3434), + [anon_sym_goto] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_DOLLARfor] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_POUND] = ACTIONS(3434), + [anon_sym_asm] = ACTIONS(3434), + [anon_sym_AT_LBRACK] = ACTIONS(3434), + [sym___double_quote] = ACTIONS(3434), + [sym___single_quote] = ACTIONS(3434), + [sym___c_double_quote] = ACTIONS(3434), + [sym___c_single_quote] = ACTIONS(3434), + [sym___r_double_quote] = ACTIONS(3434), + [sym___r_single_quote] = ACTIONS(3434), + }, + [1498] = { + [sym_line_comment] = STATE(1498), + [sym_block_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_LF] = ACTIONS(3438), + [anon_sym_CR] = ACTIONS(3438), + [anon_sym_CR_LF] = ACTIONS(3438), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym___global] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3438), + [anon_sym_fn] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3438), + [anon_sym_union] = ACTIONS(3438), + [anon_sym_pub] = ACTIONS(3438), + [anon_sym_mut] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3438), + [anon_sym_go] = ACTIONS(3438), + [anon_sym_spawn] = ACTIONS(3438), + [anon_sym_json_DOTdecode] = ACTIONS(3438), + [anon_sym_LBRACK2] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3438), + [anon_sym_LT_DASH] = ACTIONS(3438), + [sym_none] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_nil] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_DOLLARif] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3438), + [anon_sym_select] = ACTIONS(3438), + [anon_sym_lock] = ACTIONS(3438), + [anon_sym_rlock] = ACTIONS(3438), + [anon_sym_unsafe] = ACTIONS(3438), + [anon_sym_sql] = ACTIONS(3438), + [sym_int_literal] = ACTIONS(3438), + [sym_float_literal] = ACTIONS(3438), + [sym_rune_literal] = ACTIONS(3438), + [sym_pseudo_compile_time_identifier] = ACTIONS(3438), + [anon_sym_shared] = ACTIONS(3438), + [anon_sym_map_LBRACK] = ACTIONS(3438), + [anon_sym_chan] = ACTIONS(3438), + [anon_sym_thread] = ACTIONS(3438), + [anon_sym_atomic] = ACTIONS(3438), + [anon_sym_assert] = ACTIONS(3438), + [anon_sym_defer] = ACTIONS(3438), + [anon_sym_goto] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_DOLLARfor] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_POUND] = ACTIONS(3438), + [anon_sym_asm] = ACTIONS(3438), + [anon_sym_AT_LBRACK] = ACTIONS(3438), + [sym___double_quote] = ACTIONS(3438), + [sym___single_quote] = ACTIONS(3438), + [sym___c_double_quote] = ACTIONS(3438), + [sym___c_single_quote] = ACTIONS(3438), + [sym___r_double_quote] = ACTIONS(3438), + [sym___r_single_quote] = ACTIONS(3438), + }, + [1499] = { + [sym_line_comment] = STATE(1499), + [sym_block_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1765), + [anon_sym_CR] = ACTIONS(1765), + [anon_sym_CR_LF] = ACTIONS(1765), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1765), + [anon_sym_LBRACE] = ACTIONS(1765), + [anon_sym_COMMA] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1765), + [anon_sym_LPAREN] = ACTIONS(1765), + [anon_sym___global] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1765), + [anon_sym_fn] = ACTIONS(1765), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1765), + [anon_sym_struct] = ACTIONS(1765), + [anon_sym_union] = ACTIONS(1765), + [anon_sym_pub] = ACTIONS(1765), + [anon_sym_mut] = ACTIONS(1765), + [anon_sym_enum] = ACTIONS(1765), + [anon_sym_interface] = ACTIONS(1765), + [anon_sym_QMARK] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1765), + [anon_sym_go] = ACTIONS(1765), + [anon_sym_spawn] = ACTIONS(1765), + [anon_sym_json_DOTdecode] = ACTIONS(1765), + [anon_sym_LBRACK2] = ACTIONS(1765), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_LT_DASH] = ACTIONS(1765), + [sym_none] = ACTIONS(1765), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_nil] = ACTIONS(1765), + [anon_sym_if] = ACTIONS(1765), + [anon_sym_DOLLARif] = ACTIONS(1765), + [anon_sym_match] = ACTIONS(1765), + [anon_sym_select] = ACTIONS(1765), + [anon_sym_lock] = ACTIONS(1765), + [anon_sym_rlock] = ACTIONS(1765), + [anon_sym_unsafe] = ACTIONS(1765), + [anon_sym_sql] = ACTIONS(1765), + [sym_int_literal] = ACTIONS(1765), + [sym_float_literal] = ACTIONS(1765), + [sym_rune_literal] = ACTIONS(1765), + [sym_pseudo_compile_time_identifier] = ACTIONS(1765), + [anon_sym_shared] = ACTIONS(1765), + [anon_sym_map_LBRACK] = ACTIONS(1765), + [anon_sym_chan] = ACTIONS(1765), + [anon_sym_thread] = ACTIONS(1765), + [anon_sym_atomic] = ACTIONS(1765), + [anon_sym_assert] = ACTIONS(1765), + [anon_sym_defer] = ACTIONS(1765), + [anon_sym_goto] = ACTIONS(1765), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1765), + [anon_sym_return] = ACTIONS(1765), + [anon_sym_DOLLARfor] = ACTIONS(1765), + [anon_sym_for] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(1765), + [anon_sym_asm] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1765), + [sym___double_quote] = ACTIONS(1765), + [sym___single_quote] = ACTIONS(1765), + [sym___c_double_quote] = ACTIONS(1765), + [sym___c_single_quote] = ACTIONS(1765), + [sym___r_double_quote] = ACTIONS(1765), + [sym___r_single_quote] = ACTIONS(1765), + }, + [1500] = { + [sym_line_comment] = STATE(1500), + [sym_block_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_LF] = ACTIONS(3426), + [anon_sym_CR] = ACTIONS(3426), + [anon_sym_CR_LF] = ACTIONS(3426), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym___global] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3426), + [anon_sym_fn] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_struct] = ACTIONS(3426), + [anon_sym_union] = ACTIONS(3426), + [anon_sym_pub] = ACTIONS(3426), + [anon_sym_mut] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_go] = ACTIONS(3426), + [anon_sym_spawn] = ACTIONS(3426), + [anon_sym_json_DOTdecode] = ACTIONS(3426), + [anon_sym_LBRACK2] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3426), + [anon_sym_LT_DASH] = ACTIONS(3426), + [sym_none] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_nil] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_DOLLARif] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3426), + [anon_sym_select] = ACTIONS(3426), + [anon_sym_lock] = ACTIONS(3426), + [anon_sym_rlock] = ACTIONS(3426), + [anon_sym_unsafe] = ACTIONS(3426), + [anon_sym_sql] = ACTIONS(3426), + [sym_int_literal] = ACTIONS(3426), + [sym_float_literal] = ACTIONS(3426), + [sym_rune_literal] = ACTIONS(3426), + [sym_pseudo_compile_time_identifier] = ACTIONS(3426), + [anon_sym_shared] = ACTIONS(3426), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3426), + [anon_sym_thread] = ACTIONS(3426), + [anon_sym_atomic] = ACTIONS(3426), + [anon_sym_assert] = ACTIONS(3426), + [anon_sym_defer] = ACTIONS(3426), + [anon_sym_goto] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_DOLLARfor] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_POUND] = ACTIONS(3426), + [anon_sym_asm] = ACTIONS(3426), + [anon_sym_AT_LBRACK] = ACTIONS(3426), + [sym___double_quote] = ACTIONS(3426), + [sym___single_quote] = ACTIONS(3426), + [sym___c_double_quote] = ACTIONS(3426), + [sym___c_single_quote] = ACTIONS(3426), + [sym___r_double_quote] = ACTIONS(3426), + [sym___r_single_quote] = ACTIONS(3426), + }, + [1501] = { + [sym_line_comment] = STATE(1501), + [sym_block_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_LF] = ACTIONS(3174), + [anon_sym_CR] = ACTIONS(3174), + [anon_sym_CR_LF] = ACTIONS(3174), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym___global] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_PIPE] = ACTIONS(3174), + [anon_sym_fn] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_STAR] = ACTIONS(3174), + [anon_sym_struct] = ACTIONS(3174), + [anon_sym_union] = ACTIONS(3174), + [anon_sym_pub] = ACTIONS(3174), + [anon_sym_mut] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_QMARK] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_go] = ACTIONS(3174), + [anon_sym_spawn] = ACTIONS(3174), + [anon_sym_json_DOTdecode] = ACTIONS(3174), + [anon_sym_LBRACK2] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_CARET] = ACTIONS(3174), + [anon_sym_AMP] = ACTIONS(3174), + [anon_sym_LT_DASH] = ACTIONS(3174), + [sym_none] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_nil] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_DOLLARif] = ACTIONS(3174), + [anon_sym_match] = ACTIONS(3174), + [anon_sym_select] = ACTIONS(3174), + [anon_sym_lock] = ACTIONS(3174), + [anon_sym_rlock] = ACTIONS(3174), + [anon_sym_unsafe] = ACTIONS(3174), + [anon_sym_sql] = ACTIONS(3174), + [sym_int_literal] = ACTIONS(3174), + [sym_float_literal] = ACTIONS(3174), + [sym_rune_literal] = ACTIONS(3174), + [sym_pseudo_compile_time_identifier] = ACTIONS(3174), + [anon_sym_shared] = ACTIONS(3174), + [anon_sym_map_LBRACK] = ACTIONS(3174), + [anon_sym_chan] = ACTIONS(3174), + [anon_sym_thread] = ACTIONS(3174), + [anon_sym_atomic] = ACTIONS(3174), + [anon_sym_assert] = ACTIONS(3174), + [anon_sym_defer] = ACTIONS(3174), + [anon_sym_goto] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_DOLLARfor] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_POUND] = ACTIONS(3174), + [anon_sym_asm] = ACTIONS(3174), + [anon_sym_AT_LBRACK] = ACTIONS(3174), + [sym___double_quote] = ACTIONS(3174), + [sym___single_quote] = ACTIONS(3174), + [sym___c_double_quote] = ACTIONS(3174), + [sym___c_single_quote] = ACTIONS(3174), + [sym___r_double_quote] = ACTIONS(3174), + [sym___r_single_quote] = ACTIONS(3174), + }, + [1502] = { + [sym_line_comment] = STATE(1502), + [sym_block_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LF] = ACTIONS(3334), + [anon_sym_CR] = ACTIONS(3334), + [anon_sym_CR_LF] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym___global] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3334), + [anon_sym_union] = ACTIONS(3334), + [anon_sym_pub] = ACTIONS(3334), + [anon_sym_mut] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_go] = ACTIONS(3334), + [anon_sym_spawn] = ACTIONS(3334), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_LBRACK2] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [sym_none] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_nil] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_DOLLARif] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3334), + [anon_sym_select] = ACTIONS(3334), + [anon_sym_lock] = ACTIONS(3334), + [anon_sym_rlock] = ACTIONS(3334), + [anon_sym_unsafe] = ACTIONS(3334), + [anon_sym_sql] = ACTIONS(3334), + [sym_int_literal] = ACTIONS(3334), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3334), + [anon_sym_shared] = ACTIONS(3334), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3334), + [anon_sym_thread] = ACTIONS(3334), + [anon_sym_atomic] = ACTIONS(3334), + [anon_sym_assert] = ACTIONS(3334), + [anon_sym_defer] = ACTIONS(3334), + [anon_sym_goto] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_DOLLARfor] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_POUND] = ACTIONS(3334), + [anon_sym_asm] = ACTIONS(3334), + [anon_sym_AT_LBRACK] = ACTIONS(3334), + [sym___double_quote] = ACTIONS(3334), + [sym___single_quote] = ACTIONS(3334), + [sym___c_double_quote] = ACTIONS(3334), + [sym___c_single_quote] = ACTIONS(3334), + [sym___r_double_quote] = ACTIONS(3334), + [sym___r_single_quote] = ACTIONS(3334), + }, + [1503] = { + [sym_line_comment] = STATE(1503), + [sym_block_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_LF] = ACTIONS(3190), + [anon_sym_CR] = ACTIONS(3190), + [anon_sym_CR_LF] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3190), + [anon_sym___global] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_PIPE] = ACTIONS(3190), + [anon_sym_fn] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_struct] = ACTIONS(3190), + [anon_sym_union] = ACTIONS(3190), + [anon_sym_pub] = ACTIONS(3190), + [anon_sym_mut] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_QMARK] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3190), + [anon_sym_go] = ACTIONS(3190), + [anon_sym_spawn] = ACTIONS(3190), + [anon_sym_json_DOTdecode] = ACTIONS(3190), + [anon_sym_LBRACK2] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3190), + [anon_sym_CARET] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(3190), + [anon_sym_LT_DASH] = ACTIONS(3190), + [sym_none] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_nil] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_DOLLARif] = ACTIONS(3190), + [anon_sym_match] = ACTIONS(3190), + [anon_sym_select] = ACTIONS(3190), + [anon_sym_lock] = ACTIONS(3190), + [anon_sym_rlock] = ACTIONS(3190), + [anon_sym_unsafe] = ACTIONS(3190), + [anon_sym_sql] = ACTIONS(3190), + [sym_int_literal] = ACTIONS(3190), + [sym_float_literal] = ACTIONS(3190), + [sym_rune_literal] = ACTIONS(3190), + [sym_pseudo_compile_time_identifier] = ACTIONS(3190), + [anon_sym_shared] = ACTIONS(3190), + [anon_sym_map_LBRACK] = ACTIONS(3190), + [anon_sym_chan] = ACTIONS(3190), + [anon_sym_thread] = ACTIONS(3190), + [anon_sym_atomic] = ACTIONS(3190), + [anon_sym_assert] = ACTIONS(3190), + [anon_sym_defer] = ACTIONS(3190), + [anon_sym_goto] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_DOLLARfor] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_POUND] = ACTIONS(3190), + [anon_sym_asm] = ACTIONS(3190), + [anon_sym_AT_LBRACK] = ACTIONS(3190), + [sym___double_quote] = ACTIONS(3190), + [sym___single_quote] = ACTIONS(3190), + [sym___c_double_quote] = ACTIONS(3190), + [sym___c_single_quote] = ACTIONS(3190), + [sym___r_double_quote] = ACTIONS(3190), + [sym___r_single_quote] = ACTIONS(3190), + }, + [1504] = { + [sym_line_comment] = STATE(1504), + [sym_block_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3342), + [anon_sym_LF] = ACTIONS(3342), + [anon_sym_CR] = ACTIONS(3342), + [anon_sym_CR_LF] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym___global] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_pub] = ACTIONS(3342), + [anon_sym_mut] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_go] = ACTIONS(3342), + [anon_sym_spawn] = ACTIONS(3342), + [anon_sym_json_DOTdecode] = ACTIONS(3342), + [anon_sym_LBRACK2] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [sym_none] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_nil] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_DOLLARif] = ACTIONS(3342), + [anon_sym_match] = ACTIONS(3342), + [anon_sym_select] = ACTIONS(3342), + [anon_sym_lock] = ACTIONS(3342), + [anon_sym_rlock] = ACTIONS(3342), + [anon_sym_unsafe] = ACTIONS(3342), + [anon_sym_sql] = ACTIONS(3342), + [sym_int_literal] = ACTIONS(3342), + [sym_float_literal] = ACTIONS(3342), + [sym_rune_literal] = ACTIONS(3342), + [sym_pseudo_compile_time_identifier] = ACTIONS(3342), + [anon_sym_shared] = ACTIONS(3342), + [anon_sym_map_LBRACK] = ACTIONS(3342), + [anon_sym_chan] = ACTIONS(3342), + [anon_sym_thread] = ACTIONS(3342), + [anon_sym_atomic] = ACTIONS(3342), + [anon_sym_assert] = ACTIONS(3342), + [anon_sym_defer] = ACTIONS(3342), + [anon_sym_goto] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_DOLLARfor] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym_AT_LBRACK] = ACTIONS(3342), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3342), + [sym___c_double_quote] = ACTIONS(3342), + [sym___c_single_quote] = ACTIONS(3342), + [sym___r_double_quote] = ACTIONS(3342), + [sym___r_single_quote] = ACTIONS(3342), + }, + [1505] = { + [sym_line_comment] = STATE(1505), + [sym_block_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LF] = ACTIONS(3350), + [anon_sym_CR] = ACTIONS(3350), + [anon_sym_CR_LF] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym___global] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3350), + [anon_sym_union] = ACTIONS(3350), + [anon_sym_pub] = ACTIONS(3350), + [anon_sym_mut] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_go] = ACTIONS(3350), + [anon_sym_spawn] = ACTIONS(3350), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [sym_none] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_nil] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_DOLLARif] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3350), + [anon_sym_select] = ACTIONS(3350), + [anon_sym_lock] = ACTIONS(3350), + [anon_sym_rlock] = ACTIONS(3350), + [anon_sym_unsafe] = ACTIONS(3350), + [anon_sym_sql] = ACTIONS(3350), + [sym_int_literal] = ACTIONS(3350), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3350), + [anon_sym_shared] = ACTIONS(3350), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3350), + [anon_sym_thread] = ACTIONS(3350), + [anon_sym_atomic] = ACTIONS(3350), + [anon_sym_assert] = ACTIONS(3350), + [anon_sym_defer] = ACTIONS(3350), + [anon_sym_goto] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_DOLLARfor] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_asm] = ACTIONS(3350), + [anon_sym_AT_LBRACK] = ACTIONS(3350), + [sym___double_quote] = ACTIONS(3350), + [sym___single_quote] = ACTIONS(3350), + [sym___c_double_quote] = ACTIONS(3350), + [sym___c_single_quote] = ACTIONS(3350), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3350), + }, + [1506] = { + [sym_line_comment] = STATE(1506), + [sym_block_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_LF] = ACTIONS(3354), + [anon_sym_CR] = ACTIONS(3354), + [anon_sym_CR_LF] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym___global] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_pub] = ACTIONS(3354), + [anon_sym_mut] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_go] = ACTIONS(3354), + [anon_sym_spawn] = ACTIONS(3354), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_LBRACK2] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [sym_none] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_nil] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_DOLLARif] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3354), + [anon_sym_select] = ACTIONS(3354), + [anon_sym_lock] = ACTIONS(3354), + [anon_sym_rlock] = ACTIONS(3354), + [anon_sym_unsafe] = ACTIONS(3354), + [anon_sym_sql] = ACTIONS(3354), + [sym_int_literal] = ACTIONS(3354), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3354), + [anon_sym_shared] = ACTIONS(3354), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3354), + [anon_sym_thread] = ACTIONS(3354), + [anon_sym_atomic] = ACTIONS(3354), + [anon_sym_assert] = ACTIONS(3354), + [anon_sym_defer] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_DOLLARfor] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(3354), + [anon_sym_asm] = ACTIONS(3354), + [anon_sym_AT_LBRACK] = ACTIONS(3354), + [sym___double_quote] = ACTIONS(3354), + [sym___single_quote] = ACTIONS(3354), + [sym___c_double_quote] = ACTIONS(3354), + [sym___c_single_quote] = ACTIONS(3354), + [sym___r_double_quote] = ACTIONS(3354), + [sym___r_single_quote] = ACTIONS(3354), + }, + [1507] = { + [sym_line_comment] = STATE(1507), + [sym_block_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_LF] = ACTIONS(3358), + [anon_sym_CR] = ACTIONS(3358), + [anon_sym_CR_LF] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym___global] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_struct] = ACTIONS(3358), + [anon_sym_union] = ACTIONS(3358), + [anon_sym_pub] = ACTIONS(3358), + [anon_sym_mut] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_QMARK] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_go] = ACTIONS(3358), + [anon_sym_spawn] = ACTIONS(3358), + [anon_sym_json_DOTdecode] = ACTIONS(3358), + [anon_sym_LBRACK2] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [sym_none] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_nil] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_DOLLARif] = ACTIONS(3358), + [anon_sym_match] = ACTIONS(3358), + [anon_sym_select] = ACTIONS(3358), + [anon_sym_lock] = ACTIONS(3358), + [anon_sym_rlock] = ACTIONS(3358), + [anon_sym_unsafe] = ACTIONS(3358), + [anon_sym_sql] = ACTIONS(3358), + [sym_int_literal] = ACTIONS(3358), + [sym_float_literal] = ACTIONS(3358), + [sym_rune_literal] = ACTIONS(3358), + [sym_pseudo_compile_time_identifier] = ACTIONS(3358), + [anon_sym_shared] = ACTIONS(3358), + [anon_sym_map_LBRACK] = ACTIONS(3358), + [anon_sym_chan] = ACTIONS(3358), + [anon_sym_thread] = ACTIONS(3358), + [anon_sym_atomic] = ACTIONS(3358), + [anon_sym_assert] = ACTIONS(3358), + [anon_sym_defer] = ACTIONS(3358), + [anon_sym_goto] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_DOLLARfor] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_POUND] = ACTIONS(3358), + [anon_sym_asm] = ACTIONS(3358), + [anon_sym_AT_LBRACK] = ACTIONS(3358), + [sym___double_quote] = ACTIONS(3358), + [sym___single_quote] = ACTIONS(3358), + [sym___c_double_quote] = ACTIONS(3358), + [sym___c_single_quote] = ACTIONS(3358), + [sym___r_double_quote] = ACTIONS(3358), + [sym___r_single_quote] = ACTIONS(3358), + }, + [1508] = { + [sym_line_comment] = STATE(1508), + [sym_block_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym___global] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_union] = ACTIONS(3198), + [anon_sym_pub] = ACTIONS(3198), + [anon_sym_mut] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_go] = ACTIONS(3198), + [anon_sym_spawn] = ACTIONS(3198), + [anon_sym_json_DOTdecode] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [sym_none] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_nil] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_DOLLARif] = ACTIONS(3198), + [anon_sym_match] = ACTIONS(3198), + [anon_sym_select] = ACTIONS(3198), + [anon_sym_lock] = ACTIONS(3198), + [anon_sym_rlock] = ACTIONS(3198), + [anon_sym_unsafe] = ACTIONS(3198), + [anon_sym_sql] = ACTIONS(3198), + [sym_int_literal] = ACTIONS(3198), + [sym_float_literal] = ACTIONS(3198), + [sym_rune_literal] = ACTIONS(3198), + [sym_pseudo_compile_time_identifier] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + [anon_sym_assert] = ACTIONS(3198), + [anon_sym_defer] = ACTIONS(3198), + [anon_sym_goto] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_DOLLARfor] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_POUND] = ACTIONS(3198), + [anon_sym_asm] = ACTIONS(3198), + [anon_sym_AT_LBRACK] = ACTIONS(3198), + [sym___double_quote] = ACTIONS(3198), + [sym___single_quote] = ACTIONS(3198), + [sym___c_double_quote] = ACTIONS(3198), + [sym___c_single_quote] = ACTIONS(3198), + [sym___r_double_quote] = ACTIONS(3198), + [sym___r_single_quote] = ACTIONS(3198), + }, + [1509] = { + [sym_line_comment] = STATE(1509), + [sym_block_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym___global] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_union] = ACTIONS(3202), + [anon_sym_pub] = ACTIONS(3202), + [anon_sym_mut] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_go] = ACTIONS(3202), + [anon_sym_spawn] = ACTIONS(3202), + [anon_sym_json_DOTdecode] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [sym_none] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_nil] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_DOLLARif] = ACTIONS(3202), + [anon_sym_match] = ACTIONS(3202), + [anon_sym_select] = ACTIONS(3202), + [anon_sym_lock] = ACTIONS(3202), + [anon_sym_rlock] = ACTIONS(3202), + [anon_sym_unsafe] = ACTIONS(3202), + [anon_sym_sql] = ACTIONS(3202), + [sym_int_literal] = ACTIONS(3202), + [sym_float_literal] = ACTIONS(3202), + [sym_rune_literal] = ACTIONS(3202), + [sym_pseudo_compile_time_identifier] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + [anon_sym_assert] = ACTIONS(3202), + [anon_sym_defer] = ACTIONS(3202), + [anon_sym_goto] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_DOLLARfor] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_POUND] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(3202), + [anon_sym_AT_LBRACK] = ACTIONS(3202), + [sym___double_quote] = ACTIONS(3202), + [sym___single_quote] = ACTIONS(3202), + [sym___c_double_quote] = ACTIONS(3202), + [sym___c_single_quote] = ACTIONS(3202), + [sym___r_double_quote] = ACTIONS(3202), + [sym___r_single_quote] = ACTIONS(3202), + }, + [1510] = { + [sym_line_comment] = STATE(1510), + [sym_block_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LF] = ACTIONS(3214), + [anon_sym_CR] = ACTIONS(3214), + [anon_sym_CR_LF] = ACTIONS(3214), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym___global] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_PIPE] = ACTIONS(3214), + [anon_sym_fn] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_STAR] = ACTIONS(3214), + [anon_sym_struct] = ACTIONS(3214), + [anon_sym_union] = ACTIONS(3214), + [anon_sym_pub] = ACTIONS(3214), + [anon_sym_mut] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_QMARK] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_go] = ACTIONS(3214), + [anon_sym_spawn] = ACTIONS(3214), + [anon_sym_json_DOTdecode] = ACTIONS(3214), + [anon_sym_LBRACK2] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_CARET] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3214), + [anon_sym_LT_DASH] = ACTIONS(3214), + [sym_none] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_nil] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_DOLLARif] = ACTIONS(3214), + [anon_sym_match] = ACTIONS(3214), + [anon_sym_select] = ACTIONS(3214), + [anon_sym_lock] = ACTIONS(3214), + [anon_sym_rlock] = ACTIONS(3214), + [anon_sym_unsafe] = ACTIONS(3214), + [anon_sym_sql] = ACTIONS(3214), + [sym_int_literal] = ACTIONS(3214), + [sym_float_literal] = ACTIONS(3214), + [sym_rune_literal] = ACTIONS(3214), + [sym_pseudo_compile_time_identifier] = ACTIONS(3214), + [anon_sym_shared] = ACTIONS(3214), + [anon_sym_map_LBRACK] = ACTIONS(3214), + [anon_sym_chan] = ACTIONS(3214), + [anon_sym_thread] = ACTIONS(3214), + [anon_sym_atomic] = ACTIONS(3214), + [anon_sym_assert] = ACTIONS(3214), + [anon_sym_defer] = ACTIONS(3214), + [anon_sym_goto] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_DOLLARfor] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_POUND] = ACTIONS(3214), + [anon_sym_asm] = ACTIONS(3214), + [anon_sym_AT_LBRACK] = ACTIONS(3214), + [sym___double_quote] = ACTIONS(3214), + [sym___single_quote] = ACTIONS(3214), + [sym___c_double_quote] = ACTIONS(3214), + [sym___c_single_quote] = ACTIONS(3214), + [sym___r_double_quote] = ACTIONS(3214), + [sym___r_single_quote] = ACTIONS(3214), + }, + [1511] = { + [sym_line_comment] = STATE(1511), + [sym_block_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym___global] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_pub] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [anon_sym_assert] = ACTIONS(3366), + [anon_sym_defer] = ACTIONS(3366), + [anon_sym_goto] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_DOLLARfor] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_asm] = ACTIONS(3366), + [anon_sym_AT_LBRACK] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), + }, + [1512] = { + [sym_line_comment] = STATE(1512), + [sym_block_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), + }, + [1513] = { + [sym_line_comment] = STATE(1513), + [sym_block_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LF] = ACTIONS(3338), + [anon_sym_CR] = ACTIONS(3338), + [anon_sym_CR_LF] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym___global] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_pub] = ACTIONS(3338), + [anon_sym_mut] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_go] = ACTIONS(3338), + [anon_sym_spawn] = ACTIONS(3338), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_LBRACK2] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [sym_none] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_nil] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_DOLLARif] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3338), + [anon_sym_select] = ACTIONS(3338), + [anon_sym_lock] = ACTIONS(3338), + [anon_sym_rlock] = ACTIONS(3338), + [anon_sym_unsafe] = ACTIONS(3338), + [anon_sym_sql] = ACTIONS(3338), + [sym_int_literal] = ACTIONS(3338), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3338), + [anon_sym_shared] = ACTIONS(3338), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3338), + [anon_sym_thread] = ACTIONS(3338), + [anon_sym_atomic] = ACTIONS(3338), + [anon_sym_assert] = ACTIONS(3338), + [anon_sym_defer] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_DOLLARfor] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_POUND] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym_AT_LBRACK] = ACTIONS(3338), + [sym___double_quote] = ACTIONS(3338), + [sym___single_quote] = ACTIONS(3338), + [sym___c_double_quote] = ACTIONS(3338), + [sym___c_single_quote] = ACTIONS(3338), + [sym___r_double_quote] = ACTIONS(3338), + [sym___r_single_quote] = ACTIONS(3338), + }, + [1514] = { + [sym_line_comment] = STATE(1514), + [sym_block_comment] = STATE(1514), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym___global] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_pub] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [anon_sym_assert] = ACTIONS(3374), + [anon_sym_defer] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_DOLLARfor] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_asm] = ACTIONS(3374), + [anon_sym_AT_LBRACK] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), + }, + [1515] = { + [sym_line_comment] = STATE(1515), + [sym_block_comment] = STATE(1515), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), + }, [1516] = { [sym_line_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3185), - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [sym_block_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3120), + [anon_sym_LF] = ACTIONS(3120), + [anon_sym_CR] = ACTIONS(3120), + [anon_sym_CR_LF] = ACTIONS(3120), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3120), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_const] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym___global] = ACTIONS(3120), + [anon_sym_type] = ACTIONS(3120), + [anon_sym_PIPE] = ACTIONS(3120), + [anon_sym_fn] = ACTIONS(3120), + [anon_sym_PLUS] = ACTIONS(3120), + [anon_sym_DASH] = ACTIONS(3120), + [anon_sym_STAR] = ACTIONS(3120), + [anon_sym_struct] = ACTIONS(3120), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_pub] = ACTIONS(3120), + [anon_sym_mut] = ACTIONS(3120), + [anon_sym_enum] = ACTIONS(3120), + [anon_sym_interface] = ACTIONS(3120), + [anon_sym_QMARK] = ACTIONS(3120), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_go] = ACTIONS(3120), + [anon_sym_spawn] = ACTIONS(3120), + [anon_sym_json_DOTdecode] = ACTIONS(3120), + [anon_sym_LBRACK2] = ACTIONS(3120), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_CARET] = ACTIONS(3120), + [anon_sym_AMP] = ACTIONS(3120), + [anon_sym_LT_DASH] = ACTIONS(3120), + [sym_none] = ACTIONS(3120), + [sym_true] = ACTIONS(3120), + [sym_false] = ACTIONS(3120), + [sym_nil] = ACTIONS(3120), + [anon_sym_if] = ACTIONS(3120), + [anon_sym_DOLLARif] = ACTIONS(3120), + [anon_sym_match] = ACTIONS(3120), + [anon_sym_select] = ACTIONS(3120), + [anon_sym_lock] = ACTIONS(3120), + [anon_sym_rlock] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(3120), + [anon_sym_sql] = ACTIONS(3120), + [sym_int_literal] = ACTIONS(3120), + [sym_float_literal] = ACTIONS(3120), + [sym_rune_literal] = ACTIONS(3120), + [sym_pseudo_compile_time_identifier] = ACTIONS(3120), + [anon_sym_shared] = ACTIONS(3120), + [anon_sym_map_LBRACK] = ACTIONS(3120), + [anon_sym_chan] = ACTIONS(3120), + [anon_sym_thread] = ACTIONS(3120), + [anon_sym_atomic] = ACTIONS(3120), + [anon_sym_assert] = ACTIONS(3120), + [anon_sym_defer] = ACTIONS(3120), + [anon_sym_goto] = ACTIONS(3120), + [anon_sym_break] = ACTIONS(3120), + [anon_sym_continue] = ACTIONS(3120), + [anon_sym_return] = ACTIONS(3120), + [anon_sym_DOLLARfor] = ACTIONS(3120), + [anon_sym_for] = ACTIONS(3120), + [anon_sym_POUND] = ACTIONS(3120), + [anon_sym_asm] = ACTIONS(3120), + [anon_sym_AT_LBRACK] = ACTIONS(3120), + [sym___double_quote] = ACTIONS(3120), + [sym___single_quote] = ACTIONS(3120), + [sym___c_double_quote] = ACTIONS(3120), + [sym___c_single_quote] = ACTIONS(3120), + [sym___r_double_quote] = ACTIONS(3120), + [sym___r_single_quote] = ACTIONS(3120), }, [1517] = { [sym_line_comment] = STATE(1517), - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [sym_block_comment] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3418), + [anon_sym_LF] = ACTIONS(3418), + [anon_sym_CR] = ACTIONS(3418), + [anon_sym_CR_LF] = ACTIONS(3418), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym___global] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3418), + [anon_sym_fn] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(3418), + [anon_sym_union] = ACTIONS(3418), + [anon_sym_pub] = ACTIONS(3418), + [anon_sym_mut] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_QMARK] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3418), + [anon_sym_go] = ACTIONS(3418), + [anon_sym_spawn] = ACTIONS(3418), + [anon_sym_json_DOTdecode] = ACTIONS(3418), + [anon_sym_LBRACK2] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3418), + [anon_sym_LT_DASH] = ACTIONS(3418), + [sym_none] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_nil] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_DOLLARif] = ACTIONS(3418), + [anon_sym_match] = ACTIONS(3418), + [anon_sym_select] = ACTIONS(3418), + [anon_sym_lock] = ACTIONS(3418), + [anon_sym_rlock] = ACTIONS(3418), + [anon_sym_unsafe] = ACTIONS(3418), + [anon_sym_sql] = ACTIONS(3418), + [sym_int_literal] = ACTIONS(3418), + [sym_float_literal] = ACTIONS(3418), + [sym_rune_literal] = ACTIONS(3418), + [sym_pseudo_compile_time_identifier] = ACTIONS(3418), + [anon_sym_shared] = ACTIONS(3418), + [anon_sym_map_LBRACK] = ACTIONS(3418), + [anon_sym_chan] = ACTIONS(3418), + [anon_sym_thread] = ACTIONS(3418), + [anon_sym_atomic] = ACTIONS(3418), + [anon_sym_assert] = ACTIONS(3418), + [anon_sym_defer] = ACTIONS(3418), + [anon_sym_goto] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_DOLLARfor] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_POUND] = ACTIONS(3418), + [anon_sym_asm] = ACTIONS(3418), + [anon_sym_AT_LBRACK] = ACTIONS(3418), + [sym___double_quote] = ACTIONS(3418), + [sym___single_quote] = ACTIONS(3418), + [sym___c_double_quote] = ACTIONS(3418), + [sym___c_single_quote] = ACTIONS(3418), + [sym___r_double_quote] = ACTIONS(3418), + [sym___r_single_quote] = ACTIONS(3418), }, [1518] = { [sym_line_comment] = STATE(1518), + [sym_block_comment] = STATE(1518), [ts_builtin_sym_end] = ACTIONS(4188), [sym_identifier] = ACTIONS(4190), [anon_sym_LF] = ACTIONS(4190), [anon_sym_CR] = ACTIONS(4190), [anon_sym_CR_LF] = ACTIONS(4190), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4190), [anon_sym_LBRACE] = ACTIONS(4190), [anon_sym_const] = ACTIONS(4190), @@ -190704,13 +185463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1519] = { [sym_line_comment] = STATE(1519), + [sym_block_comment] = STATE(1519), [ts_builtin_sym_end] = ACTIONS(4192), [sym_identifier] = ACTIONS(4194), [anon_sym_LF] = ACTIONS(4194), [anon_sym_CR] = ACTIONS(4194), [anon_sym_CR_LF] = ACTIONS(4194), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4194), [anon_sym_LBRACE] = ACTIONS(4194), [anon_sym_const] = ACTIONS(4194), @@ -190778,161 +185538,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1520] = { [sym_line_comment] = STATE(1520), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(4196), + [sym_identifier] = ACTIONS(4198), + [anon_sym_LF] = ACTIONS(4200), + [anon_sym_CR] = ACTIONS(4200), + [anon_sym_CR_LF] = ACTIONS(4200), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4196), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(563), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4198), + [anon_sym_LBRACE] = ACTIONS(4198), + [anon_sym_const] = ACTIONS(4198), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym___global] = ACTIONS(4198), + [anon_sym_type] = ACTIONS(4198), + [anon_sym_fn] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4198), + [anon_sym_DASH] = ACTIONS(4198), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_struct] = ACTIONS(4198), + [anon_sym_union] = ACTIONS(4198), + [anon_sym_pub] = ACTIONS(4198), + [anon_sym_mut] = ACTIONS(4198), + [anon_sym_enum] = ACTIONS(4198), + [anon_sym_interface] = ACTIONS(4198), + [anon_sym_QMARK] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4198), + [anon_sym_go] = ACTIONS(4198), + [anon_sym_spawn] = ACTIONS(4198), + [anon_sym_json_DOTdecode] = ACTIONS(4198), + [anon_sym_LBRACK2] = ACTIONS(4198), + [anon_sym_TILDE] = ACTIONS(4198), + [anon_sym_CARET] = ACTIONS(4198), + [anon_sym_AMP] = ACTIONS(4198), + [anon_sym_LT_DASH] = ACTIONS(4198), + [sym_none] = ACTIONS(4198), + [sym_true] = ACTIONS(4198), + [sym_false] = ACTIONS(4198), + [sym_nil] = ACTIONS(4198), + [anon_sym_if] = ACTIONS(4198), + [anon_sym_DOLLARif] = ACTIONS(4198), + [anon_sym_match] = ACTIONS(4198), + [anon_sym_select] = ACTIONS(4198), + [anon_sym_lock] = ACTIONS(4198), + [anon_sym_rlock] = ACTIONS(4198), + [anon_sym_unsafe] = ACTIONS(4198), + [anon_sym_sql] = ACTIONS(4198), + [sym_int_literal] = ACTIONS(4198), + [sym_float_literal] = ACTIONS(4198), + [sym_rune_literal] = ACTIONS(4198), + [sym_pseudo_compile_time_identifier] = ACTIONS(4198), + [anon_sym_shared] = ACTIONS(4198), + [anon_sym_map_LBRACK] = ACTIONS(4198), + [anon_sym_chan] = ACTIONS(4198), + [anon_sym_thread] = ACTIONS(4198), + [anon_sym_atomic] = ACTIONS(4198), + [anon_sym_assert] = ACTIONS(4198), + [anon_sym_defer] = ACTIONS(4198), + [anon_sym_goto] = ACTIONS(4198), + [anon_sym_break] = ACTIONS(4198), + [anon_sym_continue] = ACTIONS(4198), + [anon_sym_return] = ACTIONS(4198), + [anon_sym_DOLLARfor] = ACTIONS(4198), + [anon_sym_for] = ACTIONS(4198), + [anon_sym_POUND] = ACTIONS(4198), + [anon_sym_asm] = ACTIONS(4198), + [anon_sym_AT_LBRACK] = ACTIONS(4198), + [sym___double_quote] = ACTIONS(4198), + [sym___single_quote] = ACTIONS(4198), + [sym___c_double_quote] = ACTIONS(4198), + [sym___c_single_quote] = ACTIONS(4198), + [sym___r_double_quote] = ACTIONS(4198), + [sym___r_single_quote] = ACTIONS(4198), }, [1521] = { [sym_line_comment] = STATE(1521), - [ts_builtin_sym_end] = ACTIONS(4198), - [sym_identifier] = ACTIONS(4200), - [anon_sym_LF] = ACTIONS(4200), - [anon_sym_CR] = ACTIONS(4200), - [anon_sym_CR_LF] = ACTIONS(4200), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_LPAREN] = ACTIONS(4200), - [anon_sym___global] = ACTIONS(4200), - [anon_sym_type] = ACTIONS(4200), - [anon_sym_fn] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_pub] = ACTIONS(4200), - [anon_sym_mut] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_interface] = ACTIONS(4200), - [anon_sym_QMARK] = ACTIONS(4200), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_go] = ACTIONS(4200), - [anon_sym_spawn] = ACTIONS(4200), - [anon_sym_json_DOTdecode] = ACTIONS(4200), - [anon_sym_LBRACK2] = ACTIONS(4200), - [anon_sym_TILDE] = ACTIONS(4200), - [anon_sym_CARET] = ACTIONS(4200), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_LT_DASH] = ACTIONS(4200), - [sym_none] = ACTIONS(4200), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [sym_nil] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_DOLLARif] = ACTIONS(4200), - [anon_sym_match] = ACTIONS(4200), - [anon_sym_select] = ACTIONS(4200), - [anon_sym_lock] = ACTIONS(4200), - [anon_sym_rlock] = ACTIONS(4200), - [anon_sym_unsafe] = ACTIONS(4200), - [anon_sym_sql] = ACTIONS(4200), - [sym_int_literal] = ACTIONS(4200), - [sym_float_literal] = ACTIONS(4200), - [sym_rune_literal] = ACTIONS(4200), - [sym_pseudo_compile_time_identifier] = ACTIONS(4200), - [anon_sym_shared] = ACTIONS(4200), - [anon_sym_map_LBRACK] = ACTIONS(4200), - [anon_sym_chan] = ACTIONS(4200), - [anon_sym_thread] = ACTIONS(4200), - [anon_sym_atomic] = ACTIONS(4200), - [anon_sym_assert] = ACTIONS(4200), - [anon_sym_defer] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_DOLLARfor] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_POUND] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym_AT_LBRACK] = ACTIONS(4200), - [sym___double_quote] = ACTIONS(4200), - [sym___single_quote] = ACTIONS(4200), - [sym___c_double_quote] = ACTIONS(4200), - [sym___c_single_quote] = ACTIONS(4200), - [sym___r_double_quote] = ACTIONS(4200), - [sym___r_single_quote] = ACTIONS(4200), + [sym_block_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym_identifier] = ACTIONS(1713), + [anon_sym_LF] = ACTIONS(1713), + [anon_sym_CR] = ACTIONS(1713), + [anon_sym_CR_LF] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym___global] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1713), + [anon_sym_fn] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_struct] = ACTIONS(1713), + [anon_sym_union] = ACTIONS(1713), + [anon_sym_pub] = ACTIONS(1713), + [anon_sym_mut] = ACTIONS(1713), + [anon_sym_enum] = ACTIONS(1713), + [anon_sym_interface] = ACTIONS(1713), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_go] = ACTIONS(1713), + [anon_sym_spawn] = ACTIONS(1713), + [anon_sym_json_DOTdecode] = ACTIONS(1713), + [anon_sym_LBRACK2] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_LT_DASH] = ACTIONS(1713), + [sym_none] = ACTIONS(1713), + [sym_true] = ACTIONS(1713), + [sym_false] = ACTIONS(1713), + [sym_nil] = ACTIONS(1713), + [anon_sym_if] = ACTIONS(1713), + [anon_sym_DOLLARif] = ACTIONS(1713), + [anon_sym_match] = ACTIONS(1713), + [anon_sym_select] = ACTIONS(1713), + [anon_sym_lock] = ACTIONS(1713), + [anon_sym_rlock] = ACTIONS(1713), + [anon_sym_unsafe] = ACTIONS(1713), + [anon_sym_sql] = ACTIONS(1713), + [sym_int_literal] = ACTIONS(1713), + [sym_float_literal] = ACTIONS(1713), + [sym_rune_literal] = ACTIONS(1713), + [sym_pseudo_compile_time_identifier] = ACTIONS(1713), + [anon_sym_shared] = ACTIONS(1713), + [anon_sym_map_LBRACK] = ACTIONS(1713), + [anon_sym_chan] = ACTIONS(1713), + [anon_sym_thread] = ACTIONS(1713), + [anon_sym_atomic] = ACTIONS(1713), + [anon_sym_assert] = ACTIONS(1713), + [anon_sym_defer] = ACTIONS(1713), + [anon_sym_goto] = ACTIONS(1713), + [anon_sym_break] = ACTIONS(1713), + [anon_sym_continue] = ACTIONS(1713), + [anon_sym_return] = ACTIONS(1713), + [anon_sym_DOLLARfor] = ACTIONS(1713), + [anon_sym_for] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(1713), + [anon_sym_asm] = ACTIONS(1713), + [anon_sym_AT_LBRACK] = ACTIONS(1713), + [sym___double_quote] = ACTIONS(1713), + [sym___single_quote] = ACTIONS(1713), + [sym___c_double_quote] = ACTIONS(1713), + [sym___c_single_quote] = ACTIONS(1713), + [sym___r_double_quote] = ACTIONS(1713), + [sym___r_single_quote] = ACTIONS(1713), }, [1522] = { [sym_line_comment] = STATE(1522), + [sym_block_comment] = STATE(1522), [ts_builtin_sym_end] = ACTIONS(4202), [sym_identifier] = ACTIONS(4204), [anon_sym_LF] = ACTIONS(4204), [anon_sym_CR] = ACTIONS(4204), [anon_sym_CR_LF] = ACTIONS(4204), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4204), [anon_sym_LBRACE] = ACTIONS(4204), [anon_sym_const] = ACTIONS(4204), @@ -191000,39 +185763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1523] = { [sym_line_comment] = STATE(1523), + [sym_block_comment] = STATE(1523), + [sym_import_declaration] = STATE(1623), + [aux_sym_import_list_repeat1] = STATE(1546), [ts_builtin_sym_end] = ACTIONS(4206), [sym_identifier] = ACTIONS(4208), - [anon_sym_LF] = ACTIONS(4208), - [anon_sym_CR] = ACTIONS(4208), - [anon_sym_CR_LF] = ACTIONS(4208), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(17), [anon_sym_DOT] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4206), [anon_sym_const] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), + [anon_sym_LPAREN] = ACTIONS(4206), [anon_sym___global] = ACTIONS(4208), [anon_sym_type] = ACTIONS(4208), [anon_sym_fn] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4208), + [anon_sym_PLUS] = ACTIONS(4206), + [anon_sym_DASH] = ACTIONS(4206), + [anon_sym_STAR] = ACTIONS(4206), [anon_sym_struct] = ACTIONS(4208), [anon_sym_union] = ACTIONS(4208), [anon_sym_pub] = ACTIONS(4208), [anon_sym_mut] = ACTIONS(4208), [anon_sym_enum] = ACTIONS(4208), [anon_sym_interface] = ACTIONS(4208), - [anon_sym_QMARK] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4208), + [anon_sym_QMARK] = ACTIONS(4206), + [anon_sym_BANG] = ACTIONS(4206), [anon_sym_go] = ACTIONS(4208), [anon_sym_spawn] = ACTIONS(4208), - [anon_sym_json_DOTdecode] = ACTIONS(4208), - [anon_sym_LBRACK2] = ACTIONS(4208), - [anon_sym_TILDE] = ACTIONS(4208), - [anon_sym_CARET] = ACTIONS(4208), - [anon_sym_AMP] = ACTIONS(4208), - [anon_sym_LT_DASH] = ACTIONS(4208), + [anon_sym_json_DOTdecode] = ACTIONS(4206), + [anon_sym_LBRACK2] = ACTIONS(4206), + [anon_sym_TILDE] = ACTIONS(4206), + [anon_sym_CARET] = ACTIONS(4206), + [anon_sym_AMP] = ACTIONS(4206), + [anon_sym_LT_DASH] = ACTIONS(4206), [sym_none] = ACTIONS(4208), [sym_true] = ACTIONS(4208), [sym_false] = ACTIONS(4208), @@ -191046,11 +185810,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4208), [anon_sym_sql] = ACTIONS(4208), [sym_int_literal] = ACTIONS(4208), - [sym_float_literal] = ACTIONS(4208), - [sym_rune_literal] = ACTIONS(4208), + [sym_float_literal] = ACTIONS(4206), + [sym_rune_literal] = ACTIONS(4206), [sym_pseudo_compile_time_identifier] = ACTIONS(4208), [anon_sym_shared] = ACTIONS(4208), - [anon_sym_map_LBRACK] = ACTIONS(4208), + [anon_sym_map_LBRACK] = ACTIONS(4206), [anon_sym_chan] = ACTIONS(4208), [anon_sym_thread] = ACTIONS(4208), [anon_sym_atomic] = ACTIONS(4208), @@ -191062,25 +185826,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4208), [anon_sym_DOLLARfor] = ACTIONS(4208), [anon_sym_for] = ACTIONS(4208), - [anon_sym_POUND] = ACTIONS(4208), + [anon_sym_POUND] = ACTIONS(4206), [anon_sym_asm] = ACTIONS(4208), - [anon_sym_AT_LBRACK] = ACTIONS(4208), - [sym___double_quote] = ACTIONS(4208), - [sym___single_quote] = ACTIONS(4208), - [sym___c_double_quote] = ACTIONS(4208), - [sym___c_single_quote] = ACTIONS(4208), - [sym___r_double_quote] = ACTIONS(4208), - [sym___r_single_quote] = ACTIONS(4208), + [anon_sym_AT_LBRACK] = ACTIONS(4206), + [sym___double_quote] = ACTIONS(4206), + [sym___single_quote] = ACTIONS(4206), + [sym___c_double_quote] = ACTIONS(4206), + [sym___c_single_quote] = ACTIONS(4206), + [sym___r_double_quote] = ACTIONS(4206), + [sym___r_single_quote] = ACTIONS(4206), }, [1524] = { [sym_line_comment] = STATE(1524), + [sym_block_comment] = STATE(1524), [ts_builtin_sym_end] = ACTIONS(4210), [sym_identifier] = ACTIONS(4212), [anon_sym_LF] = ACTIONS(4212), [anon_sym_CR] = ACTIONS(4212), [anon_sym_CR_LF] = ACTIONS(4212), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4212), [anon_sym_LBRACE] = ACTIONS(4212), [anon_sym_const] = ACTIONS(4212), @@ -191148,13 +185913,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1525] = { [sym_line_comment] = STATE(1525), + [sym_block_comment] = STATE(1525), [ts_builtin_sym_end] = ACTIONS(4214), [sym_identifier] = ACTIONS(4216), [anon_sym_LF] = ACTIONS(4216), [anon_sym_CR] = ACTIONS(4216), [anon_sym_CR_LF] = ACTIONS(4216), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4216), [anon_sym_LBRACE] = ACTIONS(4216), [anon_sym_const] = ACTIONS(4216), @@ -191222,13 +185988,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1526] = { [sym_line_comment] = STATE(1526), + [sym_block_comment] = STATE(1526), [ts_builtin_sym_end] = ACTIONS(4218), [sym_identifier] = ACTIONS(4220), [anon_sym_LF] = ACTIONS(4220), [anon_sym_CR] = ACTIONS(4220), [anon_sym_CR_LF] = ACTIONS(4220), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4220), [anon_sym_LBRACE] = ACTIONS(4220), [anon_sym_const] = ACTIONS(4220), @@ -191296,13 +186063,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1527] = { [sym_line_comment] = STATE(1527), + [sym_block_comment] = STATE(1527), [ts_builtin_sym_end] = ACTIONS(4222), [sym_identifier] = ACTIONS(4224), [anon_sym_LF] = ACTIONS(4224), [anon_sym_CR] = ACTIONS(4224), [anon_sym_CR_LF] = ACTIONS(4224), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4224), [anon_sym_LBRACE] = ACTIONS(4224), [anon_sym_const] = ACTIONS(4224), @@ -191370,13 +186138,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1528] = { [sym_line_comment] = STATE(1528), + [sym_block_comment] = STATE(1528), [ts_builtin_sym_end] = ACTIONS(4226), [sym_identifier] = ACTIONS(4228), [anon_sym_LF] = ACTIONS(4228), [anon_sym_CR] = ACTIONS(4228), [anon_sym_CR_LF] = ACTIONS(4228), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4228), [anon_sym_LBRACE] = ACTIONS(4228), [anon_sym_const] = ACTIONS(4228), @@ -191444,13 +186213,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1529] = { [sym_line_comment] = STATE(1529), + [sym_block_comment] = STATE(1529), [ts_builtin_sym_end] = ACTIONS(4230), [sym_identifier] = ACTIONS(4232), [anon_sym_LF] = ACTIONS(4232), [anon_sym_CR] = ACTIONS(4232), [anon_sym_CR_LF] = ACTIONS(4232), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4232), [anon_sym_LBRACE] = ACTIONS(4232), [anon_sym_const] = ACTIONS(4232), @@ -191518,13 +186288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1530] = { [sym_line_comment] = STATE(1530), + [sym_block_comment] = STATE(1530), [ts_builtin_sym_end] = ACTIONS(4234), [sym_identifier] = ACTIONS(4236), [anon_sym_LF] = ACTIONS(4236), [anon_sym_CR] = ACTIONS(4236), [anon_sym_CR_LF] = ACTIONS(4236), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4236), [anon_sym_LBRACE] = ACTIONS(4236), [anon_sym_const] = ACTIONS(4236), @@ -191592,13 +186363,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1531] = { [sym_line_comment] = STATE(1531), + [sym_block_comment] = STATE(1531), [ts_builtin_sym_end] = ACTIONS(4238), [sym_identifier] = ACTIONS(4240), [anon_sym_LF] = ACTIONS(4240), [anon_sym_CR] = ACTIONS(4240), [anon_sym_CR_LF] = ACTIONS(4240), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4240), [anon_sym_LBRACE] = ACTIONS(4240), [anon_sym_const] = ACTIONS(4240), @@ -191666,13 +186438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1532] = { [sym_line_comment] = STATE(1532), + [sym_block_comment] = STATE(1532), [ts_builtin_sym_end] = ACTIONS(4242), [sym_identifier] = ACTIONS(4244), [anon_sym_LF] = ACTIONS(4244), [anon_sym_CR] = ACTIONS(4244), [anon_sym_CR_LF] = ACTIONS(4244), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4244), [anon_sym_LBRACE] = ACTIONS(4244), [anon_sym_const] = ACTIONS(4244), @@ -191740,13 +186513,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1533] = { [sym_line_comment] = STATE(1533), + [sym_block_comment] = STATE(1533), [ts_builtin_sym_end] = ACTIONS(4246), [sym_identifier] = ACTIONS(4248), [anon_sym_LF] = ACTIONS(4248), [anon_sym_CR] = ACTIONS(4248), [anon_sym_CR_LF] = ACTIONS(4248), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4248), [anon_sym_LBRACE] = ACTIONS(4248), [anon_sym_const] = ACTIONS(4248), @@ -191814,13 +186588,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1534] = { [sym_line_comment] = STATE(1534), + [sym_block_comment] = STATE(1534), [ts_builtin_sym_end] = ACTIONS(4250), [sym_identifier] = ACTIONS(4252), [anon_sym_LF] = ACTIONS(4252), [anon_sym_CR] = ACTIONS(4252), [anon_sym_CR_LF] = ACTIONS(4252), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4252), [anon_sym_LBRACE] = ACTIONS(4252), [anon_sym_const] = ACTIONS(4252), @@ -191888,13 +186663,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1535] = { [sym_line_comment] = STATE(1535), + [sym_block_comment] = STATE(1535), [ts_builtin_sym_end] = ACTIONS(4254), [sym_identifier] = ACTIONS(4256), [anon_sym_LF] = ACTIONS(4256), [anon_sym_CR] = ACTIONS(4256), [anon_sym_CR_LF] = ACTIONS(4256), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4256), [anon_sym_LBRACE] = ACTIONS(4256), [anon_sym_const] = ACTIONS(4256), @@ -191962,13 +186738,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1536] = { [sym_line_comment] = STATE(1536), + [sym_block_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LF] = ACTIONS(2669), + [anon_sym_CR] = ACTIONS(2669), + [anon_sym_CR_LF] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym___global] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_mut] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_interface] = ACTIONS(2669), + [anon_sym_QMARK] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_go] = ACTIONS(2669), + [anon_sym_spawn] = ACTIONS(2669), + [anon_sym_json_DOTdecode] = ACTIONS(2669), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_LT_DASH] = ACTIONS(2669), + [sym_none] = ACTIONS(2669), + [sym_true] = ACTIONS(2669), + [sym_false] = ACTIONS(2669), + [sym_nil] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_DOLLARif] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_select] = ACTIONS(2669), + [anon_sym_lock] = ACTIONS(2669), + [anon_sym_rlock] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_sql] = ACTIONS(2669), + [sym_int_literal] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + [sym_rune_literal] = ACTIONS(2669), + [sym_pseudo_compile_time_identifier] = ACTIONS(2669), + [anon_sym_shared] = ACTIONS(2669), + [anon_sym_map_LBRACK] = ACTIONS(2669), + [anon_sym_chan] = ACTIONS(2669), + [anon_sym_thread] = ACTIONS(2669), + [anon_sym_atomic] = ACTIONS(2669), + [anon_sym_assert] = ACTIONS(2669), + [anon_sym_defer] = ACTIONS(2669), + [anon_sym_goto] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_DOLLARfor] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_asm] = ACTIONS(2669), + [anon_sym_AT_LBRACK] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(2669), + [sym___single_quote] = ACTIONS(2669), + [sym___c_double_quote] = ACTIONS(2669), + [sym___c_single_quote] = ACTIONS(2669), + [sym___r_double_quote] = ACTIONS(2669), + [sym___r_single_quote] = ACTIONS(2669), + }, + [1537] = { + [sym_line_comment] = STATE(1537), + [sym_block_comment] = STATE(1537), [ts_builtin_sym_end] = ACTIONS(4258), [sym_identifier] = ACTIONS(4260), [anon_sym_LF] = ACTIONS(4260), [anon_sym_CR] = ACTIONS(4260), [anon_sym_CR_LF] = ACTIONS(4260), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_LBRACE] = ACTIONS(4260), [anon_sym_const] = ACTIONS(4260), @@ -192034,15 +186886,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4260), [sym___r_single_quote] = ACTIONS(4260), }, - [1537] = { - [sym_line_comment] = STATE(1537), + [1538] = { + [sym_line_comment] = STATE(1538), + [sym_block_comment] = STATE(1538), [ts_builtin_sym_end] = ACTIONS(4262), [sym_identifier] = ACTIONS(4264), [anon_sym_LF] = ACTIONS(4264), [anon_sym_CR] = ACTIONS(4264), [anon_sym_CR_LF] = ACTIONS(4264), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4264), [anon_sym_LBRACE] = ACTIONS(4264), [anon_sym_const] = ACTIONS(4264), @@ -192108,146 +186961,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4264), [sym___r_single_quote] = ACTIONS(4264), }, - [1538] = { - [sym_line_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(4266), - [sym_identifier] = ACTIONS(4268), - [anon_sym_LF] = ACTIONS(4268), - [anon_sym_CR] = ACTIONS(4268), - [anon_sym_CR_LF] = ACTIONS(4268), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_const] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym___global] = ACTIONS(4268), - [anon_sym_type] = ACTIONS(4268), - [anon_sym_fn] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4268), - [anon_sym_union] = ACTIONS(4268), - [anon_sym_pub] = ACTIONS(4268), - [anon_sym_mut] = ACTIONS(4268), - [anon_sym_enum] = ACTIONS(4268), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_go] = ACTIONS(4268), - [anon_sym_spawn] = ACTIONS(4268), - [anon_sym_json_DOTdecode] = ACTIONS(4268), - [anon_sym_LBRACK2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_CARET] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4268), - [anon_sym_LT_DASH] = ACTIONS(4268), - [sym_none] = ACTIONS(4268), - [sym_true] = ACTIONS(4268), - [sym_false] = ACTIONS(4268), - [sym_nil] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_DOLLARif] = ACTIONS(4268), - [anon_sym_match] = ACTIONS(4268), - [anon_sym_select] = ACTIONS(4268), - [anon_sym_lock] = ACTIONS(4268), - [anon_sym_rlock] = ACTIONS(4268), - [anon_sym_unsafe] = ACTIONS(4268), - [anon_sym_sql] = ACTIONS(4268), - [sym_int_literal] = ACTIONS(4268), - [sym_float_literal] = ACTIONS(4268), - [sym_rune_literal] = ACTIONS(4268), - [sym_pseudo_compile_time_identifier] = ACTIONS(4268), - [anon_sym_shared] = ACTIONS(4268), - [anon_sym_map_LBRACK] = ACTIONS(4268), - [anon_sym_chan] = ACTIONS(4268), - [anon_sym_thread] = ACTIONS(4268), - [anon_sym_atomic] = ACTIONS(4268), - [anon_sym_assert] = ACTIONS(4268), - [anon_sym_defer] = ACTIONS(4268), - [anon_sym_goto] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_DOLLARfor] = ACTIONS(4268), - [anon_sym_for] = ACTIONS(4268), - [anon_sym_POUND] = ACTIONS(4268), - [anon_sym_asm] = ACTIONS(4268), - [anon_sym_AT_LBRACK] = ACTIONS(4268), - [sym___double_quote] = ACTIONS(4268), - [sym___single_quote] = ACTIONS(4268), - [sym___c_double_quote] = ACTIONS(4268), - [sym___c_single_quote] = ACTIONS(4268), - [sym___r_double_quote] = ACTIONS(4268), - [sym___r_single_quote] = ACTIONS(4268), - }, [1539] = { [sym_line_comment] = STATE(1539), - [sym_import_declaration] = STATE(1621), - [aux_sym_import_list_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(4270), - [sym_identifier] = ACTIONS(4272), + [sym_block_comment] = STATE(1539), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_RBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(607), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4266), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(607), + }, + [1540] = { + [sym_line_comment] = STATE(1540), + [sym_block_comment] = STATE(1540), + [ts_builtin_sym_end] = ACTIONS(4268), + [sym_identifier] = ACTIONS(4270), + [anon_sym_LF] = ACTIONS(4270), + [anon_sym_CR] = ACTIONS(4270), + [anon_sym_CR_LF] = ACTIONS(4270), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4274), - [anon_sym_DOT] = ACTIONS(4272), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4270), [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4272), + [anon_sym_const] = ACTIONS(4270), [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym___global] = ACTIONS(4272), - [anon_sym_type] = ACTIONS(4272), - [anon_sym_fn] = ACTIONS(4272), + [anon_sym___global] = ACTIONS(4270), + [anon_sym_type] = ACTIONS(4270), + [anon_sym_fn] = ACTIONS(4270), [anon_sym_PLUS] = ACTIONS(4270), [anon_sym_DASH] = ACTIONS(4270), [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4272), - [anon_sym_union] = ACTIONS(4272), - [anon_sym_pub] = ACTIONS(4272), - [anon_sym_mut] = ACTIONS(4272), - [anon_sym_enum] = ACTIONS(4272), - [anon_sym_interface] = ACTIONS(4272), + [anon_sym_struct] = ACTIONS(4270), + [anon_sym_union] = ACTIONS(4270), + [anon_sym_pub] = ACTIONS(4270), + [anon_sym_mut] = ACTIONS(4270), + [anon_sym_enum] = ACTIONS(4270), + [anon_sym_interface] = ACTIONS(4270), [anon_sym_QMARK] = ACTIONS(4270), [anon_sym_BANG] = ACTIONS(4270), - [anon_sym_go] = ACTIONS(4272), - [anon_sym_spawn] = ACTIONS(4272), + [anon_sym_go] = ACTIONS(4270), + [anon_sym_spawn] = ACTIONS(4270), [anon_sym_json_DOTdecode] = ACTIONS(4270), [anon_sym_LBRACK2] = ACTIONS(4270), [anon_sym_TILDE] = ACTIONS(4270), [anon_sym_CARET] = ACTIONS(4270), [anon_sym_AMP] = ACTIONS(4270), [anon_sym_LT_DASH] = ACTIONS(4270), - [sym_none] = ACTIONS(4272), - [sym_true] = ACTIONS(4272), - [sym_false] = ACTIONS(4272), - [sym_nil] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_DOLLARif] = ACTIONS(4272), - [anon_sym_match] = ACTIONS(4272), - [anon_sym_select] = ACTIONS(4272), - [anon_sym_lock] = ACTIONS(4272), - [anon_sym_rlock] = ACTIONS(4272), - [anon_sym_unsafe] = ACTIONS(4272), - [anon_sym_sql] = ACTIONS(4272), - [sym_int_literal] = ACTIONS(4272), + [sym_none] = ACTIONS(4270), + [sym_true] = ACTIONS(4270), + [sym_false] = ACTIONS(4270), + [sym_nil] = ACTIONS(4270), + [anon_sym_if] = ACTIONS(4270), + [anon_sym_DOLLARif] = ACTIONS(4270), + [anon_sym_match] = ACTIONS(4270), + [anon_sym_select] = ACTIONS(4270), + [anon_sym_lock] = ACTIONS(4270), + [anon_sym_rlock] = ACTIONS(4270), + [anon_sym_unsafe] = ACTIONS(4270), + [anon_sym_sql] = ACTIONS(4270), + [sym_int_literal] = ACTIONS(4270), [sym_float_literal] = ACTIONS(4270), [sym_rune_literal] = ACTIONS(4270), - [sym_pseudo_compile_time_identifier] = ACTIONS(4272), - [anon_sym_shared] = ACTIONS(4272), + [sym_pseudo_compile_time_identifier] = ACTIONS(4270), + [anon_sym_shared] = ACTIONS(4270), [anon_sym_map_LBRACK] = ACTIONS(4270), - [anon_sym_chan] = ACTIONS(4272), - [anon_sym_thread] = ACTIONS(4272), - [anon_sym_atomic] = ACTIONS(4272), - [anon_sym_assert] = ACTIONS(4272), - [anon_sym_defer] = ACTIONS(4272), - [anon_sym_goto] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_DOLLARfor] = ACTIONS(4272), - [anon_sym_for] = ACTIONS(4272), + [anon_sym_chan] = ACTIONS(4270), + [anon_sym_thread] = ACTIONS(4270), + [anon_sym_atomic] = ACTIONS(4270), + [anon_sym_assert] = ACTIONS(4270), + [anon_sym_defer] = ACTIONS(4270), + [anon_sym_goto] = ACTIONS(4270), + [anon_sym_break] = ACTIONS(4270), + [anon_sym_continue] = ACTIONS(4270), + [anon_sym_return] = ACTIONS(4270), + [anon_sym_DOLLARfor] = ACTIONS(4270), + [anon_sym_for] = ACTIONS(4270), [anon_sym_POUND] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4272), + [anon_sym_asm] = ACTIONS(4270), [anon_sym_AT_LBRACK] = ACTIONS(4270), [sym___double_quote] = ACTIONS(4270), [sym___single_quote] = ACTIONS(4270), @@ -192256,1552 +187111,1573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4270), [sym___r_single_quote] = ACTIONS(4270), }, - [1540] = { - [sym_line_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(4277), - [sym_identifier] = ACTIONS(4279), - [anon_sym_LF] = ACTIONS(4279), - [anon_sym_CR] = ACTIONS(4279), - [anon_sym_CR_LF] = ACTIONS(4279), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4279), - [anon_sym_LBRACE] = ACTIONS(4279), - [anon_sym_const] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4279), - [anon_sym___global] = ACTIONS(4279), - [anon_sym_type] = ACTIONS(4279), - [anon_sym_fn] = ACTIONS(4279), - [anon_sym_PLUS] = ACTIONS(4279), - [anon_sym_DASH] = ACTIONS(4279), - [anon_sym_STAR] = ACTIONS(4279), - [anon_sym_struct] = ACTIONS(4279), - [anon_sym_union] = ACTIONS(4279), - [anon_sym_pub] = ACTIONS(4279), - [anon_sym_mut] = ACTIONS(4279), - [anon_sym_enum] = ACTIONS(4279), - [anon_sym_interface] = ACTIONS(4279), - [anon_sym_QMARK] = ACTIONS(4279), - [anon_sym_BANG] = ACTIONS(4279), - [anon_sym_go] = ACTIONS(4279), - [anon_sym_spawn] = ACTIONS(4279), - [anon_sym_json_DOTdecode] = ACTIONS(4279), - [anon_sym_LBRACK2] = ACTIONS(4279), - [anon_sym_TILDE] = ACTIONS(4279), - [anon_sym_CARET] = ACTIONS(4279), - [anon_sym_AMP] = ACTIONS(4279), - [anon_sym_LT_DASH] = ACTIONS(4279), - [sym_none] = ACTIONS(4279), - [sym_true] = ACTIONS(4279), - [sym_false] = ACTIONS(4279), - [sym_nil] = ACTIONS(4279), - [anon_sym_if] = ACTIONS(4279), - [anon_sym_DOLLARif] = ACTIONS(4279), - [anon_sym_match] = ACTIONS(4279), - [anon_sym_select] = ACTIONS(4279), - [anon_sym_lock] = ACTIONS(4279), - [anon_sym_rlock] = ACTIONS(4279), - [anon_sym_unsafe] = ACTIONS(4279), - [anon_sym_sql] = ACTIONS(4279), - [sym_int_literal] = ACTIONS(4279), - [sym_float_literal] = ACTIONS(4279), - [sym_rune_literal] = ACTIONS(4279), - [sym_pseudo_compile_time_identifier] = ACTIONS(4279), - [anon_sym_shared] = ACTIONS(4279), - [anon_sym_map_LBRACK] = ACTIONS(4279), - [anon_sym_chan] = ACTIONS(4279), - [anon_sym_thread] = ACTIONS(4279), - [anon_sym_atomic] = ACTIONS(4279), - [anon_sym_assert] = ACTIONS(4279), - [anon_sym_defer] = ACTIONS(4279), - [anon_sym_goto] = ACTIONS(4279), - [anon_sym_break] = ACTIONS(4279), - [anon_sym_continue] = ACTIONS(4279), - [anon_sym_return] = ACTIONS(4279), - [anon_sym_DOLLARfor] = ACTIONS(4279), - [anon_sym_for] = ACTIONS(4279), - [anon_sym_POUND] = ACTIONS(4279), - [anon_sym_asm] = ACTIONS(4279), - [anon_sym_AT_LBRACK] = ACTIONS(4279), - [sym___double_quote] = ACTIONS(4279), - [sym___single_quote] = ACTIONS(4279), - [sym___c_double_quote] = ACTIONS(4279), - [sym___c_single_quote] = ACTIONS(4279), - [sym___r_double_quote] = ACTIONS(4279), - [sym___r_single_quote] = ACTIONS(4279), - }, [1541] = { [sym_line_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(4281), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LF] = ACTIONS(4283), - [anon_sym_CR] = ACTIONS(4283), - [anon_sym_CR_LF] = ACTIONS(4283), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4283), - [anon_sym_const] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(4283), - [anon_sym___global] = ACTIONS(4283), - [anon_sym_type] = ACTIONS(4283), - [anon_sym_fn] = ACTIONS(4283), - [anon_sym_PLUS] = ACTIONS(4283), - [anon_sym_DASH] = ACTIONS(4283), - [anon_sym_STAR] = ACTIONS(4283), - [anon_sym_struct] = ACTIONS(4283), - [anon_sym_union] = ACTIONS(4283), - [anon_sym_pub] = ACTIONS(4283), - [anon_sym_mut] = ACTIONS(4283), - [anon_sym_enum] = ACTIONS(4283), - [anon_sym_interface] = ACTIONS(4283), - [anon_sym_QMARK] = ACTIONS(4283), - [anon_sym_BANG] = ACTIONS(4283), - [anon_sym_go] = ACTIONS(4283), - [anon_sym_spawn] = ACTIONS(4283), - [anon_sym_json_DOTdecode] = ACTIONS(4283), - [anon_sym_LBRACK2] = ACTIONS(4283), - [anon_sym_TILDE] = ACTIONS(4283), - [anon_sym_CARET] = ACTIONS(4283), - [anon_sym_AMP] = ACTIONS(4283), - [anon_sym_LT_DASH] = ACTIONS(4283), - [sym_none] = ACTIONS(4283), - [sym_true] = ACTIONS(4283), - [sym_false] = ACTIONS(4283), - [sym_nil] = ACTIONS(4283), - [anon_sym_if] = ACTIONS(4283), - [anon_sym_DOLLARif] = ACTIONS(4283), - [anon_sym_match] = ACTIONS(4283), - [anon_sym_select] = ACTIONS(4283), - [anon_sym_lock] = ACTIONS(4283), - [anon_sym_rlock] = ACTIONS(4283), - [anon_sym_unsafe] = ACTIONS(4283), - [anon_sym_sql] = ACTIONS(4283), - [sym_int_literal] = ACTIONS(4283), - [sym_float_literal] = ACTIONS(4283), - [sym_rune_literal] = ACTIONS(4283), - [sym_pseudo_compile_time_identifier] = ACTIONS(4283), - [anon_sym_shared] = ACTIONS(4283), - [anon_sym_map_LBRACK] = ACTIONS(4283), - [anon_sym_chan] = ACTIONS(4283), - [anon_sym_thread] = ACTIONS(4283), - [anon_sym_atomic] = ACTIONS(4283), - [anon_sym_assert] = ACTIONS(4283), - [anon_sym_defer] = ACTIONS(4283), - [anon_sym_goto] = ACTIONS(4283), - [anon_sym_break] = ACTIONS(4283), - [anon_sym_continue] = ACTIONS(4283), - [anon_sym_return] = ACTIONS(4283), - [anon_sym_DOLLARfor] = ACTIONS(4283), - [anon_sym_for] = ACTIONS(4283), - [anon_sym_POUND] = ACTIONS(4283), - [anon_sym_asm] = ACTIONS(4283), - [anon_sym_AT_LBRACK] = ACTIONS(4283), - [sym___double_quote] = ACTIONS(4283), - [sym___single_quote] = ACTIONS(4283), - [sym___c_double_quote] = ACTIONS(4283), - [sym___c_single_quote] = ACTIONS(4283), - [sym___r_double_quote] = ACTIONS(4283), - [sym___r_single_quote] = ACTIONS(4283), + [sym_block_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(4272), + [sym_identifier] = ACTIONS(4274), + [anon_sym_LF] = ACTIONS(4274), + [anon_sym_CR] = ACTIONS(4274), + [anon_sym_CR_LF] = ACTIONS(4274), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4274), + [anon_sym_const] = ACTIONS(4274), + [anon_sym_LPAREN] = ACTIONS(4274), + [anon_sym___global] = ACTIONS(4274), + [anon_sym_type] = ACTIONS(4274), + [anon_sym_fn] = ACTIONS(4274), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_struct] = ACTIONS(4274), + [anon_sym_union] = ACTIONS(4274), + [anon_sym_pub] = ACTIONS(4274), + [anon_sym_mut] = ACTIONS(4274), + [anon_sym_enum] = ACTIONS(4274), + [anon_sym_interface] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_go] = ACTIONS(4274), + [anon_sym_spawn] = ACTIONS(4274), + [anon_sym_json_DOTdecode] = ACTIONS(4274), + [anon_sym_LBRACK2] = ACTIONS(4274), + [anon_sym_TILDE] = ACTIONS(4274), + [anon_sym_CARET] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4274), + [anon_sym_LT_DASH] = ACTIONS(4274), + [sym_none] = ACTIONS(4274), + [sym_true] = ACTIONS(4274), + [sym_false] = ACTIONS(4274), + [sym_nil] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_DOLLARif] = ACTIONS(4274), + [anon_sym_match] = ACTIONS(4274), + [anon_sym_select] = ACTIONS(4274), + [anon_sym_lock] = ACTIONS(4274), + [anon_sym_rlock] = ACTIONS(4274), + [anon_sym_unsafe] = ACTIONS(4274), + [anon_sym_sql] = ACTIONS(4274), + [sym_int_literal] = ACTIONS(4274), + [sym_float_literal] = ACTIONS(4274), + [sym_rune_literal] = ACTIONS(4274), + [sym_pseudo_compile_time_identifier] = ACTIONS(4274), + [anon_sym_shared] = ACTIONS(4274), + [anon_sym_map_LBRACK] = ACTIONS(4274), + [anon_sym_chan] = ACTIONS(4274), + [anon_sym_thread] = ACTIONS(4274), + [anon_sym_atomic] = ACTIONS(4274), + [anon_sym_assert] = ACTIONS(4274), + [anon_sym_defer] = ACTIONS(4274), + [anon_sym_goto] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_DOLLARfor] = ACTIONS(4274), + [anon_sym_for] = ACTIONS(4274), + [anon_sym_POUND] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym_AT_LBRACK] = ACTIONS(4274), + [sym___double_quote] = ACTIONS(4274), + [sym___single_quote] = ACTIONS(4274), + [sym___c_double_quote] = ACTIONS(4274), + [sym___c_single_quote] = ACTIONS(4274), + [sym___r_double_quote] = ACTIONS(4274), + [sym___r_single_quote] = ACTIONS(4274), }, [1542] = { [sym_line_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(4285), - [sym_identifier] = ACTIONS(4287), - [anon_sym_LF] = ACTIONS(4287), - [anon_sym_CR] = ACTIONS(4287), - [anon_sym_CR_LF] = ACTIONS(4287), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4287), - [anon_sym_LBRACE] = ACTIONS(4287), - [anon_sym_const] = ACTIONS(4287), - [anon_sym_LPAREN] = ACTIONS(4287), - [anon_sym___global] = ACTIONS(4287), - [anon_sym_type] = ACTIONS(4287), - [anon_sym_fn] = ACTIONS(4287), - [anon_sym_PLUS] = ACTIONS(4287), - [anon_sym_DASH] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(4287), - [anon_sym_struct] = ACTIONS(4287), - [anon_sym_union] = ACTIONS(4287), - [anon_sym_pub] = ACTIONS(4287), - [anon_sym_mut] = ACTIONS(4287), - [anon_sym_enum] = ACTIONS(4287), - [anon_sym_interface] = ACTIONS(4287), - [anon_sym_QMARK] = ACTIONS(4287), - [anon_sym_BANG] = ACTIONS(4287), - [anon_sym_go] = ACTIONS(4287), - [anon_sym_spawn] = ACTIONS(4287), - [anon_sym_json_DOTdecode] = ACTIONS(4287), - [anon_sym_LBRACK2] = ACTIONS(4287), - [anon_sym_TILDE] = ACTIONS(4287), - [anon_sym_CARET] = ACTIONS(4287), - [anon_sym_AMP] = ACTIONS(4287), - [anon_sym_LT_DASH] = ACTIONS(4287), - [sym_none] = ACTIONS(4287), - [sym_true] = ACTIONS(4287), - [sym_false] = ACTIONS(4287), - [sym_nil] = ACTIONS(4287), - [anon_sym_if] = ACTIONS(4287), - [anon_sym_DOLLARif] = ACTIONS(4287), - [anon_sym_match] = ACTIONS(4287), - [anon_sym_select] = ACTIONS(4287), - [anon_sym_lock] = ACTIONS(4287), - [anon_sym_rlock] = ACTIONS(4287), - [anon_sym_unsafe] = ACTIONS(4287), - [anon_sym_sql] = ACTIONS(4287), - [sym_int_literal] = ACTIONS(4287), - [sym_float_literal] = ACTIONS(4287), - [sym_rune_literal] = ACTIONS(4287), - [sym_pseudo_compile_time_identifier] = ACTIONS(4287), - [anon_sym_shared] = ACTIONS(4287), - [anon_sym_map_LBRACK] = ACTIONS(4287), - [anon_sym_chan] = ACTIONS(4287), - [anon_sym_thread] = ACTIONS(4287), - [anon_sym_atomic] = ACTIONS(4287), - [anon_sym_assert] = ACTIONS(4287), - [anon_sym_defer] = ACTIONS(4287), - [anon_sym_goto] = ACTIONS(4287), - [anon_sym_break] = ACTIONS(4287), - [anon_sym_continue] = ACTIONS(4287), - [anon_sym_return] = ACTIONS(4287), - [anon_sym_DOLLARfor] = ACTIONS(4287), - [anon_sym_for] = ACTIONS(4287), - [anon_sym_POUND] = ACTIONS(4287), - [anon_sym_asm] = ACTIONS(4287), - [anon_sym_AT_LBRACK] = ACTIONS(4287), - [sym___double_quote] = ACTIONS(4287), - [sym___single_quote] = ACTIONS(4287), - [sym___c_double_quote] = ACTIONS(4287), - [sym___c_single_quote] = ACTIONS(4287), - [sym___r_double_quote] = ACTIONS(4287), - [sym___r_single_quote] = ACTIONS(4287), + [sym_block_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(4276), + [sym_identifier] = ACTIONS(4278), + [anon_sym_LF] = ACTIONS(4278), + [anon_sym_CR] = ACTIONS(4278), + [anon_sym_CR_LF] = ACTIONS(4278), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4278), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_const] = ACTIONS(4278), + [anon_sym_LPAREN] = ACTIONS(4278), + [anon_sym___global] = ACTIONS(4278), + [anon_sym_type] = ACTIONS(4278), + [anon_sym_fn] = ACTIONS(4278), + [anon_sym_PLUS] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4278), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_struct] = ACTIONS(4278), + [anon_sym_union] = ACTIONS(4278), + [anon_sym_pub] = ACTIONS(4278), + [anon_sym_mut] = ACTIONS(4278), + [anon_sym_enum] = ACTIONS(4278), + [anon_sym_interface] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_go] = ACTIONS(4278), + [anon_sym_spawn] = ACTIONS(4278), + [anon_sym_json_DOTdecode] = ACTIONS(4278), + [anon_sym_LBRACK2] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_CARET] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4278), + [anon_sym_LT_DASH] = ACTIONS(4278), + [sym_none] = ACTIONS(4278), + [sym_true] = ACTIONS(4278), + [sym_false] = ACTIONS(4278), + [sym_nil] = ACTIONS(4278), + [anon_sym_if] = ACTIONS(4278), + [anon_sym_DOLLARif] = ACTIONS(4278), + [anon_sym_match] = ACTIONS(4278), + [anon_sym_select] = ACTIONS(4278), + [anon_sym_lock] = ACTIONS(4278), + [anon_sym_rlock] = ACTIONS(4278), + [anon_sym_unsafe] = ACTIONS(4278), + [anon_sym_sql] = ACTIONS(4278), + [sym_int_literal] = ACTIONS(4278), + [sym_float_literal] = ACTIONS(4278), + [sym_rune_literal] = ACTIONS(4278), + [sym_pseudo_compile_time_identifier] = ACTIONS(4278), + [anon_sym_shared] = ACTIONS(4278), + [anon_sym_map_LBRACK] = ACTIONS(4278), + [anon_sym_chan] = ACTIONS(4278), + [anon_sym_thread] = ACTIONS(4278), + [anon_sym_atomic] = ACTIONS(4278), + [anon_sym_assert] = ACTIONS(4278), + [anon_sym_defer] = ACTIONS(4278), + [anon_sym_goto] = ACTIONS(4278), + [anon_sym_break] = ACTIONS(4278), + [anon_sym_continue] = ACTIONS(4278), + [anon_sym_return] = ACTIONS(4278), + [anon_sym_DOLLARfor] = ACTIONS(4278), + [anon_sym_for] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4278), + [anon_sym_asm] = ACTIONS(4278), + [anon_sym_AT_LBRACK] = ACTIONS(4278), + [sym___double_quote] = ACTIONS(4278), + [sym___single_quote] = ACTIONS(4278), + [sym___c_double_quote] = ACTIONS(4278), + [sym___c_single_quote] = ACTIONS(4278), + [sym___r_double_quote] = ACTIONS(4278), + [sym___r_single_quote] = ACTIONS(4278), }, [1543] = { [sym_line_comment] = STATE(1543), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), + [sym_block_comment] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(4280), + [sym_identifier] = ACTIONS(4282), + [anon_sym_LF] = ACTIONS(4282), + [anon_sym_CR] = ACTIONS(4282), + [anon_sym_CR_LF] = ACTIONS(4282), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_DOT_DOT_DOT] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_const] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym___global] = ACTIONS(4282), + [anon_sym_type] = ACTIONS(4282), + [anon_sym_fn] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4282), + [anon_sym_DASH] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4282), + [anon_sym_struct] = ACTIONS(4282), + [anon_sym_union] = ACTIONS(4282), + [anon_sym_pub] = ACTIONS(4282), + [anon_sym_mut] = ACTIONS(4282), + [anon_sym_enum] = ACTIONS(4282), + [anon_sym_interface] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4282), + [anon_sym_go] = ACTIONS(4282), + [anon_sym_spawn] = ACTIONS(4282), + [anon_sym_json_DOTdecode] = ACTIONS(4282), + [anon_sym_LBRACK2] = ACTIONS(4282), + [anon_sym_TILDE] = ACTIONS(4282), + [anon_sym_CARET] = ACTIONS(4282), + [anon_sym_AMP] = ACTIONS(4282), + [anon_sym_LT_DASH] = ACTIONS(4282), + [sym_none] = ACTIONS(4282), + [sym_true] = ACTIONS(4282), + [sym_false] = ACTIONS(4282), + [sym_nil] = ACTIONS(4282), + [anon_sym_if] = ACTIONS(4282), + [anon_sym_DOLLARif] = ACTIONS(4282), + [anon_sym_match] = ACTIONS(4282), + [anon_sym_select] = ACTIONS(4282), + [anon_sym_lock] = ACTIONS(4282), + [anon_sym_rlock] = ACTIONS(4282), + [anon_sym_unsafe] = ACTIONS(4282), + [anon_sym_sql] = ACTIONS(4282), + [sym_int_literal] = ACTIONS(4282), + [sym_float_literal] = ACTIONS(4282), + [sym_rune_literal] = ACTIONS(4282), + [sym_pseudo_compile_time_identifier] = ACTIONS(4282), + [anon_sym_shared] = ACTIONS(4282), + [anon_sym_map_LBRACK] = ACTIONS(4282), + [anon_sym_chan] = ACTIONS(4282), + [anon_sym_thread] = ACTIONS(4282), + [anon_sym_atomic] = ACTIONS(4282), + [anon_sym_assert] = ACTIONS(4282), + [anon_sym_defer] = ACTIONS(4282), + [anon_sym_goto] = ACTIONS(4282), + [anon_sym_break] = ACTIONS(4282), + [anon_sym_continue] = ACTIONS(4282), + [anon_sym_return] = ACTIONS(4282), + [anon_sym_DOLLARfor] = ACTIONS(4282), + [anon_sym_for] = ACTIONS(4282), + [anon_sym_POUND] = ACTIONS(4282), + [anon_sym_asm] = ACTIONS(4282), + [anon_sym_AT_LBRACK] = ACTIONS(4282), + [sym___double_quote] = ACTIONS(4282), + [sym___single_quote] = ACTIONS(4282), + [sym___c_double_quote] = ACTIONS(4282), + [sym___c_single_quote] = ACTIONS(4282), + [sym___r_double_quote] = ACTIONS(4282), + [sym___r_single_quote] = ACTIONS(4282), }, [1544] = { [sym_line_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(4289), - [sym_identifier] = ACTIONS(4291), - [anon_sym_LF] = ACTIONS(4291), - [anon_sym_CR] = ACTIONS(4291), - [anon_sym_CR_LF] = ACTIONS(4291), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4291), - [anon_sym_LBRACE] = ACTIONS(4291), - [anon_sym_const] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym___global] = ACTIONS(4291), - [anon_sym_type] = ACTIONS(4291), - [anon_sym_fn] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4291), - [anon_sym_DASH] = ACTIONS(4291), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_struct] = ACTIONS(4291), - [anon_sym_union] = ACTIONS(4291), - [anon_sym_pub] = ACTIONS(4291), - [anon_sym_mut] = ACTIONS(4291), - [anon_sym_enum] = ACTIONS(4291), - [anon_sym_interface] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4291), - [anon_sym_go] = ACTIONS(4291), - [anon_sym_spawn] = ACTIONS(4291), - [anon_sym_json_DOTdecode] = ACTIONS(4291), - [anon_sym_LBRACK2] = ACTIONS(4291), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_AMP] = ACTIONS(4291), - [anon_sym_LT_DASH] = ACTIONS(4291), - [sym_none] = ACTIONS(4291), - [sym_true] = ACTIONS(4291), - [sym_false] = ACTIONS(4291), - [sym_nil] = ACTIONS(4291), - [anon_sym_if] = ACTIONS(4291), - [anon_sym_DOLLARif] = ACTIONS(4291), - [anon_sym_match] = ACTIONS(4291), - [anon_sym_select] = ACTIONS(4291), - [anon_sym_lock] = ACTIONS(4291), - [anon_sym_rlock] = ACTIONS(4291), - [anon_sym_unsafe] = ACTIONS(4291), - [anon_sym_sql] = ACTIONS(4291), - [sym_int_literal] = ACTIONS(4291), - [sym_float_literal] = ACTIONS(4291), - [sym_rune_literal] = ACTIONS(4291), - [sym_pseudo_compile_time_identifier] = ACTIONS(4291), - [anon_sym_shared] = ACTIONS(4291), - [anon_sym_map_LBRACK] = ACTIONS(4291), - [anon_sym_chan] = ACTIONS(4291), - [anon_sym_thread] = ACTIONS(4291), - [anon_sym_atomic] = ACTIONS(4291), - [anon_sym_assert] = ACTIONS(4291), - [anon_sym_defer] = ACTIONS(4291), - [anon_sym_goto] = ACTIONS(4291), - [anon_sym_break] = ACTIONS(4291), - [anon_sym_continue] = ACTIONS(4291), - [anon_sym_return] = ACTIONS(4291), - [anon_sym_DOLLARfor] = ACTIONS(4291), - [anon_sym_for] = ACTIONS(4291), - [anon_sym_POUND] = ACTIONS(4291), - [anon_sym_asm] = ACTIONS(4291), - [anon_sym_AT_LBRACK] = ACTIONS(4291), - [sym___double_quote] = ACTIONS(4291), - [sym___single_quote] = ACTIONS(4291), - [sym___c_double_quote] = ACTIONS(4291), - [sym___c_single_quote] = ACTIONS(4291), - [sym___r_double_quote] = ACTIONS(4291), - [sym___r_single_quote] = ACTIONS(4291), + [sym_block_comment] = STATE(1544), + [ts_builtin_sym_end] = ACTIONS(4284), + [sym_identifier] = ACTIONS(4286), + [anon_sym_LF] = ACTIONS(4286), + [anon_sym_CR] = ACTIONS(4286), + [anon_sym_CR_LF] = ACTIONS(4286), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4286), + [anon_sym_LBRACE] = ACTIONS(4286), + [anon_sym_const] = ACTIONS(4286), + [anon_sym_LPAREN] = ACTIONS(4286), + [anon_sym___global] = ACTIONS(4286), + [anon_sym_type] = ACTIONS(4286), + [anon_sym_fn] = ACTIONS(4286), + [anon_sym_PLUS] = ACTIONS(4286), + [anon_sym_DASH] = ACTIONS(4286), + [anon_sym_STAR] = ACTIONS(4286), + [anon_sym_struct] = ACTIONS(4286), + [anon_sym_union] = ACTIONS(4286), + [anon_sym_pub] = ACTIONS(4286), + [anon_sym_mut] = ACTIONS(4286), + [anon_sym_enum] = ACTIONS(4286), + [anon_sym_interface] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4286), + [anon_sym_BANG] = ACTIONS(4286), + [anon_sym_go] = ACTIONS(4286), + [anon_sym_spawn] = ACTIONS(4286), + [anon_sym_json_DOTdecode] = ACTIONS(4286), + [anon_sym_LBRACK2] = ACTIONS(4286), + [anon_sym_TILDE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_LT_DASH] = ACTIONS(4286), + [sym_none] = ACTIONS(4286), + [sym_true] = ACTIONS(4286), + [sym_false] = ACTIONS(4286), + [sym_nil] = ACTIONS(4286), + [anon_sym_if] = ACTIONS(4286), + [anon_sym_DOLLARif] = ACTIONS(4286), + [anon_sym_match] = ACTIONS(4286), + [anon_sym_select] = ACTIONS(4286), + [anon_sym_lock] = ACTIONS(4286), + [anon_sym_rlock] = ACTIONS(4286), + [anon_sym_unsafe] = ACTIONS(4286), + [anon_sym_sql] = ACTIONS(4286), + [sym_int_literal] = ACTIONS(4286), + [sym_float_literal] = ACTIONS(4286), + [sym_rune_literal] = ACTIONS(4286), + [sym_pseudo_compile_time_identifier] = ACTIONS(4286), + [anon_sym_shared] = ACTIONS(4286), + [anon_sym_map_LBRACK] = ACTIONS(4286), + [anon_sym_chan] = ACTIONS(4286), + [anon_sym_thread] = ACTIONS(4286), + [anon_sym_atomic] = ACTIONS(4286), + [anon_sym_assert] = ACTIONS(4286), + [anon_sym_defer] = ACTIONS(4286), + [anon_sym_goto] = ACTIONS(4286), + [anon_sym_break] = ACTIONS(4286), + [anon_sym_continue] = ACTIONS(4286), + [anon_sym_return] = ACTIONS(4286), + [anon_sym_DOLLARfor] = ACTIONS(4286), + [anon_sym_for] = ACTIONS(4286), + [anon_sym_POUND] = ACTIONS(4286), + [anon_sym_asm] = ACTIONS(4286), + [anon_sym_AT_LBRACK] = ACTIONS(4286), + [sym___double_quote] = ACTIONS(4286), + [sym___single_quote] = ACTIONS(4286), + [sym___c_double_quote] = ACTIONS(4286), + [sym___c_single_quote] = ACTIONS(4286), + [sym___r_double_quote] = ACTIONS(4286), + [sym___r_single_quote] = ACTIONS(4286), }, [1545] = { [sym_line_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(4293), - [sym_identifier] = ACTIONS(4295), - [anon_sym_LF] = ACTIONS(4295), - [anon_sym_CR] = ACTIONS(4295), - [anon_sym_CR_LF] = ACTIONS(4295), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4295), - [anon_sym_const] = ACTIONS(4295), - [anon_sym_LPAREN] = ACTIONS(4295), - [anon_sym___global] = ACTIONS(4295), - [anon_sym_type] = ACTIONS(4295), - [anon_sym_fn] = ACTIONS(4295), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_STAR] = ACTIONS(4295), - [anon_sym_struct] = ACTIONS(4295), - [anon_sym_union] = ACTIONS(4295), - [anon_sym_pub] = ACTIONS(4295), - [anon_sym_mut] = ACTIONS(4295), - [anon_sym_enum] = ACTIONS(4295), - [anon_sym_interface] = ACTIONS(4295), - [anon_sym_QMARK] = ACTIONS(4295), - [anon_sym_BANG] = ACTIONS(4295), - [anon_sym_go] = ACTIONS(4295), - [anon_sym_spawn] = ACTIONS(4295), - [anon_sym_json_DOTdecode] = ACTIONS(4295), - [anon_sym_LBRACK2] = ACTIONS(4295), - [anon_sym_TILDE] = ACTIONS(4295), - [anon_sym_CARET] = ACTIONS(4295), - [anon_sym_AMP] = ACTIONS(4295), - [anon_sym_LT_DASH] = ACTIONS(4295), - [sym_none] = ACTIONS(4295), - [sym_true] = ACTIONS(4295), - [sym_false] = ACTIONS(4295), - [sym_nil] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_DOLLARif] = ACTIONS(4295), - [anon_sym_match] = ACTIONS(4295), - [anon_sym_select] = ACTIONS(4295), - [anon_sym_lock] = ACTIONS(4295), - [anon_sym_rlock] = ACTIONS(4295), - [anon_sym_unsafe] = ACTIONS(4295), - [anon_sym_sql] = ACTIONS(4295), - [sym_int_literal] = ACTIONS(4295), - [sym_float_literal] = ACTIONS(4295), - [sym_rune_literal] = ACTIONS(4295), - [sym_pseudo_compile_time_identifier] = ACTIONS(4295), - [anon_sym_shared] = ACTIONS(4295), - [anon_sym_map_LBRACK] = ACTIONS(4295), - [anon_sym_chan] = ACTIONS(4295), - [anon_sym_thread] = ACTIONS(4295), - [anon_sym_atomic] = ACTIONS(4295), - [anon_sym_assert] = ACTIONS(4295), - [anon_sym_defer] = ACTIONS(4295), - [anon_sym_goto] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_DOLLARfor] = ACTIONS(4295), - [anon_sym_for] = ACTIONS(4295), - [anon_sym_POUND] = ACTIONS(4295), - [anon_sym_asm] = ACTIONS(4295), - [anon_sym_AT_LBRACK] = ACTIONS(4295), - [sym___double_quote] = ACTIONS(4295), - [sym___single_quote] = ACTIONS(4295), - [sym___c_double_quote] = ACTIONS(4295), - [sym___c_single_quote] = ACTIONS(4295), - [sym___r_double_quote] = ACTIONS(4295), - [sym___r_single_quote] = ACTIONS(4295), + [sym_block_comment] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(4288), + [sym_identifier] = ACTIONS(4290), + [anon_sym_LF] = ACTIONS(4290), + [anon_sym_CR] = ACTIONS(4290), + [anon_sym_CR_LF] = ACTIONS(4290), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4290), + [anon_sym_LBRACE] = ACTIONS(4290), + [anon_sym_const] = ACTIONS(4290), + [anon_sym_LPAREN] = ACTIONS(4290), + [anon_sym___global] = ACTIONS(4290), + [anon_sym_type] = ACTIONS(4290), + [anon_sym_fn] = ACTIONS(4290), + [anon_sym_PLUS] = ACTIONS(4290), + [anon_sym_DASH] = ACTIONS(4290), + [anon_sym_STAR] = ACTIONS(4290), + [anon_sym_struct] = ACTIONS(4290), + [anon_sym_union] = ACTIONS(4290), + [anon_sym_pub] = ACTIONS(4290), + [anon_sym_mut] = ACTIONS(4290), + [anon_sym_enum] = ACTIONS(4290), + [anon_sym_interface] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4290), + [anon_sym_BANG] = ACTIONS(4290), + [anon_sym_go] = ACTIONS(4290), + [anon_sym_spawn] = ACTIONS(4290), + [anon_sym_json_DOTdecode] = ACTIONS(4290), + [anon_sym_LBRACK2] = ACTIONS(4290), + [anon_sym_TILDE] = ACTIONS(4290), + [anon_sym_CARET] = ACTIONS(4290), + [anon_sym_AMP] = ACTIONS(4290), + [anon_sym_LT_DASH] = ACTIONS(4290), + [sym_none] = ACTIONS(4290), + [sym_true] = ACTIONS(4290), + [sym_false] = ACTIONS(4290), + [sym_nil] = ACTIONS(4290), + [anon_sym_if] = ACTIONS(4290), + [anon_sym_DOLLARif] = ACTIONS(4290), + [anon_sym_match] = ACTIONS(4290), + [anon_sym_select] = ACTIONS(4290), + [anon_sym_lock] = ACTIONS(4290), + [anon_sym_rlock] = ACTIONS(4290), + [anon_sym_unsafe] = ACTIONS(4290), + [anon_sym_sql] = ACTIONS(4290), + [sym_int_literal] = ACTIONS(4290), + [sym_float_literal] = ACTIONS(4290), + [sym_rune_literal] = ACTIONS(4290), + [sym_pseudo_compile_time_identifier] = ACTIONS(4290), + [anon_sym_shared] = ACTIONS(4290), + [anon_sym_map_LBRACK] = ACTIONS(4290), + [anon_sym_chan] = ACTIONS(4290), + [anon_sym_thread] = ACTIONS(4290), + [anon_sym_atomic] = ACTIONS(4290), + [anon_sym_assert] = ACTIONS(4290), + [anon_sym_defer] = ACTIONS(4290), + [anon_sym_goto] = ACTIONS(4290), + [anon_sym_break] = ACTIONS(4290), + [anon_sym_continue] = ACTIONS(4290), + [anon_sym_return] = ACTIONS(4290), + [anon_sym_DOLLARfor] = ACTIONS(4290), + [anon_sym_for] = ACTIONS(4290), + [anon_sym_POUND] = ACTIONS(4290), + [anon_sym_asm] = ACTIONS(4290), + [anon_sym_AT_LBRACK] = ACTIONS(4290), + [sym___double_quote] = ACTIONS(4290), + [sym___single_quote] = ACTIONS(4290), + [sym___c_double_quote] = ACTIONS(4290), + [sym___c_single_quote] = ACTIONS(4290), + [sym___r_double_quote] = ACTIONS(4290), + [sym___r_single_quote] = ACTIONS(4290), }, [1546] = { [sym_line_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_LF] = ACTIONS(2663), - [anon_sym_CR] = ACTIONS(2663), - [anon_sym_CR_LF] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(2663), - [anon_sym___global] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_PLUS] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2663), - [anon_sym_STAR] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_mut] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_interface] = ACTIONS(2663), - [anon_sym_QMARK] = ACTIONS(2663), - [anon_sym_BANG] = ACTIONS(2663), - [anon_sym_go] = ACTIONS(2663), - [anon_sym_spawn] = ACTIONS(2663), - [anon_sym_json_DOTdecode] = ACTIONS(2663), - [anon_sym_LBRACK2] = ACTIONS(2663), - [anon_sym_TILDE] = ACTIONS(2663), - [anon_sym_CARET] = ACTIONS(2663), - [anon_sym_AMP] = ACTIONS(2663), - [anon_sym_LT_DASH] = ACTIONS(2663), - [sym_none] = ACTIONS(2663), - [sym_true] = ACTIONS(2663), - [sym_false] = ACTIONS(2663), - [sym_nil] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_DOLLARif] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_select] = ACTIONS(2663), - [anon_sym_lock] = ACTIONS(2663), - [anon_sym_rlock] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_sql] = ACTIONS(2663), - [sym_int_literal] = ACTIONS(2663), - [sym_float_literal] = ACTIONS(2663), - [sym_rune_literal] = ACTIONS(2663), - [sym_pseudo_compile_time_identifier] = ACTIONS(2663), - [anon_sym_shared] = ACTIONS(2663), - [anon_sym_map_LBRACK] = ACTIONS(2663), - [anon_sym_chan] = ACTIONS(2663), - [anon_sym_thread] = ACTIONS(2663), - [anon_sym_atomic] = ACTIONS(2663), - [anon_sym_assert] = ACTIONS(2663), - [anon_sym_defer] = ACTIONS(2663), - [anon_sym_goto] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_DOLLARfor] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_POUND] = ACTIONS(2663), - [anon_sym_asm] = ACTIONS(2663), - [anon_sym_AT_LBRACK] = ACTIONS(2663), - [sym___double_quote] = ACTIONS(2663), - [sym___single_quote] = ACTIONS(2663), - [sym___c_double_quote] = ACTIONS(2663), - [sym___c_single_quote] = ACTIONS(2663), - [sym___r_double_quote] = ACTIONS(2663), - [sym___r_single_quote] = ACTIONS(2663), + [sym_block_comment] = STATE(1546), + [sym_import_declaration] = STATE(1623), + [aux_sym_import_list_repeat1] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(4292), + [sym_identifier] = ACTIONS(4294), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4296), + [anon_sym_DOT] = ACTIONS(4294), + [anon_sym_LBRACE] = ACTIONS(4292), + [anon_sym_const] = ACTIONS(4294), + [anon_sym_LPAREN] = ACTIONS(4292), + [anon_sym___global] = ACTIONS(4294), + [anon_sym_type] = ACTIONS(4294), + [anon_sym_fn] = ACTIONS(4294), + [anon_sym_PLUS] = ACTIONS(4292), + [anon_sym_DASH] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(4292), + [anon_sym_struct] = ACTIONS(4294), + [anon_sym_union] = ACTIONS(4294), + [anon_sym_pub] = ACTIONS(4294), + [anon_sym_mut] = ACTIONS(4294), + [anon_sym_enum] = ACTIONS(4294), + [anon_sym_interface] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_BANG] = ACTIONS(4292), + [anon_sym_go] = ACTIONS(4294), + [anon_sym_spawn] = ACTIONS(4294), + [anon_sym_json_DOTdecode] = ACTIONS(4292), + [anon_sym_LBRACK2] = ACTIONS(4292), + [anon_sym_TILDE] = ACTIONS(4292), + [anon_sym_CARET] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4292), + [anon_sym_LT_DASH] = ACTIONS(4292), + [sym_none] = ACTIONS(4294), + [sym_true] = ACTIONS(4294), + [sym_false] = ACTIONS(4294), + [sym_nil] = ACTIONS(4294), + [anon_sym_if] = ACTIONS(4294), + [anon_sym_DOLLARif] = ACTIONS(4294), + [anon_sym_match] = ACTIONS(4294), + [anon_sym_select] = ACTIONS(4294), + [anon_sym_lock] = ACTIONS(4294), + [anon_sym_rlock] = ACTIONS(4294), + [anon_sym_unsafe] = ACTIONS(4294), + [anon_sym_sql] = ACTIONS(4294), + [sym_int_literal] = ACTIONS(4294), + [sym_float_literal] = ACTIONS(4292), + [sym_rune_literal] = ACTIONS(4292), + [sym_pseudo_compile_time_identifier] = ACTIONS(4294), + [anon_sym_shared] = ACTIONS(4294), + [anon_sym_map_LBRACK] = ACTIONS(4292), + [anon_sym_chan] = ACTIONS(4294), + [anon_sym_thread] = ACTIONS(4294), + [anon_sym_atomic] = ACTIONS(4294), + [anon_sym_assert] = ACTIONS(4294), + [anon_sym_defer] = ACTIONS(4294), + [anon_sym_goto] = ACTIONS(4294), + [anon_sym_break] = ACTIONS(4294), + [anon_sym_continue] = ACTIONS(4294), + [anon_sym_return] = ACTIONS(4294), + [anon_sym_DOLLARfor] = ACTIONS(4294), + [anon_sym_for] = ACTIONS(4294), + [anon_sym_POUND] = ACTIONS(4292), + [anon_sym_asm] = ACTIONS(4294), + [anon_sym_AT_LBRACK] = ACTIONS(4292), + [sym___double_quote] = ACTIONS(4292), + [sym___single_quote] = ACTIONS(4292), + [sym___c_double_quote] = ACTIONS(4292), + [sym___c_single_quote] = ACTIONS(4292), + [sym___r_double_quote] = ACTIONS(4292), + [sym___r_single_quote] = ACTIONS(4292), }, [1547] = { [sym_line_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(4297), - [sym_identifier] = ACTIONS(4299), - [anon_sym_LF] = ACTIONS(4299), - [anon_sym_CR] = ACTIONS(4299), - [anon_sym_CR_LF] = ACTIONS(4299), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4299), - [anon_sym_const] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4299), - [anon_sym___global] = ACTIONS(4299), - [anon_sym_type] = ACTIONS(4299), - [anon_sym_fn] = ACTIONS(4299), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_struct] = ACTIONS(4299), - [anon_sym_union] = ACTIONS(4299), - [anon_sym_pub] = ACTIONS(4299), - [anon_sym_mut] = ACTIONS(4299), - [anon_sym_enum] = ACTIONS(4299), - [anon_sym_interface] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_go] = ACTIONS(4299), - [anon_sym_spawn] = ACTIONS(4299), - [anon_sym_json_DOTdecode] = ACTIONS(4299), - [anon_sym_LBRACK2] = ACTIONS(4299), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_AMP] = ACTIONS(4299), - [anon_sym_LT_DASH] = ACTIONS(4299), - [sym_none] = ACTIONS(4299), - [sym_true] = ACTIONS(4299), - [sym_false] = ACTIONS(4299), - [sym_nil] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_DOLLARif] = ACTIONS(4299), - [anon_sym_match] = ACTIONS(4299), - [anon_sym_select] = ACTIONS(4299), - [anon_sym_lock] = ACTIONS(4299), - [anon_sym_rlock] = ACTIONS(4299), - [anon_sym_unsafe] = ACTIONS(4299), - [anon_sym_sql] = ACTIONS(4299), - [sym_int_literal] = ACTIONS(4299), - [sym_float_literal] = ACTIONS(4299), - [sym_rune_literal] = ACTIONS(4299), - [sym_pseudo_compile_time_identifier] = ACTIONS(4299), - [anon_sym_shared] = ACTIONS(4299), - [anon_sym_map_LBRACK] = ACTIONS(4299), - [anon_sym_chan] = ACTIONS(4299), - [anon_sym_thread] = ACTIONS(4299), - [anon_sym_atomic] = ACTIONS(4299), - [anon_sym_assert] = ACTIONS(4299), - [anon_sym_defer] = ACTIONS(4299), - [anon_sym_goto] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_DOLLARfor] = ACTIONS(4299), - [anon_sym_for] = ACTIONS(4299), - [anon_sym_POUND] = ACTIONS(4299), - [anon_sym_asm] = ACTIONS(4299), - [anon_sym_AT_LBRACK] = ACTIONS(4299), - [sym___double_quote] = ACTIONS(4299), - [sym___single_quote] = ACTIONS(4299), - [sym___c_double_quote] = ACTIONS(4299), - [sym___c_single_quote] = ACTIONS(4299), - [sym___r_double_quote] = ACTIONS(4299), - [sym___r_single_quote] = ACTIONS(4299), + [sym_block_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4301), + [anon_sym_LF] = ACTIONS(4301), + [anon_sym_CR] = ACTIONS(4301), + [anon_sym_CR_LF] = ACTIONS(4301), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_LPAREN] = ACTIONS(4301), + [anon_sym___global] = ACTIONS(4301), + [anon_sym_type] = ACTIONS(4301), + [anon_sym_fn] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_pub] = ACTIONS(4301), + [anon_sym_mut] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_interface] = ACTIONS(4301), + [anon_sym_QMARK] = ACTIONS(4301), + [anon_sym_BANG] = ACTIONS(4301), + [anon_sym_go] = ACTIONS(4301), + [anon_sym_spawn] = ACTIONS(4301), + [anon_sym_json_DOTdecode] = ACTIONS(4301), + [anon_sym_LBRACK2] = ACTIONS(4301), + [anon_sym_TILDE] = ACTIONS(4301), + [anon_sym_CARET] = ACTIONS(4301), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_LT_DASH] = ACTIONS(4301), + [sym_none] = ACTIONS(4301), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [sym_nil] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_DOLLARif] = ACTIONS(4301), + [anon_sym_match] = ACTIONS(4301), + [anon_sym_select] = ACTIONS(4301), + [anon_sym_lock] = ACTIONS(4301), + [anon_sym_rlock] = ACTIONS(4301), + [anon_sym_unsafe] = ACTIONS(4301), + [anon_sym_sql] = ACTIONS(4301), + [sym_int_literal] = ACTIONS(4301), + [sym_float_literal] = ACTIONS(4301), + [sym_rune_literal] = ACTIONS(4301), + [sym_pseudo_compile_time_identifier] = ACTIONS(4301), + [anon_sym_shared] = ACTIONS(4301), + [anon_sym_map_LBRACK] = ACTIONS(4301), + [anon_sym_chan] = ACTIONS(4301), + [anon_sym_thread] = ACTIONS(4301), + [anon_sym_atomic] = ACTIONS(4301), + [anon_sym_assert] = ACTIONS(4301), + [anon_sym_defer] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_DOLLARfor] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_POUND] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym_AT_LBRACK] = ACTIONS(4301), + [sym___double_quote] = ACTIONS(4301), + [sym___single_quote] = ACTIONS(4301), + [sym___c_double_quote] = ACTIONS(4301), + [sym___c_single_quote] = ACTIONS(4301), + [sym___r_double_quote] = ACTIONS(4301), + [sym___r_single_quote] = ACTIONS(4301), }, [1548] = { [sym_line_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(4301), - [sym_identifier] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4303), - [anon_sym_CR] = ACTIONS(4303), - [anon_sym_CR_LF] = ACTIONS(4303), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4303), - [anon_sym_LBRACE] = ACTIONS(4303), - [anon_sym_const] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [anon_sym___global] = ACTIONS(4303), - [anon_sym_type] = ACTIONS(4303), - [anon_sym_fn] = ACTIONS(4303), - [anon_sym_PLUS] = ACTIONS(4303), - [anon_sym_DASH] = ACTIONS(4303), - [anon_sym_STAR] = ACTIONS(4303), - [anon_sym_struct] = ACTIONS(4303), - [anon_sym_union] = ACTIONS(4303), - [anon_sym_pub] = ACTIONS(4303), - [anon_sym_mut] = ACTIONS(4303), - [anon_sym_enum] = ACTIONS(4303), - [anon_sym_interface] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4303), - [anon_sym_go] = ACTIONS(4303), - [anon_sym_spawn] = ACTIONS(4303), - [anon_sym_json_DOTdecode] = ACTIONS(4303), - [anon_sym_LBRACK2] = ACTIONS(4303), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(4303), - [anon_sym_LT_DASH] = ACTIONS(4303), - [sym_none] = ACTIONS(4303), - [sym_true] = ACTIONS(4303), - [sym_false] = ACTIONS(4303), - [sym_nil] = ACTIONS(4303), - [anon_sym_if] = ACTIONS(4303), - [anon_sym_DOLLARif] = ACTIONS(4303), - [anon_sym_match] = ACTIONS(4303), - [anon_sym_select] = ACTIONS(4303), - [anon_sym_lock] = ACTIONS(4303), - [anon_sym_rlock] = ACTIONS(4303), - [anon_sym_unsafe] = ACTIONS(4303), - [anon_sym_sql] = ACTIONS(4303), - [sym_int_literal] = ACTIONS(4303), - [sym_float_literal] = ACTIONS(4303), - [sym_rune_literal] = ACTIONS(4303), - [sym_pseudo_compile_time_identifier] = ACTIONS(4303), - [anon_sym_shared] = ACTIONS(4303), - [anon_sym_map_LBRACK] = ACTIONS(4303), - [anon_sym_chan] = ACTIONS(4303), - [anon_sym_thread] = ACTIONS(4303), - [anon_sym_atomic] = ACTIONS(4303), - [anon_sym_assert] = ACTIONS(4303), - [anon_sym_defer] = ACTIONS(4303), - [anon_sym_goto] = ACTIONS(4303), - [anon_sym_break] = ACTIONS(4303), - [anon_sym_continue] = ACTIONS(4303), - [anon_sym_return] = ACTIONS(4303), - [anon_sym_DOLLARfor] = ACTIONS(4303), - [anon_sym_for] = ACTIONS(4303), - [anon_sym_POUND] = ACTIONS(4303), - [anon_sym_asm] = ACTIONS(4303), - [anon_sym_AT_LBRACK] = ACTIONS(4303), - [sym___double_quote] = ACTIONS(4303), - [sym___single_quote] = ACTIONS(4303), - [sym___c_double_quote] = ACTIONS(4303), - [sym___c_single_quote] = ACTIONS(4303), - [sym___r_double_quote] = ACTIONS(4303), - [sym___r_single_quote] = ACTIONS(4303), + [sym_block_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym_identifier] = ACTIONS(4305), + [anon_sym_LF] = ACTIONS(4305), + [anon_sym_CR] = ACTIONS(4305), + [anon_sym_CR_LF] = ACTIONS(4305), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_LPAREN] = ACTIONS(4305), + [anon_sym___global] = ACTIONS(4305), + [anon_sym_type] = ACTIONS(4305), + [anon_sym_fn] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_pub] = ACTIONS(4305), + [anon_sym_mut] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_interface] = ACTIONS(4305), + [anon_sym_QMARK] = ACTIONS(4305), + [anon_sym_BANG] = ACTIONS(4305), + [anon_sym_go] = ACTIONS(4305), + [anon_sym_spawn] = ACTIONS(4305), + [anon_sym_json_DOTdecode] = ACTIONS(4305), + [anon_sym_LBRACK2] = ACTIONS(4305), + [anon_sym_TILDE] = ACTIONS(4305), + [anon_sym_CARET] = ACTIONS(4305), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_LT_DASH] = ACTIONS(4305), + [sym_none] = ACTIONS(4305), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [sym_nil] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_DOLLARif] = ACTIONS(4305), + [anon_sym_match] = ACTIONS(4305), + [anon_sym_select] = ACTIONS(4305), + [anon_sym_lock] = ACTIONS(4305), + [anon_sym_rlock] = ACTIONS(4305), + [anon_sym_unsafe] = ACTIONS(4305), + [anon_sym_sql] = ACTIONS(4305), + [sym_int_literal] = ACTIONS(4305), + [sym_float_literal] = ACTIONS(4305), + [sym_rune_literal] = ACTIONS(4305), + [sym_pseudo_compile_time_identifier] = ACTIONS(4305), + [anon_sym_shared] = ACTIONS(4305), + [anon_sym_map_LBRACK] = ACTIONS(4305), + [anon_sym_chan] = ACTIONS(4305), + [anon_sym_thread] = ACTIONS(4305), + [anon_sym_atomic] = ACTIONS(4305), + [anon_sym_assert] = ACTIONS(4305), + [anon_sym_defer] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_DOLLARfor] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_POUND] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym_AT_LBRACK] = ACTIONS(4305), + [sym___double_quote] = ACTIONS(4305), + [sym___single_quote] = ACTIONS(4305), + [sym___c_double_quote] = ACTIONS(4305), + [sym___c_single_quote] = ACTIONS(4305), + [sym___r_double_quote] = ACTIONS(4305), + [sym___r_single_quote] = ACTIONS(4305), }, [1549] = { [sym_line_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(4305), - [sym_identifier] = ACTIONS(4307), - [anon_sym_LF] = ACTIONS(4307), - [anon_sym_CR] = ACTIONS(4307), - [anon_sym_CR_LF] = ACTIONS(4307), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_const] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym___global] = ACTIONS(4307), - [anon_sym_type] = ACTIONS(4307), - [anon_sym_fn] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4307), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_STAR] = ACTIONS(4307), - [anon_sym_struct] = ACTIONS(4307), - [anon_sym_union] = ACTIONS(4307), - [anon_sym_pub] = ACTIONS(4307), - [anon_sym_mut] = ACTIONS(4307), - [anon_sym_enum] = ACTIONS(4307), - [anon_sym_interface] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4307), - [anon_sym_go] = ACTIONS(4307), - [anon_sym_spawn] = ACTIONS(4307), - [anon_sym_json_DOTdecode] = ACTIONS(4307), - [anon_sym_LBRACK2] = ACTIONS(4307), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_AMP] = ACTIONS(4307), - [anon_sym_LT_DASH] = ACTIONS(4307), - [sym_none] = ACTIONS(4307), - [sym_true] = ACTIONS(4307), - [sym_false] = ACTIONS(4307), - [sym_nil] = ACTIONS(4307), - [anon_sym_if] = ACTIONS(4307), - [anon_sym_DOLLARif] = ACTIONS(4307), - [anon_sym_match] = ACTIONS(4307), - [anon_sym_select] = ACTIONS(4307), - [anon_sym_lock] = ACTIONS(4307), - [anon_sym_rlock] = ACTIONS(4307), - [anon_sym_unsafe] = ACTIONS(4307), - [anon_sym_sql] = ACTIONS(4307), - [sym_int_literal] = ACTIONS(4307), - [sym_float_literal] = ACTIONS(4307), - [sym_rune_literal] = ACTIONS(4307), - [sym_pseudo_compile_time_identifier] = ACTIONS(4307), - [anon_sym_shared] = ACTIONS(4307), - [anon_sym_map_LBRACK] = ACTIONS(4307), - [anon_sym_chan] = ACTIONS(4307), - [anon_sym_thread] = ACTIONS(4307), - [anon_sym_atomic] = ACTIONS(4307), - [anon_sym_assert] = ACTIONS(4307), - [anon_sym_defer] = ACTIONS(4307), - [anon_sym_goto] = ACTIONS(4307), - [anon_sym_break] = ACTIONS(4307), - [anon_sym_continue] = ACTIONS(4307), - [anon_sym_return] = ACTIONS(4307), - [anon_sym_DOLLARfor] = ACTIONS(4307), - [anon_sym_for] = ACTIONS(4307), - [anon_sym_POUND] = ACTIONS(4307), - [anon_sym_asm] = ACTIONS(4307), - [anon_sym_AT_LBRACK] = ACTIONS(4307), - [sym___double_quote] = ACTIONS(4307), - [sym___single_quote] = ACTIONS(4307), - [sym___c_double_quote] = ACTIONS(4307), - [sym___c_single_quote] = ACTIONS(4307), - [sym___r_double_quote] = ACTIONS(4307), - [sym___r_single_quote] = ACTIONS(4307), + [sym_block_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4309), + [anon_sym_CR] = ACTIONS(4309), + [anon_sym_CR_LF] = ACTIONS(4309), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym___global] = ACTIONS(4309), + [anon_sym_type] = ACTIONS(4309), + [anon_sym_fn] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_pub] = ACTIONS(4309), + [anon_sym_mut] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_interface] = ACTIONS(4309), + [anon_sym_QMARK] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4309), + [anon_sym_go] = ACTIONS(4309), + [anon_sym_spawn] = ACTIONS(4309), + [anon_sym_json_DOTdecode] = ACTIONS(4309), + [anon_sym_LBRACK2] = ACTIONS(4309), + [anon_sym_TILDE] = ACTIONS(4309), + [anon_sym_CARET] = ACTIONS(4309), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_LT_DASH] = ACTIONS(4309), + [sym_none] = ACTIONS(4309), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [sym_nil] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_DOLLARif] = ACTIONS(4309), + [anon_sym_match] = ACTIONS(4309), + [anon_sym_select] = ACTIONS(4309), + [anon_sym_lock] = ACTIONS(4309), + [anon_sym_rlock] = ACTIONS(4309), + [anon_sym_unsafe] = ACTIONS(4309), + [anon_sym_sql] = ACTIONS(4309), + [sym_int_literal] = ACTIONS(4309), + [sym_float_literal] = ACTIONS(4309), + [sym_rune_literal] = ACTIONS(4309), + [sym_pseudo_compile_time_identifier] = ACTIONS(4309), + [anon_sym_shared] = ACTIONS(4309), + [anon_sym_map_LBRACK] = ACTIONS(4309), + [anon_sym_chan] = ACTIONS(4309), + [anon_sym_thread] = ACTIONS(4309), + [anon_sym_atomic] = ACTIONS(4309), + [anon_sym_assert] = ACTIONS(4309), + [anon_sym_defer] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_DOLLARfor] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_POUND] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym_AT_LBRACK] = ACTIONS(4309), + [sym___double_quote] = ACTIONS(4309), + [sym___single_quote] = ACTIONS(4309), + [sym___c_double_quote] = ACTIONS(4309), + [sym___c_single_quote] = ACTIONS(4309), + [sym___r_double_quote] = ACTIONS(4309), + [sym___r_single_quote] = ACTIONS(4309), }, [1550] = { [sym_line_comment] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(4309), - [sym_identifier] = ACTIONS(4311), - [anon_sym_LF] = ACTIONS(4311), - [anon_sym_CR] = ACTIONS(4311), - [anon_sym_CR_LF] = ACTIONS(4311), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_const] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym___global] = ACTIONS(4311), - [anon_sym_type] = ACTIONS(4311), - [anon_sym_fn] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_struct] = ACTIONS(4311), - [anon_sym_union] = ACTIONS(4311), - [anon_sym_pub] = ACTIONS(4311), - [anon_sym_mut] = ACTIONS(4311), - [anon_sym_enum] = ACTIONS(4311), - [anon_sym_interface] = ACTIONS(4311), - [anon_sym_QMARK] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_go] = ACTIONS(4311), - [anon_sym_spawn] = ACTIONS(4311), - [anon_sym_json_DOTdecode] = ACTIONS(4311), - [anon_sym_LBRACK2] = ACTIONS(4311), - [anon_sym_TILDE] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_LT_DASH] = ACTIONS(4311), - [sym_none] = ACTIONS(4311), - [sym_true] = ACTIONS(4311), - [sym_false] = ACTIONS(4311), - [sym_nil] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(4311), - [anon_sym_DOLLARif] = ACTIONS(4311), - [anon_sym_match] = ACTIONS(4311), - [anon_sym_select] = ACTIONS(4311), - [anon_sym_lock] = ACTIONS(4311), - [anon_sym_rlock] = ACTIONS(4311), - [anon_sym_unsafe] = ACTIONS(4311), - [anon_sym_sql] = ACTIONS(4311), - [sym_int_literal] = ACTIONS(4311), - [sym_float_literal] = ACTIONS(4311), - [sym_rune_literal] = ACTIONS(4311), - [sym_pseudo_compile_time_identifier] = ACTIONS(4311), - [anon_sym_shared] = ACTIONS(4311), - [anon_sym_map_LBRACK] = ACTIONS(4311), - [anon_sym_chan] = ACTIONS(4311), - [anon_sym_thread] = ACTIONS(4311), - [anon_sym_atomic] = ACTIONS(4311), - [anon_sym_assert] = ACTIONS(4311), - [anon_sym_defer] = ACTIONS(4311), - [anon_sym_goto] = ACTIONS(4311), - [anon_sym_break] = ACTIONS(4311), - [anon_sym_continue] = ACTIONS(4311), - [anon_sym_return] = ACTIONS(4311), - [anon_sym_DOLLARfor] = ACTIONS(4311), - [anon_sym_for] = ACTIONS(4311), - [anon_sym_POUND] = ACTIONS(4311), - [anon_sym_asm] = ACTIONS(4311), - [anon_sym_AT_LBRACK] = ACTIONS(4311), - [sym___double_quote] = ACTIONS(4311), - [sym___single_quote] = ACTIONS(4311), - [sym___c_double_quote] = ACTIONS(4311), - [sym___c_single_quote] = ACTIONS(4311), - [sym___r_double_quote] = ACTIONS(4311), - [sym___r_single_quote] = ACTIONS(4311), + [sym_block_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(4311), + [sym_identifier] = ACTIONS(4313), + [anon_sym_LF] = ACTIONS(4313), + [anon_sym_CR] = ACTIONS(4313), + [anon_sym_CR_LF] = ACTIONS(4313), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym___global] = ACTIONS(4313), + [anon_sym_type] = ACTIONS(4313), + [anon_sym_fn] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_pub] = ACTIONS(4313), + [anon_sym_mut] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_interface] = ACTIONS(4313), + [anon_sym_QMARK] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_go] = ACTIONS(4313), + [anon_sym_spawn] = ACTIONS(4313), + [anon_sym_json_DOTdecode] = ACTIONS(4313), + [anon_sym_LBRACK2] = ACTIONS(4313), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_CARET] = ACTIONS(4313), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_LT_DASH] = ACTIONS(4313), + [sym_none] = ACTIONS(4313), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [sym_nil] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_DOLLARif] = ACTIONS(4313), + [anon_sym_match] = ACTIONS(4313), + [anon_sym_select] = ACTIONS(4313), + [anon_sym_lock] = ACTIONS(4313), + [anon_sym_rlock] = ACTIONS(4313), + [anon_sym_unsafe] = ACTIONS(4313), + [anon_sym_sql] = ACTIONS(4313), + [sym_int_literal] = ACTIONS(4313), + [sym_float_literal] = ACTIONS(4313), + [sym_rune_literal] = ACTIONS(4313), + [sym_pseudo_compile_time_identifier] = ACTIONS(4313), + [anon_sym_shared] = ACTIONS(4313), + [anon_sym_map_LBRACK] = ACTIONS(4313), + [anon_sym_chan] = ACTIONS(4313), + [anon_sym_thread] = ACTIONS(4313), + [anon_sym_atomic] = ACTIONS(4313), + [anon_sym_assert] = ACTIONS(4313), + [anon_sym_defer] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_DOLLARfor] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_POUND] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym_AT_LBRACK] = ACTIONS(4313), + [sym___double_quote] = ACTIONS(4313), + [sym___single_quote] = ACTIONS(4313), + [sym___c_double_quote] = ACTIONS(4313), + [sym___c_single_quote] = ACTIONS(4313), + [sym___r_double_quote] = ACTIONS(4313), + [sym___r_single_quote] = ACTIONS(4313), }, [1551] = { [sym_line_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4313), - [sym_identifier] = ACTIONS(4315), - [anon_sym_LF] = ACTIONS(4315), - [anon_sym_CR] = ACTIONS(4315), - [anon_sym_CR_LF] = ACTIONS(4315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4315), - [anon_sym_const] = ACTIONS(4315), - [anon_sym_LPAREN] = ACTIONS(4315), - [anon_sym___global] = ACTIONS(4315), - [anon_sym_type] = ACTIONS(4315), - [anon_sym_fn] = ACTIONS(4315), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [anon_sym_struct] = ACTIONS(4315), - [anon_sym_union] = ACTIONS(4315), - [anon_sym_pub] = ACTIONS(4315), - [anon_sym_mut] = ACTIONS(4315), - [anon_sym_enum] = ACTIONS(4315), - [anon_sym_interface] = ACTIONS(4315), - [anon_sym_QMARK] = ACTIONS(4315), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_go] = ACTIONS(4315), - [anon_sym_spawn] = ACTIONS(4315), - [anon_sym_json_DOTdecode] = ACTIONS(4315), - [anon_sym_LBRACK2] = ACTIONS(4315), - [anon_sym_TILDE] = ACTIONS(4315), - [anon_sym_CARET] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4315), - [anon_sym_LT_DASH] = ACTIONS(4315), - [sym_none] = ACTIONS(4315), - [sym_true] = ACTIONS(4315), - [sym_false] = ACTIONS(4315), - [sym_nil] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_DOLLARif] = ACTIONS(4315), - [anon_sym_match] = ACTIONS(4315), - [anon_sym_select] = ACTIONS(4315), - [anon_sym_lock] = ACTIONS(4315), - [anon_sym_rlock] = ACTIONS(4315), - [anon_sym_unsafe] = ACTIONS(4315), - [anon_sym_sql] = ACTIONS(4315), - [sym_int_literal] = ACTIONS(4315), - [sym_float_literal] = ACTIONS(4315), - [sym_rune_literal] = ACTIONS(4315), - [sym_pseudo_compile_time_identifier] = ACTIONS(4315), - [anon_sym_shared] = ACTIONS(4315), - [anon_sym_map_LBRACK] = ACTIONS(4315), - [anon_sym_chan] = ACTIONS(4315), - [anon_sym_thread] = ACTIONS(4315), - [anon_sym_atomic] = ACTIONS(4315), - [anon_sym_assert] = ACTIONS(4315), - [anon_sym_defer] = ACTIONS(4315), - [anon_sym_goto] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_DOLLARfor] = ACTIONS(4315), - [anon_sym_for] = ACTIONS(4315), - [anon_sym_POUND] = ACTIONS(4315), - [anon_sym_asm] = ACTIONS(4315), - [anon_sym_AT_LBRACK] = ACTIONS(4315), - [sym___double_quote] = ACTIONS(4315), - [sym___single_quote] = ACTIONS(4315), - [sym___c_double_quote] = ACTIONS(4315), - [sym___c_single_quote] = ACTIONS(4315), - [sym___r_double_quote] = ACTIONS(4315), - [sym___r_single_quote] = ACTIONS(4315), + [sym_block_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(4315), + [sym_identifier] = ACTIONS(4317), + [anon_sym_LF] = ACTIONS(4317), + [anon_sym_CR] = ACTIONS(4317), + [anon_sym_CR_LF] = ACTIONS(4317), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_LPAREN] = ACTIONS(4317), + [anon_sym___global] = ACTIONS(4317), + [anon_sym_type] = ACTIONS(4317), + [anon_sym_fn] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_pub] = ACTIONS(4317), + [anon_sym_mut] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_interface] = ACTIONS(4317), + [anon_sym_QMARK] = ACTIONS(4317), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_go] = ACTIONS(4317), + [anon_sym_spawn] = ACTIONS(4317), + [anon_sym_json_DOTdecode] = ACTIONS(4317), + [anon_sym_LBRACK2] = ACTIONS(4317), + [anon_sym_TILDE] = ACTIONS(4317), + [anon_sym_CARET] = ACTIONS(4317), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_LT_DASH] = ACTIONS(4317), + [sym_none] = ACTIONS(4317), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [sym_nil] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_DOLLARif] = ACTIONS(4317), + [anon_sym_match] = ACTIONS(4317), + [anon_sym_select] = ACTIONS(4317), + [anon_sym_lock] = ACTIONS(4317), + [anon_sym_rlock] = ACTIONS(4317), + [anon_sym_unsafe] = ACTIONS(4317), + [anon_sym_sql] = ACTIONS(4317), + [sym_int_literal] = ACTIONS(4317), + [sym_float_literal] = ACTIONS(4317), + [sym_rune_literal] = ACTIONS(4317), + [sym_pseudo_compile_time_identifier] = ACTIONS(4317), + [anon_sym_shared] = ACTIONS(4317), + [anon_sym_map_LBRACK] = ACTIONS(4317), + [anon_sym_chan] = ACTIONS(4317), + [anon_sym_thread] = ACTIONS(4317), + [anon_sym_atomic] = ACTIONS(4317), + [anon_sym_assert] = ACTIONS(4317), + [anon_sym_defer] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_DOLLARfor] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_POUND] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym_AT_LBRACK] = ACTIONS(4317), + [sym___double_quote] = ACTIONS(4317), + [sym___single_quote] = ACTIONS(4317), + [sym___c_double_quote] = ACTIONS(4317), + [sym___c_single_quote] = ACTIONS(4317), + [sym___r_double_quote] = ACTIONS(4317), + [sym___r_single_quote] = ACTIONS(4317), }, [1552] = { [sym_line_comment] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(4317), - [sym_identifier] = ACTIONS(4319), - [anon_sym_LF] = ACTIONS(4319), - [anon_sym_CR] = ACTIONS(4319), - [anon_sym_CR_LF] = ACTIONS(4319), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4319), - [anon_sym_LBRACE] = ACTIONS(4319), - [anon_sym_const] = ACTIONS(4319), - [anon_sym_LPAREN] = ACTIONS(4319), - [anon_sym___global] = ACTIONS(4319), - [anon_sym_type] = ACTIONS(4319), - [anon_sym_fn] = ACTIONS(4319), - [anon_sym_PLUS] = ACTIONS(4319), - [anon_sym_DASH] = ACTIONS(4319), - [anon_sym_STAR] = ACTIONS(4319), - [anon_sym_struct] = ACTIONS(4319), - [anon_sym_union] = ACTIONS(4319), - [anon_sym_pub] = ACTIONS(4319), - [anon_sym_mut] = ACTIONS(4319), - [anon_sym_enum] = ACTIONS(4319), - [anon_sym_interface] = ACTIONS(4319), - [anon_sym_QMARK] = ACTIONS(4319), - [anon_sym_BANG] = ACTIONS(4319), - [anon_sym_go] = ACTIONS(4319), - [anon_sym_spawn] = ACTIONS(4319), - [anon_sym_json_DOTdecode] = ACTIONS(4319), - [anon_sym_LBRACK2] = ACTIONS(4319), - [anon_sym_TILDE] = ACTIONS(4319), - [anon_sym_CARET] = ACTIONS(4319), - [anon_sym_AMP] = ACTIONS(4319), - [anon_sym_LT_DASH] = ACTIONS(4319), - [sym_none] = ACTIONS(4319), - [sym_true] = ACTIONS(4319), - [sym_false] = ACTIONS(4319), - [sym_nil] = ACTIONS(4319), - [anon_sym_if] = ACTIONS(4319), - [anon_sym_DOLLARif] = ACTIONS(4319), - [anon_sym_match] = ACTIONS(4319), - [anon_sym_select] = ACTIONS(4319), - [anon_sym_lock] = ACTIONS(4319), - [anon_sym_rlock] = ACTIONS(4319), - [anon_sym_unsafe] = ACTIONS(4319), - [anon_sym_sql] = ACTIONS(4319), - [sym_int_literal] = ACTIONS(4319), - [sym_float_literal] = ACTIONS(4319), - [sym_rune_literal] = ACTIONS(4319), - [sym_pseudo_compile_time_identifier] = ACTIONS(4319), - [anon_sym_shared] = ACTIONS(4319), - [anon_sym_map_LBRACK] = ACTIONS(4319), - [anon_sym_chan] = ACTIONS(4319), - [anon_sym_thread] = ACTIONS(4319), - [anon_sym_atomic] = ACTIONS(4319), - [anon_sym_assert] = ACTIONS(4319), - [anon_sym_defer] = ACTIONS(4319), - [anon_sym_goto] = ACTIONS(4319), - [anon_sym_break] = ACTIONS(4319), - [anon_sym_continue] = ACTIONS(4319), - [anon_sym_return] = ACTIONS(4319), - [anon_sym_DOLLARfor] = ACTIONS(4319), - [anon_sym_for] = ACTIONS(4319), - [anon_sym_POUND] = ACTIONS(4319), - [anon_sym_asm] = ACTIONS(4319), - [anon_sym_AT_LBRACK] = ACTIONS(4319), - [sym___double_quote] = ACTIONS(4319), - [sym___single_quote] = ACTIONS(4319), - [sym___c_double_quote] = ACTIONS(4319), - [sym___c_single_quote] = ACTIONS(4319), - [sym___r_double_quote] = ACTIONS(4319), - [sym___r_single_quote] = ACTIONS(4319), + [sym_block_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(4319), + [sym_identifier] = ACTIONS(4321), + [anon_sym_LF] = ACTIONS(4321), + [anon_sym_CR] = ACTIONS(4321), + [anon_sym_CR_LF] = ACTIONS(4321), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4321), + [anon_sym___global] = ACTIONS(4321), + [anon_sym_type] = ACTIONS(4321), + [anon_sym_fn] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_pub] = ACTIONS(4321), + [anon_sym_mut] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_interface] = ACTIONS(4321), + [anon_sym_QMARK] = ACTIONS(4321), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_go] = ACTIONS(4321), + [anon_sym_spawn] = ACTIONS(4321), + [anon_sym_json_DOTdecode] = ACTIONS(4321), + [anon_sym_LBRACK2] = ACTIONS(4321), + [anon_sym_TILDE] = ACTIONS(4321), + [anon_sym_CARET] = ACTIONS(4321), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_LT_DASH] = ACTIONS(4321), + [sym_none] = ACTIONS(4321), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [sym_nil] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_DOLLARif] = ACTIONS(4321), + [anon_sym_match] = ACTIONS(4321), + [anon_sym_select] = ACTIONS(4321), + [anon_sym_lock] = ACTIONS(4321), + [anon_sym_rlock] = ACTIONS(4321), + [anon_sym_unsafe] = ACTIONS(4321), + [anon_sym_sql] = ACTIONS(4321), + [sym_int_literal] = ACTIONS(4321), + [sym_float_literal] = ACTIONS(4321), + [sym_rune_literal] = ACTIONS(4321), + [sym_pseudo_compile_time_identifier] = ACTIONS(4321), + [anon_sym_shared] = ACTIONS(4321), + [anon_sym_map_LBRACK] = ACTIONS(4321), + [anon_sym_chan] = ACTIONS(4321), + [anon_sym_thread] = ACTIONS(4321), + [anon_sym_atomic] = ACTIONS(4321), + [anon_sym_assert] = ACTIONS(4321), + [anon_sym_defer] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_DOLLARfor] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_POUND] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym_AT_LBRACK] = ACTIONS(4321), + [sym___double_quote] = ACTIONS(4321), + [sym___single_quote] = ACTIONS(4321), + [sym___c_double_quote] = ACTIONS(4321), + [sym___c_single_quote] = ACTIONS(4321), + [sym___r_double_quote] = ACTIONS(4321), + [sym___r_single_quote] = ACTIONS(4321), }, [1553] = { [sym_line_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(4321), - [sym_identifier] = ACTIONS(4323), - [anon_sym_LF] = ACTIONS(4323), - [anon_sym_CR] = ACTIONS(4323), - [anon_sym_CR_LF] = ACTIONS(4323), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_const] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym___global] = ACTIONS(4323), - [anon_sym_type] = ACTIONS(4323), - [anon_sym_fn] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4323), - [anon_sym_DASH] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_struct] = ACTIONS(4323), - [anon_sym_union] = ACTIONS(4323), - [anon_sym_pub] = ACTIONS(4323), - [anon_sym_mut] = ACTIONS(4323), - [anon_sym_enum] = ACTIONS(4323), - [anon_sym_interface] = ACTIONS(4323), - [anon_sym_QMARK] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4323), - [anon_sym_go] = ACTIONS(4323), - [anon_sym_spawn] = ACTIONS(4323), - [anon_sym_json_DOTdecode] = ACTIONS(4323), - [anon_sym_LBRACK2] = ACTIONS(4323), - [anon_sym_TILDE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4323), - [anon_sym_AMP] = ACTIONS(4323), - [anon_sym_LT_DASH] = ACTIONS(4323), - [sym_none] = ACTIONS(4323), - [sym_true] = ACTIONS(4323), - [sym_false] = ACTIONS(4323), - [sym_nil] = ACTIONS(4323), - [anon_sym_if] = ACTIONS(4323), - [anon_sym_DOLLARif] = ACTIONS(4323), - [anon_sym_match] = ACTIONS(4323), - [anon_sym_select] = ACTIONS(4323), - [anon_sym_lock] = ACTIONS(4323), - [anon_sym_rlock] = ACTIONS(4323), - [anon_sym_unsafe] = ACTIONS(4323), - [anon_sym_sql] = ACTIONS(4323), - [sym_int_literal] = ACTIONS(4323), - [sym_float_literal] = ACTIONS(4323), - [sym_rune_literal] = ACTIONS(4323), - [sym_pseudo_compile_time_identifier] = ACTIONS(4323), - [anon_sym_shared] = ACTIONS(4323), - [anon_sym_map_LBRACK] = ACTIONS(4323), - [anon_sym_chan] = ACTIONS(4323), - [anon_sym_thread] = ACTIONS(4323), - [anon_sym_atomic] = ACTIONS(4323), - [anon_sym_assert] = ACTIONS(4323), - [anon_sym_defer] = ACTIONS(4323), - [anon_sym_goto] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_continue] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_DOLLARfor] = ACTIONS(4323), - [anon_sym_for] = ACTIONS(4323), - [anon_sym_POUND] = ACTIONS(4323), - [anon_sym_asm] = ACTIONS(4323), - [anon_sym_AT_LBRACK] = ACTIONS(4323), - [sym___double_quote] = ACTIONS(4323), - [sym___single_quote] = ACTIONS(4323), - [sym___c_double_quote] = ACTIONS(4323), - [sym___c_single_quote] = ACTIONS(4323), - [sym___r_double_quote] = ACTIONS(4323), - [sym___r_single_quote] = ACTIONS(4323), + [sym_block_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(4323), + [sym_identifier] = ACTIONS(4325), + [anon_sym_LF] = ACTIONS(4325), + [anon_sym_CR] = ACTIONS(4325), + [anon_sym_CR_LF] = ACTIONS(4325), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym___global] = ACTIONS(4325), + [anon_sym_type] = ACTIONS(4325), + [anon_sym_fn] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_pub] = ACTIONS(4325), + [anon_sym_mut] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_interface] = ACTIONS(4325), + [anon_sym_QMARK] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_go] = ACTIONS(4325), + [anon_sym_spawn] = ACTIONS(4325), + [anon_sym_json_DOTdecode] = ACTIONS(4325), + [anon_sym_LBRACK2] = ACTIONS(4325), + [anon_sym_TILDE] = ACTIONS(4325), + [anon_sym_CARET] = ACTIONS(4325), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_LT_DASH] = ACTIONS(4325), + [sym_none] = ACTIONS(4325), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [sym_nil] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_DOLLARif] = ACTIONS(4325), + [anon_sym_match] = ACTIONS(4325), + [anon_sym_select] = ACTIONS(4325), + [anon_sym_lock] = ACTIONS(4325), + [anon_sym_rlock] = ACTIONS(4325), + [anon_sym_unsafe] = ACTIONS(4325), + [anon_sym_sql] = ACTIONS(4325), + [sym_int_literal] = ACTIONS(4325), + [sym_float_literal] = ACTIONS(4325), + [sym_rune_literal] = ACTIONS(4325), + [sym_pseudo_compile_time_identifier] = ACTIONS(4325), + [anon_sym_shared] = ACTIONS(4325), + [anon_sym_map_LBRACK] = ACTIONS(4325), + [anon_sym_chan] = ACTIONS(4325), + [anon_sym_thread] = ACTIONS(4325), + [anon_sym_atomic] = ACTIONS(4325), + [anon_sym_assert] = ACTIONS(4325), + [anon_sym_defer] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_DOLLARfor] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_POUND] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym_AT_LBRACK] = ACTIONS(4325), + [sym___double_quote] = ACTIONS(4325), + [sym___single_quote] = ACTIONS(4325), + [sym___c_double_quote] = ACTIONS(4325), + [sym___c_single_quote] = ACTIONS(4325), + [sym___r_double_quote] = ACTIONS(4325), + [sym___r_single_quote] = ACTIONS(4325), }, [1554] = { [sym_line_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(4325), - [sym_identifier] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(4327), - [anon_sym_CR] = ACTIONS(4327), - [anon_sym_CR_LF] = ACTIONS(4327), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_const] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym___global] = ACTIONS(4327), - [anon_sym_type] = ACTIONS(4327), - [anon_sym_fn] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_struct] = ACTIONS(4327), - [anon_sym_union] = ACTIONS(4327), - [anon_sym_pub] = ACTIONS(4327), - [anon_sym_mut] = ACTIONS(4327), - [anon_sym_enum] = ACTIONS(4327), - [anon_sym_interface] = ACTIONS(4327), - [anon_sym_QMARK] = ACTIONS(4327), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_go] = ACTIONS(4327), - [anon_sym_spawn] = ACTIONS(4327), - [anon_sym_json_DOTdecode] = ACTIONS(4327), - [anon_sym_LBRACK2] = ACTIONS(4327), - [anon_sym_TILDE] = ACTIONS(4327), - [anon_sym_CARET] = ACTIONS(4327), - [anon_sym_AMP] = ACTIONS(4327), - [anon_sym_LT_DASH] = ACTIONS(4327), - [sym_none] = ACTIONS(4327), - [sym_true] = ACTIONS(4327), - [sym_false] = ACTIONS(4327), - [sym_nil] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_DOLLARif] = ACTIONS(4327), - [anon_sym_match] = ACTIONS(4327), - [anon_sym_select] = ACTIONS(4327), - [anon_sym_lock] = ACTIONS(4327), - [anon_sym_rlock] = ACTIONS(4327), - [anon_sym_unsafe] = ACTIONS(4327), - [anon_sym_sql] = ACTIONS(4327), - [sym_int_literal] = ACTIONS(4327), - [sym_float_literal] = ACTIONS(4327), - [sym_rune_literal] = ACTIONS(4327), - [sym_pseudo_compile_time_identifier] = ACTIONS(4327), - [anon_sym_shared] = ACTIONS(4327), - [anon_sym_map_LBRACK] = ACTIONS(4327), - [anon_sym_chan] = ACTIONS(4327), - [anon_sym_thread] = ACTIONS(4327), - [anon_sym_atomic] = ACTIONS(4327), - [anon_sym_assert] = ACTIONS(4327), - [anon_sym_defer] = ACTIONS(4327), - [anon_sym_goto] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_DOLLARfor] = ACTIONS(4327), - [anon_sym_for] = ACTIONS(4327), - [anon_sym_POUND] = ACTIONS(4327), - [anon_sym_asm] = ACTIONS(4327), - [anon_sym_AT_LBRACK] = ACTIONS(4327), - [sym___double_quote] = ACTIONS(4327), - [sym___single_quote] = ACTIONS(4327), - [sym___c_double_quote] = ACTIONS(4327), - [sym___c_single_quote] = ACTIONS(4327), - [sym___r_double_quote] = ACTIONS(4327), - [sym___r_single_quote] = ACTIONS(4327), + [sym_block_comment] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_LF] = ACTIONS(2703), + [anon_sym_CR] = ACTIONS(2703), + [anon_sym_CR_LF] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym___global] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_PLUS] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_mut] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_interface] = ACTIONS(2703), + [anon_sym_QMARK] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_go] = ACTIONS(2703), + [anon_sym_spawn] = ACTIONS(2703), + [anon_sym_json_DOTdecode] = ACTIONS(2703), + [anon_sym_LBRACK2] = ACTIONS(2703), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_LT_DASH] = ACTIONS(2703), + [sym_none] = ACTIONS(2703), + [sym_true] = ACTIONS(2703), + [sym_false] = ACTIONS(2703), + [sym_nil] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_DOLLARif] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_select] = ACTIONS(2703), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_sql] = ACTIONS(2703), + [sym_int_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + [sym_rune_literal] = ACTIONS(2703), + [sym_pseudo_compile_time_identifier] = ACTIONS(2703), + [anon_sym_shared] = ACTIONS(2703), + [anon_sym_map_LBRACK] = ACTIONS(2703), + [anon_sym_chan] = ACTIONS(2703), + [anon_sym_thread] = ACTIONS(2703), + [anon_sym_atomic] = ACTIONS(2703), + [anon_sym_assert] = ACTIONS(2703), + [anon_sym_defer] = ACTIONS(2703), + [anon_sym_goto] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_DOLLARfor] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_asm] = ACTIONS(2703), + [anon_sym_AT_LBRACK] = ACTIONS(2703), + [sym___double_quote] = ACTIONS(2703), + [sym___single_quote] = ACTIONS(2703), + [sym___c_double_quote] = ACTIONS(2703), + [sym___c_single_quote] = ACTIONS(2703), + [sym___r_double_quote] = ACTIONS(2703), + [sym___r_single_quote] = ACTIONS(2703), }, [1555] = { [sym_line_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(4329), - [sym_identifier] = ACTIONS(4331), - [anon_sym_LF] = ACTIONS(4331), - [anon_sym_CR] = ACTIONS(4331), - [anon_sym_CR_LF] = ACTIONS(4331), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_const] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym___global] = ACTIONS(4331), - [anon_sym_type] = ACTIONS(4331), - [anon_sym_fn] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_struct] = ACTIONS(4331), - [anon_sym_union] = ACTIONS(4331), - [anon_sym_pub] = ACTIONS(4331), - [anon_sym_mut] = ACTIONS(4331), - [anon_sym_enum] = ACTIONS(4331), - [anon_sym_interface] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4331), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_go] = ACTIONS(4331), - [anon_sym_spawn] = ACTIONS(4331), - [anon_sym_json_DOTdecode] = ACTIONS(4331), - [anon_sym_LBRACK2] = ACTIONS(4331), - [anon_sym_TILDE] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_LT_DASH] = ACTIONS(4331), - [sym_none] = ACTIONS(4331), - [sym_true] = ACTIONS(4331), - [sym_false] = ACTIONS(4331), - [sym_nil] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_DOLLARif] = ACTIONS(4331), - [anon_sym_match] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_lock] = ACTIONS(4331), - [anon_sym_rlock] = ACTIONS(4331), - [anon_sym_unsafe] = ACTIONS(4331), - [anon_sym_sql] = ACTIONS(4331), - [sym_int_literal] = ACTIONS(4331), - [sym_float_literal] = ACTIONS(4331), - [sym_rune_literal] = ACTIONS(4331), - [sym_pseudo_compile_time_identifier] = ACTIONS(4331), - [anon_sym_shared] = ACTIONS(4331), - [anon_sym_map_LBRACK] = ACTIONS(4331), - [anon_sym_chan] = ACTIONS(4331), - [anon_sym_thread] = ACTIONS(4331), - [anon_sym_atomic] = ACTIONS(4331), - [anon_sym_assert] = ACTIONS(4331), - [anon_sym_defer] = ACTIONS(4331), - [anon_sym_goto] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_DOLLARfor] = ACTIONS(4331), - [anon_sym_for] = ACTIONS(4331), - [anon_sym_POUND] = ACTIONS(4331), - [anon_sym_asm] = ACTIONS(4331), - [anon_sym_AT_LBRACK] = ACTIONS(4331), - [sym___double_quote] = ACTIONS(4331), - [sym___single_quote] = ACTIONS(4331), - [sym___c_double_quote] = ACTIONS(4331), - [sym___c_single_quote] = ACTIONS(4331), - [sym___r_double_quote] = ACTIONS(4331), - [sym___r_single_quote] = ACTIONS(4331), + [sym_block_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(4327), + [sym_identifier] = ACTIONS(4329), + [anon_sym_LF] = ACTIONS(4329), + [anon_sym_CR] = ACTIONS(4329), + [anon_sym_CR_LF] = ACTIONS(4329), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4329), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_const] = ACTIONS(4329), + [anon_sym_LPAREN] = ACTIONS(4329), + [anon_sym___global] = ACTIONS(4329), + [anon_sym_type] = ACTIONS(4329), + [anon_sym_fn] = ACTIONS(4329), + [anon_sym_PLUS] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_struct] = ACTIONS(4329), + [anon_sym_union] = ACTIONS(4329), + [anon_sym_pub] = ACTIONS(4329), + [anon_sym_mut] = ACTIONS(4329), + [anon_sym_enum] = ACTIONS(4329), + [anon_sym_interface] = ACTIONS(4329), + [anon_sym_QMARK] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_go] = ACTIONS(4329), + [anon_sym_spawn] = ACTIONS(4329), + [anon_sym_json_DOTdecode] = ACTIONS(4329), + [anon_sym_LBRACK2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_CARET] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4329), + [anon_sym_LT_DASH] = ACTIONS(4329), + [sym_none] = ACTIONS(4329), + [sym_true] = ACTIONS(4329), + [sym_false] = ACTIONS(4329), + [sym_nil] = ACTIONS(4329), + [anon_sym_if] = ACTIONS(4329), + [anon_sym_DOLLARif] = ACTIONS(4329), + [anon_sym_match] = ACTIONS(4329), + [anon_sym_select] = ACTIONS(4329), + [anon_sym_lock] = ACTIONS(4329), + [anon_sym_rlock] = ACTIONS(4329), + [anon_sym_unsafe] = ACTIONS(4329), + [anon_sym_sql] = ACTIONS(4329), + [sym_int_literal] = ACTIONS(4329), + [sym_float_literal] = ACTIONS(4329), + [sym_rune_literal] = ACTIONS(4329), + [sym_pseudo_compile_time_identifier] = ACTIONS(4329), + [anon_sym_shared] = ACTIONS(4329), + [anon_sym_map_LBRACK] = ACTIONS(4329), + [anon_sym_chan] = ACTIONS(4329), + [anon_sym_thread] = ACTIONS(4329), + [anon_sym_atomic] = ACTIONS(4329), + [anon_sym_assert] = ACTIONS(4329), + [anon_sym_defer] = ACTIONS(4329), + [anon_sym_goto] = ACTIONS(4329), + [anon_sym_break] = ACTIONS(4329), + [anon_sym_continue] = ACTIONS(4329), + [anon_sym_return] = ACTIONS(4329), + [anon_sym_DOLLARfor] = ACTIONS(4329), + [anon_sym_for] = ACTIONS(4329), + [anon_sym_POUND] = ACTIONS(4329), + [anon_sym_asm] = ACTIONS(4329), + [anon_sym_AT_LBRACK] = ACTIONS(4329), + [sym___double_quote] = ACTIONS(4329), + [sym___single_quote] = ACTIONS(4329), + [sym___c_double_quote] = ACTIONS(4329), + [sym___c_single_quote] = ACTIONS(4329), + [sym___r_double_quote] = ACTIONS(4329), + [sym___r_single_quote] = ACTIONS(4329), }, [1556] = { [sym_line_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(4333), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LF] = ACTIONS(4335), - [anon_sym_CR] = ACTIONS(4335), - [anon_sym_CR_LF] = ACTIONS(4335), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_const] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym___global] = ACTIONS(4335), - [anon_sym_type] = ACTIONS(4335), - [anon_sym_fn] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [anon_sym_struct] = ACTIONS(4335), - [anon_sym_union] = ACTIONS(4335), - [anon_sym_pub] = ACTIONS(4335), - [anon_sym_mut] = ACTIONS(4335), - [anon_sym_enum] = ACTIONS(4335), - [anon_sym_interface] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_go] = ACTIONS(4335), - [anon_sym_spawn] = ACTIONS(4335), - [anon_sym_json_DOTdecode] = ACTIONS(4335), - [anon_sym_LBRACK2] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_DASH] = ACTIONS(4335), - [sym_none] = ACTIONS(4335), - [sym_true] = ACTIONS(4335), - [sym_false] = ACTIONS(4335), - [sym_nil] = ACTIONS(4335), - [anon_sym_if] = ACTIONS(4335), - [anon_sym_DOLLARif] = ACTIONS(4335), - [anon_sym_match] = ACTIONS(4335), - [anon_sym_select] = ACTIONS(4335), - [anon_sym_lock] = ACTIONS(4335), - [anon_sym_rlock] = ACTIONS(4335), - [anon_sym_unsafe] = ACTIONS(4335), - [anon_sym_sql] = ACTIONS(4335), - [sym_int_literal] = ACTIONS(4335), - [sym_float_literal] = ACTIONS(4335), - [sym_rune_literal] = ACTIONS(4335), - [sym_pseudo_compile_time_identifier] = ACTIONS(4335), - [anon_sym_shared] = ACTIONS(4335), - [anon_sym_map_LBRACK] = ACTIONS(4335), - [anon_sym_chan] = ACTIONS(4335), - [anon_sym_thread] = ACTIONS(4335), - [anon_sym_atomic] = ACTIONS(4335), - [anon_sym_assert] = ACTIONS(4335), - [anon_sym_defer] = ACTIONS(4335), - [anon_sym_goto] = ACTIONS(4335), - [anon_sym_break] = ACTIONS(4335), - [anon_sym_continue] = ACTIONS(4335), - [anon_sym_return] = ACTIONS(4335), - [anon_sym_DOLLARfor] = ACTIONS(4335), - [anon_sym_for] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_asm] = ACTIONS(4335), - [anon_sym_AT_LBRACK] = ACTIONS(4335), - [sym___double_quote] = ACTIONS(4335), - [sym___single_quote] = ACTIONS(4335), - [sym___c_double_quote] = ACTIONS(4335), - [sym___c_single_quote] = ACTIONS(4335), - [sym___r_double_quote] = ACTIONS(4335), - [sym___r_single_quote] = ACTIONS(4335), + [sym_block_comment] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(4331), + [sym_identifier] = ACTIONS(4333), + [anon_sym_LF] = ACTIONS(4333), + [anon_sym_CR] = ACTIONS(4333), + [anon_sym_CR_LF] = ACTIONS(4333), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4333), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_const] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym___global] = ACTIONS(4333), + [anon_sym_type] = ACTIONS(4333), + [anon_sym_fn] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_struct] = ACTIONS(4333), + [anon_sym_union] = ACTIONS(4333), + [anon_sym_pub] = ACTIONS(4333), + [anon_sym_mut] = ACTIONS(4333), + [anon_sym_enum] = ACTIONS(4333), + [anon_sym_interface] = ACTIONS(4333), + [anon_sym_QMARK] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_go] = ACTIONS(4333), + [anon_sym_spawn] = ACTIONS(4333), + [anon_sym_json_DOTdecode] = ACTIONS(4333), + [anon_sym_LBRACK2] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_CARET] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4333), + [anon_sym_LT_DASH] = ACTIONS(4333), + [sym_none] = ACTIONS(4333), + [sym_true] = ACTIONS(4333), + [sym_false] = ACTIONS(4333), + [sym_nil] = ACTIONS(4333), + [anon_sym_if] = ACTIONS(4333), + [anon_sym_DOLLARif] = ACTIONS(4333), + [anon_sym_match] = ACTIONS(4333), + [anon_sym_select] = ACTIONS(4333), + [anon_sym_lock] = ACTIONS(4333), + [anon_sym_rlock] = ACTIONS(4333), + [anon_sym_unsafe] = ACTIONS(4333), + [anon_sym_sql] = ACTIONS(4333), + [sym_int_literal] = ACTIONS(4333), + [sym_float_literal] = ACTIONS(4333), + [sym_rune_literal] = ACTIONS(4333), + [sym_pseudo_compile_time_identifier] = ACTIONS(4333), + [anon_sym_shared] = ACTIONS(4333), + [anon_sym_map_LBRACK] = ACTIONS(4333), + [anon_sym_chan] = ACTIONS(4333), + [anon_sym_thread] = ACTIONS(4333), + [anon_sym_atomic] = ACTIONS(4333), + [anon_sym_assert] = ACTIONS(4333), + [anon_sym_defer] = ACTIONS(4333), + [anon_sym_goto] = ACTIONS(4333), + [anon_sym_break] = ACTIONS(4333), + [anon_sym_continue] = ACTIONS(4333), + [anon_sym_return] = ACTIONS(4333), + [anon_sym_DOLLARfor] = ACTIONS(4333), + [anon_sym_for] = ACTIONS(4333), + [anon_sym_POUND] = ACTIONS(4333), + [anon_sym_asm] = ACTIONS(4333), + [anon_sym_AT_LBRACK] = ACTIONS(4333), + [sym___double_quote] = ACTIONS(4333), + [sym___single_quote] = ACTIONS(4333), + [sym___c_double_quote] = ACTIONS(4333), + [sym___c_single_quote] = ACTIONS(4333), + [sym___r_double_quote] = ACTIONS(4333), + [sym___r_single_quote] = ACTIONS(4333), }, [1557] = { [sym_line_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(4337), - [sym_identifier] = ACTIONS(4339), - [anon_sym_LF] = ACTIONS(4339), - [anon_sym_CR] = ACTIONS(4339), - [anon_sym_CR_LF] = ACTIONS(4339), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4339), - [anon_sym_const] = ACTIONS(4339), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym___global] = ACTIONS(4339), - [anon_sym_type] = ACTIONS(4339), - [anon_sym_fn] = ACTIONS(4339), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [anon_sym_struct] = ACTIONS(4339), - [anon_sym_union] = ACTIONS(4339), - [anon_sym_pub] = ACTIONS(4339), - [anon_sym_mut] = ACTIONS(4339), - [anon_sym_enum] = ACTIONS(4339), - [anon_sym_interface] = ACTIONS(4339), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_go] = ACTIONS(4339), - [anon_sym_spawn] = ACTIONS(4339), - [anon_sym_json_DOTdecode] = ACTIONS(4339), - [anon_sym_LBRACK2] = ACTIONS(4339), - [anon_sym_TILDE] = ACTIONS(4339), - [anon_sym_CARET] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_DASH] = ACTIONS(4339), - [sym_none] = ACTIONS(4339), - [sym_true] = ACTIONS(4339), - [sym_false] = ACTIONS(4339), - [sym_nil] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_DOLLARif] = ACTIONS(4339), - [anon_sym_match] = ACTIONS(4339), - [anon_sym_select] = ACTIONS(4339), - [anon_sym_lock] = ACTIONS(4339), - [anon_sym_rlock] = ACTIONS(4339), - [anon_sym_unsafe] = ACTIONS(4339), - [anon_sym_sql] = ACTIONS(4339), - [sym_int_literal] = ACTIONS(4339), - [sym_float_literal] = ACTIONS(4339), - [sym_rune_literal] = ACTIONS(4339), - [sym_pseudo_compile_time_identifier] = ACTIONS(4339), - [anon_sym_shared] = ACTIONS(4339), - [anon_sym_map_LBRACK] = ACTIONS(4339), - [anon_sym_chan] = ACTIONS(4339), - [anon_sym_thread] = ACTIONS(4339), - [anon_sym_atomic] = ACTIONS(4339), - [anon_sym_assert] = ACTIONS(4339), - [anon_sym_defer] = ACTIONS(4339), - [anon_sym_goto] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_DOLLARfor] = ACTIONS(4339), - [anon_sym_for] = ACTIONS(4339), - [anon_sym_POUND] = ACTIONS(4339), - [anon_sym_asm] = ACTIONS(4339), - [anon_sym_AT_LBRACK] = ACTIONS(4339), - [sym___double_quote] = ACTIONS(4339), - [sym___single_quote] = ACTIONS(4339), - [sym___c_double_quote] = ACTIONS(4339), - [sym___c_single_quote] = ACTIONS(4339), - [sym___r_double_quote] = ACTIONS(4339), - [sym___r_single_quote] = ACTIONS(4339), + [sym_block_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(4335), + [sym_identifier] = ACTIONS(4337), + [anon_sym_LF] = ACTIONS(4337), + [anon_sym_CR] = ACTIONS(4337), + [anon_sym_CR_LF] = ACTIONS(4337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4337), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_const] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym___global] = ACTIONS(4337), + [anon_sym_type] = ACTIONS(4337), + [anon_sym_fn] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_struct] = ACTIONS(4337), + [anon_sym_union] = ACTIONS(4337), + [anon_sym_pub] = ACTIONS(4337), + [anon_sym_mut] = ACTIONS(4337), + [anon_sym_enum] = ACTIONS(4337), + [anon_sym_interface] = ACTIONS(4337), + [anon_sym_QMARK] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_go] = ACTIONS(4337), + [anon_sym_spawn] = ACTIONS(4337), + [anon_sym_json_DOTdecode] = ACTIONS(4337), + [anon_sym_LBRACK2] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_CARET] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT_DASH] = ACTIONS(4337), + [sym_none] = ACTIONS(4337), + [sym_true] = ACTIONS(4337), + [sym_false] = ACTIONS(4337), + [sym_nil] = ACTIONS(4337), + [anon_sym_if] = ACTIONS(4337), + [anon_sym_DOLLARif] = ACTIONS(4337), + [anon_sym_match] = ACTIONS(4337), + [anon_sym_select] = ACTIONS(4337), + [anon_sym_lock] = ACTIONS(4337), + [anon_sym_rlock] = ACTIONS(4337), + [anon_sym_unsafe] = ACTIONS(4337), + [anon_sym_sql] = ACTIONS(4337), + [sym_int_literal] = ACTIONS(4337), + [sym_float_literal] = ACTIONS(4337), + [sym_rune_literal] = ACTIONS(4337), + [sym_pseudo_compile_time_identifier] = ACTIONS(4337), + [anon_sym_shared] = ACTIONS(4337), + [anon_sym_map_LBRACK] = ACTIONS(4337), + [anon_sym_chan] = ACTIONS(4337), + [anon_sym_thread] = ACTIONS(4337), + [anon_sym_atomic] = ACTIONS(4337), + [anon_sym_assert] = ACTIONS(4337), + [anon_sym_defer] = ACTIONS(4337), + [anon_sym_goto] = ACTIONS(4337), + [anon_sym_break] = ACTIONS(4337), + [anon_sym_continue] = ACTIONS(4337), + [anon_sym_return] = ACTIONS(4337), + [anon_sym_DOLLARfor] = ACTIONS(4337), + [anon_sym_for] = ACTIONS(4337), + [anon_sym_POUND] = ACTIONS(4337), + [anon_sym_asm] = ACTIONS(4337), + [anon_sym_AT_LBRACK] = ACTIONS(4337), + [sym___double_quote] = ACTIONS(4337), + [sym___single_quote] = ACTIONS(4337), + [sym___c_double_quote] = ACTIONS(4337), + [sym___c_single_quote] = ACTIONS(4337), + [sym___r_double_quote] = ACTIONS(4337), + [sym___r_single_quote] = ACTIONS(4337), }, [1558] = { [sym_line_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4341), - [sym_identifier] = ACTIONS(4343), - [anon_sym_LF] = ACTIONS(4343), - [anon_sym_CR] = ACTIONS(4343), - [anon_sym_CR_LF] = ACTIONS(4343), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4343), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_const] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym___global] = ACTIONS(4343), - [anon_sym_type] = ACTIONS(4343), - [anon_sym_fn] = ACTIONS(4343), - [anon_sym_PLUS] = ACTIONS(4343), - [anon_sym_DASH] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(4343), - [anon_sym_struct] = ACTIONS(4343), - [anon_sym_union] = ACTIONS(4343), - [anon_sym_pub] = ACTIONS(4343), - [anon_sym_mut] = ACTIONS(4343), - [anon_sym_enum] = ACTIONS(4343), - [anon_sym_interface] = ACTIONS(4343), - [anon_sym_QMARK] = ACTIONS(4343), - [anon_sym_BANG] = ACTIONS(4343), - [anon_sym_go] = ACTIONS(4343), - [anon_sym_spawn] = ACTIONS(4343), - [anon_sym_json_DOTdecode] = ACTIONS(4343), - [anon_sym_LBRACK2] = ACTIONS(4343), - [anon_sym_TILDE] = ACTIONS(4343), - [anon_sym_CARET] = ACTIONS(4343), - [anon_sym_AMP] = ACTIONS(4343), - [anon_sym_LT_DASH] = ACTIONS(4343), - [sym_none] = ACTIONS(4343), - [sym_true] = ACTIONS(4343), - [sym_false] = ACTIONS(4343), - [sym_nil] = ACTIONS(4343), - [anon_sym_if] = ACTIONS(4343), - [anon_sym_DOLLARif] = ACTIONS(4343), - [anon_sym_match] = ACTIONS(4343), - [anon_sym_select] = ACTIONS(4343), - [anon_sym_lock] = ACTIONS(4343), - [anon_sym_rlock] = ACTIONS(4343), - [anon_sym_unsafe] = ACTIONS(4343), - [anon_sym_sql] = ACTIONS(4343), - [sym_int_literal] = ACTIONS(4343), - [sym_float_literal] = ACTIONS(4343), - [sym_rune_literal] = ACTIONS(4343), - [sym_pseudo_compile_time_identifier] = ACTIONS(4343), - [anon_sym_shared] = ACTIONS(4343), - [anon_sym_map_LBRACK] = ACTIONS(4343), - [anon_sym_chan] = ACTIONS(4343), - [anon_sym_thread] = ACTIONS(4343), - [anon_sym_atomic] = ACTIONS(4343), - [anon_sym_assert] = ACTIONS(4343), - [anon_sym_defer] = ACTIONS(4343), - [anon_sym_goto] = ACTIONS(4343), - [anon_sym_break] = ACTIONS(4343), - [anon_sym_continue] = ACTIONS(4343), - [anon_sym_return] = ACTIONS(4343), - [anon_sym_DOLLARfor] = ACTIONS(4343), - [anon_sym_for] = ACTIONS(4343), - [anon_sym_POUND] = ACTIONS(4343), - [anon_sym_asm] = ACTIONS(4343), - [anon_sym_AT_LBRACK] = ACTIONS(4343), - [sym___double_quote] = ACTIONS(4343), - [sym___single_quote] = ACTIONS(4343), - [sym___c_double_quote] = ACTIONS(4343), - [sym___c_single_quote] = ACTIONS(4343), - [sym___r_double_quote] = ACTIONS(4343), - [sym___r_single_quote] = ACTIONS(4343), + [sym_block_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(4339), + [sym_identifier] = ACTIONS(4341), + [anon_sym_LF] = ACTIONS(4341), + [anon_sym_CR] = ACTIONS(4341), + [anon_sym_CR_LF] = ACTIONS(4341), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_const] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym___global] = ACTIONS(4341), + [anon_sym_type] = ACTIONS(4341), + [anon_sym_fn] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_struct] = ACTIONS(4341), + [anon_sym_union] = ACTIONS(4341), + [anon_sym_pub] = ACTIONS(4341), + [anon_sym_mut] = ACTIONS(4341), + [anon_sym_enum] = ACTIONS(4341), + [anon_sym_interface] = ACTIONS(4341), + [anon_sym_QMARK] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_go] = ACTIONS(4341), + [anon_sym_spawn] = ACTIONS(4341), + [anon_sym_json_DOTdecode] = ACTIONS(4341), + [anon_sym_LBRACK2] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_CARET] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4341), + [anon_sym_LT_DASH] = ACTIONS(4341), + [sym_none] = ACTIONS(4341), + [sym_true] = ACTIONS(4341), + [sym_false] = ACTIONS(4341), + [sym_nil] = ACTIONS(4341), + [anon_sym_if] = ACTIONS(4341), + [anon_sym_DOLLARif] = ACTIONS(4341), + [anon_sym_match] = ACTIONS(4341), + [anon_sym_select] = ACTIONS(4341), + [anon_sym_lock] = ACTIONS(4341), + [anon_sym_rlock] = ACTIONS(4341), + [anon_sym_unsafe] = ACTIONS(4341), + [anon_sym_sql] = ACTIONS(4341), + [sym_int_literal] = ACTIONS(4341), + [sym_float_literal] = ACTIONS(4341), + [sym_rune_literal] = ACTIONS(4341), + [sym_pseudo_compile_time_identifier] = ACTIONS(4341), + [anon_sym_shared] = ACTIONS(4341), + [anon_sym_map_LBRACK] = ACTIONS(4341), + [anon_sym_chan] = ACTIONS(4341), + [anon_sym_thread] = ACTIONS(4341), + [anon_sym_atomic] = ACTIONS(4341), + [anon_sym_assert] = ACTIONS(4341), + [anon_sym_defer] = ACTIONS(4341), + [anon_sym_goto] = ACTIONS(4341), + [anon_sym_break] = ACTIONS(4341), + [anon_sym_continue] = ACTIONS(4341), + [anon_sym_return] = ACTIONS(4341), + [anon_sym_DOLLARfor] = ACTIONS(4341), + [anon_sym_for] = ACTIONS(4341), + [anon_sym_POUND] = ACTIONS(4341), + [anon_sym_asm] = ACTIONS(4341), + [anon_sym_AT_LBRACK] = ACTIONS(4341), + [sym___double_quote] = ACTIONS(4341), + [sym___single_quote] = ACTIONS(4341), + [sym___c_double_quote] = ACTIONS(4341), + [sym___c_single_quote] = ACTIONS(4341), + [sym___r_double_quote] = ACTIONS(4341), + [sym___r_single_quote] = ACTIONS(4341), }, [1559] = { [sym_line_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(4345), - [sym_identifier] = ACTIONS(4347), - [anon_sym_LF] = ACTIONS(4347), - [anon_sym_CR] = ACTIONS(4347), - [anon_sym_CR_LF] = ACTIONS(4347), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_const] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4347), - [anon_sym___global] = ACTIONS(4347), - [anon_sym_type] = ACTIONS(4347), - [anon_sym_fn] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_struct] = ACTIONS(4347), - [anon_sym_union] = ACTIONS(4347), - [anon_sym_pub] = ACTIONS(4347), - [anon_sym_mut] = ACTIONS(4347), - [anon_sym_enum] = ACTIONS(4347), - [anon_sym_interface] = ACTIONS(4347), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_go] = ACTIONS(4347), - [anon_sym_spawn] = ACTIONS(4347), - [anon_sym_json_DOTdecode] = ACTIONS(4347), - [anon_sym_LBRACK2] = ACTIONS(4347), - [anon_sym_TILDE] = ACTIONS(4347), - [anon_sym_CARET] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_DASH] = ACTIONS(4347), - [sym_none] = ACTIONS(4347), - [sym_true] = ACTIONS(4347), - [sym_false] = ACTIONS(4347), - [sym_nil] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_DOLLARif] = ACTIONS(4347), - [anon_sym_match] = ACTIONS(4347), - [anon_sym_select] = ACTIONS(4347), - [anon_sym_lock] = ACTIONS(4347), - [anon_sym_rlock] = ACTIONS(4347), - [anon_sym_unsafe] = ACTIONS(4347), - [anon_sym_sql] = ACTIONS(4347), - [sym_int_literal] = ACTIONS(4347), - [sym_float_literal] = ACTIONS(4347), - [sym_rune_literal] = ACTIONS(4347), - [sym_pseudo_compile_time_identifier] = ACTIONS(4347), - [anon_sym_shared] = ACTIONS(4347), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4347), - [anon_sym_thread] = ACTIONS(4347), - [anon_sym_atomic] = ACTIONS(4347), - [anon_sym_assert] = ACTIONS(4347), - [anon_sym_defer] = ACTIONS(4347), - [anon_sym_goto] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_DOLLARfor] = ACTIONS(4347), - [anon_sym_for] = ACTIONS(4347), - [anon_sym_POUND] = ACTIONS(4347), - [anon_sym_asm] = ACTIONS(4347), - [anon_sym_AT_LBRACK] = ACTIONS(4347), - [sym___double_quote] = ACTIONS(4347), - [sym___single_quote] = ACTIONS(4347), - [sym___c_double_quote] = ACTIONS(4347), - [sym___c_single_quote] = ACTIONS(4347), - [sym___r_double_quote] = ACTIONS(4347), - [sym___r_single_quote] = ACTIONS(4347), + [sym_block_comment] = STATE(1559), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(597), }, [1560] = { [sym_line_comment] = STATE(1560), - [sym_import_declaration] = STATE(1621), - [aux_sym_import_list_repeat1] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(4349), - [sym_identifier] = ACTIONS(4351), + [sym_block_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(4343), + [sym_identifier] = ACTIONS(4345), + [anon_sym_LF] = ACTIONS(4345), + [anon_sym_CR] = ACTIONS(4345), + [anon_sym_CR_LF] = ACTIONS(4345), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(15), - [anon_sym_DOT] = ACTIONS(4351), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4345), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_const] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym___global] = ACTIONS(4345), + [anon_sym_type] = ACTIONS(4345), + [anon_sym_fn] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_struct] = ACTIONS(4345), + [anon_sym_union] = ACTIONS(4345), + [anon_sym_pub] = ACTIONS(4345), + [anon_sym_mut] = ACTIONS(4345), + [anon_sym_enum] = ACTIONS(4345), + [anon_sym_interface] = ACTIONS(4345), + [anon_sym_QMARK] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_go] = ACTIONS(4345), + [anon_sym_spawn] = ACTIONS(4345), + [anon_sym_json_DOTdecode] = ACTIONS(4345), + [anon_sym_LBRACK2] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_CARET] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4345), + [anon_sym_LT_DASH] = ACTIONS(4345), + [sym_none] = ACTIONS(4345), + [sym_true] = ACTIONS(4345), + [sym_false] = ACTIONS(4345), + [sym_nil] = ACTIONS(4345), + [anon_sym_if] = ACTIONS(4345), + [anon_sym_DOLLARif] = ACTIONS(4345), + [anon_sym_match] = ACTIONS(4345), + [anon_sym_select] = ACTIONS(4345), + [anon_sym_lock] = ACTIONS(4345), + [anon_sym_rlock] = ACTIONS(4345), + [anon_sym_unsafe] = ACTIONS(4345), + [anon_sym_sql] = ACTIONS(4345), + [sym_int_literal] = ACTIONS(4345), + [sym_float_literal] = ACTIONS(4345), + [sym_rune_literal] = ACTIONS(4345), + [sym_pseudo_compile_time_identifier] = ACTIONS(4345), + [anon_sym_shared] = ACTIONS(4345), + [anon_sym_map_LBRACK] = ACTIONS(4345), + [anon_sym_chan] = ACTIONS(4345), + [anon_sym_thread] = ACTIONS(4345), + [anon_sym_atomic] = ACTIONS(4345), + [anon_sym_assert] = ACTIONS(4345), + [anon_sym_defer] = ACTIONS(4345), + [anon_sym_goto] = ACTIONS(4345), + [anon_sym_break] = ACTIONS(4345), + [anon_sym_continue] = ACTIONS(4345), + [anon_sym_return] = ACTIONS(4345), + [anon_sym_DOLLARfor] = ACTIONS(4345), + [anon_sym_for] = ACTIONS(4345), + [anon_sym_POUND] = ACTIONS(4345), + [anon_sym_asm] = ACTIONS(4345), + [anon_sym_AT_LBRACK] = ACTIONS(4345), + [sym___double_quote] = ACTIONS(4345), + [sym___single_quote] = ACTIONS(4345), + [sym___c_double_quote] = ACTIONS(4345), + [sym___c_single_quote] = ACTIONS(4345), + [sym___r_double_quote] = ACTIONS(4345), + [sym___r_single_quote] = ACTIONS(4345), + }, + [1561] = { + [sym_line_comment] = STATE(1561), + [sym_block_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(4347), + [sym_identifier] = ACTIONS(4349), + [anon_sym_LF] = ACTIONS(4349), + [anon_sym_CR] = ACTIONS(4349), + [anon_sym_CR_LF] = ACTIONS(4349), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4349), [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_const] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4349), [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym___global] = ACTIONS(4351), - [anon_sym_type] = ACTIONS(4351), - [anon_sym_fn] = ACTIONS(4351), + [anon_sym___global] = ACTIONS(4349), + [anon_sym_type] = ACTIONS(4349), + [anon_sym_fn] = ACTIONS(4349), [anon_sym_PLUS] = ACTIONS(4349), [anon_sym_DASH] = ACTIONS(4349), [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_struct] = ACTIONS(4351), - [anon_sym_union] = ACTIONS(4351), - [anon_sym_pub] = ACTIONS(4351), - [anon_sym_mut] = ACTIONS(4351), - [anon_sym_enum] = ACTIONS(4351), - [anon_sym_interface] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4349), + [anon_sym_union] = ACTIONS(4349), + [anon_sym_pub] = ACTIONS(4349), + [anon_sym_mut] = ACTIONS(4349), + [anon_sym_enum] = ACTIONS(4349), + [anon_sym_interface] = ACTIONS(4349), [anon_sym_QMARK] = ACTIONS(4349), [anon_sym_BANG] = ACTIONS(4349), - [anon_sym_go] = ACTIONS(4351), - [anon_sym_spawn] = ACTIONS(4351), + [anon_sym_go] = ACTIONS(4349), + [anon_sym_spawn] = ACTIONS(4349), [anon_sym_json_DOTdecode] = ACTIONS(4349), [anon_sym_LBRACK2] = ACTIONS(4349), [anon_sym_TILDE] = ACTIONS(4349), [anon_sym_CARET] = ACTIONS(4349), [anon_sym_AMP] = ACTIONS(4349), [anon_sym_LT_DASH] = ACTIONS(4349), - [sym_none] = ACTIONS(4351), - [sym_true] = ACTIONS(4351), - [sym_false] = ACTIONS(4351), - [sym_nil] = ACTIONS(4351), - [anon_sym_if] = ACTIONS(4351), - [anon_sym_DOLLARif] = ACTIONS(4351), - [anon_sym_match] = ACTIONS(4351), - [anon_sym_select] = ACTIONS(4351), - [anon_sym_lock] = ACTIONS(4351), - [anon_sym_rlock] = ACTIONS(4351), - [anon_sym_unsafe] = ACTIONS(4351), - [anon_sym_sql] = ACTIONS(4351), - [sym_int_literal] = ACTIONS(4351), + [sym_none] = ACTIONS(4349), + [sym_true] = ACTIONS(4349), + [sym_false] = ACTIONS(4349), + [sym_nil] = ACTIONS(4349), + [anon_sym_if] = ACTIONS(4349), + [anon_sym_DOLLARif] = ACTIONS(4349), + [anon_sym_match] = ACTIONS(4349), + [anon_sym_select] = ACTIONS(4349), + [anon_sym_lock] = ACTIONS(4349), + [anon_sym_rlock] = ACTIONS(4349), + [anon_sym_unsafe] = ACTIONS(4349), + [anon_sym_sql] = ACTIONS(4349), + [sym_int_literal] = ACTIONS(4349), [sym_float_literal] = ACTIONS(4349), [sym_rune_literal] = ACTIONS(4349), - [sym_pseudo_compile_time_identifier] = ACTIONS(4351), - [anon_sym_shared] = ACTIONS(4351), + [sym_pseudo_compile_time_identifier] = ACTIONS(4349), + [anon_sym_shared] = ACTIONS(4349), [anon_sym_map_LBRACK] = ACTIONS(4349), - [anon_sym_chan] = ACTIONS(4351), - [anon_sym_thread] = ACTIONS(4351), - [anon_sym_atomic] = ACTIONS(4351), - [anon_sym_assert] = ACTIONS(4351), - [anon_sym_defer] = ACTIONS(4351), - [anon_sym_goto] = ACTIONS(4351), - [anon_sym_break] = ACTIONS(4351), - [anon_sym_continue] = ACTIONS(4351), - [anon_sym_return] = ACTIONS(4351), - [anon_sym_DOLLARfor] = ACTIONS(4351), - [anon_sym_for] = ACTIONS(4351), + [anon_sym_chan] = ACTIONS(4349), + [anon_sym_thread] = ACTIONS(4349), + [anon_sym_atomic] = ACTIONS(4349), + [anon_sym_assert] = ACTIONS(4349), + [anon_sym_defer] = ACTIONS(4349), + [anon_sym_goto] = ACTIONS(4349), + [anon_sym_break] = ACTIONS(4349), + [anon_sym_continue] = ACTIONS(4349), + [anon_sym_return] = ACTIONS(4349), + [anon_sym_DOLLARfor] = ACTIONS(4349), + [anon_sym_for] = ACTIONS(4349), [anon_sym_POUND] = ACTIONS(4349), - [anon_sym_asm] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4349), [anon_sym_AT_LBRACK] = ACTIONS(4349), [sym___double_quote] = ACTIONS(4349), [sym___single_quote] = ACTIONS(4349), @@ -193810,1717 +188686,1741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4349), [sym___r_single_quote] = ACTIONS(4349), }, - [1561] = { - [sym_line_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(4353), - [sym_identifier] = ACTIONS(4355), - [anon_sym_LF] = ACTIONS(4355), - [anon_sym_CR] = ACTIONS(4355), - [anon_sym_CR_LF] = ACTIONS(4355), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_const] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym___global] = ACTIONS(4355), - [anon_sym_type] = ACTIONS(4355), - [anon_sym_fn] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_struct] = ACTIONS(4355), - [anon_sym_union] = ACTIONS(4355), - [anon_sym_pub] = ACTIONS(4355), - [anon_sym_mut] = ACTIONS(4355), - [anon_sym_enum] = ACTIONS(4355), - [anon_sym_interface] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_go] = ACTIONS(4355), - [anon_sym_spawn] = ACTIONS(4355), - [anon_sym_json_DOTdecode] = ACTIONS(4355), - [anon_sym_LBRACK2] = ACTIONS(4355), - [anon_sym_TILDE] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_DASH] = ACTIONS(4355), - [sym_none] = ACTIONS(4355), - [sym_true] = ACTIONS(4355), - [sym_false] = ACTIONS(4355), - [sym_nil] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_DOLLARif] = ACTIONS(4355), - [anon_sym_match] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_lock] = ACTIONS(4355), - [anon_sym_rlock] = ACTIONS(4355), - [anon_sym_unsafe] = ACTIONS(4355), - [anon_sym_sql] = ACTIONS(4355), - [sym_int_literal] = ACTIONS(4355), - [sym_float_literal] = ACTIONS(4355), - [sym_rune_literal] = ACTIONS(4355), - [sym_pseudo_compile_time_identifier] = ACTIONS(4355), - [anon_sym_shared] = ACTIONS(4355), - [anon_sym_map_LBRACK] = ACTIONS(4355), - [anon_sym_chan] = ACTIONS(4355), - [anon_sym_thread] = ACTIONS(4355), - [anon_sym_atomic] = ACTIONS(4355), - [anon_sym_assert] = ACTIONS(4355), - [anon_sym_defer] = ACTIONS(4355), - [anon_sym_goto] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_DOLLARfor] = ACTIONS(4355), - [anon_sym_for] = ACTIONS(4355), - [anon_sym_POUND] = ACTIONS(4355), - [anon_sym_asm] = ACTIONS(4355), - [anon_sym_AT_LBRACK] = ACTIONS(4355), - [sym___double_quote] = ACTIONS(4355), - [sym___single_quote] = ACTIONS(4355), - [sym___c_double_quote] = ACTIONS(4355), - [sym___c_single_quote] = ACTIONS(4355), - [sym___r_double_quote] = ACTIONS(4355), - [sym___r_single_quote] = ACTIONS(4355), - }, [1562] = { [sym_line_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(4357), - [sym_identifier] = ACTIONS(4359), - [anon_sym_LF] = ACTIONS(4359), - [anon_sym_CR] = ACTIONS(4359), - [anon_sym_CR_LF] = ACTIONS(4359), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_const] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym___global] = ACTIONS(4359), - [anon_sym_type] = ACTIONS(4359), - [anon_sym_fn] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_struct] = ACTIONS(4359), - [anon_sym_union] = ACTIONS(4359), - [anon_sym_pub] = ACTIONS(4359), - [anon_sym_mut] = ACTIONS(4359), - [anon_sym_enum] = ACTIONS(4359), - [anon_sym_interface] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4359), - [anon_sym_BANG] = ACTIONS(4359), - [anon_sym_go] = ACTIONS(4359), - [anon_sym_spawn] = ACTIONS(4359), - [anon_sym_json_DOTdecode] = ACTIONS(4359), - [anon_sym_LBRACK2] = ACTIONS(4359), - [anon_sym_TILDE] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_LT_DASH] = ACTIONS(4359), - [sym_none] = ACTIONS(4359), - [sym_true] = ACTIONS(4359), - [sym_false] = ACTIONS(4359), - [sym_nil] = ACTIONS(4359), - [anon_sym_if] = ACTIONS(4359), - [anon_sym_DOLLARif] = ACTIONS(4359), - [anon_sym_match] = ACTIONS(4359), - [anon_sym_select] = ACTIONS(4359), - [anon_sym_lock] = ACTIONS(4359), - [anon_sym_rlock] = ACTIONS(4359), - [anon_sym_unsafe] = ACTIONS(4359), - [anon_sym_sql] = ACTIONS(4359), - [sym_int_literal] = ACTIONS(4359), - [sym_float_literal] = ACTIONS(4359), - [sym_rune_literal] = ACTIONS(4359), - [sym_pseudo_compile_time_identifier] = ACTIONS(4359), - [anon_sym_shared] = ACTIONS(4359), - [anon_sym_map_LBRACK] = ACTIONS(4359), - [anon_sym_chan] = ACTIONS(4359), - [anon_sym_thread] = ACTIONS(4359), - [anon_sym_atomic] = ACTIONS(4359), - [anon_sym_assert] = ACTIONS(4359), - [anon_sym_defer] = ACTIONS(4359), - [anon_sym_goto] = ACTIONS(4359), - [anon_sym_break] = ACTIONS(4359), - [anon_sym_continue] = ACTIONS(4359), - [anon_sym_return] = ACTIONS(4359), - [anon_sym_DOLLARfor] = ACTIONS(4359), - [anon_sym_for] = ACTIONS(4359), - [anon_sym_POUND] = ACTIONS(4359), - [anon_sym_asm] = ACTIONS(4359), - [anon_sym_AT_LBRACK] = ACTIONS(4359), - [sym___double_quote] = ACTIONS(4359), - [sym___single_quote] = ACTIONS(4359), - [sym___c_double_quote] = ACTIONS(4359), - [sym___c_single_quote] = ACTIONS(4359), - [sym___r_double_quote] = ACTIONS(4359), - [sym___r_single_quote] = ACTIONS(4359), + [sym_block_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(4351), + [sym_identifier] = ACTIONS(4353), + [anon_sym_LF] = ACTIONS(4353), + [anon_sym_CR] = ACTIONS(4353), + [anon_sym_CR_LF] = ACTIONS(4353), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_const] = ACTIONS(4353), + [anon_sym_LPAREN] = ACTIONS(4353), + [anon_sym___global] = ACTIONS(4353), + [anon_sym_type] = ACTIONS(4353), + [anon_sym_fn] = ACTIONS(4353), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_struct] = ACTIONS(4353), + [anon_sym_union] = ACTIONS(4353), + [anon_sym_pub] = ACTIONS(4353), + [anon_sym_mut] = ACTIONS(4353), + [anon_sym_enum] = ACTIONS(4353), + [anon_sym_interface] = ACTIONS(4353), + [anon_sym_QMARK] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_go] = ACTIONS(4353), + [anon_sym_spawn] = ACTIONS(4353), + [anon_sym_json_DOTdecode] = ACTIONS(4353), + [anon_sym_LBRACK2] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_CARET] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4353), + [anon_sym_LT_DASH] = ACTIONS(4353), + [sym_none] = ACTIONS(4353), + [sym_true] = ACTIONS(4353), + [sym_false] = ACTIONS(4353), + [sym_nil] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_DOLLARif] = ACTIONS(4353), + [anon_sym_match] = ACTIONS(4353), + [anon_sym_select] = ACTIONS(4353), + [anon_sym_lock] = ACTIONS(4353), + [anon_sym_rlock] = ACTIONS(4353), + [anon_sym_unsafe] = ACTIONS(4353), + [anon_sym_sql] = ACTIONS(4353), + [sym_int_literal] = ACTIONS(4353), + [sym_float_literal] = ACTIONS(4353), + [sym_rune_literal] = ACTIONS(4353), + [sym_pseudo_compile_time_identifier] = ACTIONS(4353), + [anon_sym_shared] = ACTIONS(4353), + [anon_sym_map_LBRACK] = ACTIONS(4353), + [anon_sym_chan] = ACTIONS(4353), + [anon_sym_thread] = ACTIONS(4353), + [anon_sym_atomic] = ACTIONS(4353), + [anon_sym_assert] = ACTIONS(4353), + [anon_sym_defer] = ACTIONS(4353), + [anon_sym_goto] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_DOLLARfor] = ACTIONS(4353), + [anon_sym_for] = ACTIONS(4353), + [anon_sym_POUND] = ACTIONS(4353), + [anon_sym_asm] = ACTIONS(4353), + [anon_sym_AT_LBRACK] = ACTIONS(4353), + [sym___double_quote] = ACTIONS(4353), + [sym___single_quote] = ACTIONS(4353), + [sym___c_double_quote] = ACTIONS(4353), + [sym___c_single_quote] = ACTIONS(4353), + [sym___r_double_quote] = ACTIONS(4353), + [sym___r_single_quote] = ACTIONS(4353), }, [1563] = { [sym_line_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(4361), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LF] = ACTIONS(4363), - [anon_sym_CR] = ACTIONS(4363), - [anon_sym_CR_LF] = ACTIONS(4363), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_const] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym___global] = ACTIONS(4363), - [anon_sym_type] = ACTIONS(4363), - [anon_sym_fn] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_struct] = ACTIONS(4363), - [anon_sym_union] = ACTIONS(4363), - [anon_sym_pub] = ACTIONS(4363), - [anon_sym_mut] = ACTIONS(4363), - [anon_sym_enum] = ACTIONS(4363), - [anon_sym_interface] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4363), - [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_go] = ACTIONS(4363), - [anon_sym_spawn] = ACTIONS(4363), - [anon_sym_json_DOTdecode] = ACTIONS(4363), - [anon_sym_LBRACK2] = ACTIONS(4363), - [anon_sym_TILDE] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_AMP] = ACTIONS(4363), - [anon_sym_LT_DASH] = ACTIONS(4363), - [sym_none] = ACTIONS(4363), - [sym_true] = ACTIONS(4363), - [sym_false] = ACTIONS(4363), - [sym_nil] = ACTIONS(4363), - [anon_sym_if] = ACTIONS(4363), - [anon_sym_DOLLARif] = ACTIONS(4363), - [anon_sym_match] = ACTIONS(4363), - [anon_sym_select] = ACTIONS(4363), - [anon_sym_lock] = ACTIONS(4363), - [anon_sym_rlock] = ACTIONS(4363), - [anon_sym_unsafe] = ACTIONS(4363), - [anon_sym_sql] = ACTIONS(4363), - [sym_int_literal] = ACTIONS(4363), - [sym_float_literal] = ACTIONS(4363), - [sym_rune_literal] = ACTIONS(4363), - [sym_pseudo_compile_time_identifier] = ACTIONS(4363), - [anon_sym_shared] = ACTIONS(4363), - [anon_sym_map_LBRACK] = ACTIONS(4363), - [anon_sym_chan] = ACTIONS(4363), - [anon_sym_thread] = ACTIONS(4363), - [anon_sym_atomic] = ACTIONS(4363), - [anon_sym_assert] = ACTIONS(4363), - [anon_sym_defer] = ACTIONS(4363), - [anon_sym_goto] = ACTIONS(4363), - [anon_sym_break] = ACTIONS(4363), - [anon_sym_continue] = ACTIONS(4363), - [anon_sym_return] = ACTIONS(4363), - [anon_sym_DOLLARfor] = ACTIONS(4363), - [anon_sym_for] = ACTIONS(4363), - [anon_sym_POUND] = ACTIONS(4363), - [anon_sym_asm] = ACTIONS(4363), - [anon_sym_AT_LBRACK] = ACTIONS(4363), - [sym___double_quote] = ACTIONS(4363), - [sym___single_quote] = ACTIONS(4363), - [sym___c_double_quote] = ACTIONS(4363), - [sym___c_single_quote] = ACTIONS(4363), - [sym___r_double_quote] = ACTIONS(4363), - [sym___r_single_quote] = ACTIONS(4363), + [sym_block_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(4355), + [sym_identifier] = ACTIONS(4357), + [anon_sym_LF] = ACTIONS(4357), + [anon_sym_CR] = ACTIONS(4357), + [anon_sym_CR_LF] = ACTIONS(4357), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4357), + [anon_sym_LBRACE] = ACTIONS(4357), + [anon_sym_const] = ACTIONS(4357), + [anon_sym_LPAREN] = ACTIONS(4357), + [anon_sym___global] = ACTIONS(4357), + [anon_sym_type] = ACTIONS(4357), + [anon_sym_fn] = ACTIONS(4357), + [anon_sym_PLUS] = ACTIONS(4357), + [anon_sym_DASH] = ACTIONS(4357), + [anon_sym_STAR] = ACTIONS(4357), + [anon_sym_struct] = ACTIONS(4357), + [anon_sym_union] = ACTIONS(4357), + [anon_sym_pub] = ACTIONS(4357), + [anon_sym_mut] = ACTIONS(4357), + [anon_sym_enum] = ACTIONS(4357), + [anon_sym_interface] = ACTIONS(4357), + [anon_sym_QMARK] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(4357), + [anon_sym_go] = ACTIONS(4357), + [anon_sym_spawn] = ACTIONS(4357), + [anon_sym_json_DOTdecode] = ACTIONS(4357), + [anon_sym_LBRACK2] = ACTIONS(4357), + [anon_sym_TILDE] = ACTIONS(4357), + [anon_sym_CARET] = ACTIONS(4357), + [anon_sym_AMP] = ACTIONS(4357), + [anon_sym_LT_DASH] = ACTIONS(4357), + [sym_none] = ACTIONS(4357), + [sym_true] = ACTIONS(4357), + [sym_false] = ACTIONS(4357), + [sym_nil] = ACTIONS(4357), + [anon_sym_if] = ACTIONS(4357), + [anon_sym_DOLLARif] = ACTIONS(4357), + [anon_sym_match] = ACTIONS(4357), + [anon_sym_select] = ACTIONS(4357), + [anon_sym_lock] = ACTIONS(4357), + [anon_sym_rlock] = ACTIONS(4357), + [anon_sym_unsafe] = ACTIONS(4357), + [anon_sym_sql] = ACTIONS(4357), + [sym_int_literal] = ACTIONS(4357), + [sym_float_literal] = ACTIONS(4357), + [sym_rune_literal] = ACTIONS(4357), + [sym_pseudo_compile_time_identifier] = ACTIONS(4357), + [anon_sym_shared] = ACTIONS(4357), + [anon_sym_map_LBRACK] = ACTIONS(4357), + [anon_sym_chan] = ACTIONS(4357), + [anon_sym_thread] = ACTIONS(4357), + [anon_sym_atomic] = ACTIONS(4357), + [anon_sym_assert] = ACTIONS(4357), + [anon_sym_defer] = ACTIONS(4357), + [anon_sym_goto] = ACTIONS(4357), + [anon_sym_break] = ACTIONS(4357), + [anon_sym_continue] = ACTIONS(4357), + [anon_sym_return] = ACTIONS(4357), + [anon_sym_DOLLARfor] = ACTIONS(4357), + [anon_sym_for] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(4357), + [anon_sym_asm] = ACTIONS(4357), + [anon_sym_AT_LBRACK] = ACTIONS(4357), + [sym___double_quote] = ACTIONS(4357), + [sym___single_quote] = ACTIONS(4357), + [sym___c_double_quote] = ACTIONS(4357), + [sym___c_single_quote] = ACTIONS(4357), + [sym___r_double_quote] = ACTIONS(4357), + [sym___r_single_quote] = ACTIONS(4357), }, [1564] = { [sym_line_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4365), - [sym_identifier] = ACTIONS(4367), - [anon_sym_LF] = ACTIONS(4367), - [anon_sym_CR] = ACTIONS(4367), - [anon_sym_CR_LF] = ACTIONS(4367), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LBRACE] = ACTIONS(4367), - [anon_sym_const] = ACTIONS(4367), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym___global] = ACTIONS(4367), - [anon_sym_type] = ACTIONS(4367), - [anon_sym_fn] = ACTIONS(4367), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_struct] = ACTIONS(4367), - [anon_sym_union] = ACTIONS(4367), - [anon_sym_pub] = ACTIONS(4367), - [anon_sym_mut] = ACTIONS(4367), - [anon_sym_enum] = ACTIONS(4367), - [anon_sym_interface] = ACTIONS(4367), - [anon_sym_QMARK] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_go] = ACTIONS(4367), - [anon_sym_spawn] = ACTIONS(4367), - [anon_sym_json_DOTdecode] = ACTIONS(4367), - [anon_sym_LBRACK2] = ACTIONS(4367), - [anon_sym_TILDE] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym_AMP] = ACTIONS(4367), - [anon_sym_LT_DASH] = ACTIONS(4367), - [sym_none] = ACTIONS(4367), - [sym_true] = ACTIONS(4367), - [sym_false] = ACTIONS(4367), - [sym_nil] = ACTIONS(4367), - [anon_sym_if] = ACTIONS(4367), - [anon_sym_DOLLARif] = ACTIONS(4367), - [anon_sym_match] = ACTIONS(4367), - [anon_sym_select] = ACTIONS(4367), - [anon_sym_lock] = ACTIONS(4367), - [anon_sym_rlock] = ACTIONS(4367), - [anon_sym_unsafe] = ACTIONS(4367), - [anon_sym_sql] = ACTIONS(4367), - [sym_int_literal] = ACTIONS(4367), - [sym_float_literal] = ACTIONS(4367), - [sym_rune_literal] = ACTIONS(4367), - [sym_pseudo_compile_time_identifier] = ACTIONS(4367), - [anon_sym_shared] = ACTIONS(4367), - [anon_sym_map_LBRACK] = ACTIONS(4367), - [anon_sym_chan] = ACTIONS(4367), - [anon_sym_thread] = ACTIONS(4367), - [anon_sym_atomic] = ACTIONS(4367), - [anon_sym_assert] = ACTIONS(4367), - [anon_sym_defer] = ACTIONS(4367), - [anon_sym_goto] = ACTIONS(4367), - [anon_sym_break] = ACTIONS(4367), - [anon_sym_continue] = ACTIONS(4367), - [anon_sym_return] = ACTIONS(4367), - [anon_sym_DOLLARfor] = ACTIONS(4367), - [anon_sym_for] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(4367), - [anon_sym_asm] = ACTIONS(4367), - [anon_sym_AT_LBRACK] = ACTIONS(4367), - [sym___double_quote] = ACTIONS(4367), - [sym___single_quote] = ACTIONS(4367), - [sym___c_double_quote] = ACTIONS(4367), - [sym___c_single_quote] = ACTIONS(4367), - [sym___r_double_quote] = ACTIONS(4367), - [sym___r_single_quote] = ACTIONS(4367), + [sym_block_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(4359), + [sym_identifier] = ACTIONS(4361), + [anon_sym_LF] = ACTIONS(4361), + [anon_sym_CR] = ACTIONS(4361), + [anon_sym_CR_LF] = ACTIONS(4361), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4361), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_const] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym___global] = ACTIONS(4361), + [anon_sym_type] = ACTIONS(4361), + [anon_sym_fn] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4361), + [anon_sym_DASH] = ACTIONS(4361), + [anon_sym_STAR] = ACTIONS(4361), + [anon_sym_struct] = ACTIONS(4361), + [anon_sym_union] = ACTIONS(4361), + [anon_sym_pub] = ACTIONS(4361), + [anon_sym_mut] = ACTIONS(4361), + [anon_sym_enum] = ACTIONS(4361), + [anon_sym_interface] = ACTIONS(4361), + [anon_sym_QMARK] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4361), + [anon_sym_go] = ACTIONS(4361), + [anon_sym_spawn] = ACTIONS(4361), + [anon_sym_json_DOTdecode] = ACTIONS(4361), + [anon_sym_LBRACK2] = ACTIONS(4361), + [anon_sym_TILDE] = ACTIONS(4361), + [anon_sym_CARET] = ACTIONS(4361), + [anon_sym_AMP] = ACTIONS(4361), + [anon_sym_LT_DASH] = ACTIONS(4361), + [sym_none] = ACTIONS(4361), + [sym_true] = ACTIONS(4361), + [sym_false] = ACTIONS(4361), + [sym_nil] = ACTIONS(4361), + [anon_sym_if] = ACTIONS(4361), + [anon_sym_DOLLARif] = ACTIONS(4361), + [anon_sym_match] = ACTIONS(4361), + [anon_sym_select] = ACTIONS(4361), + [anon_sym_lock] = ACTIONS(4361), + [anon_sym_rlock] = ACTIONS(4361), + [anon_sym_unsafe] = ACTIONS(4361), + [anon_sym_sql] = ACTIONS(4361), + [sym_int_literal] = ACTIONS(4361), + [sym_float_literal] = ACTIONS(4361), + [sym_rune_literal] = ACTIONS(4361), + [sym_pseudo_compile_time_identifier] = ACTIONS(4361), + [anon_sym_shared] = ACTIONS(4361), + [anon_sym_map_LBRACK] = ACTIONS(4361), + [anon_sym_chan] = ACTIONS(4361), + [anon_sym_thread] = ACTIONS(4361), + [anon_sym_atomic] = ACTIONS(4361), + [anon_sym_assert] = ACTIONS(4361), + [anon_sym_defer] = ACTIONS(4361), + [anon_sym_goto] = ACTIONS(4361), + [anon_sym_break] = ACTIONS(4361), + [anon_sym_continue] = ACTIONS(4361), + [anon_sym_return] = ACTIONS(4361), + [anon_sym_DOLLARfor] = ACTIONS(4361), + [anon_sym_for] = ACTIONS(4361), + [anon_sym_POUND] = ACTIONS(4361), + [anon_sym_asm] = ACTIONS(4361), + [anon_sym_AT_LBRACK] = ACTIONS(4361), + [sym___double_quote] = ACTIONS(4361), + [sym___single_quote] = ACTIONS(4361), + [sym___c_double_quote] = ACTIONS(4361), + [sym___c_single_quote] = ACTIONS(4361), + [sym___r_double_quote] = ACTIONS(4361), + [sym___r_single_quote] = ACTIONS(4361), }, [1565] = { [sym_line_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(4369), - [sym_identifier] = ACTIONS(4371), - [anon_sym_LF] = ACTIONS(4371), - [anon_sym_CR] = ACTIONS(4371), - [anon_sym_CR_LF] = ACTIONS(4371), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4371), - [anon_sym_const] = ACTIONS(4371), - [anon_sym_LPAREN] = ACTIONS(4371), - [anon_sym___global] = ACTIONS(4371), - [anon_sym_type] = ACTIONS(4371), - [anon_sym_fn] = ACTIONS(4371), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [anon_sym_struct] = ACTIONS(4371), - [anon_sym_union] = ACTIONS(4371), - [anon_sym_pub] = ACTIONS(4371), - [anon_sym_mut] = ACTIONS(4371), - [anon_sym_enum] = ACTIONS(4371), - [anon_sym_interface] = ACTIONS(4371), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_go] = ACTIONS(4371), - [anon_sym_spawn] = ACTIONS(4371), - [anon_sym_json_DOTdecode] = ACTIONS(4371), - [anon_sym_LBRACK2] = ACTIONS(4371), - [anon_sym_TILDE] = ACTIONS(4371), - [anon_sym_CARET] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(4371), - [anon_sym_LT_DASH] = ACTIONS(4371), - [sym_none] = ACTIONS(4371), - [sym_true] = ACTIONS(4371), - [sym_false] = ACTIONS(4371), - [sym_nil] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_DOLLARif] = ACTIONS(4371), - [anon_sym_match] = ACTIONS(4371), - [anon_sym_select] = ACTIONS(4371), - [anon_sym_lock] = ACTIONS(4371), - [anon_sym_rlock] = ACTIONS(4371), - [anon_sym_unsafe] = ACTIONS(4371), - [anon_sym_sql] = ACTIONS(4371), - [sym_int_literal] = ACTIONS(4371), - [sym_float_literal] = ACTIONS(4371), - [sym_rune_literal] = ACTIONS(4371), - [sym_pseudo_compile_time_identifier] = ACTIONS(4371), - [anon_sym_shared] = ACTIONS(4371), - [anon_sym_map_LBRACK] = ACTIONS(4371), - [anon_sym_chan] = ACTIONS(4371), - [anon_sym_thread] = ACTIONS(4371), - [anon_sym_atomic] = ACTIONS(4371), - [anon_sym_assert] = ACTIONS(4371), - [anon_sym_defer] = ACTIONS(4371), - [anon_sym_goto] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_DOLLARfor] = ACTIONS(4371), - [anon_sym_for] = ACTIONS(4371), - [anon_sym_POUND] = ACTIONS(4371), - [anon_sym_asm] = ACTIONS(4371), - [anon_sym_AT_LBRACK] = ACTIONS(4371), - [sym___double_quote] = ACTIONS(4371), - [sym___single_quote] = ACTIONS(4371), - [sym___c_double_quote] = ACTIONS(4371), - [sym___c_single_quote] = ACTIONS(4371), - [sym___r_double_quote] = ACTIONS(4371), - [sym___r_single_quote] = ACTIONS(4371), + [sym_block_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(4363), + [sym_identifier] = ACTIONS(4365), + [anon_sym_LF] = ACTIONS(4365), + [anon_sym_CR] = ACTIONS(4365), + [anon_sym_CR_LF] = ACTIONS(4365), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4365), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_const] = ACTIONS(4365), + [anon_sym_LPAREN] = ACTIONS(4365), + [anon_sym___global] = ACTIONS(4365), + [anon_sym_type] = ACTIONS(4365), + [anon_sym_fn] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4365), + [anon_sym_DASH] = ACTIONS(4365), + [anon_sym_STAR] = ACTIONS(4365), + [anon_sym_struct] = ACTIONS(4365), + [anon_sym_union] = ACTIONS(4365), + [anon_sym_pub] = ACTIONS(4365), + [anon_sym_mut] = ACTIONS(4365), + [anon_sym_enum] = ACTIONS(4365), + [anon_sym_interface] = ACTIONS(4365), + [anon_sym_QMARK] = ACTIONS(4365), + [anon_sym_BANG] = ACTIONS(4365), + [anon_sym_go] = ACTIONS(4365), + [anon_sym_spawn] = ACTIONS(4365), + [anon_sym_json_DOTdecode] = ACTIONS(4365), + [anon_sym_LBRACK2] = ACTIONS(4365), + [anon_sym_TILDE] = ACTIONS(4365), + [anon_sym_CARET] = ACTIONS(4365), + [anon_sym_AMP] = ACTIONS(4365), + [anon_sym_LT_DASH] = ACTIONS(4365), + [sym_none] = ACTIONS(4365), + [sym_true] = ACTIONS(4365), + [sym_false] = ACTIONS(4365), + [sym_nil] = ACTIONS(4365), + [anon_sym_if] = ACTIONS(4365), + [anon_sym_DOLLARif] = ACTIONS(4365), + [anon_sym_match] = ACTIONS(4365), + [anon_sym_select] = ACTIONS(4365), + [anon_sym_lock] = ACTIONS(4365), + [anon_sym_rlock] = ACTIONS(4365), + [anon_sym_unsafe] = ACTIONS(4365), + [anon_sym_sql] = ACTIONS(4365), + [sym_int_literal] = ACTIONS(4365), + [sym_float_literal] = ACTIONS(4365), + [sym_rune_literal] = ACTIONS(4365), + [sym_pseudo_compile_time_identifier] = ACTIONS(4365), + [anon_sym_shared] = ACTIONS(4365), + [anon_sym_map_LBRACK] = ACTIONS(4365), + [anon_sym_chan] = ACTIONS(4365), + [anon_sym_thread] = ACTIONS(4365), + [anon_sym_atomic] = ACTIONS(4365), + [anon_sym_assert] = ACTIONS(4365), + [anon_sym_defer] = ACTIONS(4365), + [anon_sym_goto] = ACTIONS(4365), + [anon_sym_break] = ACTIONS(4365), + [anon_sym_continue] = ACTIONS(4365), + [anon_sym_return] = ACTIONS(4365), + [anon_sym_DOLLARfor] = ACTIONS(4365), + [anon_sym_for] = ACTIONS(4365), + [anon_sym_POUND] = ACTIONS(4365), + [anon_sym_asm] = ACTIONS(4365), + [anon_sym_AT_LBRACK] = ACTIONS(4365), + [sym___double_quote] = ACTIONS(4365), + [sym___single_quote] = ACTIONS(4365), + [sym___c_double_quote] = ACTIONS(4365), + [sym___c_single_quote] = ACTIONS(4365), + [sym___r_double_quote] = ACTIONS(4365), + [sym___r_single_quote] = ACTIONS(4365), }, [1566] = { [sym_line_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(4373), - [sym_identifier] = ACTIONS(4375), - [anon_sym_LF] = ACTIONS(4375), - [anon_sym_CR] = ACTIONS(4375), - [anon_sym_CR_LF] = ACTIONS(4375), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_const] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym___global] = ACTIONS(4375), - [anon_sym_type] = ACTIONS(4375), - [anon_sym_fn] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4375), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_struct] = ACTIONS(4375), - [anon_sym_union] = ACTIONS(4375), - [anon_sym_pub] = ACTIONS(4375), - [anon_sym_mut] = ACTIONS(4375), - [anon_sym_enum] = ACTIONS(4375), - [anon_sym_interface] = ACTIONS(4375), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4375), - [anon_sym_go] = ACTIONS(4375), - [anon_sym_spawn] = ACTIONS(4375), - [anon_sym_json_DOTdecode] = ACTIONS(4375), - [anon_sym_LBRACK2] = ACTIONS(4375), - [anon_sym_TILDE] = ACTIONS(4375), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_AMP] = ACTIONS(4375), - [anon_sym_LT_DASH] = ACTIONS(4375), - [sym_none] = ACTIONS(4375), - [sym_true] = ACTIONS(4375), - [sym_false] = ACTIONS(4375), - [sym_nil] = ACTIONS(4375), - [anon_sym_if] = ACTIONS(4375), - [anon_sym_DOLLARif] = ACTIONS(4375), - [anon_sym_match] = ACTIONS(4375), - [anon_sym_select] = ACTIONS(4375), - [anon_sym_lock] = ACTIONS(4375), - [anon_sym_rlock] = ACTIONS(4375), - [anon_sym_unsafe] = ACTIONS(4375), - [anon_sym_sql] = ACTIONS(4375), - [sym_int_literal] = ACTIONS(4375), - [sym_float_literal] = ACTIONS(4375), - [sym_rune_literal] = ACTIONS(4375), - [sym_pseudo_compile_time_identifier] = ACTIONS(4375), - [anon_sym_shared] = ACTIONS(4375), - [anon_sym_map_LBRACK] = ACTIONS(4375), - [anon_sym_chan] = ACTIONS(4375), - [anon_sym_thread] = ACTIONS(4375), - [anon_sym_atomic] = ACTIONS(4375), - [anon_sym_assert] = ACTIONS(4375), - [anon_sym_defer] = ACTIONS(4375), - [anon_sym_goto] = ACTIONS(4375), - [anon_sym_break] = ACTIONS(4375), - [anon_sym_continue] = ACTIONS(4375), - [anon_sym_return] = ACTIONS(4375), - [anon_sym_DOLLARfor] = ACTIONS(4375), - [anon_sym_for] = ACTIONS(4375), - [anon_sym_POUND] = ACTIONS(4375), - [anon_sym_asm] = ACTIONS(4375), - [anon_sym_AT_LBRACK] = ACTIONS(4375), - [sym___double_quote] = ACTIONS(4375), - [sym___single_quote] = ACTIONS(4375), - [sym___c_double_quote] = ACTIONS(4375), - [sym___c_single_quote] = ACTIONS(4375), - [sym___r_double_quote] = ACTIONS(4375), - [sym___r_single_quote] = ACTIONS(4375), + [sym_block_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(4367), + [sym_identifier] = ACTIONS(4369), + [anon_sym_LF] = ACTIONS(4369), + [anon_sym_CR] = ACTIONS(4369), + [anon_sym_CR_LF] = ACTIONS(4369), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_const] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4369), + [anon_sym___global] = ACTIONS(4369), + [anon_sym_type] = ACTIONS(4369), + [anon_sym_fn] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_struct] = ACTIONS(4369), + [anon_sym_union] = ACTIONS(4369), + [anon_sym_pub] = ACTIONS(4369), + [anon_sym_mut] = ACTIONS(4369), + [anon_sym_enum] = ACTIONS(4369), + [anon_sym_interface] = ACTIONS(4369), + [anon_sym_QMARK] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_go] = ACTIONS(4369), + [anon_sym_spawn] = ACTIONS(4369), + [anon_sym_json_DOTdecode] = ACTIONS(4369), + [anon_sym_LBRACK2] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_CARET] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym_LT_DASH] = ACTIONS(4369), + [sym_none] = ACTIONS(4369), + [sym_true] = ACTIONS(4369), + [sym_false] = ACTIONS(4369), + [sym_nil] = ACTIONS(4369), + [anon_sym_if] = ACTIONS(4369), + [anon_sym_DOLLARif] = ACTIONS(4369), + [anon_sym_match] = ACTIONS(4369), + [anon_sym_select] = ACTIONS(4369), + [anon_sym_lock] = ACTIONS(4369), + [anon_sym_rlock] = ACTIONS(4369), + [anon_sym_unsafe] = ACTIONS(4369), + [anon_sym_sql] = ACTIONS(4369), + [sym_int_literal] = ACTIONS(4369), + [sym_float_literal] = ACTIONS(4369), + [sym_rune_literal] = ACTIONS(4369), + [sym_pseudo_compile_time_identifier] = ACTIONS(4369), + [anon_sym_shared] = ACTIONS(4369), + [anon_sym_map_LBRACK] = ACTIONS(4369), + [anon_sym_chan] = ACTIONS(4369), + [anon_sym_thread] = ACTIONS(4369), + [anon_sym_atomic] = ACTIONS(4369), + [anon_sym_assert] = ACTIONS(4369), + [anon_sym_defer] = ACTIONS(4369), + [anon_sym_goto] = ACTIONS(4369), + [anon_sym_break] = ACTIONS(4369), + [anon_sym_continue] = ACTIONS(4369), + [anon_sym_return] = ACTIONS(4369), + [anon_sym_DOLLARfor] = ACTIONS(4369), + [anon_sym_for] = ACTIONS(4369), + [anon_sym_POUND] = ACTIONS(4369), + [anon_sym_asm] = ACTIONS(4369), + [anon_sym_AT_LBRACK] = ACTIONS(4369), + [sym___double_quote] = ACTIONS(4369), + [sym___single_quote] = ACTIONS(4369), + [sym___c_double_quote] = ACTIONS(4369), + [sym___c_single_quote] = ACTIONS(4369), + [sym___r_double_quote] = ACTIONS(4369), + [sym___r_single_quote] = ACTIONS(4369), }, [1567] = { [sym_line_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(4377), - [sym_identifier] = ACTIONS(4379), - [anon_sym_LF] = ACTIONS(4379), - [anon_sym_CR] = ACTIONS(4379), - [anon_sym_CR_LF] = ACTIONS(4379), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_const] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym___global] = ACTIONS(4379), - [anon_sym_type] = ACTIONS(4379), - [anon_sym_fn] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_struct] = ACTIONS(4379), - [anon_sym_union] = ACTIONS(4379), - [anon_sym_pub] = ACTIONS(4379), - [anon_sym_mut] = ACTIONS(4379), - [anon_sym_enum] = ACTIONS(4379), - [anon_sym_interface] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4379), - [anon_sym_go] = ACTIONS(4379), - [anon_sym_spawn] = ACTIONS(4379), - [anon_sym_json_DOTdecode] = ACTIONS(4379), - [anon_sym_LBRACK2] = ACTIONS(4379), - [anon_sym_TILDE] = ACTIONS(4379), - [anon_sym_CARET] = ACTIONS(4379), - [anon_sym_AMP] = ACTIONS(4379), - [anon_sym_LT_DASH] = ACTIONS(4379), - [sym_none] = ACTIONS(4379), - [sym_true] = ACTIONS(4379), - [sym_false] = ACTIONS(4379), - [sym_nil] = ACTIONS(4379), - [anon_sym_if] = ACTIONS(4379), - [anon_sym_DOLLARif] = ACTIONS(4379), - [anon_sym_match] = ACTIONS(4379), - [anon_sym_select] = ACTIONS(4379), - [anon_sym_lock] = ACTIONS(4379), - [anon_sym_rlock] = ACTIONS(4379), - [anon_sym_unsafe] = ACTIONS(4379), - [anon_sym_sql] = ACTIONS(4379), - [sym_int_literal] = ACTIONS(4379), - [sym_float_literal] = ACTIONS(4379), - [sym_rune_literal] = ACTIONS(4379), - [sym_pseudo_compile_time_identifier] = ACTIONS(4379), - [anon_sym_shared] = ACTIONS(4379), - [anon_sym_map_LBRACK] = ACTIONS(4379), - [anon_sym_chan] = ACTIONS(4379), - [anon_sym_thread] = ACTIONS(4379), - [anon_sym_atomic] = ACTIONS(4379), - [anon_sym_assert] = ACTIONS(4379), - [anon_sym_defer] = ACTIONS(4379), - [anon_sym_goto] = ACTIONS(4379), - [anon_sym_break] = ACTIONS(4379), - [anon_sym_continue] = ACTIONS(4379), - [anon_sym_return] = ACTIONS(4379), - [anon_sym_DOLLARfor] = ACTIONS(4379), - [anon_sym_for] = ACTIONS(4379), - [anon_sym_POUND] = ACTIONS(4379), - [anon_sym_asm] = ACTIONS(4379), - [anon_sym_AT_LBRACK] = ACTIONS(4379), - [sym___double_quote] = ACTIONS(4379), - [sym___single_quote] = ACTIONS(4379), - [sym___c_double_quote] = ACTIONS(4379), - [sym___c_single_quote] = ACTIONS(4379), - [sym___r_double_quote] = ACTIONS(4379), - [sym___r_single_quote] = ACTIONS(4379), + [sym_block_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(4371), + [sym_identifier] = ACTIONS(4373), + [anon_sym_LF] = ACTIONS(4373), + [anon_sym_CR] = ACTIONS(4373), + [anon_sym_CR_LF] = ACTIONS(4373), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_const] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym___global] = ACTIONS(4373), + [anon_sym_type] = ACTIONS(4373), + [anon_sym_fn] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_struct] = ACTIONS(4373), + [anon_sym_union] = ACTIONS(4373), + [anon_sym_pub] = ACTIONS(4373), + [anon_sym_mut] = ACTIONS(4373), + [anon_sym_enum] = ACTIONS(4373), + [anon_sym_interface] = ACTIONS(4373), + [anon_sym_QMARK] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_go] = ACTIONS(4373), + [anon_sym_spawn] = ACTIONS(4373), + [anon_sym_json_DOTdecode] = ACTIONS(4373), + [anon_sym_LBRACK2] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_CARET] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4373), + [anon_sym_LT_DASH] = ACTIONS(4373), + [sym_none] = ACTIONS(4373), + [sym_true] = ACTIONS(4373), + [sym_false] = ACTIONS(4373), + [sym_nil] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_DOLLARif] = ACTIONS(4373), + [anon_sym_match] = ACTIONS(4373), + [anon_sym_select] = ACTIONS(4373), + [anon_sym_lock] = ACTIONS(4373), + [anon_sym_rlock] = ACTIONS(4373), + [anon_sym_unsafe] = ACTIONS(4373), + [anon_sym_sql] = ACTIONS(4373), + [sym_int_literal] = ACTIONS(4373), + [sym_float_literal] = ACTIONS(4373), + [sym_rune_literal] = ACTIONS(4373), + [sym_pseudo_compile_time_identifier] = ACTIONS(4373), + [anon_sym_shared] = ACTIONS(4373), + [anon_sym_map_LBRACK] = ACTIONS(4373), + [anon_sym_chan] = ACTIONS(4373), + [anon_sym_thread] = ACTIONS(4373), + [anon_sym_atomic] = ACTIONS(4373), + [anon_sym_assert] = ACTIONS(4373), + [anon_sym_defer] = ACTIONS(4373), + [anon_sym_goto] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_DOLLARfor] = ACTIONS(4373), + [anon_sym_for] = ACTIONS(4373), + [anon_sym_POUND] = ACTIONS(4373), + [anon_sym_asm] = ACTIONS(4373), + [anon_sym_AT_LBRACK] = ACTIONS(4373), + [sym___double_quote] = ACTIONS(4373), + [sym___single_quote] = ACTIONS(4373), + [sym___c_double_quote] = ACTIONS(4373), + [sym___c_single_quote] = ACTIONS(4373), + [sym___r_double_quote] = ACTIONS(4373), + [sym___r_single_quote] = ACTIONS(4373), }, [1568] = { [sym_line_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(4381), - [sym_identifier] = ACTIONS(4383), - [anon_sym_LF] = ACTIONS(4383), - [anon_sym_CR] = ACTIONS(4383), - [anon_sym_CR_LF] = ACTIONS(4383), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym___global] = ACTIONS(4383), - [anon_sym_type] = ACTIONS(4383), - [anon_sym_fn] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_pub] = ACTIONS(4383), - [anon_sym_mut] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_interface] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4383), - [anon_sym_go] = ACTIONS(4383), - [anon_sym_spawn] = ACTIONS(4383), - [anon_sym_json_DOTdecode] = ACTIONS(4383), - [anon_sym_LBRACK2] = ACTIONS(4383), - [anon_sym_TILDE] = ACTIONS(4383), - [anon_sym_CARET] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_LT_DASH] = ACTIONS(4383), - [sym_none] = ACTIONS(4383), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_nil] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_DOLLARif] = ACTIONS(4383), - [anon_sym_match] = ACTIONS(4383), - [anon_sym_select] = ACTIONS(4383), - [anon_sym_lock] = ACTIONS(4383), - [anon_sym_rlock] = ACTIONS(4383), - [anon_sym_unsafe] = ACTIONS(4383), - [anon_sym_sql] = ACTIONS(4383), - [sym_int_literal] = ACTIONS(4383), - [sym_float_literal] = ACTIONS(4383), - [sym_rune_literal] = ACTIONS(4383), - [sym_pseudo_compile_time_identifier] = ACTIONS(4383), - [anon_sym_shared] = ACTIONS(4383), - [anon_sym_map_LBRACK] = ACTIONS(4383), - [anon_sym_chan] = ACTIONS(4383), - [anon_sym_thread] = ACTIONS(4383), - [anon_sym_atomic] = ACTIONS(4383), - [anon_sym_assert] = ACTIONS(4383), - [anon_sym_defer] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_DOLLARfor] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym_AT_LBRACK] = ACTIONS(4383), - [sym___double_quote] = ACTIONS(4383), - [sym___single_quote] = ACTIONS(4383), - [sym___c_double_quote] = ACTIONS(4383), - [sym___c_single_quote] = ACTIONS(4383), - [sym___r_double_quote] = ACTIONS(4383), - [sym___r_single_quote] = ACTIONS(4383), + [sym_block_comment] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(4375), + [sym_identifier] = ACTIONS(4377), + [anon_sym_LF] = ACTIONS(4377), + [anon_sym_CR] = ACTIONS(4377), + [anon_sym_CR_LF] = ACTIONS(4377), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4377), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_const] = ACTIONS(4377), + [anon_sym_LPAREN] = ACTIONS(4377), + [anon_sym___global] = ACTIONS(4377), + [anon_sym_type] = ACTIONS(4377), + [anon_sym_fn] = ACTIONS(4377), + [anon_sym_PLUS] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_struct] = ACTIONS(4377), + [anon_sym_union] = ACTIONS(4377), + [anon_sym_pub] = ACTIONS(4377), + [anon_sym_mut] = ACTIONS(4377), + [anon_sym_enum] = ACTIONS(4377), + [anon_sym_interface] = ACTIONS(4377), + [anon_sym_QMARK] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_go] = ACTIONS(4377), + [anon_sym_spawn] = ACTIONS(4377), + [anon_sym_json_DOTdecode] = ACTIONS(4377), + [anon_sym_LBRACK2] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_CARET] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4377), + [anon_sym_LT_DASH] = ACTIONS(4377), + [sym_none] = ACTIONS(4377), + [sym_true] = ACTIONS(4377), + [sym_false] = ACTIONS(4377), + [sym_nil] = ACTIONS(4377), + [anon_sym_if] = ACTIONS(4377), + [anon_sym_DOLLARif] = ACTIONS(4377), + [anon_sym_match] = ACTIONS(4377), + [anon_sym_select] = ACTIONS(4377), + [anon_sym_lock] = ACTIONS(4377), + [anon_sym_rlock] = ACTIONS(4377), + [anon_sym_unsafe] = ACTIONS(4377), + [anon_sym_sql] = ACTIONS(4377), + [sym_int_literal] = ACTIONS(4377), + [sym_float_literal] = ACTIONS(4377), + [sym_rune_literal] = ACTIONS(4377), + [sym_pseudo_compile_time_identifier] = ACTIONS(4377), + [anon_sym_shared] = ACTIONS(4377), + [anon_sym_map_LBRACK] = ACTIONS(4377), + [anon_sym_chan] = ACTIONS(4377), + [anon_sym_thread] = ACTIONS(4377), + [anon_sym_atomic] = ACTIONS(4377), + [anon_sym_assert] = ACTIONS(4377), + [anon_sym_defer] = ACTIONS(4377), + [anon_sym_goto] = ACTIONS(4377), + [anon_sym_break] = ACTIONS(4377), + [anon_sym_continue] = ACTIONS(4377), + [anon_sym_return] = ACTIONS(4377), + [anon_sym_DOLLARfor] = ACTIONS(4377), + [anon_sym_for] = ACTIONS(4377), + [anon_sym_POUND] = ACTIONS(4377), + [anon_sym_asm] = ACTIONS(4377), + [anon_sym_AT_LBRACK] = ACTIONS(4377), + [sym___double_quote] = ACTIONS(4377), + [sym___single_quote] = ACTIONS(4377), + [sym___c_double_quote] = ACTIONS(4377), + [sym___c_single_quote] = ACTIONS(4377), + [sym___r_double_quote] = ACTIONS(4377), + [sym___r_single_quote] = ACTIONS(4377), }, [1569] = { [sym_line_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(4385), - [sym_identifier] = ACTIONS(4387), - [anon_sym_LF] = ACTIONS(4387), - [anon_sym_CR] = ACTIONS(4387), - [anon_sym_CR_LF] = ACTIONS(4387), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym___global] = ACTIONS(4387), - [anon_sym_type] = ACTIONS(4387), - [anon_sym_fn] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4387), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_STAR] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_pub] = ACTIONS(4387), - [anon_sym_mut] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_interface] = ACTIONS(4387), - [anon_sym_QMARK] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4387), - [anon_sym_go] = ACTIONS(4387), - [anon_sym_spawn] = ACTIONS(4387), - [anon_sym_json_DOTdecode] = ACTIONS(4387), - [anon_sym_LBRACK2] = ACTIONS(4387), - [anon_sym_TILDE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_LT_DASH] = ACTIONS(4387), - [sym_none] = ACTIONS(4387), - [sym_true] = ACTIONS(4387), - [sym_false] = ACTIONS(4387), - [sym_nil] = ACTIONS(4387), - [anon_sym_if] = ACTIONS(4387), - [anon_sym_DOLLARif] = ACTIONS(4387), - [anon_sym_match] = ACTIONS(4387), - [anon_sym_select] = ACTIONS(4387), - [anon_sym_lock] = ACTIONS(4387), - [anon_sym_rlock] = ACTIONS(4387), - [anon_sym_unsafe] = ACTIONS(4387), - [anon_sym_sql] = ACTIONS(4387), - [sym_int_literal] = ACTIONS(4387), - [sym_float_literal] = ACTIONS(4387), - [sym_rune_literal] = ACTIONS(4387), - [sym_pseudo_compile_time_identifier] = ACTIONS(4387), - [anon_sym_shared] = ACTIONS(4387), - [anon_sym_map_LBRACK] = ACTIONS(4387), - [anon_sym_chan] = ACTIONS(4387), - [anon_sym_thread] = ACTIONS(4387), - [anon_sym_atomic] = ACTIONS(4387), - [anon_sym_assert] = ACTIONS(4387), - [anon_sym_defer] = ACTIONS(4387), - [anon_sym_goto] = ACTIONS(4387), - [anon_sym_break] = ACTIONS(4387), - [anon_sym_continue] = ACTIONS(4387), - [anon_sym_return] = ACTIONS(4387), - [anon_sym_DOLLARfor] = ACTIONS(4387), - [anon_sym_for] = ACTIONS(4387), - [anon_sym_POUND] = ACTIONS(4387), - [anon_sym_asm] = ACTIONS(4387), - [anon_sym_AT_LBRACK] = ACTIONS(4387), - [sym___double_quote] = ACTIONS(4387), - [sym___single_quote] = ACTIONS(4387), - [sym___c_double_quote] = ACTIONS(4387), - [sym___c_single_quote] = ACTIONS(4387), - [sym___r_double_quote] = ACTIONS(4387), - [sym___r_single_quote] = ACTIONS(4387), + [sym_block_comment] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(4379), + [sym_identifier] = ACTIONS(4381), + [anon_sym_LF] = ACTIONS(4381), + [anon_sym_CR] = ACTIONS(4381), + [anon_sym_CR_LF] = ACTIONS(4381), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4381), + [anon_sym_LBRACE] = ACTIONS(4381), + [anon_sym_const] = ACTIONS(4381), + [anon_sym_LPAREN] = ACTIONS(4381), + [anon_sym___global] = ACTIONS(4381), + [anon_sym_type] = ACTIONS(4381), + [anon_sym_fn] = ACTIONS(4381), + [anon_sym_PLUS] = ACTIONS(4381), + [anon_sym_DASH] = ACTIONS(4381), + [anon_sym_STAR] = ACTIONS(4381), + [anon_sym_struct] = ACTIONS(4381), + [anon_sym_union] = ACTIONS(4381), + [anon_sym_pub] = ACTIONS(4381), + [anon_sym_mut] = ACTIONS(4381), + [anon_sym_enum] = ACTIONS(4381), + [anon_sym_interface] = ACTIONS(4381), + [anon_sym_QMARK] = ACTIONS(4381), + [anon_sym_BANG] = ACTIONS(4381), + [anon_sym_go] = ACTIONS(4381), + [anon_sym_spawn] = ACTIONS(4381), + [anon_sym_json_DOTdecode] = ACTIONS(4381), + [anon_sym_LBRACK2] = ACTIONS(4381), + [anon_sym_TILDE] = ACTIONS(4381), + [anon_sym_CARET] = ACTIONS(4381), + [anon_sym_AMP] = ACTIONS(4381), + [anon_sym_LT_DASH] = ACTIONS(4381), + [sym_none] = ACTIONS(4381), + [sym_true] = ACTIONS(4381), + [sym_false] = ACTIONS(4381), + [sym_nil] = ACTIONS(4381), + [anon_sym_if] = ACTIONS(4381), + [anon_sym_DOLLARif] = ACTIONS(4381), + [anon_sym_match] = ACTIONS(4381), + [anon_sym_select] = ACTIONS(4381), + [anon_sym_lock] = ACTIONS(4381), + [anon_sym_rlock] = ACTIONS(4381), + [anon_sym_unsafe] = ACTIONS(4381), + [anon_sym_sql] = ACTIONS(4381), + [sym_int_literal] = ACTIONS(4381), + [sym_float_literal] = ACTIONS(4381), + [sym_rune_literal] = ACTIONS(4381), + [sym_pseudo_compile_time_identifier] = ACTIONS(4381), + [anon_sym_shared] = ACTIONS(4381), + [anon_sym_map_LBRACK] = ACTIONS(4381), + [anon_sym_chan] = ACTIONS(4381), + [anon_sym_thread] = ACTIONS(4381), + [anon_sym_atomic] = ACTIONS(4381), + [anon_sym_assert] = ACTIONS(4381), + [anon_sym_defer] = ACTIONS(4381), + [anon_sym_goto] = ACTIONS(4381), + [anon_sym_break] = ACTIONS(4381), + [anon_sym_continue] = ACTIONS(4381), + [anon_sym_return] = ACTIONS(4381), + [anon_sym_DOLLARfor] = ACTIONS(4381), + [anon_sym_for] = ACTIONS(4381), + [anon_sym_POUND] = ACTIONS(4381), + [anon_sym_asm] = ACTIONS(4381), + [anon_sym_AT_LBRACK] = ACTIONS(4381), + [sym___double_quote] = ACTIONS(4381), + [sym___single_quote] = ACTIONS(4381), + [sym___c_double_quote] = ACTIONS(4381), + [sym___c_single_quote] = ACTIONS(4381), + [sym___r_double_quote] = ACTIONS(4381), + [sym___r_single_quote] = ACTIONS(4381), }, [1570] = { [sym_line_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_LF] = ACTIONS(2747), - [anon_sym_CR] = ACTIONS(2747), - [anon_sym_CR_LF] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_LPAREN] = ACTIONS(2747), - [anon_sym___global] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_mut] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_interface] = ACTIONS(2747), - [anon_sym_QMARK] = ACTIONS(2747), - [anon_sym_BANG] = ACTIONS(2747), - [anon_sym_go] = ACTIONS(2747), - [anon_sym_spawn] = ACTIONS(2747), - [anon_sym_json_DOTdecode] = ACTIONS(2747), - [anon_sym_LBRACK2] = ACTIONS(2747), - [anon_sym_TILDE] = ACTIONS(2747), - [anon_sym_CARET] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_LT_DASH] = ACTIONS(2747), - [sym_none] = ACTIONS(2747), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_nil] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_DOLLARif] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_select] = ACTIONS(2747), - [anon_sym_lock] = ACTIONS(2747), - [anon_sym_rlock] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_sql] = ACTIONS(2747), - [sym_int_literal] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), - [sym_rune_literal] = ACTIONS(2747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2747), - [anon_sym_shared] = ACTIONS(2747), - [anon_sym_map_LBRACK] = ACTIONS(2747), - [anon_sym_chan] = ACTIONS(2747), - [anon_sym_thread] = ACTIONS(2747), - [anon_sym_atomic] = ACTIONS(2747), - [anon_sym_assert] = ACTIONS(2747), - [anon_sym_defer] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_DOLLARfor] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_POUND] = ACTIONS(2747), - [anon_sym_asm] = ACTIONS(2747), - [anon_sym_AT_LBRACK] = ACTIONS(2747), - [sym___double_quote] = ACTIONS(2747), - [sym___single_quote] = ACTIONS(2747), - [sym___c_double_quote] = ACTIONS(2747), - [sym___c_single_quote] = ACTIONS(2747), - [sym___r_double_quote] = ACTIONS(2747), - [sym___r_single_quote] = ACTIONS(2747), + [sym_block_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(4383), + [sym_identifier] = ACTIONS(4385), + [anon_sym_LF] = ACTIONS(4385), + [anon_sym_CR] = ACTIONS(4385), + [anon_sym_CR_LF] = ACTIONS(4385), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(4385), + [anon_sym___global] = ACTIONS(4385), + [anon_sym_type] = ACTIONS(4385), + [anon_sym_fn] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_pub] = ACTIONS(4385), + [anon_sym_mut] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_interface] = ACTIONS(4385), + [anon_sym_QMARK] = ACTIONS(4385), + [anon_sym_BANG] = ACTIONS(4385), + [anon_sym_go] = ACTIONS(4385), + [anon_sym_spawn] = ACTIONS(4385), + [anon_sym_json_DOTdecode] = ACTIONS(4385), + [anon_sym_LBRACK2] = ACTIONS(4385), + [anon_sym_TILDE] = ACTIONS(4385), + [anon_sym_CARET] = ACTIONS(4385), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_LT_DASH] = ACTIONS(4385), + [sym_none] = ACTIONS(4385), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [sym_nil] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_DOLLARif] = ACTIONS(4385), + [anon_sym_match] = ACTIONS(4385), + [anon_sym_select] = ACTIONS(4385), + [anon_sym_lock] = ACTIONS(4385), + [anon_sym_rlock] = ACTIONS(4385), + [anon_sym_unsafe] = ACTIONS(4385), + [anon_sym_sql] = ACTIONS(4385), + [sym_int_literal] = ACTIONS(4385), + [sym_float_literal] = ACTIONS(4385), + [sym_rune_literal] = ACTIONS(4385), + [sym_pseudo_compile_time_identifier] = ACTIONS(4385), + [anon_sym_shared] = ACTIONS(4385), + [anon_sym_map_LBRACK] = ACTIONS(4385), + [anon_sym_chan] = ACTIONS(4385), + [anon_sym_thread] = ACTIONS(4385), + [anon_sym_atomic] = ACTIONS(4385), + [anon_sym_assert] = ACTIONS(4385), + [anon_sym_defer] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_DOLLARfor] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_POUND] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym_AT_LBRACK] = ACTIONS(4385), + [sym___double_quote] = ACTIONS(4385), + [sym___single_quote] = ACTIONS(4385), + [sym___c_double_quote] = ACTIONS(4385), + [sym___c_single_quote] = ACTIONS(4385), + [sym___r_double_quote] = ACTIONS(4385), + [sym___r_single_quote] = ACTIONS(4385), }, [1571] = { [sym_line_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_identifier] = ACTIONS(4391), - [anon_sym_LF] = ACTIONS(4391), - [anon_sym_CR] = ACTIONS(4391), - [anon_sym_CR_LF] = ACTIONS(4391), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_const] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym___global] = ACTIONS(4391), - [anon_sym_type] = ACTIONS(4391), - [anon_sym_fn] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_struct] = ACTIONS(4391), - [anon_sym_union] = ACTIONS(4391), - [anon_sym_pub] = ACTIONS(4391), - [anon_sym_mut] = ACTIONS(4391), - [anon_sym_enum] = ACTIONS(4391), - [anon_sym_interface] = ACTIONS(4391), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_go] = ACTIONS(4391), - [anon_sym_spawn] = ACTIONS(4391), - [anon_sym_json_DOTdecode] = ACTIONS(4391), - [anon_sym_LBRACK2] = ACTIONS(4391), - [anon_sym_TILDE] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_DASH] = ACTIONS(4391), - [sym_none] = ACTIONS(4391), - [sym_true] = ACTIONS(4391), - [sym_false] = ACTIONS(4391), - [sym_nil] = ACTIONS(4391), - [anon_sym_if] = ACTIONS(4391), - [anon_sym_DOLLARif] = ACTIONS(4391), - [anon_sym_match] = ACTIONS(4391), - [anon_sym_select] = ACTIONS(4391), - [anon_sym_lock] = ACTIONS(4391), - [anon_sym_rlock] = ACTIONS(4391), - [anon_sym_unsafe] = ACTIONS(4391), - [anon_sym_sql] = ACTIONS(4391), - [sym_int_literal] = ACTIONS(4391), - [sym_float_literal] = ACTIONS(4391), - [sym_rune_literal] = ACTIONS(4391), - [sym_pseudo_compile_time_identifier] = ACTIONS(4391), - [anon_sym_shared] = ACTIONS(4391), - [anon_sym_map_LBRACK] = ACTIONS(4391), - [anon_sym_chan] = ACTIONS(4391), - [anon_sym_thread] = ACTIONS(4391), - [anon_sym_atomic] = ACTIONS(4391), - [anon_sym_assert] = ACTIONS(4391), - [anon_sym_defer] = ACTIONS(4391), - [anon_sym_goto] = ACTIONS(4391), - [anon_sym_break] = ACTIONS(4391), - [anon_sym_continue] = ACTIONS(4391), - [anon_sym_return] = ACTIONS(4391), - [anon_sym_DOLLARfor] = ACTIONS(4391), - [anon_sym_for] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(4391), - [anon_sym_asm] = ACTIONS(4391), - [anon_sym_AT_LBRACK] = ACTIONS(4391), - [sym___double_quote] = ACTIONS(4391), - [sym___single_quote] = ACTIONS(4391), - [sym___c_double_quote] = ACTIONS(4391), - [sym___c_single_quote] = ACTIONS(4391), - [sym___r_double_quote] = ACTIONS(4391), - [sym___r_single_quote] = ACTIONS(4391), + [sym_block_comment] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(4387), + [sym_identifier] = ACTIONS(4389), + [anon_sym_LF] = ACTIONS(4389), + [anon_sym_CR] = ACTIONS(4389), + [anon_sym_CR_LF] = ACTIONS(4389), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4389), + [anon_sym___global] = ACTIONS(4389), + [anon_sym_type] = ACTIONS(4389), + [anon_sym_fn] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_pub] = ACTIONS(4389), + [anon_sym_mut] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_interface] = ACTIONS(4389), + [anon_sym_QMARK] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_go] = ACTIONS(4389), + [anon_sym_spawn] = ACTIONS(4389), + [anon_sym_json_DOTdecode] = ACTIONS(4389), + [anon_sym_LBRACK2] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_CARET] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_LT_DASH] = ACTIONS(4389), + [sym_none] = ACTIONS(4389), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_nil] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_DOLLARif] = ACTIONS(4389), + [anon_sym_match] = ACTIONS(4389), + [anon_sym_select] = ACTIONS(4389), + [anon_sym_lock] = ACTIONS(4389), + [anon_sym_rlock] = ACTIONS(4389), + [anon_sym_unsafe] = ACTIONS(4389), + [anon_sym_sql] = ACTIONS(4389), + [sym_int_literal] = ACTIONS(4389), + [sym_float_literal] = ACTIONS(4389), + [sym_rune_literal] = ACTIONS(4389), + [sym_pseudo_compile_time_identifier] = ACTIONS(4389), + [anon_sym_shared] = ACTIONS(4389), + [anon_sym_map_LBRACK] = ACTIONS(4389), + [anon_sym_chan] = ACTIONS(4389), + [anon_sym_thread] = ACTIONS(4389), + [anon_sym_atomic] = ACTIONS(4389), + [anon_sym_assert] = ACTIONS(4389), + [anon_sym_defer] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_DOLLARfor] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_POUND] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym_AT_LBRACK] = ACTIONS(4389), + [sym___double_quote] = ACTIONS(4389), + [sym___single_quote] = ACTIONS(4389), + [sym___c_double_quote] = ACTIONS(4389), + [sym___c_single_quote] = ACTIONS(4389), + [sym___r_double_quote] = ACTIONS(4389), + [sym___r_single_quote] = ACTIONS(4389), }, [1572] = { [sym_line_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_LT_DASH] = ACTIONS(1757), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), + [sym_block_comment] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(4391), + [sym_identifier] = ACTIONS(4393), + [anon_sym_LF] = ACTIONS(4393), + [anon_sym_CR] = ACTIONS(4393), + [anon_sym_CR_LF] = ACTIONS(4393), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_LPAREN] = ACTIONS(4393), + [anon_sym___global] = ACTIONS(4393), + [anon_sym_type] = ACTIONS(4393), + [anon_sym_fn] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_pub] = ACTIONS(4393), + [anon_sym_mut] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_interface] = ACTIONS(4393), + [anon_sym_QMARK] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_go] = ACTIONS(4393), + [anon_sym_spawn] = ACTIONS(4393), + [anon_sym_json_DOTdecode] = ACTIONS(4393), + [anon_sym_LBRACK2] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_CARET] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_LT_DASH] = ACTIONS(4393), + [sym_none] = ACTIONS(4393), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [sym_nil] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_DOLLARif] = ACTIONS(4393), + [anon_sym_match] = ACTIONS(4393), + [anon_sym_select] = ACTIONS(4393), + [anon_sym_lock] = ACTIONS(4393), + [anon_sym_rlock] = ACTIONS(4393), + [anon_sym_unsafe] = ACTIONS(4393), + [anon_sym_sql] = ACTIONS(4393), + [sym_int_literal] = ACTIONS(4393), + [sym_float_literal] = ACTIONS(4393), + [sym_rune_literal] = ACTIONS(4393), + [sym_pseudo_compile_time_identifier] = ACTIONS(4393), + [anon_sym_shared] = ACTIONS(4393), + [anon_sym_map_LBRACK] = ACTIONS(4393), + [anon_sym_chan] = ACTIONS(4393), + [anon_sym_thread] = ACTIONS(4393), + [anon_sym_atomic] = ACTIONS(4393), + [anon_sym_assert] = ACTIONS(4393), + [anon_sym_defer] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_DOLLARfor] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_POUND] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym_AT_LBRACK] = ACTIONS(4393), + [sym___double_quote] = ACTIONS(4393), + [sym___single_quote] = ACTIONS(4393), + [sym___c_double_quote] = ACTIONS(4393), + [sym___c_single_quote] = ACTIONS(4393), + [sym___r_double_quote] = ACTIONS(4393), + [sym___r_single_quote] = ACTIONS(4393), }, [1573] = { [sym_line_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(4393), - [sym_identifier] = ACTIONS(4395), - [anon_sym_LF] = ACTIONS(4395), - [anon_sym_CR] = ACTIONS(4395), - [anon_sym_CR_LF] = ACTIONS(4395), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_const] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym___global] = ACTIONS(4395), - [anon_sym_type] = ACTIONS(4395), - [anon_sym_fn] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_struct] = ACTIONS(4395), - [anon_sym_union] = ACTIONS(4395), - [anon_sym_pub] = ACTIONS(4395), - [anon_sym_mut] = ACTIONS(4395), - [anon_sym_enum] = ACTIONS(4395), - [anon_sym_interface] = ACTIONS(4395), - [anon_sym_QMARK] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_go] = ACTIONS(4395), - [anon_sym_spawn] = ACTIONS(4395), - [anon_sym_json_DOTdecode] = ACTIONS(4395), - [anon_sym_LBRACK2] = ACTIONS(4395), - [anon_sym_TILDE] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_LT_DASH] = ACTIONS(4395), - [sym_none] = ACTIONS(4395), - [sym_true] = ACTIONS(4395), - [sym_false] = ACTIONS(4395), - [sym_nil] = ACTIONS(4395), - [anon_sym_if] = ACTIONS(4395), - [anon_sym_DOLLARif] = ACTIONS(4395), - [anon_sym_match] = ACTIONS(4395), - [anon_sym_select] = ACTIONS(4395), - [anon_sym_lock] = ACTIONS(4395), - [anon_sym_rlock] = ACTIONS(4395), - [anon_sym_unsafe] = ACTIONS(4395), - [anon_sym_sql] = ACTIONS(4395), - [sym_int_literal] = ACTIONS(4395), - [sym_float_literal] = ACTIONS(4395), - [sym_rune_literal] = ACTIONS(4395), - [sym_pseudo_compile_time_identifier] = ACTIONS(4395), - [anon_sym_shared] = ACTIONS(4395), - [anon_sym_map_LBRACK] = ACTIONS(4395), - [anon_sym_chan] = ACTIONS(4395), - [anon_sym_thread] = ACTIONS(4395), - [anon_sym_atomic] = ACTIONS(4395), - [anon_sym_assert] = ACTIONS(4395), - [anon_sym_defer] = ACTIONS(4395), - [anon_sym_goto] = ACTIONS(4395), - [anon_sym_break] = ACTIONS(4395), - [anon_sym_continue] = ACTIONS(4395), - [anon_sym_return] = ACTIONS(4395), - [anon_sym_DOLLARfor] = ACTIONS(4395), - [anon_sym_for] = ACTIONS(4395), - [anon_sym_POUND] = ACTIONS(4395), - [anon_sym_asm] = ACTIONS(4395), - [anon_sym_AT_LBRACK] = ACTIONS(4395), - [sym___double_quote] = ACTIONS(4395), - [sym___single_quote] = ACTIONS(4395), - [sym___c_double_quote] = ACTIONS(4395), - [sym___c_single_quote] = ACTIONS(4395), - [sym___r_double_quote] = ACTIONS(4395), - [sym___r_single_quote] = ACTIONS(4395), + [sym_block_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(4395), + [sym_identifier] = ACTIONS(4397), + [anon_sym_LF] = ACTIONS(4397), + [anon_sym_CR] = ACTIONS(4397), + [anon_sym_CR_LF] = ACTIONS(4397), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym___global] = ACTIONS(4397), + [anon_sym_type] = ACTIONS(4397), + [anon_sym_fn] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_pub] = ACTIONS(4397), + [anon_sym_mut] = ACTIONS(4397), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_interface] = ACTIONS(4397), + [anon_sym_QMARK] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_go] = ACTIONS(4397), + [anon_sym_spawn] = ACTIONS(4397), + [anon_sym_json_DOTdecode] = ACTIONS(4397), + [anon_sym_LBRACK2] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_CARET] = ACTIONS(4397), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_LT_DASH] = ACTIONS(4397), + [sym_none] = ACTIONS(4397), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [sym_nil] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_DOLLARif] = ACTIONS(4397), + [anon_sym_match] = ACTIONS(4397), + [anon_sym_select] = ACTIONS(4397), + [anon_sym_lock] = ACTIONS(4397), + [anon_sym_rlock] = ACTIONS(4397), + [anon_sym_unsafe] = ACTIONS(4397), + [anon_sym_sql] = ACTIONS(4397), + [sym_int_literal] = ACTIONS(4397), + [sym_float_literal] = ACTIONS(4397), + [sym_rune_literal] = ACTIONS(4397), + [sym_pseudo_compile_time_identifier] = ACTIONS(4397), + [anon_sym_shared] = ACTIONS(4397), + [anon_sym_map_LBRACK] = ACTIONS(4397), + [anon_sym_chan] = ACTIONS(4397), + [anon_sym_thread] = ACTIONS(4397), + [anon_sym_atomic] = ACTIONS(4397), + [anon_sym_assert] = ACTIONS(4397), + [anon_sym_defer] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_DOLLARfor] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_POUND] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym_AT_LBRACK] = ACTIONS(4397), + [sym___double_quote] = ACTIONS(4397), + [sym___single_quote] = ACTIONS(4397), + [sym___c_double_quote] = ACTIONS(4397), + [sym___c_single_quote] = ACTIONS(4397), + [sym___r_double_quote] = ACTIONS(4397), + [sym___r_single_quote] = ACTIONS(4397), }, [1574] = { [sym_line_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(4397), - [sym_identifier] = ACTIONS(4399), - [anon_sym_LF] = ACTIONS(4399), - [anon_sym_CR] = ACTIONS(4399), - [anon_sym_CR_LF] = ACTIONS(4399), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_const] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4399), - [anon_sym___global] = ACTIONS(4399), - [anon_sym_type] = ACTIONS(4399), - [anon_sym_fn] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_struct] = ACTIONS(4399), - [anon_sym_union] = ACTIONS(4399), - [anon_sym_pub] = ACTIONS(4399), - [anon_sym_mut] = ACTIONS(4399), - [anon_sym_enum] = ACTIONS(4399), - [anon_sym_interface] = ACTIONS(4399), - [anon_sym_QMARK] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_go] = ACTIONS(4399), - [anon_sym_spawn] = ACTIONS(4399), - [anon_sym_json_DOTdecode] = ACTIONS(4399), - [anon_sym_LBRACK2] = ACTIONS(4399), - [anon_sym_TILDE] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym_AMP] = ACTIONS(4399), - [anon_sym_LT_DASH] = ACTIONS(4399), - [sym_none] = ACTIONS(4399), - [sym_true] = ACTIONS(4399), - [sym_false] = ACTIONS(4399), - [sym_nil] = ACTIONS(4399), - [anon_sym_if] = ACTIONS(4399), - [anon_sym_DOLLARif] = ACTIONS(4399), - [anon_sym_match] = ACTIONS(4399), - [anon_sym_select] = ACTIONS(4399), - [anon_sym_lock] = ACTIONS(4399), - [anon_sym_rlock] = ACTIONS(4399), - [anon_sym_unsafe] = ACTIONS(4399), - [anon_sym_sql] = ACTIONS(4399), - [sym_int_literal] = ACTIONS(4399), - [sym_float_literal] = ACTIONS(4399), - [sym_rune_literal] = ACTIONS(4399), - [sym_pseudo_compile_time_identifier] = ACTIONS(4399), - [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4399), - [anon_sym_chan] = ACTIONS(4399), - [anon_sym_thread] = ACTIONS(4399), - [anon_sym_atomic] = ACTIONS(4399), - [anon_sym_assert] = ACTIONS(4399), - [anon_sym_defer] = ACTIONS(4399), - [anon_sym_goto] = ACTIONS(4399), - [anon_sym_break] = ACTIONS(4399), - [anon_sym_continue] = ACTIONS(4399), - [anon_sym_return] = ACTIONS(4399), - [anon_sym_DOLLARfor] = ACTIONS(4399), - [anon_sym_for] = ACTIONS(4399), - [anon_sym_POUND] = ACTIONS(4399), - [anon_sym_asm] = ACTIONS(4399), - [anon_sym_AT_LBRACK] = ACTIONS(4399), - [sym___double_quote] = ACTIONS(4399), - [sym___single_quote] = ACTIONS(4399), - [sym___c_double_quote] = ACTIONS(4399), - [sym___c_single_quote] = ACTIONS(4399), - [sym___r_double_quote] = ACTIONS(4399), - [sym___r_single_quote] = ACTIONS(4399), + [sym_block_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(4399), + [sym_identifier] = ACTIONS(4401), + [anon_sym_LF] = ACTIONS(4401), + [anon_sym_CR] = ACTIONS(4401), + [anon_sym_CR_LF] = ACTIONS(4401), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_LPAREN] = ACTIONS(4401), + [anon_sym___global] = ACTIONS(4401), + [anon_sym_type] = ACTIONS(4401), + [anon_sym_fn] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4401), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_pub] = ACTIONS(4401), + [anon_sym_mut] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_interface] = ACTIONS(4401), + [anon_sym_QMARK] = ACTIONS(4401), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_go] = ACTIONS(4401), + [anon_sym_spawn] = ACTIONS(4401), + [anon_sym_json_DOTdecode] = ACTIONS(4401), + [anon_sym_LBRACK2] = ACTIONS(4401), + [anon_sym_TILDE] = ACTIONS(4401), + [anon_sym_CARET] = ACTIONS(4401), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_LT_DASH] = ACTIONS(4401), + [sym_none] = ACTIONS(4401), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [sym_nil] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_DOLLARif] = ACTIONS(4401), + [anon_sym_match] = ACTIONS(4401), + [anon_sym_select] = ACTIONS(4401), + [anon_sym_lock] = ACTIONS(4401), + [anon_sym_rlock] = ACTIONS(4401), + [anon_sym_unsafe] = ACTIONS(4401), + [anon_sym_sql] = ACTIONS(4401), + [sym_int_literal] = ACTIONS(4401), + [sym_float_literal] = ACTIONS(4401), + [sym_rune_literal] = ACTIONS(4401), + [sym_pseudo_compile_time_identifier] = ACTIONS(4401), + [anon_sym_shared] = ACTIONS(4401), + [anon_sym_map_LBRACK] = ACTIONS(4401), + [anon_sym_chan] = ACTIONS(4401), + [anon_sym_thread] = ACTIONS(4401), + [anon_sym_atomic] = ACTIONS(4401), + [anon_sym_assert] = ACTIONS(4401), + [anon_sym_defer] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_DOLLARfor] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym_AT_LBRACK] = ACTIONS(4401), + [sym___double_quote] = ACTIONS(4401), + [sym___single_quote] = ACTIONS(4401), + [sym___c_double_quote] = ACTIONS(4401), + [sym___c_single_quote] = ACTIONS(4401), + [sym___r_double_quote] = ACTIONS(4401), + [sym___r_single_quote] = ACTIONS(4401), }, [1575] = { [sym_line_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(4401), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LF] = ACTIONS(4403), - [anon_sym_CR] = ACTIONS(4403), - [anon_sym_CR_LF] = ACTIONS(4403), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_const] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym___global] = ACTIONS(4403), - [anon_sym_type] = ACTIONS(4403), - [anon_sym_fn] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4403), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_struct] = ACTIONS(4403), - [anon_sym_union] = ACTIONS(4403), - [anon_sym_pub] = ACTIONS(4403), - [anon_sym_mut] = ACTIONS(4403), - [anon_sym_enum] = ACTIONS(4403), - [anon_sym_interface] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_go] = ACTIONS(4403), - [anon_sym_spawn] = ACTIONS(4403), - [anon_sym_json_DOTdecode] = ACTIONS(4403), - [anon_sym_LBRACK2] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_CARET] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT_DASH] = ACTIONS(4403), - [sym_none] = ACTIONS(4403), - [sym_true] = ACTIONS(4403), - [sym_false] = ACTIONS(4403), - [sym_nil] = ACTIONS(4403), - [anon_sym_if] = ACTIONS(4403), - [anon_sym_DOLLARif] = ACTIONS(4403), - [anon_sym_match] = ACTIONS(4403), - [anon_sym_select] = ACTIONS(4403), - [anon_sym_lock] = ACTIONS(4403), - [anon_sym_rlock] = ACTIONS(4403), - [anon_sym_unsafe] = ACTIONS(4403), - [anon_sym_sql] = ACTIONS(4403), - [sym_int_literal] = ACTIONS(4403), - [sym_float_literal] = ACTIONS(4403), - [sym_rune_literal] = ACTIONS(4403), - [sym_pseudo_compile_time_identifier] = ACTIONS(4403), - [anon_sym_shared] = ACTIONS(4403), - [anon_sym_map_LBRACK] = ACTIONS(4403), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4403), - [anon_sym_atomic] = ACTIONS(4403), - [anon_sym_assert] = ACTIONS(4403), - [anon_sym_defer] = ACTIONS(4403), - [anon_sym_goto] = ACTIONS(4403), - [anon_sym_break] = ACTIONS(4403), - [anon_sym_continue] = ACTIONS(4403), - [anon_sym_return] = ACTIONS(4403), - [anon_sym_DOLLARfor] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_asm] = ACTIONS(4403), - [anon_sym_AT_LBRACK] = ACTIONS(4403), - [sym___double_quote] = ACTIONS(4403), - [sym___single_quote] = ACTIONS(4403), - [sym___c_double_quote] = ACTIONS(4403), - [sym___c_single_quote] = ACTIONS(4403), - [sym___r_double_quote] = ACTIONS(4403), - [sym___r_single_quote] = ACTIONS(4403), + [sym_block_comment] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(4403), + [sym_identifier] = ACTIONS(4405), + [anon_sym_LF] = ACTIONS(4405), + [anon_sym_CR] = ACTIONS(4405), + [anon_sym_CR_LF] = ACTIONS(4405), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_LPAREN] = ACTIONS(4405), + [anon_sym___global] = ACTIONS(4405), + [anon_sym_type] = ACTIONS(4405), + [anon_sym_fn] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_pub] = ACTIONS(4405), + [anon_sym_mut] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_interface] = ACTIONS(4405), + [anon_sym_QMARK] = ACTIONS(4405), + [anon_sym_BANG] = ACTIONS(4405), + [anon_sym_go] = ACTIONS(4405), + [anon_sym_spawn] = ACTIONS(4405), + [anon_sym_json_DOTdecode] = ACTIONS(4405), + [anon_sym_LBRACK2] = ACTIONS(4405), + [anon_sym_TILDE] = ACTIONS(4405), + [anon_sym_CARET] = ACTIONS(4405), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_LT_DASH] = ACTIONS(4405), + [sym_none] = ACTIONS(4405), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [sym_nil] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_DOLLARif] = ACTIONS(4405), + [anon_sym_match] = ACTIONS(4405), + [anon_sym_select] = ACTIONS(4405), + [anon_sym_lock] = ACTIONS(4405), + [anon_sym_rlock] = ACTIONS(4405), + [anon_sym_unsafe] = ACTIONS(4405), + [anon_sym_sql] = ACTIONS(4405), + [sym_int_literal] = ACTIONS(4405), + [sym_float_literal] = ACTIONS(4405), + [sym_rune_literal] = ACTIONS(4405), + [sym_pseudo_compile_time_identifier] = ACTIONS(4405), + [anon_sym_shared] = ACTIONS(4405), + [anon_sym_map_LBRACK] = ACTIONS(4405), + [anon_sym_chan] = ACTIONS(4405), + [anon_sym_thread] = ACTIONS(4405), + [anon_sym_atomic] = ACTIONS(4405), + [anon_sym_assert] = ACTIONS(4405), + [anon_sym_defer] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_DOLLARfor] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_POUND] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym_AT_LBRACK] = ACTIONS(4405), + [sym___double_quote] = ACTIONS(4405), + [sym___single_quote] = ACTIONS(4405), + [sym___c_double_quote] = ACTIONS(4405), + [sym___c_single_quote] = ACTIONS(4405), + [sym___r_double_quote] = ACTIONS(4405), + [sym___r_single_quote] = ACTIONS(4405), }, [1576] = { [sym_line_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(4405), - [sym_identifier] = ACTIONS(4407), - [anon_sym_LF] = ACTIONS(4407), - [anon_sym_CR] = ACTIONS(4407), - [anon_sym_CR_LF] = ACTIONS(4407), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [anon_sym_const] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym___global] = ACTIONS(4407), - [anon_sym_type] = ACTIONS(4407), - [anon_sym_fn] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4407), - [anon_sym_DASH] = ACTIONS(4407), - [anon_sym_STAR] = ACTIONS(4407), - [anon_sym_struct] = ACTIONS(4407), - [anon_sym_union] = ACTIONS(4407), - [anon_sym_pub] = ACTIONS(4407), - [anon_sym_mut] = ACTIONS(4407), - [anon_sym_enum] = ACTIONS(4407), - [anon_sym_interface] = ACTIONS(4407), - [anon_sym_QMARK] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4407), - [anon_sym_go] = ACTIONS(4407), - [anon_sym_spawn] = ACTIONS(4407), - [anon_sym_json_DOTdecode] = ACTIONS(4407), - [anon_sym_LBRACK2] = ACTIONS(4407), - [anon_sym_TILDE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_AMP] = ACTIONS(4407), - [anon_sym_LT_DASH] = ACTIONS(4407), - [sym_none] = ACTIONS(4407), - [sym_true] = ACTIONS(4407), - [sym_false] = ACTIONS(4407), - [sym_nil] = ACTIONS(4407), - [anon_sym_if] = ACTIONS(4407), - [anon_sym_DOLLARif] = ACTIONS(4407), - [anon_sym_match] = ACTIONS(4407), - [anon_sym_select] = ACTIONS(4407), - [anon_sym_lock] = ACTIONS(4407), - [anon_sym_rlock] = ACTIONS(4407), - [anon_sym_unsafe] = ACTIONS(4407), - [anon_sym_sql] = ACTIONS(4407), - [sym_int_literal] = ACTIONS(4407), - [sym_float_literal] = ACTIONS(4407), - [sym_rune_literal] = ACTIONS(4407), - [sym_pseudo_compile_time_identifier] = ACTIONS(4407), - [anon_sym_shared] = ACTIONS(4407), - [anon_sym_map_LBRACK] = ACTIONS(4407), - [anon_sym_chan] = ACTIONS(4407), - [anon_sym_thread] = ACTIONS(4407), - [anon_sym_atomic] = ACTIONS(4407), - [anon_sym_assert] = ACTIONS(4407), - [anon_sym_defer] = ACTIONS(4407), - [anon_sym_goto] = ACTIONS(4407), - [anon_sym_break] = ACTIONS(4407), - [anon_sym_continue] = ACTIONS(4407), - [anon_sym_return] = ACTIONS(4407), - [anon_sym_DOLLARfor] = ACTIONS(4407), - [anon_sym_for] = ACTIONS(4407), - [anon_sym_POUND] = ACTIONS(4407), - [anon_sym_asm] = ACTIONS(4407), - [anon_sym_AT_LBRACK] = ACTIONS(4407), - [sym___double_quote] = ACTIONS(4407), - [sym___single_quote] = ACTIONS(4407), - [sym___c_double_quote] = ACTIONS(4407), - [sym___c_single_quote] = ACTIONS(4407), - [sym___r_double_quote] = ACTIONS(4407), - [sym___r_single_quote] = ACTIONS(4407), + [sym_block_comment] = STATE(1576), + [ts_builtin_sym_end] = ACTIONS(4407), + [sym_identifier] = ACTIONS(4409), + [anon_sym_LF] = ACTIONS(4409), + [anon_sym_CR] = ACTIONS(4409), + [anon_sym_CR_LF] = ACTIONS(4409), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_const] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(4409), + [anon_sym___global] = ACTIONS(4409), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_fn] = ACTIONS(4409), + [anon_sym_PLUS] = ACTIONS(4409), + [anon_sym_DASH] = ACTIONS(4409), + [anon_sym_STAR] = ACTIONS(4409), + [anon_sym_struct] = ACTIONS(4409), + [anon_sym_union] = ACTIONS(4409), + [anon_sym_pub] = ACTIONS(4409), + [anon_sym_mut] = ACTIONS(4409), + [anon_sym_enum] = ACTIONS(4409), + [anon_sym_interface] = ACTIONS(4409), + [anon_sym_QMARK] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(4409), + [anon_sym_go] = ACTIONS(4409), + [anon_sym_spawn] = ACTIONS(4409), + [anon_sym_json_DOTdecode] = ACTIONS(4409), + [anon_sym_LBRACK2] = ACTIONS(4409), + [anon_sym_TILDE] = ACTIONS(4409), + [anon_sym_CARET] = ACTIONS(4409), + [anon_sym_AMP] = ACTIONS(4409), + [anon_sym_LT_DASH] = ACTIONS(4409), + [sym_none] = ACTIONS(4409), + [sym_true] = ACTIONS(4409), + [sym_false] = ACTIONS(4409), + [sym_nil] = ACTIONS(4409), + [anon_sym_if] = ACTIONS(4409), + [anon_sym_DOLLARif] = ACTIONS(4409), + [anon_sym_match] = ACTIONS(4409), + [anon_sym_select] = ACTIONS(4409), + [anon_sym_lock] = ACTIONS(4409), + [anon_sym_rlock] = ACTIONS(4409), + [anon_sym_unsafe] = ACTIONS(4409), + [anon_sym_sql] = ACTIONS(4409), + [sym_int_literal] = ACTIONS(4409), + [sym_float_literal] = ACTIONS(4409), + [sym_rune_literal] = ACTIONS(4409), + [sym_pseudo_compile_time_identifier] = ACTIONS(4409), + [anon_sym_shared] = ACTIONS(4409), + [anon_sym_map_LBRACK] = ACTIONS(4409), + [anon_sym_chan] = ACTIONS(4409), + [anon_sym_thread] = ACTIONS(4409), + [anon_sym_atomic] = ACTIONS(4409), + [anon_sym_assert] = ACTIONS(4409), + [anon_sym_defer] = ACTIONS(4409), + [anon_sym_goto] = ACTIONS(4409), + [anon_sym_break] = ACTIONS(4409), + [anon_sym_continue] = ACTIONS(4409), + [anon_sym_return] = ACTIONS(4409), + [anon_sym_DOLLARfor] = ACTIONS(4409), + [anon_sym_for] = ACTIONS(4409), + [anon_sym_POUND] = ACTIONS(4409), + [anon_sym_asm] = ACTIONS(4409), + [anon_sym_AT_LBRACK] = ACTIONS(4409), + [sym___double_quote] = ACTIONS(4409), + [sym___single_quote] = ACTIONS(4409), + [sym___c_double_quote] = ACTIONS(4409), + [sym___c_single_quote] = ACTIONS(4409), + [sym___r_double_quote] = ACTIONS(4409), + [sym___r_single_quote] = ACTIONS(4409), }, [1577] = { [sym_line_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(4409), - [sym_identifier] = ACTIONS(4411), - [anon_sym_LF] = ACTIONS(4411), - [anon_sym_CR] = ACTIONS(4411), - [anon_sym_CR_LF] = ACTIONS(4411), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_const] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym___global] = ACTIONS(4411), - [anon_sym_type] = ACTIONS(4411), - [anon_sym_fn] = ACTIONS(4411), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_struct] = ACTIONS(4411), - [anon_sym_union] = ACTIONS(4411), - [anon_sym_pub] = ACTIONS(4411), - [anon_sym_mut] = ACTIONS(4411), - [anon_sym_enum] = ACTIONS(4411), - [anon_sym_interface] = ACTIONS(4411), - [anon_sym_QMARK] = ACTIONS(4411), - [anon_sym_BANG] = ACTIONS(4411), - [anon_sym_go] = ACTIONS(4411), - [anon_sym_spawn] = ACTIONS(4411), - [anon_sym_json_DOTdecode] = ACTIONS(4411), - [anon_sym_LBRACK2] = ACTIONS(4411), - [anon_sym_TILDE] = ACTIONS(4411), - [anon_sym_CARET] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4411), - [anon_sym_LT_DASH] = ACTIONS(4411), - [sym_none] = ACTIONS(4411), - [sym_true] = ACTIONS(4411), - [sym_false] = ACTIONS(4411), - [sym_nil] = ACTIONS(4411), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_DOLLARif] = ACTIONS(4411), - [anon_sym_match] = ACTIONS(4411), - [anon_sym_select] = ACTIONS(4411), - [anon_sym_lock] = ACTIONS(4411), - [anon_sym_rlock] = ACTIONS(4411), - [anon_sym_unsafe] = ACTIONS(4411), - [anon_sym_sql] = ACTIONS(4411), - [sym_int_literal] = ACTIONS(4411), - [sym_float_literal] = ACTIONS(4411), - [sym_rune_literal] = ACTIONS(4411), - [sym_pseudo_compile_time_identifier] = ACTIONS(4411), - [anon_sym_shared] = ACTIONS(4411), - [anon_sym_map_LBRACK] = ACTIONS(4411), - [anon_sym_chan] = ACTIONS(4411), - [anon_sym_thread] = ACTIONS(4411), - [anon_sym_atomic] = ACTIONS(4411), - [anon_sym_assert] = ACTIONS(4411), - [anon_sym_defer] = ACTIONS(4411), - [anon_sym_goto] = ACTIONS(4411), - [anon_sym_break] = ACTIONS(4411), - [anon_sym_continue] = ACTIONS(4411), - [anon_sym_return] = ACTIONS(4411), - [anon_sym_DOLLARfor] = ACTIONS(4411), - [anon_sym_for] = ACTIONS(4411), - [anon_sym_POUND] = ACTIONS(4411), - [anon_sym_asm] = ACTIONS(4411), - [anon_sym_AT_LBRACK] = ACTIONS(4411), - [sym___double_quote] = ACTIONS(4411), - [sym___single_quote] = ACTIONS(4411), - [sym___c_double_quote] = ACTIONS(4411), - [sym___c_single_quote] = ACTIONS(4411), - [sym___r_double_quote] = ACTIONS(4411), - [sym___r_single_quote] = ACTIONS(4411), + [sym_block_comment] = STATE(1577), + [ts_builtin_sym_end] = ACTIONS(4411), + [sym_identifier] = ACTIONS(4413), + [anon_sym_LF] = ACTIONS(4413), + [anon_sym_CR] = ACTIONS(4413), + [anon_sym_CR_LF] = ACTIONS(4413), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4413), + [anon_sym_LBRACE] = ACTIONS(4413), + [anon_sym_const] = ACTIONS(4413), + [anon_sym_LPAREN] = ACTIONS(4413), + [anon_sym___global] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4413), + [anon_sym_fn] = ACTIONS(4413), + [anon_sym_PLUS] = ACTIONS(4413), + [anon_sym_DASH] = ACTIONS(4413), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4413), + [anon_sym_union] = ACTIONS(4413), + [anon_sym_pub] = ACTIONS(4413), + [anon_sym_mut] = ACTIONS(4413), + [anon_sym_enum] = ACTIONS(4413), + [anon_sym_interface] = ACTIONS(4413), + [anon_sym_QMARK] = ACTIONS(4413), + [anon_sym_BANG] = ACTIONS(4413), + [anon_sym_go] = ACTIONS(4413), + [anon_sym_spawn] = ACTIONS(4413), + [anon_sym_json_DOTdecode] = ACTIONS(4413), + [anon_sym_LBRACK2] = ACTIONS(4413), + [anon_sym_TILDE] = ACTIONS(4413), + [anon_sym_CARET] = ACTIONS(4413), + [anon_sym_AMP] = ACTIONS(4413), + [anon_sym_LT_DASH] = ACTIONS(4413), + [sym_none] = ACTIONS(4413), + [sym_true] = ACTIONS(4413), + [sym_false] = ACTIONS(4413), + [sym_nil] = ACTIONS(4413), + [anon_sym_if] = ACTIONS(4413), + [anon_sym_DOLLARif] = ACTIONS(4413), + [anon_sym_match] = ACTIONS(4413), + [anon_sym_select] = ACTIONS(4413), + [anon_sym_lock] = ACTIONS(4413), + [anon_sym_rlock] = ACTIONS(4413), + [anon_sym_unsafe] = ACTIONS(4413), + [anon_sym_sql] = ACTIONS(4413), + [sym_int_literal] = ACTIONS(4413), + [sym_float_literal] = ACTIONS(4413), + [sym_rune_literal] = ACTIONS(4413), + [sym_pseudo_compile_time_identifier] = ACTIONS(4413), + [anon_sym_shared] = ACTIONS(4413), + [anon_sym_map_LBRACK] = ACTIONS(4413), + [anon_sym_chan] = ACTIONS(4413), + [anon_sym_thread] = ACTIONS(4413), + [anon_sym_atomic] = ACTIONS(4413), + [anon_sym_assert] = ACTIONS(4413), + [anon_sym_defer] = ACTIONS(4413), + [anon_sym_goto] = ACTIONS(4413), + [anon_sym_break] = ACTIONS(4413), + [anon_sym_continue] = ACTIONS(4413), + [anon_sym_return] = ACTIONS(4413), + [anon_sym_DOLLARfor] = ACTIONS(4413), + [anon_sym_for] = ACTIONS(4413), + [anon_sym_POUND] = ACTIONS(4413), + [anon_sym_asm] = ACTIONS(4413), + [anon_sym_AT_LBRACK] = ACTIONS(4413), + [sym___double_quote] = ACTIONS(4413), + [sym___single_quote] = ACTIONS(4413), + [sym___c_double_quote] = ACTIONS(4413), + [sym___c_single_quote] = ACTIONS(4413), + [sym___r_double_quote] = ACTIONS(4413), + [sym___r_single_quote] = ACTIONS(4413), }, [1578] = { [sym_line_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(4413), - [sym_identifier] = ACTIONS(4415), - [anon_sym_LF] = ACTIONS(4415), - [anon_sym_CR] = ACTIONS(4415), - [anon_sym_CR_LF] = ACTIONS(4415), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4415), - [anon_sym_const] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym___global] = ACTIONS(4415), - [anon_sym_type] = ACTIONS(4415), - [anon_sym_fn] = ACTIONS(4415), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_struct] = ACTIONS(4415), - [anon_sym_union] = ACTIONS(4415), - [anon_sym_pub] = ACTIONS(4415), - [anon_sym_mut] = ACTIONS(4415), - [anon_sym_enum] = ACTIONS(4415), - [anon_sym_interface] = ACTIONS(4415), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_go] = ACTIONS(4415), - [anon_sym_spawn] = ACTIONS(4415), - [anon_sym_json_DOTdecode] = ACTIONS(4415), - [anon_sym_LBRACK2] = ACTIONS(4415), - [anon_sym_TILDE] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_LT_DASH] = ACTIONS(4415), - [sym_none] = ACTIONS(4415), - [sym_true] = ACTIONS(4415), - [sym_false] = ACTIONS(4415), - [sym_nil] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_DOLLARif] = ACTIONS(4415), - [anon_sym_match] = ACTIONS(4415), - [anon_sym_select] = ACTIONS(4415), - [anon_sym_lock] = ACTIONS(4415), - [anon_sym_rlock] = ACTIONS(4415), - [anon_sym_unsafe] = ACTIONS(4415), - [anon_sym_sql] = ACTIONS(4415), - [sym_int_literal] = ACTIONS(4415), - [sym_float_literal] = ACTIONS(4415), - [sym_rune_literal] = ACTIONS(4415), - [sym_pseudo_compile_time_identifier] = ACTIONS(4415), - [anon_sym_shared] = ACTIONS(4415), - [anon_sym_map_LBRACK] = ACTIONS(4415), - [anon_sym_chan] = ACTIONS(4415), - [anon_sym_thread] = ACTIONS(4415), - [anon_sym_atomic] = ACTIONS(4415), - [anon_sym_assert] = ACTIONS(4415), - [anon_sym_defer] = ACTIONS(4415), - [anon_sym_goto] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_DOLLARfor] = ACTIONS(4415), - [anon_sym_for] = ACTIONS(4415), - [anon_sym_POUND] = ACTIONS(4415), - [anon_sym_asm] = ACTIONS(4415), - [anon_sym_AT_LBRACK] = ACTIONS(4415), - [sym___double_quote] = ACTIONS(4415), - [sym___single_quote] = ACTIONS(4415), - [sym___c_double_quote] = ACTIONS(4415), - [sym___c_single_quote] = ACTIONS(4415), - [sym___r_double_quote] = ACTIONS(4415), - [sym___r_single_quote] = ACTIONS(4415), + [sym_block_comment] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(4415), + [sym_identifier] = ACTIONS(4417), + [anon_sym_LF] = ACTIONS(4417), + [anon_sym_CR] = ACTIONS(4417), + [anon_sym_CR_LF] = ACTIONS(4417), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_const] = ACTIONS(4417), + [anon_sym_LPAREN] = ACTIONS(4417), + [anon_sym___global] = ACTIONS(4417), + [anon_sym_type] = ACTIONS(4417), + [anon_sym_fn] = ACTIONS(4417), + [anon_sym_PLUS] = ACTIONS(4417), + [anon_sym_DASH] = ACTIONS(4417), + [anon_sym_STAR] = ACTIONS(4417), + [anon_sym_struct] = ACTIONS(4417), + [anon_sym_union] = ACTIONS(4417), + [anon_sym_pub] = ACTIONS(4417), + [anon_sym_mut] = ACTIONS(4417), + [anon_sym_enum] = ACTIONS(4417), + [anon_sym_interface] = ACTIONS(4417), + [anon_sym_QMARK] = ACTIONS(4417), + [anon_sym_BANG] = ACTIONS(4417), + [anon_sym_go] = ACTIONS(4417), + [anon_sym_spawn] = ACTIONS(4417), + [anon_sym_json_DOTdecode] = ACTIONS(4417), + [anon_sym_LBRACK2] = ACTIONS(4417), + [anon_sym_TILDE] = ACTIONS(4417), + [anon_sym_CARET] = ACTIONS(4417), + [anon_sym_AMP] = ACTIONS(4417), + [anon_sym_LT_DASH] = ACTIONS(4417), + [sym_none] = ACTIONS(4417), + [sym_true] = ACTIONS(4417), + [sym_false] = ACTIONS(4417), + [sym_nil] = ACTIONS(4417), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_DOLLARif] = ACTIONS(4417), + [anon_sym_match] = ACTIONS(4417), + [anon_sym_select] = ACTIONS(4417), + [anon_sym_lock] = ACTIONS(4417), + [anon_sym_rlock] = ACTIONS(4417), + [anon_sym_unsafe] = ACTIONS(4417), + [anon_sym_sql] = ACTIONS(4417), + [sym_int_literal] = ACTIONS(4417), + [sym_float_literal] = ACTIONS(4417), + [sym_rune_literal] = ACTIONS(4417), + [sym_pseudo_compile_time_identifier] = ACTIONS(4417), + [anon_sym_shared] = ACTIONS(4417), + [anon_sym_map_LBRACK] = ACTIONS(4417), + [anon_sym_chan] = ACTIONS(4417), + [anon_sym_thread] = ACTIONS(4417), + [anon_sym_atomic] = ACTIONS(4417), + [anon_sym_assert] = ACTIONS(4417), + [anon_sym_defer] = ACTIONS(4417), + [anon_sym_goto] = ACTIONS(4417), + [anon_sym_break] = ACTIONS(4417), + [anon_sym_continue] = ACTIONS(4417), + [anon_sym_return] = ACTIONS(4417), + [anon_sym_DOLLARfor] = ACTIONS(4417), + [anon_sym_for] = ACTIONS(4417), + [anon_sym_POUND] = ACTIONS(4417), + [anon_sym_asm] = ACTIONS(4417), + [anon_sym_AT_LBRACK] = ACTIONS(4417), + [sym___double_quote] = ACTIONS(4417), + [sym___single_quote] = ACTIONS(4417), + [sym___c_double_quote] = ACTIONS(4417), + [sym___c_single_quote] = ACTIONS(4417), + [sym___r_double_quote] = ACTIONS(4417), + [sym___r_single_quote] = ACTIONS(4417), }, [1579] = { [sym_line_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_identifier] = ACTIONS(4419), - [anon_sym_LF] = ACTIONS(4419), - [anon_sym_CR] = ACTIONS(4419), - [anon_sym_CR_LF] = ACTIONS(4419), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_const] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym___global] = ACTIONS(4419), - [anon_sym_type] = ACTIONS(4419), - [anon_sym_fn] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_struct] = ACTIONS(4419), - [anon_sym_union] = ACTIONS(4419), - [anon_sym_pub] = ACTIONS(4419), - [anon_sym_mut] = ACTIONS(4419), - [anon_sym_enum] = ACTIONS(4419), - [anon_sym_interface] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_go] = ACTIONS(4419), - [anon_sym_spawn] = ACTIONS(4419), - [anon_sym_json_DOTdecode] = ACTIONS(4419), - [anon_sym_LBRACK2] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4419), - [anon_sym_LT_DASH] = ACTIONS(4419), - [sym_none] = ACTIONS(4419), - [sym_true] = ACTIONS(4419), - [sym_false] = ACTIONS(4419), - [sym_nil] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_DOLLARif] = ACTIONS(4419), - [anon_sym_match] = ACTIONS(4419), - [anon_sym_select] = ACTIONS(4419), - [anon_sym_lock] = ACTIONS(4419), - [anon_sym_rlock] = ACTIONS(4419), - [anon_sym_unsafe] = ACTIONS(4419), - [anon_sym_sql] = ACTIONS(4419), - [sym_int_literal] = ACTIONS(4419), - [sym_float_literal] = ACTIONS(4419), - [sym_rune_literal] = ACTIONS(4419), - [sym_pseudo_compile_time_identifier] = ACTIONS(4419), - [anon_sym_shared] = ACTIONS(4419), - [anon_sym_map_LBRACK] = ACTIONS(4419), - [anon_sym_chan] = ACTIONS(4419), - [anon_sym_thread] = ACTIONS(4419), - [anon_sym_atomic] = ACTIONS(4419), - [anon_sym_assert] = ACTIONS(4419), - [anon_sym_defer] = ACTIONS(4419), - [anon_sym_goto] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_DOLLARfor] = ACTIONS(4419), - [anon_sym_for] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_asm] = ACTIONS(4419), - [anon_sym_AT_LBRACK] = ACTIONS(4419), - [sym___double_quote] = ACTIONS(4419), - [sym___single_quote] = ACTIONS(4419), - [sym___c_double_quote] = ACTIONS(4419), - [sym___c_single_quote] = ACTIONS(4419), - [sym___r_double_quote] = ACTIONS(4419), - [sym___r_single_quote] = ACTIONS(4419), + [sym_block_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_LF] = ACTIONS(3218), + [anon_sym_CR] = ACTIONS(3218), + [anon_sym_CR_LF] = ACTIONS(3218), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym___global] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_fn] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_struct] = ACTIONS(3218), + [anon_sym_union] = ACTIONS(3218), + [anon_sym_pub] = ACTIONS(3218), + [anon_sym_mut] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_QMARK] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_go] = ACTIONS(3218), + [anon_sym_spawn] = ACTIONS(3218), + [anon_sym_json_DOTdecode] = ACTIONS(3218), + [anon_sym_LBRACK2] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_CARET] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(3218), + [anon_sym_LT_DASH] = ACTIONS(3218), + [sym_none] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_nil] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_DOLLARif] = ACTIONS(3218), + [anon_sym_match] = ACTIONS(3218), + [anon_sym_select] = ACTIONS(3218), + [anon_sym_lock] = ACTIONS(3218), + [anon_sym_rlock] = ACTIONS(3218), + [anon_sym_unsafe] = ACTIONS(3218), + [anon_sym_sql] = ACTIONS(3218), + [sym_int_literal] = ACTIONS(3218), + [sym_float_literal] = ACTIONS(3218), + [sym_rune_literal] = ACTIONS(3218), + [sym_pseudo_compile_time_identifier] = ACTIONS(3218), + [anon_sym_shared] = ACTIONS(3218), + [anon_sym_map_LBRACK] = ACTIONS(3218), + [anon_sym_chan] = ACTIONS(3218), + [anon_sym_thread] = ACTIONS(3218), + [anon_sym_atomic] = ACTIONS(3218), + [anon_sym_assert] = ACTIONS(3218), + [anon_sym_defer] = ACTIONS(3218), + [anon_sym_goto] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_DOLLARfor] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_asm] = ACTIONS(3218), + [anon_sym_AT_LBRACK] = ACTIONS(3218), + [sym___double_quote] = ACTIONS(3218), + [sym___single_quote] = ACTIONS(3218), + [sym___c_double_quote] = ACTIONS(3218), + [sym___c_single_quote] = ACTIONS(3218), + [sym___r_double_quote] = ACTIONS(3218), + [sym___r_single_quote] = ACTIONS(3218), }, [1580] = { [sym_line_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(4421), - [sym_identifier] = ACTIONS(4423), - [anon_sym_LF] = ACTIONS(4423), - [anon_sym_CR] = ACTIONS(4423), - [anon_sym_CR_LF] = ACTIONS(4423), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4423), - [anon_sym_const] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4423), - [anon_sym___global] = ACTIONS(4423), - [anon_sym_type] = ACTIONS(4423), - [anon_sym_fn] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_struct] = ACTIONS(4423), - [anon_sym_union] = ACTIONS(4423), - [anon_sym_pub] = ACTIONS(4423), - [anon_sym_mut] = ACTIONS(4423), - [anon_sym_enum] = ACTIONS(4423), - [anon_sym_interface] = ACTIONS(4423), - [anon_sym_QMARK] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_go] = ACTIONS(4423), - [anon_sym_spawn] = ACTIONS(4423), - [anon_sym_json_DOTdecode] = ACTIONS(4423), - [anon_sym_LBRACK2] = ACTIONS(4423), - [anon_sym_TILDE] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym_AMP] = ACTIONS(4423), - [anon_sym_LT_DASH] = ACTIONS(4423), - [sym_none] = ACTIONS(4423), - [sym_true] = ACTIONS(4423), - [sym_false] = ACTIONS(4423), - [sym_nil] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_DOLLARif] = ACTIONS(4423), - [anon_sym_match] = ACTIONS(4423), - [anon_sym_select] = ACTIONS(4423), - [anon_sym_lock] = ACTIONS(4423), - [anon_sym_rlock] = ACTIONS(4423), - [anon_sym_unsafe] = ACTIONS(4423), - [anon_sym_sql] = ACTIONS(4423), - [sym_int_literal] = ACTIONS(4423), - [sym_float_literal] = ACTIONS(4423), - [sym_rune_literal] = ACTIONS(4423), - [sym_pseudo_compile_time_identifier] = ACTIONS(4423), - [anon_sym_shared] = ACTIONS(4423), - [anon_sym_map_LBRACK] = ACTIONS(4423), - [anon_sym_chan] = ACTIONS(4423), - [anon_sym_thread] = ACTIONS(4423), - [anon_sym_atomic] = ACTIONS(4423), - [anon_sym_assert] = ACTIONS(4423), - [anon_sym_defer] = ACTIONS(4423), - [anon_sym_goto] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_DOLLARfor] = ACTIONS(4423), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_POUND] = ACTIONS(4423), - [anon_sym_asm] = ACTIONS(4423), - [anon_sym_AT_LBRACK] = ACTIONS(4423), - [sym___double_quote] = ACTIONS(4423), - [sym___single_quote] = ACTIONS(4423), - [sym___c_double_quote] = ACTIONS(4423), - [sym___c_single_quote] = ACTIONS(4423), - [sym___r_double_quote] = ACTIONS(4423), - [sym___r_single_quote] = ACTIONS(4423), + [sym_block_comment] = STATE(1580), + [ts_builtin_sym_end] = ACTIONS(4419), + [sym_identifier] = ACTIONS(4421), + [anon_sym_LF] = ACTIONS(4421), + [anon_sym_CR] = ACTIONS(4421), + [anon_sym_CR_LF] = ACTIONS(4421), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_const] = ACTIONS(4421), + [anon_sym_LPAREN] = ACTIONS(4421), + [anon_sym___global] = ACTIONS(4421), + [anon_sym_type] = ACTIONS(4421), + [anon_sym_fn] = ACTIONS(4421), + [anon_sym_PLUS] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4421), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_struct] = ACTIONS(4421), + [anon_sym_union] = ACTIONS(4421), + [anon_sym_pub] = ACTIONS(4421), + [anon_sym_mut] = ACTIONS(4421), + [anon_sym_enum] = ACTIONS(4421), + [anon_sym_interface] = ACTIONS(4421), + [anon_sym_QMARK] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_go] = ACTIONS(4421), + [anon_sym_spawn] = ACTIONS(4421), + [anon_sym_json_DOTdecode] = ACTIONS(4421), + [anon_sym_LBRACK2] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_CARET] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4421), + [anon_sym_LT_DASH] = ACTIONS(4421), + [sym_none] = ACTIONS(4421), + [sym_true] = ACTIONS(4421), + [sym_false] = ACTIONS(4421), + [sym_nil] = ACTIONS(4421), + [anon_sym_if] = ACTIONS(4421), + [anon_sym_DOLLARif] = ACTIONS(4421), + [anon_sym_match] = ACTIONS(4421), + [anon_sym_select] = ACTIONS(4421), + [anon_sym_lock] = ACTIONS(4421), + [anon_sym_rlock] = ACTIONS(4421), + [anon_sym_unsafe] = ACTIONS(4421), + [anon_sym_sql] = ACTIONS(4421), + [sym_int_literal] = ACTIONS(4421), + [sym_float_literal] = ACTIONS(4421), + [sym_rune_literal] = ACTIONS(4421), + [sym_pseudo_compile_time_identifier] = ACTIONS(4421), + [anon_sym_shared] = ACTIONS(4421), + [anon_sym_map_LBRACK] = ACTIONS(4421), + [anon_sym_chan] = ACTIONS(4421), + [anon_sym_thread] = ACTIONS(4421), + [anon_sym_atomic] = ACTIONS(4421), + [anon_sym_assert] = ACTIONS(4421), + [anon_sym_defer] = ACTIONS(4421), + [anon_sym_goto] = ACTIONS(4421), + [anon_sym_break] = ACTIONS(4421), + [anon_sym_continue] = ACTIONS(4421), + [anon_sym_return] = ACTIONS(4421), + [anon_sym_DOLLARfor] = ACTIONS(4421), + [anon_sym_for] = ACTIONS(4421), + [anon_sym_POUND] = ACTIONS(4421), + [anon_sym_asm] = ACTIONS(4421), + [anon_sym_AT_LBRACK] = ACTIONS(4421), + [sym___double_quote] = ACTIONS(4421), + [sym___single_quote] = ACTIONS(4421), + [sym___c_double_quote] = ACTIONS(4421), + [sym___c_single_quote] = ACTIONS(4421), + [sym___r_double_quote] = ACTIONS(4421), + [sym___r_single_quote] = ACTIONS(4421), }, [1581] = { [sym_line_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(4425), - [sym_identifier] = ACTIONS(4427), - [anon_sym_LF] = ACTIONS(4427), - [anon_sym_CR] = ACTIONS(4427), - [anon_sym_CR_LF] = ACTIONS(4427), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4427), - [anon_sym_const] = ACTIONS(4427), - [anon_sym_LPAREN] = ACTIONS(4427), - [anon_sym___global] = ACTIONS(4427), - [anon_sym_type] = ACTIONS(4427), - [anon_sym_fn] = ACTIONS(4427), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_struct] = ACTIONS(4427), - [anon_sym_union] = ACTIONS(4427), - [anon_sym_pub] = ACTIONS(4427), - [anon_sym_mut] = ACTIONS(4427), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_interface] = ACTIONS(4427), - [anon_sym_QMARK] = ACTIONS(4427), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_go] = ACTIONS(4427), - [anon_sym_spawn] = ACTIONS(4427), - [anon_sym_json_DOTdecode] = ACTIONS(4427), - [anon_sym_LBRACK2] = ACTIONS(4427), - [anon_sym_TILDE] = ACTIONS(4427), - [anon_sym_CARET] = ACTIONS(4427), - [anon_sym_AMP] = ACTIONS(4427), - [anon_sym_LT_DASH] = ACTIONS(4427), - [sym_none] = ACTIONS(4427), - [sym_true] = ACTIONS(4427), - [sym_false] = ACTIONS(4427), - [sym_nil] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_DOLLARif] = ACTIONS(4427), - [anon_sym_match] = ACTIONS(4427), - [anon_sym_select] = ACTIONS(4427), - [anon_sym_lock] = ACTIONS(4427), - [anon_sym_rlock] = ACTIONS(4427), - [anon_sym_unsafe] = ACTIONS(4427), - [anon_sym_sql] = ACTIONS(4427), - [sym_int_literal] = ACTIONS(4427), - [sym_float_literal] = ACTIONS(4427), - [sym_rune_literal] = ACTIONS(4427), - [sym_pseudo_compile_time_identifier] = ACTIONS(4427), - [anon_sym_shared] = ACTIONS(4427), - [anon_sym_map_LBRACK] = ACTIONS(4427), - [anon_sym_chan] = ACTIONS(4427), - [anon_sym_thread] = ACTIONS(4427), - [anon_sym_atomic] = ACTIONS(4427), - [anon_sym_assert] = ACTIONS(4427), - [anon_sym_defer] = ACTIONS(4427), - [anon_sym_goto] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_DOLLARfor] = ACTIONS(4427), - [anon_sym_for] = ACTIONS(4427), - [anon_sym_POUND] = ACTIONS(4427), - [anon_sym_asm] = ACTIONS(4427), - [anon_sym_AT_LBRACK] = ACTIONS(4427), - [sym___double_quote] = ACTIONS(4427), - [sym___single_quote] = ACTIONS(4427), - [sym___c_double_quote] = ACTIONS(4427), - [sym___c_single_quote] = ACTIONS(4427), - [sym___r_double_quote] = ACTIONS(4427), - [sym___r_single_quote] = ACTIONS(4427), + [sym_block_comment] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(4423), + [sym_identifier] = ACTIONS(4425), + [anon_sym_LF] = ACTIONS(4425), + [anon_sym_CR] = ACTIONS(4425), + [anon_sym_CR_LF] = ACTIONS(4425), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4425), + [anon_sym_LBRACE] = ACTIONS(4425), + [anon_sym_const] = ACTIONS(4425), + [anon_sym_LPAREN] = ACTIONS(4425), + [anon_sym___global] = ACTIONS(4425), + [anon_sym_type] = ACTIONS(4425), + [anon_sym_fn] = ACTIONS(4425), + [anon_sym_PLUS] = ACTIONS(4425), + [anon_sym_DASH] = ACTIONS(4425), + [anon_sym_STAR] = ACTIONS(4425), + [anon_sym_struct] = ACTIONS(4425), + [anon_sym_union] = ACTIONS(4425), + [anon_sym_pub] = ACTIONS(4425), + [anon_sym_mut] = ACTIONS(4425), + [anon_sym_enum] = ACTIONS(4425), + [anon_sym_interface] = ACTIONS(4425), + [anon_sym_QMARK] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4425), + [anon_sym_go] = ACTIONS(4425), + [anon_sym_spawn] = ACTIONS(4425), + [anon_sym_json_DOTdecode] = ACTIONS(4425), + [anon_sym_LBRACK2] = ACTIONS(4425), + [anon_sym_TILDE] = ACTIONS(4425), + [anon_sym_CARET] = ACTIONS(4425), + [anon_sym_AMP] = ACTIONS(4425), + [anon_sym_LT_DASH] = ACTIONS(4425), + [sym_none] = ACTIONS(4425), + [sym_true] = ACTIONS(4425), + [sym_false] = ACTIONS(4425), + [sym_nil] = ACTIONS(4425), + [anon_sym_if] = ACTIONS(4425), + [anon_sym_DOLLARif] = ACTIONS(4425), + [anon_sym_match] = ACTIONS(4425), + [anon_sym_select] = ACTIONS(4425), + [anon_sym_lock] = ACTIONS(4425), + [anon_sym_rlock] = ACTIONS(4425), + [anon_sym_unsafe] = ACTIONS(4425), + [anon_sym_sql] = ACTIONS(4425), + [sym_int_literal] = ACTIONS(4425), + [sym_float_literal] = ACTIONS(4425), + [sym_rune_literal] = ACTIONS(4425), + [sym_pseudo_compile_time_identifier] = ACTIONS(4425), + [anon_sym_shared] = ACTIONS(4425), + [anon_sym_map_LBRACK] = ACTIONS(4425), + [anon_sym_chan] = ACTIONS(4425), + [anon_sym_thread] = ACTIONS(4425), + [anon_sym_atomic] = ACTIONS(4425), + [anon_sym_assert] = ACTIONS(4425), + [anon_sym_defer] = ACTIONS(4425), + [anon_sym_goto] = ACTIONS(4425), + [anon_sym_break] = ACTIONS(4425), + [anon_sym_continue] = ACTIONS(4425), + [anon_sym_return] = ACTIONS(4425), + [anon_sym_DOLLARfor] = ACTIONS(4425), + [anon_sym_for] = ACTIONS(4425), + [anon_sym_POUND] = ACTIONS(4425), + [anon_sym_asm] = ACTIONS(4425), + [anon_sym_AT_LBRACK] = ACTIONS(4425), + [sym___double_quote] = ACTIONS(4425), + [sym___single_quote] = ACTIONS(4425), + [sym___c_double_quote] = ACTIONS(4425), + [sym___c_single_quote] = ACTIONS(4425), + [sym___r_double_quote] = ACTIONS(4425), + [sym___r_single_quote] = ACTIONS(4425), }, [1582] = { [sym_line_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(4429), - [sym_identifier] = ACTIONS(4431), - [anon_sym_LF] = ACTIONS(4431), - [anon_sym_CR] = ACTIONS(4431), - [anon_sym_CR_LF] = ACTIONS(4431), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_const] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym___global] = ACTIONS(4431), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_fn] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_struct] = ACTIONS(4431), - [anon_sym_union] = ACTIONS(4431), - [anon_sym_pub] = ACTIONS(4431), - [anon_sym_mut] = ACTIONS(4431), - [anon_sym_enum] = ACTIONS(4431), - [anon_sym_interface] = ACTIONS(4431), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_go] = ACTIONS(4431), - [anon_sym_spawn] = ACTIONS(4431), - [anon_sym_json_DOTdecode] = ACTIONS(4431), - [anon_sym_LBRACK2] = ACTIONS(4431), - [anon_sym_TILDE] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4431), - [anon_sym_LT_DASH] = ACTIONS(4431), - [sym_none] = ACTIONS(4431), - [sym_true] = ACTIONS(4431), - [sym_false] = ACTIONS(4431), - [sym_nil] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_DOLLARif] = ACTIONS(4431), - [anon_sym_match] = ACTIONS(4431), - [anon_sym_select] = ACTIONS(4431), - [anon_sym_lock] = ACTIONS(4431), - [anon_sym_rlock] = ACTIONS(4431), - [anon_sym_unsafe] = ACTIONS(4431), - [anon_sym_sql] = ACTIONS(4431), - [sym_int_literal] = ACTIONS(4431), - [sym_float_literal] = ACTIONS(4431), - [sym_rune_literal] = ACTIONS(4431), - [sym_pseudo_compile_time_identifier] = ACTIONS(4431), - [anon_sym_shared] = ACTIONS(4431), - [anon_sym_map_LBRACK] = ACTIONS(4431), - [anon_sym_chan] = ACTIONS(4431), - [anon_sym_thread] = ACTIONS(4431), - [anon_sym_atomic] = ACTIONS(4431), - [anon_sym_assert] = ACTIONS(4431), - [anon_sym_defer] = ACTIONS(4431), - [anon_sym_goto] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_DOLLARfor] = ACTIONS(4431), - [anon_sym_for] = ACTIONS(4431), - [anon_sym_POUND] = ACTIONS(4431), - [anon_sym_asm] = ACTIONS(4431), - [anon_sym_AT_LBRACK] = ACTIONS(4431), - [sym___double_quote] = ACTIONS(4431), - [sym___single_quote] = ACTIONS(4431), - [sym___c_double_quote] = ACTIONS(4431), - [sym___c_single_quote] = ACTIONS(4431), - [sym___r_double_quote] = ACTIONS(4431), - [sym___r_single_quote] = ACTIONS(4431), + [sym_block_comment] = STATE(1582), + [ts_builtin_sym_end] = ACTIONS(4427), + [sym_identifier] = ACTIONS(4429), + [anon_sym_LF] = ACTIONS(4429), + [anon_sym_CR] = ACTIONS(4429), + [anon_sym_CR_LF] = ACTIONS(4429), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_LBRACE] = ACTIONS(4429), + [anon_sym_const] = ACTIONS(4429), + [anon_sym_LPAREN] = ACTIONS(4429), + [anon_sym___global] = ACTIONS(4429), + [anon_sym_type] = ACTIONS(4429), + [anon_sym_fn] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4429), + [anon_sym_struct] = ACTIONS(4429), + [anon_sym_union] = ACTIONS(4429), + [anon_sym_pub] = ACTIONS(4429), + [anon_sym_mut] = ACTIONS(4429), + [anon_sym_enum] = ACTIONS(4429), + [anon_sym_interface] = ACTIONS(4429), + [anon_sym_QMARK] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_go] = ACTIONS(4429), + [anon_sym_spawn] = ACTIONS(4429), + [anon_sym_json_DOTdecode] = ACTIONS(4429), + [anon_sym_LBRACK2] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4429), + [anon_sym_CARET] = ACTIONS(4429), + [anon_sym_AMP] = ACTIONS(4429), + [anon_sym_LT_DASH] = ACTIONS(4429), + [sym_none] = ACTIONS(4429), + [sym_true] = ACTIONS(4429), + [sym_false] = ACTIONS(4429), + [sym_nil] = ACTIONS(4429), + [anon_sym_if] = ACTIONS(4429), + [anon_sym_DOLLARif] = ACTIONS(4429), + [anon_sym_match] = ACTIONS(4429), + [anon_sym_select] = ACTIONS(4429), + [anon_sym_lock] = ACTIONS(4429), + [anon_sym_rlock] = ACTIONS(4429), + [anon_sym_unsafe] = ACTIONS(4429), + [anon_sym_sql] = ACTIONS(4429), + [sym_int_literal] = ACTIONS(4429), + [sym_float_literal] = ACTIONS(4429), + [sym_rune_literal] = ACTIONS(4429), + [sym_pseudo_compile_time_identifier] = ACTIONS(4429), + [anon_sym_shared] = ACTIONS(4429), + [anon_sym_map_LBRACK] = ACTIONS(4429), + [anon_sym_chan] = ACTIONS(4429), + [anon_sym_thread] = ACTIONS(4429), + [anon_sym_atomic] = ACTIONS(4429), + [anon_sym_assert] = ACTIONS(4429), + [anon_sym_defer] = ACTIONS(4429), + [anon_sym_goto] = ACTIONS(4429), + [anon_sym_break] = ACTIONS(4429), + [anon_sym_continue] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4429), + [anon_sym_DOLLARfor] = ACTIONS(4429), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_POUND] = ACTIONS(4429), + [anon_sym_asm] = ACTIONS(4429), + [anon_sym_AT_LBRACK] = ACTIONS(4429), + [sym___double_quote] = ACTIONS(4429), + [sym___single_quote] = ACTIONS(4429), + [sym___c_double_quote] = ACTIONS(4429), + [sym___c_single_quote] = ACTIONS(4429), + [sym___r_double_quote] = ACTIONS(4429), + [sym___r_single_quote] = ACTIONS(4429), }, [1583] = { [sym_line_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(4433), - [sym_identifier] = ACTIONS(4435), + [sym_block_comment] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(4431), + [sym_identifier] = ACTIONS(4433), + [anon_sym_LF] = ACTIONS(4433), + [anon_sym_CR] = ACTIONS(4433), + [anon_sym_CR_LF] = ACTIONS(4433), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(4433), + [anon_sym_const] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(4433), + [anon_sym___global] = ACTIONS(4433), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_fn] = ACTIONS(4433), + [anon_sym_PLUS] = ACTIONS(4433), + [anon_sym_DASH] = ACTIONS(4433), + [anon_sym_STAR] = ACTIONS(4433), + [anon_sym_struct] = ACTIONS(4433), + [anon_sym_union] = ACTIONS(4433), + [anon_sym_pub] = ACTIONS(4433), + [anon_sym_mut] = ACTIONS(4433), + [anon_sym_enum] = ACTIONS(4433), + [anon_sym_interface] = ACTIONS(4433), + [anon_sym_QMARK] = ACTIONS(4433), + [anon_sym_BANG] = ACTIONS(4433), + [anon_sym_go] = ACTIONS(4433), + [anon_sym_spawn] = ACTIONS(4433), + [anon_sym_json_DOTdecode] = ACTIONS(4433), + [anon_sym_LBRACK2] = ACTIONS(4433), + [anon_sym_TILDE] = ACTIONS(4433), + [anon_sym_CARET] = ACTIONS(4433), + [anon_sym_AMP] = ACTIONS(4433), + [anon_sym_LT_DASH] = ACTIONS(4433), + [sym_none] = ACTIONS(4433), + [sym_true] = ACTIONS(4433), + [sym_false] = ACTIONS(4433), + [sym_nil] = ACTIONS(4433), + [anon_sym_if] = ACTIONS(4433), + [anon_sym_DOLLARif] = ACTIONS(4433), + [anon_sym_match] = ACTIONS(4433), + [anon_sym_select] = ACTIONS(4433), + [anon_sym_lock] = ACTIONS(4433), + [anon_sym_rlock] = ACTIONS(4433), + [anon_sym_unsafe] = ACTIONS(4433), + [anon_sym_sql] = ACTIONS(4433), + [sym_int_literal] = ACTIONS(4433), + [sym_float_literal] = ACTIONS(4433), + [sym_rune_literal] = ACTIONS(4433), + [sym_pseudo_compile_time_identifier] = ACTIONS(4433), + [anon_sym_shared] = ACTIONS(4433), + [anon_sym_map_LBRACK] = ACTIONS(4433), + [anon_sym_chan] = ACTIONS(4433), + [anon_sym_thread] = ACTIONS(4433), + [anon_sym_atomic] = ACTIONS(4433), + [anon_sym_assert] = ACTIONS(4433), + [anon_sym_defer] = ACTIONS(4433), + [anon_sym_goto] = ACTIONS(4433), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4433), + [anon_sym_return] = ACTIONS(4433), + [anon_sym_DOLLARfor] = ACTIONS(4433), + [anon_sym_for] = ACTIONS(4433), + [anon_sym_POUND] = ACTIONS(4433), + [anon_sym_asm] = ACTIONS(4433), + [anon_sym_AT_LBRACK] = ACTIONS(4433), + [sym___double_quote] = ACTIONS(4433), + [sym___single_quote] = ACTIONS(4433), + [sym___c_double_quote] = ACTIONS(4433), + [sym___c_single_quote] = ACTIONS(4433), + [sym___r_double_quote] = ACTIONS(4433), + [sym___r_single_quote] = ACTIONS(4433), + }, + [1584] = { + [sym_line_comment] = STATE(1584), + [sym_block_comment] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(4435), + [sym_identifier] = ACTIONS(4437), [anon_sym_LF] = ACTIONS(4437), [anon_sym_CR] = ACTIONS(4437), [anon_sym_CR_LF] = ACTIONS(4437), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_const] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym___global] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4435), - [anon_sym_fn] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_struct] = ACTIONS(4435), - [anon_sym_union] = ACTIONS(4435), - [anon_sym_pub] = ACTIONS(4435), - [anon_sym_mut] = ACTIONS(4435), - [anon_sym_enum] = ACTIONS(4435), - [anon_sym_interface] = ACTIONS(4435), - [anon_sym_QMARK] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_go] = ACTIONS(4435), - [anon_sym_spawn] = ACTIONS(4435), - [anon_sym_json_DOTdecode] = ACTIONS(4435), - [anon_sym_LBRACK2] = ACTIONS(4435), - [anon_sym_TILDE] = ACTIONS(4435), - [anon_sym_CARET] = ACTIONS(4435), - [anon_sym_AMP] = ACTIONS(4435), - [anon_sym_LT_DASH] = ACTIONS(4435), - [sym_none] = ACTIONS(4435), - [sym_true] = ACTIONS(4435), - [sym_false] = ACTIONS(4435), - [sym_nil] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_DOLLARif] = ACTIONS(4435), - [anon_sym_match] = ACTIONS(4435), - [anon_sym_select] = ACTIONS(4435), - [anon_sym_lock] = ACTIONS(4435), - [anon_sym_rlock] = ACTIONS(4435), - [anon_sym_unsafe] = ACTIONS(4435), - [anon_sym_sql] = ACTIONS(4435), - [sym_int_literal] = ACTIONS(4435), - [sym_float_literal] = ACTIONS(4435), - [sym_rune_literal] = ACTIONS(4435), - [sym_pseudo_compile_time_identifier] = ACTIONS(4435), - [anon_sym_shared] = ACTIONS(4435), - [anon_sym_map_LBRACK] = ACTIONS(4435), - [anon_sym_chan] = ACTIONS(4435), - [anon_sym_thread] = ACTIONS(4435), - [anon_sym_atomic] = ACTIONS(4435), - [anon_sym_assert] = ACTIONS(4435), - [anon_sym_defer] = ACTIONS(4435), - [anon_sym_goto] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_DOLLARfor] = ACTIONS(4435), - [anon_sym_for] = ACTIONS(4435), - [anon_sym_POUND] = ACTIONS(4435), - [anon_sym_asm] = ACTIONS(4435), - [anon_sym_AT_LBRACK] = ACTIONS(4435), - [sym___double_quote] = ACTIONS(4435), - [sym___single_quote] = ACTIONS(4435), - [sym___c_double_quote] = ACTIONS(4435), - [sym___c_single_quote] = ACTIONS(4435), - [sym___r_double_quote] = ACTIONS(4435), - [sym___r_single_quote] = ACTIONS(4435), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4437), + [anon_sym_LBRACE] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_LPAREN] = ACTIONS(4437), + [anon_sym___global] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4437), + [anon_sym_fn] = ACTIONS(4437), + [anon_sym_PLUS] = ACTIONS(4437), + [anon_sym_DASH] = ACTIONS(4437), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_union] = ACTIONS(4437), + [anon_sym_pub] = ACTIONS(4437), + [anon_sym_mut] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_interface] = ACTIONS(4437), + [anon_sym_QMARK] = ACTIONS(4437), + [anon_sym_BANG] = ACTIONS(4437), + [anon_sym_go] = ACTIONS(4437), + [anon_sym_spawn] = ACTIONS(4437), + [anon_sym_json_DOTdecode] = ACTIONS(4437), + [anon_sym_LBRACK2] = ACTIONS(4437), + [anon_sym_TILDE] = ACTIONS(4437), + [anon_sym_CARET] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(4437), + [anon_sym_LT_DASH] = ACTIONS(4437), + [sym_none] = ACTIONS(4437), + [sym_true] = ACTIONS(4437), + [sym_false] = ACTIONS(4437), + [sym_nil] = ACTIONS(4437), + [anon_sym_if] = ACTIONS(4437), + [anon_sym_DOLLARif] = ACTIONS(4437), + [anon_sym_match] = ACTIONS(4437), + [anon_sym_select] = ACTIONS(4437), + [anon_sym_lock] = ACTIONS(4437), + [anon_sym_rlock] = ACTIONS(4437), + [anon_sym_unsafe] = ACTIONS(4437), + [anon_sym_sql] = ACTIONS(4437), + [sym_int_literal] = ACTIONS(4437), + [sym_float_literal] = ACTIONS(4437), + [sym_rune_literal] = ACTIONS(4437), + [sym_pseudo_compile_time_identifier] = ACTIONS(4437), + [anon_sym_shared] = ACTIONS(4437), + [anon_sym_map_LBRACK] = ACTIONS(4437), + [anon_sym_chan] = ACTIONS(4437), + [anon_sym_thread] = ACTIONS(4437), + [anon_sym_atomic] = ACTIONS(4437), + [anon_sym_assert] = ACTIONS(4437), + [anon_sym_defer] = ACTIONS(4437), + [anon_sym_goto] = ACTIONS(4437), + [anon_sym_break] = ACTIONS(4437), + [anon_sym_continue] = ACTIONS(4437), + [anon_sym_return] = ACTIONS(4437), + [anon_sym_DOLLARfor] = ACTIONS(4437), + [anon_sym_for] = ACTIONS(4437), + [anon_sym_POUND] = ACTIONS(4437), + [anon_sym_asm] = ACTIONS(4437), + [anon_sym_AT_LBRACK] = ACTIONS(4437), + [sym___double_quote] = ACTIONS(4437), + [sym___single_quote] = ACTIONS(4437), + [sym___c_double_quote] = ACTIONS(4437), + [sym___c_single_quote] = ACTIONS(4437), + [sym___r_double_quote] = ACTIONS(4437), + [sym___r_single_quote] = ACTIONS(4437), }, - [1584] = { - [sym_line_comment] = STATE(1584), + [1585] = { + [sym_line_comment] = STATE(1585), + [sym_block_comment] = STATE(1585), [ts_builtin_sym_end] = ACTIONS(4439), [sym_identifier] = ACTIONS(4441), [anon_sym_LF] = ACTIONS(4441), [anon_sym_CR] = ACTIONS(4441), [anon_sym_CR_LF] = ACTIONS(4441), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4441), [anon_sym_LBRACE] = ACTIONS(4441), [anon_sym_const] = ACTIONS(4441), @@ -195586,15 +190486,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4441), [sym___r_single_quote] = ACTIONS(4441), }, - [1585] = { - [sym_line_comment] = STATE(1585), + [1586] = { + [sym_line_comment] = STATE(1586), + [sym_block_comment] = STATE(1586), [ts_builtin_sym_end] = ACTIONS(4443), [sym_identifier] = ACTIONS(4445), [anon_sym_LF] = ACTIONS(4445), [anon_sym_CR] = ACTIONS(4445), [anon_sym_CR_LF] = ACTIONS(4445), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4445), [anon_sym_LBRACE] = ACTIONS(4445), [anon_sym_const] = ACTIONS(4445), @@ -195660,15 +190561,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4445), [sym___r_single_quote] = ACTIONS(4445), }, - [1586] = { - [sym_line_comment] = STATE(1586), + [1587] = { + [sym_line_comment] = STATE(1587), + [sym_block_comment] = STATE(1587), [ts_builtin_sym_end] = ACTIONS(4447), [sym_identifier] = ACTIONS(4449), [anon_sym_LF] = ACTIONS(4449), [anon_sym_CR] = ACTIONS(4449), [anon_sym_CR_LF] = ACTIONS(4449), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4449), [anon_sym_LBRACE] = ACTIONS(4449), [anon_sym_const] = ACTIONS(4449), @@ -195734,15 +190636,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4449), [sym___r_single_quote] = ACTIONS(4449), }, - [1587] = { - [sym_line_comment] = STATE(1587), + [1588] = { + [sym_line_comment] = STATE(1588), + [sym_block_comment] = STATE(1588), [ts_builtin_sym_end] = ACTIONS(4451), [sym_identifier] = ACTIONS(4453), [anon_sym_LF] = ACTIONS(4453), [anon_sym_CR] = ACTIONS(4453), [anon_sym_CR_LF] = ACTIONS(4453), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4453), [anon_sym_LBRACE] = ACTIONS(4453), [anon_sym_const] = ACTIONS(4453), @@ -195808,15 +190711,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4453), [sym___r_single_quote] = ACTIONS(4453), }, - [1588] = { - [sym_line_comment] = STATE(1588), + [1589] = { + [sym_line_comment] = STATE(1589), + [sym_block_comment] = STATE(1589), [ts_builtin_sym_end] = ACTIONS(4455), [sym_identifier] = ACTIONS(4457), [anon_sym_LF] = ACTIONS(4457), [anon_sym_CR] = ACTIONS(4457), [anon_sym_CR_LF] = ACTIONS(4457), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4457), [anon_sym_LBRACE] = ACTIONS(4457), [anon_sym_const] = ACTIONS(4457), @@ -195882,15 +190786,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4457), [sym___r_single_quote] = ACTIONS(4457), }, - [1589] = { - [sym_line_comment] = STATE(1589), + [1590] = { + [sym_line_comment] = STATE(1590), + [sym_block_comment] = STATE(1590), [ts_builtin_sym_end] = ACTIONS(4459), [sym_identifier] = ACTIONS(4461), [anon_sym_LF] = ACTIONS(4461), [anon_sym_CR] = ACTIONS(4461), [anon_sym_CR_LF] = ACTIONS(4461), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4461), [anon_sym_LBRACE] = ACTIONS(4461), [anon_sym_const] = ACTIONS(4461), @@ -195956,15 +190861,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4461), [sym___r_single_quote] = ACTIONS(4461), }, - [1590] = { - [sym_line_comment] = STATE(1590), + [1591] = { + [sym_line_comment] = STATE(1591), + [sym_block_comment] = STATE(1591), [ts_builtin_sym_end] = ACTIONS(4463), [sym_identifier] = ACTIONS(4465), [anon_sym_LF] = ACTIONS(4465), [anon_sym_CR] = ACTIONS(4465), [anon_sym_CR_LF] = ACTIONS(4465), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4465), [anon_sym_LBRACE] = ACTIONS(4465), [anon_sym_const] = ACTIONS(4465), @@ -196030,15 +190936,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4465), [sym___r_single_quote] = ACTIONS(4465), }, - [1591] = { - [sym_line_comment] = STATE(1591), + [1592] = { + [sym_line_comment] = STATE(1592), + [sym_block_comment] = STATE(1592), [ts_builtin_sym_end] = ACTIONS(4467), [sym_identifier] = ACTIONS(4469), [anon_sym_LF] = ACTIONS(4469), [anon_sym_CR] = ACTIONS(4469), [anon_sym_CR_LF] = ACTIONS(4469), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4469), [anon_sym_LBRACE] = ACTIONS(4469), [anon_sym_const] = ACTIONS(4469), @@ -196104,15 +191011,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4469), [sym___r_single_quote] = ACTIONS(4469), }, - [1592] = { - [sym_line_comment] = STATE(1592), + [1593] = { + [sym_line_comment] = STATE(1593), + [sym_block_comment] = STATE(1593), [ts_builtin_sym_end] = ACTIONS(4471), [sym_identifier] = ACTIONS(4473), [anon_sym_LF] = ACTIONS(4473), [anon_sym_CR] = ACTIONS(4473), [anon_sym_CR_LF] = ACTIONS(4473), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4473), [anon_sym_LBRACE] = ACTIONS(4473), [anon_sym_const] = ACTIONS(4473), @@ -196178,15 +191086,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4473), [sym___r_single_quote] = ACTIONS(4473), }, - [1593] = { - [sym_line_comment] = STATE(1593), + [1594] = { + [sym_line_comment] = STATE(1594), + [sym_block_comment] = STATE(1594), [ts_builtin_sym_end] = ACTIONS(4475), [sym_identifier] = ACTIONS(4477), [anon_sym_LF] = ACTIONS(4477), [anon_sym_CR] = ACTIONS(4477), [anon_sym_CR_LF] = ACTIONS(4477), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), [anon_sym_const] = ACTIONS(4477), @@ -196252,15 +191161,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4477), [sym___r_single_quote] = ACTIONS(4477), }, - [1594] = { - [sym_line_comment] = STATE(1594), + [1595] = { + [sym_line_comment] = STATE(1595), + [sym_block_comment] = STATE(1595), [ts_builtin_sym_end] = ACTIONS(4479), [sym_identifier] = ACTIONS(4481), [anon_sym_LF] = ACTIONS(4481), [anon_sym_CR] = ACTIONS(4481), [anon_sym_CR_LF] = ACTIONS(4481), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4481), [anon_sym_LBRACE] = ACTIONS(4481), [anon_sym_const] = ACTIONS(4481), @@ -196326,15 +191236,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4481), [sym___r_single_quote] = ACTIONS(4481), }, - [1595] = { - [sym_line_comment] = STATE(1595), + [1596] = { + [sym_line_comment] = STATE(1596), + [sym_block_comment] = STATE(1596), [ts_builtin_sym_end] = ACTIONS(4483), [sym_identifier] = ACTIONS(4485), [anon_sym_LF] = ACTIONS(4485), [anon_sym_CR] = ACTIONS(4485), [anon_sym_CR_LF] = ACTIONS(4485), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4485), [anon_sym_LBRACE] = ACTIONS(4485), [anon_sym_const] = ACTIONS(4485), @@ -196400,15 +191311,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4485), [sym___r_single_quote] = ACTIONS(4485), }, - [1596] = { - [sym_line_comment] = STATE(1596), + [1597] = { + [sym_line_comment] = STATE(1597), + [sym_block_comment] = STATE(1597), [ts_builtin_sym_end] = ACTIONS(4487), [sym_identifier] = ACTIONS(4489), [anon_sym_LF] = ACTIONS(4489), [anon_sym_CR] = ACTIONS(4489), [anon_sym_CR_LF] = ACTIONS(4489), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4489), [anon_sym_LBRACE] = ACTIONS(4489), [anon_sym_const] = ACTIONS(4489), @@ -196474,15 +191386,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4489), [sym___r_single_quote] = ACTIONS(4489), }, - [1597] = { - [sym_line_comment] = STATE(1597), + [1598] = { + [sym_line_comment] = STATE(1598), + [sym_block_comment] = STATE(1598), [ts_builtin_sym_end] = ACTIONS(4491), [sym_identifier] = ACTIONS(4493), [anon_sym_LF] = ACTIONS(4493), [anon_sym_CR] = ACTIONS(4493), [anon_sym_CR_LF] = ACTIONS(4493), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4493), [anon_sym_LBRACE] = ACTIONS(4493), [anon_sym_const] = ACTIONS(4493), @@ -196548,15 +191461,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4493), [sym___r_single_quote] = ACTIONS(4493), }, - [1598] = { - [sym_line_comment] = STATE(1598), + [1599] = { + [sym_line_comment] = STATE(1599), + [sym_block_comment] = STATE(1599), [ts_builtin_sym_end] = ACTIONS(4495), [sym_identifier] = ACTIONS(4497), [anon_sym_LF] = ACTIONS(4497), [anon_sym_CR] = ACTIONS(4497), [anon_sym_CR_LF] = ACTIONS(4497), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4497), [anon_sym_LBRACE] = ACTIONS(4497), [anon_sym_const] = ACTIONS(4497), @@ -196622,15 +191536,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4497), [sym___r_single_quote] = ACTIONS(4497), }, - [1599] = { - [sym_line_comment] = STATE(1599), + [1600] = { + [sym_line_comment] = STATE(1600), + [sym_block_comment] = STATE(1600), [ts_builtin_sym_end] = ACTIONS(4499), [sym_identifier] = ACTIONS(4501), [anon_sym_LF] = ACTIONS(4501), [anon_sym_CR] = ACTIONS(4501), [anon_sym_CR_LF] = ACTIONS(4501), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4501), [anon_sym_LBRACE] = ACTIONS(4501), [anon_sym_const] = ACTIONS(4501), @@ -196696,15 +191611,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4501), [sym___r_single_quote] = ACTIONS(4501), }, - [1600] = { - [sym_line_comment] = STATE(1600), + [1601] = { + [sym_line_comment] = STATE(1601), + [sym_block_comment] = STATE(1601), [ts_builtin_sym_end] = ACTIONS(4503), [sym_identifier] = ACTIONS(4505), [anon_sym_LF] = ACTIONS(4505), [anon_sym_CR] = ACTIONS(4505), [anon_sym_CR_LF] = ACTIONS(4505), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4505), [anon_sym_LBRACE] = ACTIONS(4505), [anon_sym_const] = ACTIONS(4505), @@ -196770,15 +191686,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4505), [sym___r_single_quote] = ACTIONS(4505), }, - [1601] = { - [sym_line_comment] = STATE(1601), + [1602] = { + [sym_line_comment] = STATE(1602), + [sym_block_comment] = STATE(1602), [ts_builtin_sym_end] = ACTIONS(4507), [sym_identifier] = ACTIONS(4509), [anon_sym_LF] = ACTIONS(4509), [anon_sym_CR] = ACTIONS(4509), [anon_sym_CR_LF] = ACTIONS(4509), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4509), [anon_sym_LBRACE] = ACTIONS(4509), [anon_sym_const] = ACTIONS(4509), @@ -196844,15 +191761,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4509), [sym___r_single_quote] = ACTIONS(4509), }, - [1602] = { - [sym_line_comment] = STATE(1602), + [1603] = { + [sym_line_comment] = STATE(1603), + [sym_block_comment] = STATE(1603), [ts_builtin_sym_end] = ACTIONS(4511), [sym_identifier] = ACTIONS(4513), [anon_sym_LF] = ACTIONS(4513), [anon_sym_CR] = ACTIONS(4513), [anon_sym_CR_LF] = ACTIONS(4513), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4513), [anon_sym_LBRACE] = ACTIONS(4513), [anon_sym_const] = ACTIONS(4513), @@ -196918,15 +191836,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4513), [sym___r_single_quote] = ACTIONS(4513), }, - [1603] = { - [sym_line_comment] = STATE(1603), + [1604] = { + [sym_line_comment] = STATE(1604), + [sym_block_comment] = STATE(1604), [ts_builtin_sym_end] = ACTIONS(4515), [sym_identifier] = ACTIONS(4517), [anon_sym_LF] = ACTIONS(4517), [anon_sym_CR] = ACTIONS(4517), [anon_sym_CR_LF] = ACTIONS(4517), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4517), [anon_sym_LBRACE] = ACTIONS(4517), [anon_sym_const] = ACTIONS(4517), @@ -196992,15 +191911,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4517), [sym___r_single_quote] = ACTIONS(4517), }, - [1604] = { - [sym_line_comment] = STATE(1604), + [1605] = { + [sym_line_comment] = STATE(1605), + [sym_block_comment] = STATE(1605), [ts_builtin_sym_end] = ACTIONS(4519), [sym_identifier] = ACTIONS(4521), [anon_sym_LF] = ACTIONS(4521), [anon_sym_CR] = ACTIONS(4521), [anon_sym_CR_LF] = ACTIONS(4521), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4521), [anon_sym_LBRACE] = ACTIONS(4521), [anon_sym_const] = ACTIONS(4521), @@ -197066,15 +191986,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4521), [sym___r_single_quote] = ACTIONS(4521), }, - [1605] = { - [sym_line_comment] = STATE(1605), + [1606] = { + [sym_line_comment] = STATE(1606), + [sym_block_comment] = STATE(1606), [ts_builtin_sym_end] = ACTIONS(4523), [sym_identifier] = ACTIONS(4525), [anon_sym_LF] = ACTIONS(4525), [anon_sym_CR] = ACTIONS(4525), [anon_sym_CR_LF] = ACTIONS(4525), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4525), [anon_sym_LBRACE] = ACTIONS(4525), [anon_sym_const] = ACTIONS(4525), @@ -197140,15 +192061,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4525), [sym___r_single_quote] = ACTIONS(4525), }, - [1606] = { - [sym_line_comment] = STATE(1606), + [1607] = { + [sym_line_comment] = STATE(1607), + [sym_block_comment] = STATE(1607), [ts_builtin_sym_end] = ACTIONS(4527), [sym_identifier] = ACTIONS(4529), [anon_sym_LF] = ACTIONS(4529), [anon_sym_CR] = ACTIONS(4529), [anon_sym_CR_LF] = ACTIONS(4529), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4529), [anon_sym_LBRACE] = ACTIONS(4529), [anon_sym_const] = ACTIONS(4529), @@ -197214,15 +192136,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4529), [sym___r_single_quote] = ACTIONS(4529), }, - [1607] = { - [sym_line_comment] = STATE(1607), + [1608] = { + [sym_line_comment] = STATE(1608), + [sym_block_comment] = STATE(1608), [ts_builtin_sym_end] = ACTIONS(4531), [sym_identifier] = ACTIONS(4533), [anon_sym_LF] = ACTIONS(4533), [anon_sym_CR] = ACTIONS(4533), [anon_sym_CR_LF] = ACTIONS(4533), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4533), [anon_sym_LBRACE] = ACTIONS(4533), [anon_sym_const] = ACTIONS(4533), @@ -197288,89 +192211,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4533), [sym___r_single_quote] = ACTIONS(4533), }, - [1608] = { - [sym_line_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym___global] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_pub] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_DOLLARfor] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym_AT_LBRACK] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), - }, [1609] = { [sym_line_comment] = STATE(1609), + [sym_block_comment] = STATE(1609), [ts_builtin_sym_end] = ACTIONS(4535), [sym_identifier] = ACTIONS(4537), [anon_sym_LF] = ACTIONS(4537), [anon_sym_CR] = ACTIONS(4537), [anon_sym_CR_LF] = ACTIONS(4537), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4537), [anon_sym_LBRACE] = ACTIONS(4537), [anon_sym_const] = ACTIONS(4537), @@ -197438,13 +192288,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1610] = { [sym_line_comment] = STATE(1610), + [sym_block_comment] = STATE(1610), [ts_builtin_sym_end] = ACTIONS(4539), [sym_identifier] = ACTIONS(4541), [anon_sym_LF] = ACTIONS(4541), [anon_sym_CR] = ACTIONS(4541), [anon_sym_CR_LF] = ACTIONS(4541), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4541), [anon_sym_LBRACE] = ACTIONS(4541), [anon_sym_const] = ACTIONS(4541), @@ -197512,13 +192363,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1611] = { [sym_line_comment] = STATE(1611), + [sym_block_comment] = STATE(1611), [ts_builtin_sym_end] = ACTIONS(4543), [sym_identifier] = ACTIONS(4545), [anon_sym_LF] = ACTIONS(4545), [anon_sym_CR] = ACTIONS(4545), [anon_sym_CR_LF] = ACTIONS(4545), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4545), [anon_sym_LBRACE] = ACTIONS(4545), [anon_sym_const] = ACTIONS(4545), @@ -197586,13 +192438,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1612] = { [sym_line_comment] = STATE(1612), + [sym_block_comment] = STATE(1612), [ts_builtin_sym_end] = ACTIONS(4547), [sym_identifier] = ACTIONS(4549), [anon_sym_LF] = ACTIONS(4549), [anon_sym_CR] = ACTIONS(4549), [anon_sym_CR_LF] = ACTIONS(4549), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4549), [anon_sym_LBRACE] = ACTIONS(4549), [anon_sym_const] = ACTIONS(4549), @@ -197660,13 +192513,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1613] = { [sym_line_comment] = STATE(1613), + [sym_block_comment] = STATE(1613), [ts_builtin_sym_end] = ACTIONS(4551), [sym_identifier] = ACTIONS(4553), [anon_sym_LF] = ACTIONS(4553), [anon_sym_CR] = ACTIONS(4553), [anon_sym_CR_LF] = ACTIONS(4553), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), [anon_sym_DOT] = ACTIONS(4553), [anon_sym_LBRACE] = ACTIONS(4553), [anon_sym_const] = ACTIONS(4553), @@ -197734,112 +192588,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1614] = { [sym_line_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(4555), - [sym_identifier] = ACTIONS(4557), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_module] = ACTIONS(4557), - [anon_sym_import] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4557), - [anon_sym_LBRACE] = ACTIONS(4555), - [anon_sym_const] = ACTIONS(4557), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym___global] = ACTIONS(4557), - [anon_sym_type] = ACTIONS(4557), - [anon_sym_fn] = ACTIONS(4557), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_struct] = ACTIONS(4557), - [anon_sym_union] = ACTIONS(4557), - [anon_sym_pub] = ACTIONS(4557), - [anon_sym_mut] = ACTIONS(4557), - [anon_sym_enum] = ACTIONS(4557), - [anon_sym_interface] = ACTIONS(4557), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_go] = ACTIONS(4557), - [anon_sym_spawn] = ACTIONS(4557), - [anon_sym_json_DOTdecode] = ACTIONS(4555), - [anon_sym_LBRACK2] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_CARET] = ACTIONS(4555), - [anon_sym_AMP] = ACTIONS(4555), - [anon_sym_LT_DASH] = ACTIONS(4555), - [sym_none] = ACTIONS(4557), - [sym_true] = ACTIONS(4557), - [sym_false] = ACTIONS(4557), - [sym_nil] = ACTIONS(4557), - [anon_sym_if] = ACTIONS(4557), - [anon_sym_DOLLARif] = ACTIONS(4557), - [anon_sym_match] = ACTIONS(4557), - [anon_sym_select] = ACTIONS(4557), - [anon_sym_lock] = ACTIONS(4557), - [anon_sym_rlock] = ACTIONS(4557), - [anon_sym_unsafe] = ACTIONS(4557), - [anon_sym_sql] = ACTIONS(4557), - [sym_int_literal] = ACTIONS(4557), - [sym_float_literal] = ACTIONS(4555), - [sym_rune_literal] = ACTIONS(4555), - [sym_pseudo_compile_time_identifier] = ACTIONS(4557), - [anon_sym_shared] = ACTIONS(4557), - [anon_sym_map_LBRACK] = ACTIONS(4555), - [anon_sym_chan] = ACTIONS(4557), - [anon_sym_thread] = ACTIONS(4557), - [anon_sym_atomic] = ACTIONS(4557), - [anon_sym_assert] = ACTIONS(4557), - [anon_sym_defer] = ACTIONS(4557), - [anon_sym_goto] = ACTIONS(4557), - [anon_sym_break] = ACTIONS(4557), - [anon_sym_continue] = ACTIONS(4557), - [anon_sym_return] = ACTIONS(4557), - [anon_sym_DOLLARfor] = ACTIONS(4557), - [anon_sym_for] = ACTIONS(4557), - [anon_sym_POUND] = ACTIONS(4555), - [anon_sym_asm] = ACTIONS(4557), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [sym___double_quote] = ACTIONS(4555), - [sym___single_quote] = ACTIONS(4555), - [sym___c_double_quote] = ACTIONS(4555), - [sym___c_single_quote] = ACTIONS(4555), - [sym___r_double_quote] = ACTIONS(4555), - [sym___r_single_quote] = ACTIONS(4555), + [sym_block_comment] = STATE(1614), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2437), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_DOT] = ACTIONS(595), + [anon_sym_as] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [anon_sym_QMARK] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_LBRACK2] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_AMP_CARET] = ACTIONS(595), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_or] = ACTIONS(597), + [anon_sym_QMARK_DOT] = ACTIONS(595), + [anon_sym_POUND_LBRACK] = ACTIONS(595), + [anon_sym_is] = ACTIONS(597), + [anon_sym_BANGis] = ACTIONS(595), + [anon_sym_in] = ACTIONS(597), + [anon_sym_BANGin] = ACTIONS(595), + [anon_sym_COLON_EQ] = ACTIONS(595), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), }, [1615] = { [sym_line_comment] = STATE(1615), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [sym_block_comment] = STATE(1615), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(611), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + [anon_sym_DOT_DOT] = ACTIONS(611), + }, + [1616] = { + [sym_line_comment] = STATE(1616), + [sym_block_comment] = STATE(1616), + [sym_reference_expression] = STATE(4579), + [sym_type_reference_expression] = STATE(2680), + [sym_plain_type] = STATE(2762), + [sym__plain_type_without_special] = STATE(2751), + [sym_anon_struct_type] = STATE(2752), + [sym_multi_return_type] = STATE(2751), + [sym_result_type] = STATE(2751), + [sym_option_type] = STATE(2751), + [sym_qualified_type] = STATE(2680), + [sym_fixed_array_type] = STATE(2752), + [sym_array_type] = STATE(2752), + [sym_pointer_type] = STATE(2752), + [sym_wrong_pointer_type] = STATE(2752), + [sym_map_type] = STATE(2752), + [sym_channel_type] = STATE(2752), + [sym_shared_type] = STATE(2752), + [sym_thread_type] = STATE(2752), + [sym_atomic_type] = STATE(2752), + [sym_generic_type] = STATE(2752), + [sym_function_type] = STATE(2752), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_as] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_fn] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(599), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_struct] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(4573), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_AMP_CARET] = ACTIONS(599), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_or] = ACTIONS(601), + [anon_sym_QMARK_DOT] = ACTIONS(599), + [anon_sym_POUND_LBRACK] = ACTIONS(599), + [anon_sym_is] = ACTIONS(601), + [anon_sym_BANGis] = ACTIONS(599), + [anon_sym_in] = ACTIONS(601), + [anon_sym_BANGin] = ACTIONS(599), + [anon_sym_shared] = ACTIONS(4575), + [anon_sym_map_LBRACK] = ACTIONS(4577), + [anon_sym_chan] = ACTIONS(4579), + [anon_sym_thread] = ACTIONS(4581), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(601), + }, + [1617] = { + [sym_line_comment] = STATE(1617), + [sym_block_comment] = STATE(1617), + [sym_reference_expression] = STATE(4579), + [sym_type_reference_expression] = STATE(2680), + [sym_plain_type] = STATE(2774), + [sym__plain_type_without_special] = STATE(2751), + [sym_anon_struct_type] = STATE(2752), + [sym_multi_return_type] = STATE(2751), + [sym_result_type] = STATE(2751), + [sym_option_type] = STATE(2751), + [sym_qualified_type] = STATE(2680), + [sym_fixed_array_type] = STATE(2752), + [sym_array_type] = STATE(2752), + [sym_pointer_type] = STATE(2752), + [sym_wrong_pointer_type] = STATE(2752), + [sym_map_type] = STATE(2752), + [sym_channel_type] = STATE(2752), + [sym_shared_type] = STATE(2752), + [sym_thread_type] = STATE(2752), + [sym_atomic_type] = STATE(2752), + [sym_generic_type] = STATE(2752), + [sym_function_type] = STATE(2752), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_as] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_fn] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(603), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(603), + [anon_sym_BANG_EQ] = ACTIONS(603), + [anon_sym_LT_EQ] = ACTIONS(603), + [anon_sym_GT_EQ] = ACTIONS(603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(603), + [anon_sym_LBRACK] = ACTIONS(603), + [anon_sym_struct] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(603), + [anon_sym_DASH_DASH] = ACTIONS(603), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), + [anon_sym_CARET] = ACTIONS(603), + [anon_sym_AMP] = ACTIONS(4573), + [anon_sym_LT_LT] = ACTIONS(603), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_GT_GT_GT] = ACTIONS(603), + [anon_sym_AMP_CARET] = ACTIONS(603), + [anon_sym_AMP_AMP] = ACTIONS(603), + [anon_sym_PIPE_PIPE] = ACTIONS(603), + [anon_sym_or] = ACTIONS(605), + [anon_sym_QMARK_DOT] = ACTIONS(603), + [anon_sym_POUND_LBRACK] = ACTIONS(603), + [anon_sym_is] = ACTIONS(605), + [anon_sym_BANGis] = ACTIONS(603), + [anon_sym_in] = ACTIONS(605), + [anon_sym_BANGin] = ACTIONS(603), + [anon_sym_shared] = ACTIONS(4575), + [anon_sym_map_LBRACK] = ACTIONS(4577), + [anon_sym_chan] = ACTIONS(4579), + [anon_sym_thread] = ACTIONS(4581), + [anon_sym_atomic] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(605), + }, + [1618] = { + [sym_line_comment] = STATE(1618), + [sym_block_comment] = STATE(1618), + [sym_reference_expression] = STATE(4579), + [sym_type_reference_expression] = STATE(2680), + [sym_plain_type] = STATE(2778), + [sym__plain_type_without_special] = STATE(2751), + [sym_anon_struct_type] = STATE(2752), + [sym_multi_return_type] = STATE(2751), + [sym_result_type] = STATE(2751), + [sym_option_type] = STATE(2751), + [sym_qualified_type] = STATE(2680), + [sym_fixed_array_type] = STATE(2752), + [sym_array_type] = STATE(2752), + [sym_pointer_type] = STATE(2752), + [sym_wrong_pointer_type] = STATE(2752), + [sym_map_type] = STATE(2752), + [sym_channel_type] = STATE(2752), + [sym_shared_type] = STATE(2752), + [sym_thread_type] = STATE(2752), + [sym_atomic_type] = STATE(2752), + [sym_generic_type] = STATE(2752), + [sym_function_type] = STATE(2752), + [sym_identifier] = ACTIONS(4557), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_DOT] = ACTIONS(567), [anon_sym_as] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(4559), [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), + [anon_sym_fn] = ACTIONS(4561), [anon_sym_PLUS] = ACTIONS(567), [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(4563), [anon_sym_SLASH] = ACTIONS(567), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(567), @@ -197850,14 +192928,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), + [anon_sym_struct] = ACTIONS(4565), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_LBRACK2] = ACTIONS(579), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(4571), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(4573), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(567), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -197871,311 +192949,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(563), [anon_sym_in] = ACTIONS(567), [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [anon_sym_shared] = ACTIONS(4575), + [anon_sym_map_LBRACK] = ACTIONS(4577), + [anon_sym_chan] = ACTIONS(4579), + [anon_sym_thread] = ACTIONS(4581), + [anon_sym_atomic] = ACTIONS(4583), [anon_sym_DOT_DOT] = ACTIONS(567), }, - [1616] = { - [sym_line_comment] = STATE(1616), - [sym_reference_expression] = STATE(4571), - [sym_type_reference_expression] = STATE(2659), - [sym_plain_type] = STATE(2766), - [sym__plain_type_without_special] = STATE(2743), - [sym_anon_struct_type] = STATE(2744), - [sym_multi_return_type] = STATE(2743), - [sym_result_type] = STATE(2743), - [sym_option_type] = STATE(2743), - [sym_qualified_type] = STATE(2659), - [sym_fixed_array_type] = STATE(2744), - [sym_array_type] = STATE(2744), - [sym_pointer_type] = STATE(2744), - [sym_wrong_pointer_type] = STATE(2744), - [sym_map_type] = STATE(2744), - [sym_channel_type] = STATE(2744), - [sym_shared_type] = STATE(2744), - [sym_thread_type] = STATE(2744), - [sym_atomic_type] = STATE(2744), - [sym_generic_type] = STATE(2744), - [sym_function_type] = STATE(2744), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_as] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(617), - [anon_sym_COMMA] = ACTIONS(617), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(619), - [anon_sym_fn] = ACTIONS(4565), - [anon_sym_PLUS] = ACTIONS(619), - [anon_sym_DASH] = ACTIONS(619), - [anon_sym_STAR] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(619), - [anon_sym_PERCENT] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_GT] = ACTIONS(619), - [anon_sym_EQ_EQ] = ACTIONS(617), - [anon_sym_BANG_EQ] = ACTIONS(617), - [anon_sym_LT_EQ] = ACTIONS(617), - [anon_sym_GT_EQ] = ACTIONS(617), - [anon_sym_DOT_DOT_DOT] = ACTIONS(617), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_struct] = ACTIONS(4569), - [anon_sym_PLUS_PLUS] = ACTIONS(617), - [anon_sym_DASH_DASH] = ACTIONS(617), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4573), - [anon_sym_LBRACK2] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(619), - [anon_sym_GT_GT_GT] = ACTIONS(617), - [anon_sym_AMP_CARET] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_or] = ACTIONS(619), - [anon_sym_QMARK_DOT] = ACTIONS(617), - [anon_sym_POUND_LBRACK] = ACTIONS(617), - [anon_sym_is] = ACTIONS(619), - [anon_sym_BANGis] = ACTIONS(617), - [anon_sym_in] = ACTIONS(619), - [anon_sym_BANGin] = ACTIONS(617), - [anon_sym_shared] = ACTIONS(4579), - [anon_sym_map_LBRACK] = ACTIONS(4581), - [anon_sym_chan] = ACTIONS(4583), - [anon_sym_thread] = ACTIONS(4585), - [anon_sym_atomic] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(619), - }, - [1617] = { - [sym_line_comment] = STATE(1617), - [sym_reference_expression] = STATE(4571), - [sym_type_reference_expression] = STATE(2659), - [sym_plain_type] = STATE(2754), - [sym__plain_type_without_special] = STATE(2743), - [sym_anon_struct_type] = STATE(2744), - [sym_multi_return_type] = STATE(2743), - [sym_result_type] = STATE(2743), - [sym_option_type] = STATE(2743), - [sym_qualified_type] = STATE(2659), - [sym_fixed_array_type] = STATE(2744), - [sym_array_type] = STATE(2744), - [sym_pointer_type] = STATE(2744), - [sym_wrong_pointer_type] = STATE(2744), - [sym_map_type] = STATE(2744), - [sym_channel_type] = STATE(2744), - [sym_shared_type] = STATE(2744), - [sym_thread_type] = STATE(2744), - [sym_atomic_type] = STATE(2744), - [sym_generic_type] = STATE(2744), - [sym_function_type] = STATE(2744), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4565), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(585), - [anon_sym_struct] = ACTIONS(4569), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4573), - [anon_sym_LBRACK2] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(4579), - [anon_sym_map_LBRACK] = ACTIONS(4581), - [anon_sym_chan] = ACTIONS(4583), - [anon_sym_thread] = ACTIONS(4585), - [anon_sym_atomic] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(589), - }, - [1618] = { - [sym_line_comment] = STATE(1618), - [sym_reference_expression] = STATE(4571), - [sym_type_reference_expression] = STATE(2659), - [sym_plain_type] = STATE(2770), - [sym__plain_type_without_special] = STATE(2743), - [sym_anon_struct_type] = STATE(2744), - [sym_multi_return_type] = STATE(2743), - [sym_result_type] = STATE(2743), - [sym_option_type] = STATE(2743), - [sym_qualified_type] = STATE(2659), - [sym_fixed_array_type] = STATE(2744), - [sym_array_type] = STATE(2744), - [sym_pointer_type] = STATE(2744), - [sym_wrong_pointer_type] = STATE(2744), - [sym_map_type] = STATE(2744), - [sym_channel_type] = STATE(2744), - [sym_shared_type] = STATE(2744), - [sym_thread_type] = STATE(2744), - [sym_atomic_type] = STATE(2744), - [sym_generic_type] = STATE(2744), - [sym_function_type] = STATE(2744), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_as] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_LPAREN] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(4565), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(4567), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_DOT_DOT_DOT] = ACTIONS(625), - [anon_sym_LBRACK] = ACTIONS(625), - [anon_sym_struct] = ACTIONS(4569), - [anon_sym_PLUS_PLUS] = ACTIONS(625), - [anon_sym_DASH_DASH] = ACTIONS(625), - [anon_sym_QMARK] = ACTIONS(4571), - [anon_sym_BANG] = ACTIONS(4573), - [anon_sym_LBRACK2] = ACTIONS(4575), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(4577), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_AMP_CARET] = ACTIONS(625), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_or] = ACTIONS(627), - [anon_sym_QMARK_DOT] = ACTIONS(625), - [anon_sym_POUND_LBRACK] = ACTIONS(625), - [anon_sym_is] = ACTIONS(627), - [anon_sym_BANGis] = ACTIONS(625), - [anon_sym_in] = ACTIONS(627), - [anon_sym_BANGin] = ACTIONS(625), - [anon_sym_shared] = ACTIONS(4579), - [anon_sym_map_LBRACK] = ACTIONS(4581), - [anon_sym_chan] = ACTIONS(4583), - [anon_sym_thread] = ACTIONS(4585), - [anon_sym_atomic] = ACTIONS(4587), - [anon_sym_DOT_DOT] = ACTIONS(627), - }, [1619] = { [sym_line_comment] = STATE(1619), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2459), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(621), - [anon_sym_as] = ACTIONS(623), - [anon_sym_LBRACE] = ACTIONS(625), - [anon_sym_COMMA] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(621), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(623), - [anon_sym_DASH] = ACTIONS(623), - [anon_sym_STAR] = ACTIONS(621), - [anon_sym_SLASH] = ACTIONS(623), - [anon_sym_PERCENT] = ACTIONS(621), - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_EQ_EQ] = ACTIONS(621), - [anon_sym_BANG_EQ] = ACTIONS(621), - [anon_sym_LT_EQ] = ACTIONS(621), - [anon_sym_GT_EQ] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(621), - [anon_sym_DASH_DASH] = ACTIONS(621), - [anon_sym_QMARK] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(623), - [anon_sym_LBRACK2] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_LT_LT] = ACTIONS(621), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(621), - [anon_sym_AMP_CARET] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(621), - [anon_sym_PIPE_PIPE] = ACTIONS(621), - [anon_sym_or] = ACTIONS(623), - [anon_sym_QMARK_DOT] = ACTIONS(621), - [anon_sym_POUND_LBRACK] = ACTIONS(621), - [anon_sym_is] = ACTIONS(623), - [anon_sym_BANGis] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_BANGin] = ACTIONS(621), - [anon_sym_COLON_EQ] = ACTIONS(621), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), + [sym_block_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(4585), + [sym_identifier] = ACTIONS(4587), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_module] = ACTIONS(4587), + [anon_sym_import] = ACTIONS(4587), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_const] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym___global] = ACTIONS(4587), + [anon_sym_type] = ACTIONS(4587), + [anon_sym_fn] = ACTIONS(4587), + [anon_sym_PLUS] = ACTIONS(4585), + [anon_sym_DASH] = ACTIONS(4585), + [anon_sym_STAR] = ACTIONS(4585), + [anon_sym_struct] = ACTIONS(4587), + [anon_sym_union] = ACTIONS(4587), + [anon_sym_pub] = ACTIONS(4587), + [anon_sym_mut] = ACTIONS(4587), + [anon_sym_enum] = ACTIONS(4587), + [anon_sym_interface] = ACTIONS(4587), + [anon_sym_QMARK] = ACTIONS(4585), + [anon_sym_BANG] = ACTIONS(4585), + [anon_sym_go] = ACTIONS(4587), + [anon_sym_spawn] = ACTIONS(4587), + [anon_sym_json_DOTdecode] = ACTIONS(4585), + [anon_sym_LBRACK2] = ACTIONS(4585), + [anon_sym_TILDE] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(4585), + [anon_sym_AMP] = ACTIONS(4585), + [anon_sym_LT_DASH] = ACTIONS(4585), + [sym_none] = ACTIONS(4587), + [sym_true] = ACTIONS(4587), + [sym_false] = ACTIONS(4587), + [sym_nil] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_DOLLARif] = ACTIONS(4587), + [anon_sym_match] = ACTIONS(4587), + [anon_sym_select] = ACTIONS(4587), + [anon_sym_lock] = ACTIONS(4587), + [anon_sym_rlock] = ACTIONS(4587), + [anon_sym_unsafe] = ACTIONS(4587), + [anon_sym_sql] = ACTIONS(4587), + [sym_int_literal] = ACTIONS(4587), + [sym_float_literal] = ACTIONS(4585), + [sym_rune_literal] = ACTIONS(4585), + [sym_pseudo_compile_time_identifier] = ACTIONS(4587), + [anon_sym_shared] = ACTIONS(4587), + [anon_sym_map_LBRACK] = ACTIONS(4585), + [anon_sym_chan] = ACTIONS(4587), + [anon_sym_thread] = ACTIONS(4587), + [anon_sym_atomic] = ACTIONS(4587), + [anon_sym_assert] = ACTIONS(4587), + [anon_sym_defer] = ACTIONS(4587), + [anon_sym_goto] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_DOLLARfor] = ACTIONS(4587), + [anon_sym_for] = ACTIONS(4587), + [anon_sym_POUND] = ACTIONS(4585), + [anon_sym_asm] = ACTIONS(4587), + [anon_sym_AT_LBRACK] = ACTIONS(4585), + [sym___double_quote] = ACTIONS(4585), + [sym___single_quote] = ACTIONS(4585), + [sym___c_double_quote] = ACTIONS(4585), + [sym___c_single_quote] = ACTIONS(4585), + [sym___r_double_quote] = ACTIONS(4585), + [sym___r_single_quote] = ACTIONS(4585), }, [1620] = { [sym_line_comment] = STATE(1620), + [sym_block_comment] = STATE(1620), [ts_builtin_sym_end] = ACTIONS(4589), [sym_identifier] = ACTIONS(4591), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_import] = ACTIONS(4591), [anon_sym_DOT] = ACTIONS(4591), [anon_sym_LBRACE] = ACTIONS(4589), @@ -198244,10 +193105,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1621] = { [sym_line_comment] = STATE(1621), + [sym_block_comment] = STATE(1621), [ts_builtin_sym_end] = ACTIONS(4593), [sym_identifier] = ACTIONS(4595), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_import] = ACTIONS(4595), [anon_sym_DOT] = ACTIONS(4595), [anon_sym_LBRACE] = ACTIONS(4593), @@ -198313,1968 +193175,1902 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___c_single_quote] = ACTIONS(4593), [sym___r_double_quote] = ACTIONS(4593), [sym___r_single_quote] = ACTIONS(4593), - }, - [1622] = { - [sym_line_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(4597), - [sym_identifier] = ACTIONS(4599), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_LBRACE] = ACTIONS(4597), - [anon_sym_const] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4597), - [anon_sym___global] = ACTIONS(4599), - [anon_sym_type] = ACTIONS(4599), - [anon_sym_fn] = ACTIONS(4599), - [anon_sym_PLUS] = ACTIONS(4597), - [anon_sym_DASH] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4599), - [anon_sym_union] = ACTIONS(4599), - [anon_sym_pub] = ACTIONS(4599), - [anon_sym_mut] = ACTIONS(4599), - [anon_sym_enum] = ACTIONS(4599), - [anon_sym_interface] = ACTIONS(4599), - [anon_sym_QMARK] = ACTIONS(4597), - [anon_sym_BANG] = ACTIONS(4597), - [anon_sym_go] = ACTIONS(4599), - [anon_sym_spawn] = ACTIONS(4599), - [anon_sym_json_DOTdecode] = ACTIONS(4597), - [anon_sym_LBRACK2] = ACTIONS(4597), - [anon_sym_TILDE] = ACTIONS(4597), - [anon_sym_CARET] = ACTIONS(4597), - [anon_sym_AMP] = ACTIONS(4597), - [anon_sym_LT_DASH] = ACTIONS(4597), - [sym_none] = ACTIONS(4599), - [sym_true] = ACTIONS(4599), - [sym_false] = ACTIONS(4599), - [sym_nil] = ACTIONS(4599), - [anon_sym_if] = ACTIONS(4599), - [anon_sym_DOLLARif] = ACTIONS(4599), - [anon_sym_match] = ACTIONS(4599), - [anon_sym_select] = ACTIONS(4599), - [anon_sym_lock] = ACTIONS(4599), - [anon_sym_rlock] = ACTIONS(4599), - [anon_sym_unsafe] = ACTIONS(4599), - [anon_sym_sql] = ACTIONS(4599), - [sym_int_literal] = ACTIONS(4599), - [sym_float_literal] = ACTIONS(4597), - [sym_rune_literal] = ACTIONS(4597), - [sym_pseudo_compile_time_identifier] = ACTIONS(4599), - [anon_sym_shared] = ACTIONS(4599), - [anon_sym_map_LBRACK] = ACTIONS(4597), - [anon_sym_chan] = ACTIONS(4599), - [anon_sym_thread] = ACTIONS(4599), - [anon_sym_atomic] = ACTIONS(4599), - [anon_sym_assert] = ACTIONS(4599), - [anon_sym_defer] = ACTIONS(4599), - [anon_sym_goto] = ACTIONS(4599), - [anon_sym_break] = ACTIONS(4599), - [anon_sym_continue] = ACTIONS(4599), - [anon_sym_return] = ACTIONS(4599), - [anon_sym_DOLLARfor] = ACTIONS(4599), - [anon_sym_for] = ACTIONS(4599), - [anon_sym_POUND] = ACTIONS(4597), - [anon_sym_asm] = ACTIONS(4599), - [anon_sym_AT_LBRACK] = ACTIONS(4597), - [sym___double_quote] = ACTIONS(4597), - [sym___single_quote] = ACTIONS(4597), - [sym___c_double_quote] = ACTIONS(4597), - [sym___c_single_quote] = ACTIONS(4597), - [sym___r_double_quote] = ACTIONS(4597), - [sym___r_single_quote] = ACTIONS(4597), - }, - [1623] = { - [sym_line_comment] = STATE(1623), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2364), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(4601), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4601), - [anon_sym_LBRACE] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(4603), - [anon_sym_fn] = ACTIONS(4601), - [anon_sym_PLUS] = ACTIONS(4603), - [anon_sym_DASH] = ACTIONS(4603), - [anon_sym_STAR] = ACTIONS(4603), - [anon_sym_struct] = ACTIONS(4601), - [anon_sym_mut] = ACTIONS(4601), - [anon_sym_QMARK] = ACTIONS(4603), - [anon_sym_BANG] = ACTIONS(4603), - [anon_sym_go] = ACTIONS(4601), - [anon_sym_spawn] = ACTIONS(4601), - [anon_sym_json_DOTdecode] = ACTIONS(4603), - [anon_sym_LBRACK2] = ACTIONS(4603), - [anon_sym_TILDE] = ACTIONS(4603), - [anon_sym_CARET] = ACTIONS(4603), - [anon_sym_AMP] = ACTIONS(4603), - [anon_sym_LT_DASH] = ACTIONS(4603), - [sym_none] = ACTIONS(4601), - [sym_true] = ACTIONS(4601), - [sym_false] = ACTIONS(4601), - [sym_nil] = ACTIONS(4601), - [anon_sym_if] = ACTIONS(4601), - [anon_sym_DOLLARif] = ACTIONS(4601), - [anon_sym_match] = ACTIONS(4601), - [anon_sym_select] = ACTIONS(4601), - [anon_sym_lock] = ACTIONS(4601), - [anon_sym_rlock] = ACTIONS(4601), - [anon_sym_unsafe] = ACTIONS(4601), - [anon_sym_sql] = ACTIONS(4601), - [sym_int_literal] = ACTIONS(4601), - [sym_float_literal] = ACTIONS(4603), - [sym_rune_literal] = ACTIONS(4603), - [sym_pseudo_compile_time_identifier] = ACTIONS(4601), - [anon_sym_shared] = ACTIONS(4601), - [anon_sym_map_LBRACK] = ACTIONS(4603), - [anon_sym_chan] = ACTIONS(4601), - [anon_sym_thread] = ACTIONS(4601), - [anon_sym_atomic] = ACTIONS(4601), - [sym___double_quote] = ACTIONS(4603), - [sym___single_quote] = ACTIONS(4603), - [sym___c_double_quote] = ACTIONS(4603), - [sym___c_single_quote] = ACTIONS(4603), - [sym___r_double_quote] = ACTIONS(4603), - [sym___r_single_quote] = ACTIONS(4603), - }, - [1624] = { - [sym_line_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(4605), - [sym_identifier] = ACTIONS(4607), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_import] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4605), - [anon_sym_const] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4605), - [anon_sym___global] = ACTIONS(4607), - [anon_sym_type] = ACTIONS(4607), - [anon_sym_fn] = ACTIONS(4607), - [anon_sym_PLUS] = ACTIONS(4605), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_STAR] = ACTIONS(4605), - [anon_sym_struct] = ACTIONS(4607), - [anon_sym_union] = ACTIONS(4607), - [anon_sym_pub] = ACTIONS(4607), - [anon_sym_mut] = ACTIONS(4607), - [anon_sym_enum] = ACTIONS(4607), - [anon_sym_interface] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4605), - [anon_sym_BANG] = ACTIONS(4605), - [anon_sym_go] = ACTIONS(4607), - [anon_sym_spawn] = ACTIONS(4607), - [anon_sym_json_DOTdecode] = ACTIONS(4605), - [anon_sym_LBRACK2] = ACTIONS(4605), - [anon_sym_TILDE] = ACTIONS(4605), - [anon_sym_CARET] = ACTIONS(4605), - [anon_sym_AMP] = ACTIONS(4605), - [anon_sym_LT_DASH] = ACTIONS(4605), - [sym_none] = ACTIONS(4607), - [sym_true] = ACTIONS(4607), - [sym_false] = ACTIONS(4607), - [sym_nil] = ACTIONS(4607), - [anon_sym_if] = ACTIONS(4607), - [anon_sym_DOLLARif] = ACTIONS(4607), - [anon_sym_match] = ACTIONS(4607), - [anon_sym_select] = ACTIONS(4607), - [anon_sym_lock] = ACTIONS(4607), - [anon_sym_rlock] = ACTIONS(4607), - [anon_sym_unsafe] = ACTIONS(4607), - [anon_sym_sql] = ACTIONS(4607), - [sym_int_literal] = ACTIONS(4607), - [sym_float_literal] = ACTIONS(4605), - [sym_rune_literal] = ACTIONS(4605), - [sym_pseudo_compile_time_identifier] = ACTIONS(4607), - [anon_sym_shared] = ACTIONS(4607), - [anon_sym_map_LBRACK] = ACTIONS(4605), - [anon_sym_chan] = ACTIONS(4607), - [anon_sym_thread] = ACTIONS(4607), - [anon_sym_atomic] = ACTIONS(4607), - [anon_sym_assert] = ACTIONS(4607), - [anon_sym_defer] = ACTIONS(4607), - [anon_sym_goto] = ACTIONS(4607), - [anon_sym_break] = ACTIONS(4607), - [anon_sym_continue] = ACTIONS(4607), - [anon_sym_return] = ACTIONS(4607), - [anon_sym_DOLLARfor] = ACTIONS(4607), - [anon_sym_for] = ACTIONS(4607), - [anon_sym_POUND] = ACTIONS(4605), - [anon_sym_asm] = ACTIONS(4607), - [anon_sym_AT_LBRACK] = ACTIONS(4605), - [sym___double_quote] = ACTIONS(4605), - [sym___single_quote] = ACTIONS(4605), - [sym___c_double_quote] = ACTIONS(4605), - [sym___c_single_quote] = ACTIONS(4605), - [sym___r_double_quote] = ACTIONS(4605), - [sym___r_single_quote] = ACTIONS(4605), - }, - [1625] = { - [sym_line_comment] = STATE(1625), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1626] = { - [sym_line_comment] = STATE(1626), - [sym_reference_expression] = STATE(4616), - [sym_type_reference_expression] = STATE(3558), - [sym_plain_type] = STATE(2456), - [sym__plain_type_without_special] = STATE(2467), - [sym_anon_struct_type] = STATE(2469), - [sym_multi_return_type] = STATE(2467), - [sym_result_type] = STATE(2467), - [sym_option_type] = STATE(2467), - [sym_qualified_type] = STATE(3558), - [sym_fixed_array_type] = STATE(2469), - [sym_array_type] = STATE(2469), - [sym_pointer_type] = STATE(2469), - [sym_wrong_pointer_type] = STATE(2469), - [sym_map_type] = STATE(2469), - [sym_channel_type] = STATE(2469), - [sym_shared_type] = STATE(2469), - [sym_thread_type] = STATE(2469), - [sym_atomic_type] = STATE(2469), - [sym_generic_type] = STATE(2469), - [sym_function_type] = STATE(2469), - [sym_identifier] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_PIPE] = ACTIONS(567), - [anon_sym_fn] = ACTIONS(571), - [anon_sym_PLUS] = ACTIONS(567), - [anon_sym_DASH] = ACTIONS(567), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(567), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_struct] = ACTIONS(575), - [anon_sym_PLUS_PLUS] = ACTIONS(563), - [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_LBRACK2] = ACTIONS(579), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(581), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(567), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_or] = ACTIONS(567), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), - [anon_sym_is] = ACTIONS(567), - [anon_sym_BANGis] = ACTIONS(563), - [anon_sym_in] = ACTIONS(567), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(583), - [anon_sym_map_LBRACK] = ACTIONS(85), - [anon_sym_chan] = ACTIONS(87), - [anon_sym_thread] = ACTIONS(89), - [anon_sym_atomic] = ACTIONS(91), - }, - [1627] = { - [sym_line_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(4611), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym_block_comment] = ACTIONS(5), - [anon_sym_DOT] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym___global] = ACTIONS(4611), - [anon_sym_type] = ACTIONS(4611), - [anon_sym_fn] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(135), - [anon_sym_struct] = ACTIONS(4611), - [anon_sym_union] = ACTIONS(4611), - [anon_sym_pub] = ACTIONS(4611), - [anon_sym_mut] = ACTIONS(4611), - [anon_sym_enum] = ACTIONS(4611), - [anon_sym_interface] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_go] = ACTIONS(4611), - [anon_sym_spawn] = ACTIONS(4611), - [anon_sym_json_DOTdecode] = ACTIONS(135), - [anon_sym_LBRACK2] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_CARET] = ACTIONS(135), - [anon_sym_AMP] = ACTIONS(135), - [anon_sym_LT_DASH] = ACTIONS(135), - [sym_none] = ACTIONS(4611), - [sym_true] = ACTIONS(4611), - [sym_false] = ACTIONS(4611), - [sym_nil] = ACTIONS(4611), - [anon_sym_if] = ACTIONS(4611), - [anon_sym_DOLLARif] = ACTIONS(4611), - [anon_sym_match] = ACTIONS(4611), - [anon_sym_select] = ACTIONS(4611), - [anon_sym_lock] = ACTIONS(4611), - [anon_sym_rlock] = ACTIONS(4611), - [anon_sym_unsafe] = ACTIONS(4611), - [anon_sym_sql] = ACTIONS(4611), - [sym_int_literal] = ACTIONS(4611), - [sym_float_literal] = ACTIONS(135), - [sym_rune_literal] = ACTIONS(135), - [sym_pseudo_compile_time_identifier] = ACTIONS(4611), - [anon_sym_shared] = ACTIONS(4611), - [anon_sym_map_LBRACK] = ACTIONS(135), - [anon_sym_chan] = ACTIONS(4611), - [anon_sym_thread] = ACTIONS(4611), - [anon_sym_atomic] = ACTIONS(4611), - [anon_sym_assert] = ACTIONS(4611), - [anon_sym_defer] = ACTIONS(4611), - [anon_sym_goto] = ACTIONS(4611), - [anon_sym_break] = ACTIONS(4611), - [anon_sym_continue] = ACTIONS(4611), - [anon_sym_return] = ACTIONS(4611), - [anon_sym_DOLLARfor] = ACTIONS(4611), - [anon_sym_for] = ACTIONS(4611), - [anon_sym_POUND] = ACTIONS(135), - [anon_sym_asm] = ACTIONS(4611), - [anon_sym_AT_LBRACK] = ACTIONS(135), - [sym___double_quote] = ACTIONS(135), - [sym___single_quote] = ACTIONS(135), - [sym___c_double_quote] = ACTIONS(135), - [sym___c_single_quote] = ACTIONS(135), - [sym___r_double_quote] = ACTIONS(135), - [sym___r_single_quote] = ACTIONS(135), - }, - [1628] = { - [sym_line_comment] = STATE(1628), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_LT_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_AMP_EQ] = ACTIONS(3143), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3143), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_PIPE_EQ] = ACTIONS(3143), - [anon_sym_CARET_EQ] = ACTIONS(3143), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - }, - [1629] = { - [sym_line_comment] = STATE(1629), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_COLON] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_LT_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_AMP_EQ] = ACTIONS(3147), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3147), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_PIPE_EQ] = ACTIONS(3147), - [anon_sym_CARET_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - }, - [1630] = { - [sym_line_comment] = STATE(1630), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_COLON] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3109), - [anon_sym_PERCENT_EQ] = ACTIONS(3109), - [anon_sym_LT_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_AMP_EQ] = ACTIONS(3109), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3109), - [anon_sym_DASH_EQ] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - }, - [1631] = { - [sym_line_comment] = STATE(1631), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_LT_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_AMP_EQ] = ACTIONS(3087), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_PIPE_EQ] = ACTIONS(3087), - [anon_sym_CARET_EQ] = ACTIONS(3087), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - }, - [1632] = { - [sym_line_comment] = STATE(1632), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_COLON] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_LT_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_AMP_EQ] = ACTIONS(3315), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_PIPE_EQ] = ACTIONS(3315), - [anon_sym_CARET_EQ] = ACTIONS(3315), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - }, - [1633] = { - [sym_line_comment] = STATE(1633), - [sym_identifier] = ACTIONS(3143), - [anon_sym_LF] = ACTIONS(3143), - [anon_sym_CR] = ACTIONS(3143), - [anon_sym_CR_LF] = ACTIONS(3143), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_as] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_fn] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_GT] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3143), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3143), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3143), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_LT_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3143), - [anon_sym_AMP_EQ] = ACTIONS(3143), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3143), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_PIPE_EQ] = ACTIONS(3143), - [anon_sym_CARET_EQ] = ACTIONS(3143), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_shared] = ACTIONS(3143), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3143), - [anon_sym_thread] = ACTIONS(3143), - [anon_sym_atomic] = ACTIONS(3143), - }, - [1634] = { - [sym_line_comment] = STATE(1634), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_LT_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_AMP_EQ] = ACTIONS(3315), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_PIPE_EQ] = ACTIONS(3315), - [anon_sym_CARET_EQ] = ACTIONS(3315), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - }, - [1635] = { - [sym_line_comment] = STATE(1635), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_LT_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_AMP_EQ] = ACTIONS(3087), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_PIPE_EQ] = ACTIONS(3087), - [anon_sym_CARET_EQ] = ACTIONS(3087), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - }, - [1636] = { - [sym_line_comment] = STATE(1636), - [sym_identifier] = ACTIONS(3147), - [anon_sym_LF] = ACTIONS(3147), - [anon_sym_CR] = ACTIONS(3147), - [anon_sym_CR_LF] = ACTIONS(3147), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3147), - [anon_sym_fn] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3147), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3147), - [anon_sym_GT] = ACTIONS(3147), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3147), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3147), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_is] = ACTIONS(3147), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3147), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_STAR_EQ] = ACTIONS(3147), - [anon_sym_SLASH_EQ] = ACTIONS(3147), - [anon_sym_PERCENT_EQ] = ACTIONS(3147), - [anon_sym_LT_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3147), - [anon_sym_AMP_EQ] = ACTIONS(3147), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3147), - [anon_sym_PLUS_EQ] = ACTIONS(3147), - [anon_sym_DASH_EQ] = ACTIONS(3147), - [anon_sym_PIPE_EQ] = ACTIONS(3147), - [anon_sym_CARET_EQ] = ACTIONS(3147), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_shared] = ACTIONS(3147), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3147), - [anon_sym_thread] = ACTIONS(3147), - [anon_sym_atomic] = ACTIONS(3147), - }, - [1637] = { - [sym_line_comment] = STATE(1637), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [anon_sym_SLASH_SLASH] = ACTIONS(497), - [sym_block_comment] = ACTIONS(499), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3109), - [anon_sym_PERCENT_EQ] = ACTIONS(3109), - [anon_sym_LT_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_AMP_EQ] = ACTIONS(3109), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3109), - [anon_sym_DASH_EQ] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1638), 1, - sym_line_comment, - ACTIONS(3109), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3107), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [75] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1639), 1, - sym_line_comment, - ACTIONS(3109), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3107), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [150] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1640), 1, - sym_line_comment, - ACTIONS(3315), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3313), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [225] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1641), 1, - sym_line_comment, - ACTIONS(3147), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3145), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [300] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1642), 1, - sym_line_comment, - ACTIONS(3087), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3085), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [375] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1643), 1, - sym_line_comment, - ACTIONS(3143), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3141), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [450] = 32, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4615), 1, - anon_sym_as, - ACTIONS(4617), 1, - anon_sym_COMMA, - ACTIONS(4619), 1, - anon_sym_LPAREN, - ACTIONS(4627), 1, - anon_sym_LBRACK, - ACTIONS(4629), 1, - anon_sym_COLON, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - ACTIONS(4641), 1, - anon_sym_LT_DASH, - ACTIONS(4643), 1, - anon_sym_LT_LT, - ACTIONS(4645), 1, - anon_sym_AMP_AMP, - ACTIONS(4647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4649), 1, - anon_sym_or, - ACTIONS(4651), 1, - anon_sym_is, - ACTIONS(4653), 1, - anon_sym_BANGis, - ACTIONS(4655), 1, - anon_sym_in, - ACTIONS(4657), 1, - anon_sym_BANGin, - STATE(1644), 1, - sym_line_comment, - STATE(1749), 1, - sym_argument_list, - STATE(1750), 1, - sym_or_block, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4348), 1, - sym_type_parameters, - ACTIONS(4613), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1757), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4621), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1761), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [579] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1645), 1, - sym_line_comment, - ACTIONS(3087), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3085), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [654] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1646), 1, - sym_line_comment, - ACTIONS(3143), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3141), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [729] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1647), 1, - sym_line_comment, - ACTIONS(3147), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3145), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [804] = 5, + }, + [1622] = { + [sym_line_comment] = STATE(1622), + [sym_block_comment] = STATE(1622), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2469), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(4597), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4597), + [anon_sym_LBRACE] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(4599), + [anon_sym_fn] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [anon_sym_struct] = ACTIONS(4597), + [anon_sym_mut] = ACTIONS(4597), + [anon_sym_QMARK] = ACTIONS(4599), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_go] = ACTIONS(4597), + [anon_sym_spawn] = ACTIONS(4597), + [anon_sym_json_DOTdecode] = ACTIONS(4599), + [anon_sym_LBRACK2] = ACTIONS(4599), + [anon_sym_TILDE] = ACTIONS(4599), + [anon_sym_CARET] = ACTIONS(4599), + [anon_sym_AMP] = ACTIONS(4599), + [anon_sym_LT_DASH] = ACTIONS(4599), + [sym_none] = ACTIONS(4597), + [sym_true] = ACTIONS(4597), + [sym_false] = ACTIONS(4597), + [sym_nil] = ACTIONS(4597), + [anon_sym_if] = ACTIONS(4597), + [anon_sym_DOLLARif] = ACTIONS(4597), + [anon_sym_match] = ACTIONS(4597), + [anon_sym_select] = ACTIONS(4597), + [anon_sym_lock] = ACTIONS(4597), + [anon_sym_rlock] = ACTIONS(4597), + [anon_sym_unsafe] = ACTIONS(4597), + [anon_sym_sql] = ACTIONS(4597), + [sym_int_literal] = ACTIONS(4597), + [sym_float_literal] = ACTIONS(4599), + [sym_rune_literal] = ACTIONS(4599), + [sym_pseudo_compile_time_identifier] = ACTIONS(4597), + [anon_sym_shared] = ACTIONS(4597), + [anon_sym_map_LBRACK] = ACTIONS(4599), + [anon_sym_chan] = ACTIONS(4597), + [anon_sym_thread] = ACTIONS(4597), + [anon_sym_atomic] = ACTIONS(4597), + [sym___double_quote] = ACTIONS(4599), + [sym___single_quote] = ACTIONS(4599), + [sym___c_double_quote] = ACTIONS(4599), + [sym___c_single_quote] = ACTIONS(4599), + [sym___r_double_quote] = ACTIONS(4599), + [sym___r_single_quote] = ACTIONS(4599), + }, + [1623] = { + [sym_line_comment] = STATE(1623), + [sym_block_comment] = STATE(1623), + [ts_builtin_sym_end] = ACTIONS(4601), + [sym_identifier] = ACTIONS(4603), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_const] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym___global] = ACTIONS(4603), + [anon_sym_type] = ACTIONS(4603), + [anon_sym_fn] = ACTIONS(4603), + [anon_sym_PLUS] = ACTIONS(4601), + [anon_sym_DASH] = ACTIONS(4601), + [anon_sym_STAR] = ACTIONS(4601), + [anon_sym_struct] = ACTIONS(4603), + [anon_sym_union] = ACTIONS(4603), + [anon_sym_pub] = ACTIONS(4603), + [anon_sym_mut] = ACTIONS(4603), + [anon_sym_enum] = ACTIONS(4603), + [anon_sym_interface] = ACTIONS(4603), + [anon_sym_QMARK] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4601), + [anon_sym_go] = ACTIONS(4603), + [anon_sym_spawn] = ACTIONS(4603), + [anon_sym_json_DOTdecode] = ACTIONS(4601), + [anon_sym_LBRACK2] = ACTIONS(4601), + [anon_sym_TILDE] = ACTIONS(4601), + [anon_sym_CARET] = ACTIONS(4601), + [anon_sym_AMP] = ACTIONS(4601), + [anon_sym_LT_DASH] = ACTIONS(4601), + [sym_none] = ACTIONS(4603), + [sym_true] = ACTIONS(4603), + [sym_false] = ACTIONS(4603), + [sym_nil] = ACTIONS(4603), + [anon_sym_if] = ACTIONS(4603), + [anon_sym_DOLLARif] = ACTIONS(4603), + [anon_sym_match] = ACTIONS(4603), + [anon_sym_select] = ACTIONS(4603), + [anon_sym_lock] = ACTIONS(4603), + [anon_sym_rlock] = ACTIONS(4603), + [anon_sym_unsafe] = ACTIONS(4603), + [anon_sym_sql] = ACTIONS(4603), + [sym_int_literal] = ACTIONS(4603), + [sym_float_literal] = ACTIONS(4601), + [sym_rune_literal] = ACTIONS(4601), + [sym_pseudo_compile_time_identifier] = ACTIONS(4603), + [anon_sym_shared] = ACTIONS(4603), + [anon_sym_map_LBRACK] = ACTIONS(4601), + [anon_sym_chan] = ACTIONS(4603), + [anon_sym_thread] = ACTIONS(4603), + [anon_sym_atomic] = ACTIONS(4603), + [anon_sym_assert] = ACTIONS(4603), + [anon_sym_defer] = ACTIONS(4603), + [anon_sym_goto] = ACTIONS(4603), + [anon_sym_break] = ACTIONS(4603), + [anon_sym_continue] = ACTIONS(4603), + [anon_sym_return] = ACTIONS(4603), + [anon_sym_DOLLARfor] = ACTIONS(4603), + [anon_sym_for] = ACTIONS(4603), + [anon_sym_POUND] = ACTIONS(4601), + [anon_sym_asm] = ACTIONS(4603), + [anon_sym_AT_LBRACK] = ACTIONS(4601), + [sym___double_quote] = ACTIONS(4601), + [sym___single_quote] = ACTIONS(4601), + [sym___c_double_quote] = ACTIONS(4601), + [sym___c_single_quote] = ACTIONS(4601), + [sym___r_double_quote] = ACTIONS(4601), + [sym___r_single_quote] = ACTIONS(4601), + }, + [1624] = { + [sym_line_comment] = STATE(1624), + [sym_block_comment] = STATE(1624), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4605), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + }, + [1625] = { + [sym_line_comment] = STATE(1625), + [sym_block_comment] = STATE(1625), + [ts_builtin_sym_end] = ACTIONS(4607), + [sym_identifier] = ACTIONS(4609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_import] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4609), + [anon_sym_LBRACE] = ACTIONS(4607), + [anon_sym_const] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4607), + [anon_sym___global] = ACTIONS(4609), + [anon_sym_type] = ACTIONS(4609), + [anon_sym_fn] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [anon_sym_struct] = ACTIONS(4609), + [anon_sym_union] = ACTIONS(4609), + [anon_sym_pub] = ACTIONS(4609), + [anon_sym_mut] = ACTIONS(4609), + [anon_sym_enum] = ACTIONS(4609), + [anon_sym_interface] = ACTIONS(4609), + [anon_sym_QMARK] = ACTIONS(4607), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_go] = ACTIONS(4609), + [anon_sym_spawn] = ACTIONS(4609), + [anon_sym_json_DOTdecode] = ACTIONS(4607), + [anon_sym_LBRACK2] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_CARET] = ACTIONS(4607), + [anon_sym_AMP] = ACTIONS(4607), + [anon_sym_LT_DASH] = ACTIONS(4607), + [sym_none] = ACTIONS(4609), + [sym_true] = ACTIONS(4609), + [sym_false] = ACTIONS(4609), + [sym_nil] = ACTIONS(4609), + [anon_sym_if] = ACTIONS(4609), + [anon_sym_DOLLARif] = ACTIONS(4609), + [anon_sym_match] = ACTIONS(4609), + [anon_sym_select] = ACTIONS(4609), + [anon_sym_lock] = ACTIONS(4609), + [anon_sym_rlock] = ACTIONS(4609), + [anon_sym_unsafe] = ACTIONS(4609), + [anon_sym_sql] = ACTIONS(4609), + [sym_int_literal] = ACTIONS(4609), + [sym_float_literal] = ACTIONS(4607), + [sym_rune_literal] = ACTIONS(4607), + [sym_pseudo_compile_time_identifier] = ACTIONS(4609), + [anon_sym_shared] = ACTIONS(4609), + [anon_sym_map_LBRACK] = ACTIONS(4607), + [anon_sym_chan] = ACTIONS(4609), + [anon_sym_thread] = ACTIONS(4609), + [anon_sym_atomic] = ACTIONS(4609), + [anon_sym_assert] = ACTIONS(4609), + [anon_sym_defer] = ACTIONS(4609), + [anon_sym_goto] = ACTIONS(4609), + [anon_sym_break] = ACTIONS(4609), + [anon_sym_continue] = ACTIONS(4609), + [anon_sym_return] = ACTIONS(4609), + [anon_sym_DOLLARfor] = ACTIONS(4609), + [anon_sym_for] = ACTIONS(4609), + [anon_sym_POUND] = ACTIONS(4607), + [anon_sym_asm] = ACTIONS(4609), + [anon_sym_AT_LBRACK] = ACTIONS(4607), + [sym___double_quote] = ACTIONS(4607), + [sym___single_quote] = ACTIONS(4607), + [sym___c_double_quote] = ACTIONS(4607), + [sym___c_single_quote] = ACTIONS(4607), + [sym___r_double_quote] = ACTIONS(4607), + [sym___r_single_quote] = ACTIONS(4607), + }, + [1626] = { + [sym_line_comment] = STATE(1626), + [sym_block_comment] = STATE(1626), + [sym_reference_expression] = STATE(4654), + [sym_type_reference_expression] = STATE(3627), + [sym_plain_type] = STATE(2432), + [sym__plain_type_without_special] = STATE(2386), + [sym_anon_struct_type] = STATE(2387), + [sym_multi_return_type] = STATE(2386), + [sym_result_type] = STATE(2386), + [sym_option_type] = STATE(2386), + [sym_qualified_type] = STATE(3627), + [sym_fixed_array_type] = STATE(2387), + [sym_array_type] = STATE(2387), + [sym_pointer_type] = STATE(2387), + [sym_wrong_pointer_type] = STATE(2387), + [sym_map_type] = STATE(2387), + [sym_channel_type] = STATE(2387), + [sym_shared_type] = STATE(2387), + [sym_thread_type] = STATE(2387), + [sym_atomic_type] = STATE(2387), + [sym_generic_type] = STATE(2387), + [sym_function_type] = STATE(2387), + [sym_identifier] = ACTIONS(609), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_as] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_COMMA] = ACTIONS(607), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_PIPE] = ACTIONS(611), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(611), + [anon_sym_DASH] = ACTIONS(611), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(611), + [anon_sym_PERCENT] = ACTIONS(607), + [anon_sym_LT] = ACTIONS(611), + [anon_sym_GT] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_LT_EQ] = ACTIONS(607), + [anon_sym_GT_EQ] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(607), + [anon_sym_struct] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(607), + [anon_sym_DASH_DASH] = ACTIONS(607), + [anon_sym_QMARK] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_LBRACK2] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(607), + [anon_sym_AMP] = ACTIONS(625), + [anon_sym_LT_LT] = ACTIONS(607), + [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT_GT] = ACTIONS(607), + [anon_sym_AMP_CARET] = ACTIONS(607), + [anon_sym_AMP_AMP] = ACTIONS(607), + [anon_sym_PIPE_PIPE] = ACTIONS(607), + [anon_sym_or] = ACTIONS(611), + [anon_sym_QMARK_DOT] = ACTIONS(607), + [anon_sym_POUND_LBRACK] = ACTIONS(607), + [anon_sym_is] = ACTIONS(611), + [anon_sym_BANGis] = ACTIONS(607), + [anon_sym_in] = ACTIONS(611), + [anon_sym_BANGin] = ACTIONS(607), + [anon_sym_COLON_EQ] = ACTIONS(607), + [anon_sym_shared] = ACTIONS(627), + [anon_sym_map_LBRACK] = ACTIONS(87), + [anon_sym_chan] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(91), + [anon_sym_atomic] = ACTIONS(93), + }, + [1627] = { + [sym_line_comment] = STATE(1627), + [sym_block_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(139), + [sym_identifier] = ACTIONS(4611), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(139), + [anon_sym_const] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym___global] = ACTIONS(4611), + [anon_sym_type] = ACTIONS(4611), + [anon_sym_fn] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_struct] = ACTIONS(4611), + [anon_sym_union] = ACTIONS(4611), + [anon_sym_pub] = ACTIONS(4611), + [anon_sym_mut] = ACTIONS(4611), + [anon_sym_enum] = ACTIONS(4611), + [anon_sym_interface] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_go] = ACTIONS(4611), + [anon_sym_spawn] = ACTIONS(4611), + [anon_sym_json_DOTdecode] = ACTIONS(139), + [anon_sym_LBRACK2] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(139), + [anon_sym_LT_DASH] = ACTIONS(139), + [sym_none] = ACTIONS(4611), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_nil] = ACTIONS(4611), + [anon_sym_if] = ACTIONS(4611), + [anon_sym_DOLLARif] = ACTIONS(4611), + [anon_sym_match] = ACTIONS(4611), + [anon_sym_select] = ACTIONS(4611), + [anon_sym_lock] = ACTIONS(4611), + [anon_sym_rlock] = ACTIONS(4611), + [anon_sym_unsafe] = ACTIONS(4611), + [anon_sym_sql] = ACTIONS(4611), + [sym_int_literal] = ACTIONS(4611), + [sym_float_literal] = ACTIONS(139), + [sym_rune_literal] = ACTIONS(139), + [sym_pseudo_compile_time_identifier] = ACTIONS(4611), + [anon_sym_shared] = ACTIONS(4611), + [anon_sym_map_LBRACK] = ACTIONS(139), + [anon_sym_chan] = ACTIONS(4611), + [anon_sym_thread] = ACTIONS(4611), + [anon_sym_atomic] = ACTIONS(4611), + [anon_sym_assert] = ACTIONS(4611), + [anon_sym_defer] = ACTIONS(4611), + [anon_sym_goto] = ACTIONS(4611), + [anon_sym_break] = ACTIONS(4611), + [anon_sym_continue] = ACTIONS(4611), + [anon_sym_return] = ACTIONS(4611), + [anon_sym_DOLLARfor] = ACTIONS(4611), + [anon_sym_for] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(139), + [anon_sym_asm] = ACTIONS(4611), + [anon_sym_AT_LBRACK] = ACTIONS(139), + [sym___double_quote] = ACTIONS(139), + [sym___single_quote] = ACTIONS(139), + [sym___c_double_quote] = ACTIONS(139), + [sym___c_single_quote] = ACTIONS(139), + [sym___r_double_quote] = ACTIONS(139), + [sym___r_single_quote] = ACTIONS(139), + }, + [1628] = { + [sym_line_comment] = STATE(1628), + [sym_block_comment] = STATE(1628), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_STAR_EQ] = ACTIONS(3202), + [anon_sym_SLASH_EQ] = ACTIONS(3202), + [anon_sym_PERCENT_EQ] = ACTIONS(3202), + [anon_sym_LT_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_AMP_EQ] = ACTIONS(3202), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3202), + [anon_sym_PLUS_EQ] = ACTIONS(3202), + [anon_sym_DASH_EQ] = ACTIONS(3202), + [anon_sym_PIPE_EQ] = ACTIONS(3202), + [anon_sym_CARET_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + }, + [1629] = { + [sym_line_comment] = STATE(1629), + [sym_block_comment] = STATE(1629), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_LT_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_AMP_EQ] = ACTIONS(2997), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_PIPE_EQ] = ACTIONS(2997), + [anon_sym_CARET_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + }, + [1630] = { + [sym_line_comment] = STATE(1630), + [sym_block_comment] = STATE(1630), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_LT_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_AMP_EQ] = ACTIONS(3198), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_PIPE_EQ] = ACTIONS(3198), + [anon_sym_CARET_EQ] = ACTIONS(3198), + [anon_sym_COLON_EQ] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + }, + [1631] = { + [sym_line_comment] = STATE(1631), + [sym_block_comment] = STATE(1631), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_STAR_EQ] = ACTIONS(3001), + [anon_sym_SLASH_EQ] = ACTIONS(3001), + [anon_sym_PERCENT_EQ] = ACTIONS(3001), + [anon_sym_LT_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_AMP_EQ] = ACTIONS(3001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), + [anon_sym_PLUS_EQ] = ACTIONS(3001), + [anon_sym_DASH_EQ] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3001), + [anon_sym_CARET_EQ] = ACTIONS(3001), + [anon_sym_COLON_EQ] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1632] = { + [sym_line_comment] = STATE(1632), + [sym_block_comment] = STATE(1632), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_COLON] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_LT_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_AMP_EQ] = ACTIONS(3374), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3374), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_PIPE_EQ] = ACTIONS(3374), + [anon_sym_CARET_EQ] = ACTIONS(3374), + [anon_sym_COLON_EQ] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + }, + [1633] = { + [sym_line_comment] = STATE(1633), + [sym_block_comment] = STATE(1633), + [sym_identifier] = ACTIONS(3202), + [anon_sym_LF] = ACTIONS(3202), + [anon_sym_CR] = ACTIONS(3202), + [anon_sym_CR_LF] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3202), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_COMMA] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3202), + [anon_sym_BANG_EQ] = ACTIONS(3202), + [anon_sym_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_EQ] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3202), + [anon_sym_PIPE_PIPE] = ACTIONS(3202), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3202), + [anon_sym_POUND_LBRACK] = ACTIONS(3202), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3202), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3202), + [anon_sym_STAR_EQ] = ACTIONS(3202), + [anon_sym_SLASH_EQ] = ACTIONS(3202), + [anon_sym_PERCENT_EQ] = ACTIONS(3202), + [anon_sym_LT_LT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3202), + [anon_sym_AMP_EQ] = ACTIONS(3202), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3202), + [anon_sym_PLUS_EQ] = ACTIONS(3202), + [anon_sym_DASH_EQ] = ACTIONS(3202), + [anon_sym_PIPE_EQ] = ACTIONS(3202), + [anon_sym_CARET_EQ] = ACTIONS(3202), + [anon_sym_COLON_EQ] = ACTIONS(3202), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3202), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + }, + [1634] = { + [sym_line_comment] = STATE(1634), + [sym_block_comment] = STATE(1634), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_LT_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_AMP_EQ] = ACTIONS(3374), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3374), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_PIPE_EQ] = ACTIONS(3374), + [anon_sym_CARET_EQ] = ACTIONS(3374), + [anon_sym_COLON_EQ] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + }, + [1635] = { + [sym_line_comment] = STATE(1635), + [sym_block_comment] = STATE(1635), + [sym_identifier] = ACTIONS(3198), + [anon_sym_LF] = ACTIONS(3198), + [anon_sym_CR] = ACTIONS(3198), + [anon_sym_CR_LF] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3198), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_COMMA] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3198), + [anon_sym_BANG_EQ] = ACTIONS(3198), + [anon_sym_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_EQ] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3198), + [anon_sym_PIPE_PIPE] = ACTIONS(3198), + [anon_sym_or] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3198), + [anon_sym_POUND_LBRACK] = ACTIONS(3198), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3198), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3198), + [anon_sym_STAR_EQ] = ACTIONS(3198), + [anon_sym_SLASH_EQ] = ACTIONS(3198), + [anon_sym_PERCENT_EQ] = ACTIONS(3198), + [anon_sym_LT_LT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3198), + [anon_sym_AMP_EQ] = ACTIONS(3198), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3198), + [anon_sym_PLUS_EQ] = ACTIONS(3198), + [anon_sym_DASH_EQ] = ACTIONS(3198), + [anon_sym_PIPE_EQ] = ACTIONS(3198), + [anon_sym_CARET_EQ] = ACTIONS(3198), + [anon_sym_COLON_EQ] = ACTIONS(3198), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3198), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + }, + [1636] = { + [sym_line_comment] = STATE(1636), + [sym_block_comment] = STATE(1636), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_STAR_EQ] = ACTIONS(3001), + [anon_sym_SLASH_EQ] = ACTIONS(3001), + [anon_sym_PERCENT_EQ] = ACTIONS(3001), + [anon_sym_LT_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_AMP_EQ] = ACTIONS(3001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), + [anon_sym_PLUS_EQ] = ACTIONS(3001), + [anon_sym_DASH_EQ] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3001), + [anon_sym_CARET_EQ] = ACTIONS(3001), + [anon_sym_COLON_EQ] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1637] = { + [sym_line_comment] = STATE(1637), + [sym_block_comment] = STATE(1637), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_LT_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_AMP_EQ] = ACTIONS(2997), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_PIPE_EQ] = ACTIONS(2997), + [anon_sym_CARET_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + }, + [1638] = { + [sym_line_comment] = STATE(1638), + [sym_block_comment] = STATE(1638), + [sym_identifier] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3372), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3372), + [anon_sym_BANG_EQ] = ACTIONS(3372), + [anon_sym_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_EQ] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3372), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3372), + [anon_sym_PIPE_PIPE] = ACTIONS(3372), + [anon_sym_or] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3372), + [anon_sym_POUND_LBRACK] = ACTIONS(3372), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3372), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3372), + [anon_sym_STAR_EQ] = ACTIONS(3372), + [anon_sym_SLASH_EQ] = ACTIONS(3372), + [anon_sym_PERCENT_EQ] = ACTIONS(3372), + [anon_sym_LT_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_GT_EQ] = ACTIONS(3372), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3372), + [anon_sym_AMP_EQ] = ACTIONS(3372), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3372), + [anon_sym_PLUS_EQ] = ACTIONS(3372), + [anon_sym_DASH_EQ] = ACTIONS(3372), + [anon_sym_PIPE_EQ] = ACTIONS(3372), + [anon_sym_CARET_EQ] = ACTIONS(3372), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3372), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + }, + [1639] = { + [sym_line_comment] = STATE(1639), + [sym_block_comment] = STATE(1639), + [sym_type_parameters] = STATE(4221), + [sym_argument_list] = STATE(1717), + [sym_or_block] = STATE(1718), + [aux_sym_strictly_expression_list_repeat1] = STATE(3381), + [anon_sym_LF] = ACTIONS(1713), + [anon_sym_CR] = ACTIONS(1713), + [anon_sym_CR_LF] = ACTIONS(1713), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(499), + [anon_sym_DOT] = ACTIONS(4613), + [anon_sym_as] = ACTIONS(4615), + [anon_sym_COMMA] = ACTIONS(4617), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(4619), + [anon_sym_EQ] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(4621), + [anon_sym_PLUS] = ACTIONS(4621), + [anon_sym_DASH] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4623), + [anon_sym_SLASH] = ACTIONS(4623), + [anon_sym_PERCENT] = ACTIONS(4623), + [anon_sym_LT] = ACTIONS(4625), + [anon_sym_GT] = ACTIONS(4625), + [anon_sym_EQ_EQ] = ACTIONS(4625), + [anon_sym_BANG_EQ] = ACTIONS(4625), + [anon_sym_LT_EQ] = ACTIONS(4625), + [anon_sym_GT_EQ] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4627), + [anon_sym_COLON] = ACTIONS(4629), + [anon_sym_PLUS_PLUS] = ACTIONS(4631), + [anon_sym_DASH_DASH] = ACTIONS(4633), + [anon_sym_QMARK] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4637), + [anon_sym_LBRACK2] = ACTIONS(4639), + [anon_sym_CARET] = ACTIONS(4621), + [anon_sym_AMP] = ACTIONS(4623), + [anon_sym_LT_DASH] = ACTIONS(4641), + [anon_sym_LT_LT] = ACTIONS(4643), + [anon_sym_GT_GT] = ACTIONS(4623), + [anon_sym_GT_GT_GT] = ACTIONS(4623), + [anon_sym_AMP_CARET] = ACTIONS(4623), + [anon_sym_AMP_AMP] = ACTIONS(4645), + [anon_sym_PIPE_PIPE] = ACTIONS(4647), + [anon_sym_or] = ACTIONS(4649), + [anon_sym_QMARK_DOT] = ACTIONS(4613), + [anon_sym_POUND_LBRACK] = ACTIONS(4639), + [anon_sym_is] = ACTIONS(4651), + [anon_sym_BANGis] = ACTIONS(4653), + [anon_sym_in] = ACTIONS(4655), + [anon_sym_BANGin] = ACTIONS(4657), + [anon_sym_STAR_EQ] = ACTIONS(1723), + [anon_sym_SLASH_EQ] = ACTIONS(1723), + [anon_sym_PERCENT_EQ] = ACTIONS(1723), + [anon_sym_LT_LT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1723), + [anon_sym_AMP_EQ] = ACTIONS(1723), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1723), + [anon_sym_PLUS_EQ] = ACTIONS(1723), + [anon_sym_DASH_EQ] = ACTIONS(1723), + [anon_sym_PIPE_EQ] = ACTIONS(1723), + [anon_sym_CARET_EQ] = ACTIONS(1723), + [anon_sym_COLON_EQ] = ACTIONS(1723), + }, + [1640] = { + [sym_line_comment] = STATE(1640), + [sym_block_comment] = STATE(1640), + [sym_identifier] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_STAR_EQ] = ACTIONS(2995), + [anon_sym_SLASH_EQ] = ACTIONS(2995), + [anon_sym_PERCENT_EQ] = ACTIONS(2995), + [anon_sym_LT_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_GT_EQ] = ACTIONS(2995), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2995), + [anon_sym_AMP_EQ] = ACTIONS(2995), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2995), + [anon_sym_PLUS_EQ] = ACTIONS(2995), + [anon_sym_DASH_EQ] = ACTIONS(2995), + [anon_sym_PIPE_EQ] = ACTIONS(2995), + [anon_sym_CARET_EQ] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + }, + [1641] = { + [sym_line_comment] = STATE(1641), + [sym_block_comment] = STATE(1641), + [sym_identifier] = ACTIONS(2997), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2995), + [anon_sym_DOT] = ACTIONS(2995), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_STAR_EQ] = ACTIONS(2995), + [anon_sym_SLASH_EQ] = ACTIONS(2995), + [anon_sym_PERCENT_EQ] = ACTIONS(2995), + [anon_sym_LT_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_GT_EQ] = ACTIONS(2995), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2995), + [anon_sym_AMP_EQ] = ACTIONS(2995), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2995), + [anon_sym_PLUS_EQ] = ACTIONS(2995), + [anon_sym_DASH_EQ] = ACTIONS(2995), + [anon_sym_PIPE_EQ] = ACTIONS(2995), + [anon_sym_CARET_EQ] = ACTIONS(2995), + [anon_sym_COLON_EQ] = ACTIONS(2995), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + }, + [1642] = { + [sym_line_comment] = STATE(1642), + [sym_block_comment] = STATE(1642), + [sym_identifier] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_STAR_EQ] = ACTIONS(2999), + [anon_sym_SLASH_EQ] = ACTIONS(2999), + [anon_sym_PERCENT_EQ] = ACTIONS(2999), + [anon_sym_LT_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_GT_EQ] = ACTIONS(2999), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2999), + [anon_sym_AMP_EQ] = ACTIONS(2999), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2999), + [anon_sym_PLUS_EQ] = ACTIONS(2999), + [anon_sym_DASH_EQ] = ACTIONS(2999), + [anon_sym_PIPE_EQ] = ACTIONS(2999), + [anon_sym_CARET_EQ] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1643] = { + [sym_line_comment] = STATE(1643), + [sym_block_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3374), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_DOT] = ACTIONS(3372), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3372), + [anon_sym_BANG_EQ] = ACTIONS(3372), + [anon_sym_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_EQ] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3372), + [anon_sym_PIPE_PIPE] = ACTIONS(3372), + [anon_sym_or] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3372), + [anon_sym_POUND_LBRACK] = ACTIONS(3372), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3372), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3372), + [anon_sym_STAR_EQ] = ACTIONS(3372), + [anon_sym_SLASH_EQ] = ACTIONS(3372), + [anon_sym_PERCENT_EQ] = ACTIONS(3372), + [anon_sym_LT_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_GT_EQ] = ACTIONS(3372), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3372), + [anon_sym_AMP_EQ] = ACTIONS(3372), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3372), + [anon_sym_PLUS_EQ] = ACTIONS(3372), + [anon_sym_DASH_EQ] = ACTIONS(3372), + [anon_sym_PIPE_EQ] = ACTIONS(3372), + [anon_sym_CARET_EQ] = ACTIONS(3372), + [anon_sym_COLON_EQ] = ACTIONS(3372), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3372), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + }, + [1644] = { + [sym_line_comment] = STATE(1644), + [sym_block_comment] = STATE(1644), + [sym_identifier] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_COMMA] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_or] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3196), + [anon_sym_POUND_LBRACK] = ACTIONS(3196), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3196), + [anon_sym_STAR_EQ] = ACTIONS(3196), + [anon_sym_SLASH_EQ] = ACTIONS(3196), + [anon_sym_PERCENT_EQ] = ACTIONS(3196), + [anon_sym_LT_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_GT_EQ] = ACTIONS(3196), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3196), + [anon_sym_AMP_EQ] = ACTIONS(3196), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3196), + [anon_sym_PLUS_EQ] = ACTIONS(3196), + [anon_sym_DASH_EQ] = ACTIONS(3196), + [anon_sym_PIPE_EQ] = ACTIONS(3196), + [anon_sym_CARET_EQ] = ACTIONS(3196), + [anon_sym_COLON_EQ] = ACTIONS(3196), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3196), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + }, + [1645] = { + [sym_line_comment] = STATE(1645), + [sym_block_comment] = STATE(1645), + [sym_identifier] = ACTIONS(3198), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_COMMA] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3198), + [anon_sym_PIPE] = ACTIONS(3198), + [anon_sym_fn] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_PERCENT] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_GT] = ACTIONS(3198), + [anon_sym_EQ_EQ] = ACTIONS(3196), + [anon_sym_BANG_EQ] = ACTIONS(3196), + [anon_sym_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_EQ] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3198), + [anon_sym_COLON] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_QMARK] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_LBRACK2] = ACTIONS(3198), + [anon_sym_CARET] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(3198), + [anon_sym_LT_DASH] = ACTIONS(3196), + [anon_sym_LT_LT] = ACTIONS(3198), + [anon_sym_GT_GT] = ACTIONS(3198), + [anon_sym_GT_GT_GT] = ACTIONS(3198), + [anon_sym_AMP_CARET] = ACTIONS(3198), + [anon_sym_AMP_AMP] = ACTIONS(3196), + [anon_sym_PIPE_PIPE] = ACTIONS(3196), + [anon_sym_or] = ACTIONS(3198), + [anon_sym_QMARK_DOT] = ACTIONS(3196), + [anon_sym_POUND_LBRACK] = ACTIONS(3196), + [anon_sym_is] = ACTIONS(3198), + [anon_sym_BANGis] = ACTIONS(3196), + [anon_sym_in] = ACTIONS(3198), + [anon_sym_BANGin] = ACTIONS(3196), + [anon_sym_STAR_EQ] = ACTIONS(3196), + [anon_sym_SLASH_EQ] = ACTIONS(3196), + [anon_sym_PERCENT_EQ] = ACTIONS(3196), + [anon_sym_LT_LT_EQ] = ACTIONS(3196), + [anon_sym_GT_GT_EQ] = ACTIONS(3196), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3196), + [anon_sym_AMP_EQ] = ACTIONS(3196), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3196), + [anon_sym_PLUS_EQ] = ACTIONS(3196), + [anon_sym_DASH_EQ] = ACTIONS(3196), + [anon_sym_PIPE_EQ] = ACTIONS(3196), + [anon_sym_CARET_EQ] = ACTIONS(3196), + [anon_sym_shared] = ACTIONS(3198), + [anon_sym_map_LBRACK] = ACTIONS(3196), + [anon_sym_chan] = ACTIONS(3198), + [anon_sym_thread] = ACTIONS(3198), + [anon_sym_atomic] = ACTIONS(3198), + }, + [1646] = { + [sym_line_comment] = STATE(1646), + [sym_block_comment] = STATE(1646), + [sym_identifier] = ACTIONS(3001), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_DOT] = ACTIONS(2999), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_STAR_EQ] = ACTIONS(2999), + [anon_sym_SLASH_EQ] = ACTIONS(2999), + [anon_sym_PERCENT_EQ] = ACTIONS(2999), + [anon_sym_LT_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_GT_EQ] = ACTIONS(2999), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2999), + [anon_sym_AMP_EQ] = ACTIONS(2999), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2999), + [anon_sym_PLUS_EQ] = ACTIONS(2999), + [anon_sym_DASH_EQ] = ACTIONS(2999), + [anon_sym_PIPE_EQ] = ACTIONS(2999), + [anon_sym_CARET_EQ] = ACTIONS(2999), + [anon_sym_COLON_EQ] = ACTIONS(2999), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + }, + [1647] = { + [sym_line_comment] = STATE(1647), + [sym_block_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3200), + [anon_sym_POUND_LBRACK] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_LT_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_GT_EQ] = ACTIONS(3200), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3200), + [anon_sym_AMP_EQ] = ACTIONS(3200), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_PIPE_EQ] = ACTIONS(3200), + [anon_sym_CARET_EQ] = ACTIONS(3200), + [anon_sym_COLON_EQ] = ACTIONS(3200), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3200), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + }, + [1648] = { + [sym_line_comment] = STATE(1648), + [sym_block_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3202), + [anon_sym_SLASH_SLASH] = ACTIONS(13), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_DOT] = ACTIONS(3200), + [anon_sym_as] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_PIPE] = ACTIONS(3202), + [anon_sym_fn] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_GT] = ACTIONS(3202), + [anon_sym_EQ_EQ] = ACTIONS(3200), + [anon_sym_BANG_EQ] = ACTIONS(3200), + [anon_sym_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_EQ] = ACTIONS(3200), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_struct] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(3200), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_QMARK] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_LBRACK2] = ACTIONS(3202), + [anon_sym_CARET] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(3202), + [anon_sym_LT_DASH] = ACTIONS(3200), + [anon_sym_LT_LT] = ACTIONS(3202), + [anon_sym_GT_GT] = ACTIONS(3202), + [anon_sym_GT_GT_GT] = ACTIONS(3202), + [anon_sym_AMP_CARET] = ACTIONS(3202), + [anon_sym_AMP_AMP] = ACTIONS(3200), + [anon_sym_PIPE_PIPE] = ACTIONS(3200), + [anon_sym_or] = ACTIONS(3202), + [anon_sym_QMARK_DOT] = ACTIONS(3200), + [anon_sym_POUND_LBRACK] = ACTIONS(3200), + [anon_sym_is] = ACTIONS(3202), + [anon_sym_BANGis] = ACTIONS(3200), + [anon_sym_in] = ACTIONS(3202), + [anon_sym_BANGin] = ACTIONS(3200), + [anon_sym_STAR_EQ] = ACTIONS(3200), + [anon_sym_SLASH_EQ] = ACTIONS(3200), + [anon_sym_PERCENT_EQ] = ACTIONS(3200), + [anon_sym_LT_LT_EQ] = ACTIONS(3200), + [anon_sym_GT_GT_EQ] = ACTIONS(3200), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3200), + [anon_sym_AMP_EQ] = ACTIONS(3200), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3200), + [anon_sym_PLUS_EQ] = ACTIONS(3200), + [anon_sym_DASH_EQ] = ACTIONS(3200), + [anon_sym_PIPE_EQ] = ACTIONS(3200), + [anon_sym_CARET_EQ] = ACTIONS(3200), + [anon_sym_shared] = ACTIONS(3202), + [anon_sym_map_LBRACK] = ACTIONS(3200), + [anon_sym_chan] = ACTIONS(3202), + [anon_sym_thread] = ACTIONS(3202), + [anon_sym_atomic] = ACTIONS(3202), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1648), 1, - sym_line_comment, - ACTIONS(3315), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3313), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [879] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4615), 1, - anon_sym_as, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, ACTIONS(4635), 1, anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_AMP_AMP, - ACTIONS(4647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4649), 1, - anon_sym_or, - ACTIONS(4651), 1, - anon_sym_is, - ACTIONS(4653), 1, - anon_sym_BANGis, - ACTIONS(4655), 1, - anon_sym_in, - ACTIONS(4657), 1, - anon_sym_BANGin, - STATE(1649), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200282,77 +195078,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4621), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1769), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [995] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4619), 1, - anon_sym_LPAREN, - ACTIONS(4627), 1, - anon_sym_LBRACK, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - STATE(1650), 1, + STATE(1649), 2, sym_line_comment, - STATE(1749), 1, - sym_argument_list, - STATE(1750), 1, - sym_or_block, - STATE(4348), 1, - sym_type_parameters, - ACTIONS(4613), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1925), 49, + sym_block_comment, + ACTIONS(1913), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200402,11 +195131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1085] = 14, - ACTIONS(497), 1, + [91] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -200415,13 +195144,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1651), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200429,26 +195156,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4623), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 41, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1865), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1849), 45, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -200459,7 +195184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -200480,11 +195210,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1177] = 13, - ACTIONS(497), 1, + [184] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -200493,13 +195223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1652), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200507,7 +195235,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1889), 49, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4621), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4623), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200515,12 +195260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -200530,13 +195269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -200557,11 +195290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1267] = 15, - ACTIONS(497), 1, + [279] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -200570,13 +195303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1653), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200584,6 +195315,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -200598,7 +195332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 37, + ACTIONS(1877), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200636,26 +195370,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1361] = 14, - ACTIONS(497), 1, + [374] = 31, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_as, + ACTIONS(4617), 1, + anon_sym_COMMA, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4633), 1, + anon_sym_DASH_DASH, ACTIONS(4635), 1, anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1654), 1, - sym_line_comment, - STATE(1749), 1, + ACTIONS(4641), 1, + anon_sym_LT_DASH, + ACTIONS(4643), 1, + anon_sym_LT_LT, + ACTIONS(4645), 1, + anon_sym_AMP_AMP, + ACTIONS(4647), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4649), 1, + anon_sym_or, + ACTIONS(4651), 1, + anon_sym_is, + ACTIONS(4653), 1, + anon_sym_BANGis, + ACTIONS(4655), 1, + anon_sym_in, + ACTIONS(4657), 1, + anon_sym_BANGin, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(3381), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200663,44 +195423,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1911), 4, + STATE(1653), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1713), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1889), 45, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, + ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4625), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4623), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1723), 14, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200714,11 +195466,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1453] = 18, - ACTIONS(497), 1, + [501] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -200727,17 +195479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, + ACTIONS(4645), 1, + anon_sym_AMP_AMP, ACTIONS(4655), 1, anon_sym_in, ACTIONS(4657), 1, anon_sym_BANGin, - STATE(1655), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200745,6 +195497,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1654), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -200766,7 +195521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 29, + ACTIONS(1849), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200778,7 +195533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -200796,32 +195550,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1553] = 19, - ACTIONS(497), 1, + [604] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_as, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4633), 1, + anon_sym_DASH_DASH, ACTIONS(4635), 1, anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, ACTIONS(4645), 1, anon_sym_AMP_AMP, + ACTIONS(4647), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4649), 1, + anon_sym_or, + ACTIONS(4651), 1, + anon_sym_is, + ACTIONS(4653), 1, + anon_sym_BANGis, ACTIONS(4655), 1, anon_sym_in, ACTIONS(4657), 1, anon_sym_BANGin, - STATE(1656), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200829,6 +195595,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -200850,22 +195619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 28, + ACTIONS(2071), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200879,26 +195641,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1655] = 15, - ACTIONS(497), 1, + [721] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(4615), 1, + anon_sym_as, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, anon_sym_LBRACK, + ACTIONS(4631), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4633), 1, + anon_sym_DASH_DASH, ACTIONS(4635), 1, anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1657), 1, - sym_line_comment, - STATE(1749), 1, + ACTIONS(4645), 1, + anon_sym_AMP_AMP, + ACTIONS(4647), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4649), 1, + anon_sym_or, + ACTIONS(4651), 1, + anon_sym_is, + ACTIONS(4653), 1, + anon_sym_BANGis, + ACTIONS(4655), 1, + anon_sym_in, + ACTIONS(4657), 1, + anon_sym_BANGin, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200906,11 +195686,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(4625), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(4623), 8, anon_sym_STAR, anon_sym_SLASH, @@ -200920,31 +195710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1899), 37, + ACTIONS(1933), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -200958,11 +195732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1749] = 15, - ACTIONS(497), 1, + [838] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -200971,13 +195745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1658), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -200985,6 +195757,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -200999,7 +195774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 37, + ACTIONS(1849), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201037,11 +195812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1843] = 13, - ACTIONS(497), 1, + [933] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, @@ -201050,13 +195825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - STATE(1659), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -201064,7 +195837,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1837), 49, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201114,46 +195890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1933] = 26, - ACTIONS(497), 1, + [1024] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4615), 1, - anon_sym_as, + anon_sym_SLASH_STAR, ACTIONS(4619), 1, anon_sym_LPAREN, ACTIONS(4627), 1, anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, ACTIONS(4635), 1, anon_sym_QMARK, ACTIONS(4637), 1, anon_sym_BANG, - ACTIONS(4645), 1, - anon_sym_AMP_AMP, - ACTIONS(4647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4649), 1, - anon_sym_or, - ACTIONS(4651), 1, - anon_sym_is, - ACTIONS(4653), 1, - anon_sym_BANGis, - ACTIONS(4655), 1, - anon_sym_in, - ACTIONS(4657), 1, - anon_sym_BANGin, - STATE(1660), 1, - sym_line_comment, - STATE(1749), 1, + STATE(1717), 1, sym_argument_list, - STATE(1750), 1, + STATE(1718), 1, sym_or_block, - STATE(4348), 1, + STATE(4221), 1, sym_type_parameters, ACTIONS(4613), 2, anon_sym_DOT, @@ -201161,241 +195915,29 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4621), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1871), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2049] = 31, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4615), 1, - anon_sym_as, - ACTIONS(4617), 1, - anon_sym_COMMA, - ACTIONS(4619), 1, - anon_sym_LPAREN, - ACTIONS(4627), 1, - anon_sym_LBRACK, - ACTIONS(4631), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4633), 1, - anon_sym_DASH_DASH, - ACTIONS(4635), 1, - anon_sym_QMARK, - ACTIONS(4637), 1, - anon_sym_BANG, - ACTIONS(4641), 1, - anon_sym_LT_DASH, - ACTIONS(4643), 1, - anon_sym_LT_LT, - ACTIONS(4645), 1, - anon_sym_AMP_AMP, - ACTIONS(4647), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4649), 1, - anon_sym_or, - ACTIONS(4651), 1, - anon_sym_is, - ACTIONS(4653), 1, - anon_sym_BANGis, - ACTIONS(4655), 1, - anon_sym_in, - ACTIONS(4657), 1, - anon_sym_BANGin, - STATE(1661), 1, + STATE(1659), 2, sym_line_comment, - STATE(1749), 1, - sym_argument_list, - STATE(1750), 1, - sym_or_block, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4348), 1, - sym_type_parameters, - ACTIONS(4613), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4639), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1757), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4621), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4625), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1761), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2175] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - STATE(1662), 1, - sym_line_comment, - ACTIONS(2747), 58, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4623), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2248] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2473), 1, - anon_sym_LBRACK, - ACTIONS(4659), 1, - anon_sym_else, - STATE(1663), 1, - sym_line_comment, - STATE(1791), 1, - sym_else_branch, - ACTIONS(2475), 56, + ACTIONS(1849), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -201405,21 +195947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201437,73 +195969,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2325] = 28, - ACTIONS(497), 1, + [1117] = 18, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4663), 1, - anon_sym_as, - ACTIONS(4665), 1, + anon_sym_SLASH_STAR, + ACTIONS(4619), 1, anon_sym_LPAREN, - ACTIONS(4673), 1, + ACTIONS(4627), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4677), 1, - anon_sym_DASH_DASH, - ACTIONS(4679), 1, + ACTIONS(4635), 1, anon_sym_QMARK, - ACTIONS(4681), 1, + ACTIONS(4637), 1, anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_AMP_AMP, - ACTIONS(4687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4689), 1, - anon_sym_or, - ACTIONS(4691), 1, - anon_sym_is, - ACTIONS(4693), 1, - anon_sym_BANGis, - ACTIONS(4695), 1, + ACTIONS(4655), 1, anon_sym_in, - ACTIONS(4697), 1, + ACTIONS(4657), 1, anon_sym_BANGin, - STATE(1664), 1, - sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, + STATE(1717), 1, sym_argument_list, - STATE(3609), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4262), 1, + STATE(1718), 1, + sym_or_block, + STATE(4221), 1, sym_type_parameters, - ACTIONS(4661), 2, + ACTIONS(4613), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4683), 2, + ACTIONS(4639), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1713), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4667), 4, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4621), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4671), 6, + ACTIONS(4625), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4669), 8, + ACTIONS(4623), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201512,77 +196022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1719), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2444] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2661), 1, - anon_sym_LBRACK, - STATE(1665), 1, - sym_line_comment, - ACTIONS(2663), 58, + ACTIONS(1849), 29, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201596,163 +196052,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2517] = 7, - ACTIONS(497), 1, + [1218] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2479), 1, - anon_sym_LBRACK, - ACTIONS(4659), 1, - anon_sym_else, - STATE(1666), 1, - sym_line_comment, - STATE(1787), 1, - sym_else_branch, - ACTIONS(2481), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SLASH_STAR, + ACTIONS(4619), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2594] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3361), 1, + ACTIONS(4627), 1, anon_sym_LBRACK, - STATE(1667), 1, - sym_line_comment, - ACTIONS(3363), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4635), 1, anon_sym_QMARK, + ACTIONS(4637), 1, anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + STATE(1717), 1, + sym_argument_list, + STATE(1718), 1, + sym_or_block, + STATE(4221), 1, + sym_type_parameters, + ACTIONS(4613), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(4639), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2666] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2689), 1, - anon_sym_LBRACK, - ACTIONS(4699), 1, - anon_sym_DOLLARelse, - STATE(1668), 1, + STATE(1661), 2, sym_line_comment, - ACTIONS(2691), 56, + sym_block_comment, + ACTIONS(1925), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201769,9 +196103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_DASH, @@ -201782,8 +196113,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201801,20 +196130,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2740] = 5, - ACTIONS(497), 1, + [1309] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3405), 1, + anon_sym_SLASH_STAR, + ACTIONS(2667), 1, anon_sym_LBRACK, - STATE(1669), 1, + STATE(1662), 2, sym_line_comment, - ACTIONS(3407), 57, + sym_block_comment, + ACTIONS(2669), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -201851,6 +196180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -201868,18 +196199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2812] = 6, - ACTIONS(497), 1, + [1383] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2859), 1, + anon_sym_SLASH_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - ACTIONS(4701), 1, - anon_sym_DOLLARelse, - STATE(1670), 1, + ACTIONS(4659), 1, + anon_sym_else, + STATE(1776), 1, + sym_else_branch, + STATE(1663), 2, sym_line_comment, - ACTIONS(2861), 56, + sym_block_comment, + ACTIONS(2491), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201936,65 +196270,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2886] = 14, - ACTIONS(497), 1, + [1461] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4665), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, + anon_sym_SLASH_STAR, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_QMARK, - ACTIONS(4681), 1, - anon_sym_BANG, - STATE(1671), 1, + ACTIONS(4659), 1, + anon_sym_else, + STATE(1780), 1, + sym_else_branch, + STATE(1664), 2, sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, - sym_argument_list, - STATE(4262), 1, - sym_type_parameters, - ACTIONS(4661), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4683), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 39, + sym_block_comment, + ACTIONS(2481), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202012,20 +196341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2976] = 5, - ACTIONS(497), 1, + [1539] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(1672), 1, + STATE(1665), 2, sym_line_comment, - ACTIONS(2741), 57, + sym_block_comment, + ACTIONS(2703), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202062,6 +196391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202079,61 +196410,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3048] = 6, - ACTIONS(497), 1, + [1613] = 28, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_as, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(1673), 1, + ACTIONS(4675), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4677), 1, + anon_sym_DASH_DASH, + ACTIONS(4679), 1, + anon_sym_QMARK, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_AMP_AMP, + ACTIONS(4687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4689), 1, + anon_sym_or, + ACTIONS(4691), 1, + anon_sym_is, + ACTIONS(4693), 1, + anon_sym_BANGis, + ACTIONS(4695), 1, + anon_sym_in, + ACTIONS(4697), 1, + anon_sym_BANGin, + STATE(1896), 1, + sym_or_block, + STATE(1897), 1, + sym_argument_list, + STATE(3594), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4683), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1666), 2, sym_line_comment, - ACTIONS(2747), 56, + sym_block_comment, + ACTIONS(1763), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4671), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4669), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1765), 15, + anon_sym_COMMA, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202147,21 +196502,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3122] = 6, - ACTIONS(497), 1, + [1733] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_LBRACE, - STATE(1674), 1, + STATE(1667), 2, sym_line_comment, - ACTIONS(2671), 56, + sym_block_comment, + ACTIONS(2909), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202215,20 +196570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3196] = 5, - ACTIONS(497), 1, + [1806] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3401), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(1675), 1, + ACTIONS(2759), 1, + anon_sym_LBRACE, + STATE(1668), 2, sym_line_comment, - ACTIONS(3403), 57, + sym_block_comment, + ACTIONS(2703), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202282,11 +196639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3268] = 13, - ACTIONS(497), 1, + [1881] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, @@ -202295,13 +196652,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - STATE(1676), 1, - sym_line_comment, - STATE(1826), 1, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -202309,7 +196664,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1837), 47, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4669), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202317,12 +196689,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -202331,12 +196697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -202357,16 +196717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3356] = 5, - ACTIONS(497), 1, + [1974] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3393), 1, + anon_sym_SLASH_STAR, + ACTIONS(3376), 1, anon_sym_LBRACK, - STATE(1677), 1, + STATE(1670), 2, sym_line_comment, - ACTIONS(3395), 57, + sym_block_comment, + ACTIONS(3378), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202424,81 +196785,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3428] = 26, - ACTIONS(497), 1, + [2047] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4663), 1, - anon_sym_as, - ACTIONS(4665), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4677), 1, - anon_sym_DASH_DASH, - ACTIONS(4679), 1, - anon_sym_QMARK, - ACTIONS(4681), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_AMP_AMP, - ACTIONS(4687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4689), 1, - anon_sym_or, - ACTIONS(4691), 1, - anon_sym_is, - ACTIONS(4693), 1, - anon_sym_BANGis, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_BANGin, - STATE(1678), 1, + STATE(1671), 2, sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, - sym_argument_list, - STATE(4262), 1, - sym_type_parameters, - ACTIONS(4661), 2, + sym_block_comment, + ACTIONS(3342), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4683), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4667), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1871), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202512,46 +196853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3542] = 26, - ACTIONS(497), 1, + [2120] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4663), 1, - anon_sym_as, + anon_sym_SLASH_STAR, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4677), 1, - anon_sym_DASH_DASH, ACTIONS(4679), 1, anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_AMP_AMP, - ACTIONS(4687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4689), 1, - anon_sym_or, - ACTIONS(4691), 1, - anon_sym_is, - ACTIONS(4693), 1, - anon_sym_BANGis, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_BANGin, - STATE(1679), 1, - sym_line_comment, - STATE(1826), 1, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -202559,18 +196878,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4671), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, ACTIONS(4669), 8, anon_sym_STAR, anon_sym_SLASH, @@ -202580,13 +196895,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1769), 19, + ACTIONS(1881), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202600,23 +196931,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3656] = 7, - ACTIONS(497), 1, + [2213] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_LBRACK, - ACTIONS(2679), 1, - anon_sym_COLON, - ACTIONS(3135), 1, - anon_sym_LBRACE, - STATE(1680), 1, + STATE(1673), 2, sym_line_comment, - ACTIONS(2671), 55, + sym_block_comment, + ACTIONS(3430), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -202635,6 +196964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -202669,16 +196999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3732] = 5, - ACTIONS(497), 1, + [2286] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3365), 1, + anon_sym_SLASH_STAR, + ACTIONS(3424), 1, anon_sym_LBRACK, - STATE(1681), 1, + STATE(1674), 2, sym_line_comment, - ACTIONS(3367), 57, + sym_block_comment, + ACTIONS(3426), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202736,89 +197067,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3804] = 34, + [2359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, + anon_sym_LBRACK, + STATE(1675), 2, + sym_line_comment, sym_block_comment, - ACTIONS(1755), 1, + ACTIONS(3422), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(4705), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(4707), 1, - anon_sym_LBRACE, - ACTIONS(4709), 1, anon_sym_COMMA, - ACTIONS(4711), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, anon_sym_DASH_DASH, - ACTIONS(4727), 1, anon_sym_QMARK, - ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4733), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4735), 1, anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, anon_sym_or, - ACTIONS(4739), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, anon_sym_is, - ACTIONS(4743), 1, anon_sym_BANGis, - ACTIONS(4745), 1, anon_sym_in, - ACTIONS(4747), 1, anon_sym_BANGin, - STATE(1600), 1, - sym_block, - STATE(1682), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4715), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3502), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202832,11 +197135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3934] = 13, - ACTIONS(497), 1, + [2432] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, @@ -202845,13 +197148,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - STATE(1683), 1, - sym_line_comment, - STATE(1826), 1, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -202859,7 +197160,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1925), 47, + STATE(1676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202907,40 +197211,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4022] = 13, - ACTIONS(497), 1, + [2521] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, + anon_sym_LBRACK, + STATE(1677), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4665), 1, + ACTIONS(3418), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4681), 1, anon_sym_BANG, - STATE(1684), 1, - sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, - sym_argument_list, - STATE(4262), 1, - sym_type_parameters, - ACTIONS(4661), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4683), 2, anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(1889), 47, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [2594] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3332), 1, + anon_sym_LBRACK, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3334), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202954,10 +197312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -202965,6 +197328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202982,14 +197347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4110] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [2667] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1685), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1679), 2, sym_line_comment, - ACTIONS(4751), 24, + sym_block_comment, + ACTIONS(4701), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -203014,7 +197380,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4749), 34, + ACTIONS(4699), 34, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -203049,81 +197415,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARfor, anon_sym_for, anon_sym_asm, - [4182] = 26, - ACTIONS(497), 1, + [2740] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4663), 1, - anon_sym_as, - ACTIONS(4665), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, + anon_sym_SLASH_STAR, + ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4677), 1, - anon_sym_DASH_DASH, - ACTIONS(4679), 1, - anon_sym_QMARK, - ACTIONS(4681), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_AMP_AMP, - ACTIONS(4687), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4689), 1, - anon_sym_or, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_BANGin, - ACTIONS(4753), 1, - anon_sym_is, - ACTIONS(4755), 1, - anon_sym_BANGis, - STATE(1686), 1, + STATE(1680), 2, sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, - sym_argument_list, - STATE(4262), 1, - sym_type_parameters, - ACTIONS(4661), 2, + sym_block_comment, + ACTIONS(3005), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4683), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4667), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1841), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203137,60 +197483,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4296] = 5, - ACTIONS(497), 1, + [2813] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3117), 1, - anon_sym_LBRACK, - STATE(1687), 1, - sym_line_comment, - ACTIONS(3119), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1711), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(1723), 1, + anon_sym_EQ, + ACTIONS(4705), 1, anon_sym_as, + ACTIONS(4707), 1, + anon_sym_LBRACE, + ACTIONS(4709), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4711), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, anon_sym_DASH_DASH, + ACTIONS(4727), 1, anon_sym_QMARK, + ACTIONS(4729), 1, anon_sym_BANG, + ACTIONS(4731), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4733), 1, anon_sym_AMP_AMP, + ACTIONS(4735), 1, anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, anon_sym_is, + ACTIONS(4743), 1, anon_sym_BANGis, + ACTIONS(4745), 1, anon_sym_in, + ACTIONS(4747), 1, anon_sym_BANGin, + STATE(1548), 1, + sym_block, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(3381), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4719), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4715), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3502), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203204,20 +197580,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4368] = 5, - ACTIONS(497), 1, + [2944] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3129), 1, + anon_sym_SLASH_STAR, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(1688), 1, + ACTIONS(4749), 1, + anon_sym_DOLLARelse, + STATE(1682), 2, sym_line_comment, - ACTIONS(3131), 57, + sym_block_comment, + ACTIONS(2751), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203271,80 +197649,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4440] = 34, + [3019] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1755), 1, - anon_sym_SEMI, - ACTIONS(1761), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4709), 1, - anon_sym_COMMA, - ACTIONS(4711), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4673), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, + ACTIONS(4679), 1, anon_sym_QMARK, - ACTIONS(4729), 1, + ACTIONS(4681), 1, anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4745), 1, + ACTIONS(4695), 1, anon_sym_in, - ACTIONS(4747), 1, + ACTIONS(4697), 1, anon_sym_BANGin, - ACTIONS(4757), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(1896), 1, sym_or_block, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3824), 1, - sym_block, - STATE(4152), 1, + STATE(1897), 1, + sym_argument_list, + STATE(4297), 1, sym_type_parameters, - ACTIONS(4703), 2, + ACTIONS(4661), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, + ACTIONS(4683), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4719), 4, + ACTIONS(4671), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4715), 8, + ACTIONS(4669), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203353,7 +197702,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3502), 13, + ACTIONS(1849), 27, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203367,16 +197730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4570] = 5, - ACTIONS(497), 1, + [3118] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3121), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, anon_sym_LBRACK, - STATE(1690), 1, + STATE(1684), 2, sym_line_comment, - ACTIONS(3123), 57, + sym_block_comment, + ACTIONS(3214), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203434,21 +197798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4642] = 6, - ACTIONS(497), 1, + [3191] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, anon_sym_LBRACK, - STATE(1691), 1, + STATE(1685), 2, sym_line_comment, - STATE(1784), 1, - sym_type_parameters, - ACTIONS(2741), 56, + sym_block_comment, + ACTIONS(3438), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203502,16 +197866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4716] = 5, - ACTIONS(497), 1, + [3264] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3125), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, anon_sym_LBRACK, - STATE(1692), 1, + STATE(1686), 2, sym_line_comment, - ACTIONS(3127), 57, + sym_block_comment, + ACTIONS(3434), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203569,25 +197934,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4788] = 5, - ACTIONS(497), 1, + [3337] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3353), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_LBRACK, - STATE(1693), 1, + ACTIONS(4679), 1, + anon_sym_QMARK, + ACTIONS(4681), 1, + anon_sym_BANG, + STATE(1896), 1, + sym_or_block, + STATE(1897), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4683), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1687), 2, sym_line_comment, - ACTIONS(3355), 57, + sym_block_comment, + ACTIONS(1913), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -203601,15 +197982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -203617,8 +197993,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203636,56 +198010,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4860] = 5, - ACTIONS(497), 1, + [3426] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3345), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_LBRACK, - STATE(1694), 1, + ACTIONS(4679), 1, + anon_sym_QMARK, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_AMP_AMP, + ACTIONS(4695), 1, + anon_sym_in, + ACTIONS(4697), 1, + anon_sym_BANGin, + STATE(1896), 1, + sym_or_block, + STATE(1897), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4683), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1688), 2, sym_line_comment, - ACTIONS(3347), 57, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4671), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4669), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 26, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3527] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1711), 1, + anon_sym_SEMI, + ACTIONS(1723), 1, + anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4709), 1, + anon_sym_COMMA, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4733), 1, + anon_sym_AMP_AMP, + ACTIONS(4735), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4745), 1, + anon_sym_in, + ACTIONS(4747), 1, + anon_sym_BANGin, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(3381), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3720), 1, + sym_block, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4715), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3502), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3658] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + anon_sym_LBRACK, + ACTIONS(4679), 1, anon_sym_QMARK, + ACTIONS(4681), 1, anon_sym_BANG, + STATE(1896), 1, + sym_or_block, + STATE(1897), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4683), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4669), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1849), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203703,20 +198267,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4932] = 5, - ACTIONS(497), 1, + [3751] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_as, + ACTIONS(4665), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + anon_sym_LBRACK, + ACTIONS(4675), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4677), 1, + anon_sym_DASH_DASH, + ACTIONS(4679), 1, + anon_sym_QMARK, + ACTIONS(4681), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_AMP_AMP, + ACTIONS(4687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4689), 1, + anon_sym_or, + ACTIONS(4691), 1, + anon_sym_is, + ACTIONS(4693), 1, + anon_sym_BANGis, + ACTIONS(4695), 1, + anon_sym_in, + ACTIONS(4697), 1, + anon_sym_BANGin, + STATE(1896), 1, + sym_or_block, + STATE(1897), 1, + sym_argument_list, + STATE(4297), 1, + sym_type_parameters, + ACTIONS(4661), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4683), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(1691), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3257), 1, + ACTIONS(4667), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4671), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4669), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2071), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3866] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, anon_sym_LBRACK, - STATE(1695), 1, + STATE(1692), 2, sym_line_comment, - ACTIONS(3259), 57, + sym_block_comment, + ACTIONS(2971), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203770,26 +198425,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5004] = 15, - ACTIONS(497), 1, + [3941] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_as, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, anon_sym_LBRACK, + ACTIONS(4675), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4677), 1, + anon_sym_DASH_DASH, ACTIONS(4679), 1, anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - STATE(1696), 1, - sym_line_comment, - STATE(1826), 1, + ACTIONS(4685), 1, + anon_sym_AMP_AMP, + ACTIONS(4687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4689), 1, + anon_sym_or, + ACTIONS(4691), 1, + anon_sym_is, + ACTIONS(4693), 1, + anon_sym_BANGis, + ACTIONS(4695), 1, + anon_sym_in, + ACTIONS(4697), 1, + anon_sym_BANGin, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -203797,11 +198470,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(4671), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(4669), 8, anon_sym_STAR, anon_sym_SLASH, @@ -203811,25 +198494,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1899), 35, + ACTIONS(1933), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4056] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3368), 1, + anon_sym_LBRACK, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3370), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203847,20 +198582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5096] = 5, - ACTIONS(497), 1, + [4129] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3293), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(1697), 1, + ACTIONS(2875), 1, + anon_sym_COLON, + ACTIONS(3020), 1, + anon_sym_LBRACE, + STATE(1695), 2, sym_line_comment, - ACTIONS(3295), 57, + sym_block_comment, + ACTIONS(2867), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -203879,7 +198618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -203914,16 +198652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5168] = 5, - ACTIONS(497), 1, + [4206] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3273), 1, + anon_sym_SLASH_STAR, + ACTIONS(3364), 1, anon_sym_LBRACK, - STATE(1698), 1, + STATE(1696), 2, sym_line_comment, - ACTIONS(3275), 57, + sym_block_comment, + ACTIONS(3366), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203981,73 +198720,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5240] = 18, - ACTIONS(497), 1, + [4279] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4665), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, + anon_sym_SLASH_STAR, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_QMARK, - ACTIONS(4681), 1, - anon_sym_BANG, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_BANGin, - STATE(1699), 1, + ACTIONS(4753), 1, + anon_sym_DOLLARelse, + STATE(1697), 2, sym_line_comment, - STATE(1826), 1, - sym_or_block, - STATE(1909), 1, - sym_argument_list, - STATE(4262), 1, - sym_type_parameters, - ACTIONS(4661), 2, + sym_block_comment, + ACTIONS(2727), 56, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4683), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4667), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204061,16 +198789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5338] = 5, - ACTIONS(497), 1, + [4354] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3149), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, anon_sym_LBRACK, - STATE(1700), 1, + STATE(1698), 2, sym_line_comment, - ACTIONS(3151), 57, + sym_block_comment, + ACTIONS(3190), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204128,11 +198857,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5410] = 15, - ACTIONS(497), 1, + [4427] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, @@ -204141,13 +198870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - STATE(1701), 1, - sym_line_comment, - STATE(1826), 1, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -204155,11 +198882,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4667), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, + STATE(1699), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4669), 8, anon_sym_STAR, anon_sym_SLASH, @@ -204169,7 +198894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 35, + ACTIONS(1849), 39, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204177,6 +198902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -204185,6 +198913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -204205,16 +198934,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5502] = 5, - ACTIONS(497), 1, + [4518] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3317), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_LBRACK, - STATE(1702), 1, + STATE(1700), 2, sym_line_comment, - ACTIONS(3319), 57, + sym_block_comment, + ACTIONS(3350), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204272,11 +199002,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5574] = 19, - ACTIONS(497), 1, + [4591] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3172), 1, + anon_sym_LBRACK, + STATE(1701), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3174), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4664] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, @@ -204285,19 +199083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_AMP_AMP, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_BANGin, - STATE(1703), 1, - sym_line_comment, - STATE(1826), 1, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -204305,41 +199095,113 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4667), 4, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1925), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4671), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4669), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4753] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, + anon_sym_LBRACK, + STATE(1774), 1, + sym_type_parameters, + STATE(1703), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2695), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204353,16 +199215,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5674] = 5, - ACTIONS(497), 1, + [4828] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3237), 1, + anon_sym_SLASH_STAR, + ACTIONS(3140), 1, anon_sym_LBRACK, - STATE(1704), 1, + STATE(1704), 2, sym_line_comment, - ACTIONS(3239), 57, + sym_block_comment, + ACTIONS(3142), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204420,18 +199283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5746] = 6, - ACTIONS(497), 1, + [4901] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(3135), 1, + ACTIONS(3020), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(1705), 2, sym_line_comment, - ACTIONS(2671), 56, + sym_block_comment, + ACTIONS(2867), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204488,26 +199352,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5820] = 15, - ACTIONS(497), 1, + [4976] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_as, ACTIONS(4665), 1, anon_sym_LPAREN, ACTIONS(4673), 1, anon_sym_LBRACK, + ACTIONS(4675), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4677), 1, + anon_sym_DASH_DASH, ACTIONS(4679), 1, anon_sym_QMARK, ACTIONS(4681), 1, anon_sym_BANG, - STATE(1706), 1, - sym_line_comment, - STATE(1826), 1, + ACTIONS(4685), 1, + anon_sym_AMP_AMP, + ACTIONS(4687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4689), 1, + anon_sym_or, + ACTIONS(4695), 1, + anon_sym_in, + ACTIONS(4697), 1, + anon_sym_BANGin, + ACTIONS(4755), 1, + anon_sym_is, + ACTIONS(4757), 1, + anon_sym_BANGis, + STATE(1896), 1, sym_or_block, - STATE(1909), 1, + STATE(1897), 1, sym_argument_list, - STATE(4262), 1, + STATE(4297), 1, sym_type_parameters, ACTIONS(4661), 2, anon_sym_DOT, @@ -204515,11 +199397,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4683), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(1706), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4667), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, + ACTIONS(4671), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(4669), 8, anon_sym_STAR, anon_sym_SLASH, @@ -204529,29 +199421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 35, + ACTIONS(2055), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204565,20 +199441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5912] = 5, - ACTIONS(497), 1, + [5091] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3269), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(1707), 1, + ACTIONS(3020), 1, + anon_sym_LBRACE, + STATE(1707), 2, sym_line_comment, - ACTIONS(3271), 57, + sym_block_comment, + ACTIONS(2867), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204632,16 +199510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5984] = 5, - ACTIONS(497), 1, + [5166] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3265), 1, + anon_sym_SLASH_STAR, + ACTIONS(3356), 1, anon_sym_LBRACK, - STATE(1708), 1, + STATE(1708), 2, sym_line_comment, - ACTIONS(3267), 57, + sym_block_comment, + ACTIONS(3358), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204699,16 +199578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6056] = 5, - ACTIONS(497), 1, + [5239] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3305), 1, + anon_sym_SLASH_STAR, + ACTIONS(3352), 1, anon_sym_LBRACK, - STATE(1709), 1, + STATE(1709), 2, sym_line_comment, - ACTIONS(3307), 57, + sym_block_comment, + ACTIONS(3354), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204766,21 +199646,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6128] = 6, - ACTIONS(497), 1, + [5312] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(3053), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, anon_sym_LBRACK, - STATE(1710), 1, + STATE(1710), 2, sym_line_comment, - ACTIONS(3055), 56, + sym_block_comment, + ACTIONS(2695), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -204834,16 +199714,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6202] = 5, - ACTIONS(497), 1, + [5385] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3197), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, anon_sym_LBRACK, - STATE(1711), 1, + STATE(1711), 2, sym_line_comment, - ACTIONS(3199), 56, + sym_block_comment, + ACTIONS(3310), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204900,16 +199781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6273] = 5, - ACTIONS(497), 1, + [5457] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3017), 1, + anon_sym_SLASH_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, - STATE(1712), 1, + STATE(1712), 2, sym_line_comment, - ACTIONS(3019), 56, + sym_block_comment, + ACTIONS(2867), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204966,16 +199848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6344] = 5, - ACTIONS(497), 1, + [5529] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(1713), 1, + STATE(1713), 2, sym_line_comment, - ACTIONS(2747), 56, + sym_block_comment, + ACTIONS(3013), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204997,6 +199880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -205004,6 +199888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -205013,8 +199898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205032,21 +199915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6415] = 6, - ACTIONS(497), 1, + [5601] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3429), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, anon_sym_LBRACK, - ACTIONS(3437), 1, - anon_sym_DOT, - STATE(1714), 1, + STATE(1714), 2, sym_line_comment, - ACTIONS(3431), 55, + sym_block_comment, + ACTIONS(3442), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205099,16 +199982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6488] = 5, - ACTIONS(497), 1, + [5673] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2661), 1, + anon_sym_SLASH_STAR, + ACTIONS(3400), 1, anon_sym_LBRACK, - STATE(1715), 1, + STATE(1715), 2, sym_line_comment, - ACTIONS(2663), 56, + sym_block_comment, + ACTIONS(3402), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205130,6 +200014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -205137,6 +200022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -205146,8 +200032,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205165,16 +200049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6559] = 5, - ACTIONS(497), 1, + [5745] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3301), 1, + anon_sym_SLASH_STAR, + ACTIONS(3256), 1, anon_sym_LBRACK, - STATE(1716), 1, + STATE(1716), 2, sym_line_comment, - ACTIONS(3303), 56, + sym_block_comment, + ACTIONS(3258), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205231,20 +200116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6630] = 7, - ACTIONS(497), 1, + [5817] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2479), 1, + anon_sym_SLASH_STAR, + ACTIONS(3252), 1, anon_sym_LBRACK, - ACTIONS(4759), 1, - anon_sym_else, - STATE(1717), 1, + STATE(1717), 2, sym_line_comment, - STATE(1890), 1, - sym_else_branch, - ACTIONS(2481), 54, + sym_block_comment, + ACTIONS(3254), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205266,6 +200148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -205273,6 +200156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -205299,16 +200183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6705] = 5, - ACTIONS(497), 1, + [5889] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3389), 1, + anon_sym_SLASH_STAR, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(1718), 1, + STATE(1718), 2, sym_line_comment, - ACTIONS(3391), 56, + sym_block_comment, + ACTIONS(3250), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205365,16 +200250,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6776] = 5, - ACTIONS(497), 1, + [5961] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3440), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, anon_sym_LBRACK, - STATE(1719), 1, + STATE(1719), 2, sym_line_comment, - ACTIONS(3442), 56, + sym_block_comment, + ACTIONS(3162), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205431,16 +200317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6847] = 5, - ACTIONS(497), 1, + [6033] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3385), 1, + anon_sym_SLASH_STAR, + ACTIONS(3156), 1, anon_sym_LBRACK, - STATE(1720), 1, + STATE(1720), 2, sym_line_comment, - ACTIONS(3387), 56, + sym_block_comment, + ACTIONS(3158), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205497,16 +200384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6918] = 5, - ACTIONS(497), 1, + [6105] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3381), 1, + anon_sym_SLASH_STAR, + ACTIONS(3148), 1, anon_sym_LBRACK, - STATE(1721), 1, + STATE(1721), 2, sym_line_comment, - ACTIONS(3383), 56, + sym_block_comment, + ACTIONS(3150), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205563,20 +200451,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6989] = 5, - ACTIONS(497), 1, + [6177] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3377), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(1722), 1, + ACTIONS(3015), 1, + anon_sym_DOT, + STATE(1722), 2, sym_line_comment, - ACTIONS(3379), 56, + sym_block_comment, + ACTIONS(3013), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205629,16 +200519,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7060] = 5, - ACTIONS(497), 1, + [6251] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3153), 1, + anon_sym_SLASH_STAR, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1723), 2, sym_line_comment, - ACTIONS(3155), 56, + sym_block_comment, + ACTIONS(3146), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205695,24 +200586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7131] = 6, - ACTIONS(497), 1, + [6323] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(2921), 1, anon_sym_LBRACK, - STATE(1724), 1, + STATE(1724), 2, sym_line_comment, - ACTIONS(2747), 4, + sym_block_comment, + ACTIONS(2923), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2869), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -205762,16 +200653,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7204] = 5, - ACTIONS(497), 1, + [6395] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3373), 1, + anon_sym_SLASH_STAR, + ACTIONS(3360), 1, anon_sym_LBRACK, - STATE(1725), 1, + STATE(1725), 2, sym_line_comment, - ACTIONS(3375), 56, + sym_block_comment, + ACTIONS(3362), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205828,16 +200720,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7275] = 5, - ACTIONS(497), 1, + [6467] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3369), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, anon_sym_LBRACK, - STATE(1726), 1, + STATE(1726), 2, sym_line_comment, - ACTIONS(3371), 56, + sym_block_comment, + ACTIONS(3262), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205894,16 +200787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7346] = 5, - ACTIONS(497), 1, + [6539] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3321), 1, + anon_sym_SLASH_STAR, + ACTIONS(3408), 1, anon_sym_LBRACK, - STATE(1727), 1, + STATE(1727), 2, sym_line_comment, - ACTIONS(3323), 56, + sym_block_comment, + ACTIONS(3410), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205960,16 +200854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7417] = 5, - ACTIONS(497), 1, + [6611] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3043), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(1728), 1, + STATE(1728), 2, sym_line_comment, - ACTIONS(3045), 56, + sym_block_comment, + ACTIONS(3270), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206026,16 +200921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7488] = 5, - ACTIONS(497), 1, + [6683] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3337), 1, + anon_sym_SLASH_STAR, + ACTIONS(3392), 1, anon_sym_LBRACK, - STATE(1729), 1, + STATE(1729), 2, sym_line_comment, - ACTIONS(3339), 56, + sym_block_comment, + ACTIONS(3394), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206092,16 +200988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7559] = 5, - ACTIONS(497), 1, + [6755] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3039), 1, + anon_sym_SLASH_STAR, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(1730), 1, + STATE(1730), 2, sym_line_comment, - ACTIONS(3041), 56, + sym_block_comment, + ACTIONS(3234), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206158,16 +201055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7630] = 5, - ACTIONS(497), 1, + [6827] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3325), 1, + anon_sym_SLASH_STAR, + ACTIONS(3296), 1, anon_sym_LBRACK, - STATE(1731), 1, + STATE(1731), 2, sym_line_comment, - ACTIONS(3327), 56, + sym_block_comment, + ACTIONS(3298), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206224,16 +201122,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7701] = 5, - ACTIONS(497), 1, + [6899] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3329), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(1732), 1, + STATE(1732), 2, sym_line_comment, - ACTIONS(3331), 56, + sym_block_comment, + ACTIONS(3222), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206290,16 +201189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7772] = 5, - ACTIONS(497), 1, + [6971] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2963), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, anon_sym_LBRACK, - STATE(1733), 1, + STATE(1733), 2, sym_line_comment, - ACTIONS(2965), 56, + sym_block_comment, + ACTIONS(3210), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206356,16 +201256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7843] = 5, - ACTIONS(497), 1, + [7043] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3281), 1, + anon_sym_SLASH_STAR, + ACTIONS(3152), 1, anon_sym_LBRACK, - STATE(1734), 1, + STATE(1734), 2, sym_line_comment, - ACTIONS(3283), 56, + sym_block_comment, + ACTIONS(3154), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206422,83 +201323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7914] = 6, - ACTIONS(497), 1, + [7115] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, anon_sym_LBRACK, - STATE(1735), 1, + STATE(1735), 2, sym_line_comment, - ACTIONS(3183), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2976), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [7987] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(2881), 1, - anon_sym_LBRACK, - STATE(1736), 1, - sym_line_comment, - ACTIONS(2883), 56, + ACTIONS(3120), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206555,83 +201390,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8058] = 6, - ACTIONS(497), 1, + [7187] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, + anon_sym_SLASH_STAR, + ACTIONS(3184), 1, anon_sym_LBRACK, - STATE(1737), 1, + STATE(1736), 2, sym_line_comment, - ACTIONS(3167), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2970), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [8131] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3429), 1, - anon_sym_LBRACK, - STATE(1738), 1, - sym_line_comment, - ACTIONS(3431), 56, + ACTIONS(3186), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206688,16 +201457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8202] = 5, - ACTIONS(497), 1, + [7259] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3277), 1, + anon_sym_SLASH_STAR, + ACTIONS(2903), 1, anon_sym_LBRACK, - STATE(1739), 1, + STATE(1737), 2, sym_line_comment, - ACTIONS(3279), 56, + sym_block_comment, + ACTIONS(2905), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206754,16 +201524,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8273] = 5, - ACTIONS(497), 1, + [7331] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2885), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, anon_sym_LBRACK, - STATE(1740), 1, + STATE(1738), 2, sym_line_comment, - ACTIONS(2887), 56, + sym_block_comment, + ACTIONS(3314), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206820,16 +201591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8344] = 5, - ACTIONS(497), 1, + [7403] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2889), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - STATE(1741), 1, + ACTIONS(4759), 1, + anon_sym_BANG, + STATE(1739), 2, sym_line_comment, - ACTIONS(2891), 56, + sym_block_comment, + ACTIONS(2975), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206855,7 +201629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -206886,26 +201659,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8415] = 6, - ACTIONS(497), 1, + [7477] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3328), 1, anon_sym_LBRACK, - STATE(1742), 1, + STATE(1740), 2, sym_line_comment, - ACTIONS(3183), 6, + sym_block_comment, + ACTIONS(3330), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2976), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -206920,6 +201691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -206927,6 +201699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -206953,16 +201726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8488] = 5, - ACTIONS(497), 1, + [7549] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2893), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, anon_sym_LBRACK, - STATE(1743), 1, + STATE(1741), 2, sym_line_comment, - ACTIONS(2895), 56, + sym_block_comment, + ACTIONS(3322), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207019,16 +201793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8559] = 5, - ACTIONS(497), 1, + [7621] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3297), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(1744), 1, + STATE(1742), 2, sym_line_comment, - ACTIONS(3299), 56, + sym_block_comment, + ACTIONS(3020), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207085,16 +201860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8630] = 5, - ACTIONS(497), 1, + [7693] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3185), 1, + anon_sym_SLASH_STAR, + ACTIONS(3022), 1, anon_sym_LBRACK, - STATE(1745), 1, + STATE(1743), 2, sym_line_comment, - ACTIONS(3187), 56, + sym_block_comment, + ACTIONS(3024), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207151,16 +201927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8701] = 5, - ACTIONS(497), 1, + [7765] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2959), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, anon_sym_LBRACK, - STATE(1746), 1, + STATE(1744), 2, sym_line_comment, - ACTIONS(2961), 56, + sym_block_comment, + ACTIONS(3009), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207217,16 +201994,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8772] = 5, - ACTIONS(497), 1, + [7837] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3289), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_LBRACK, - STATE(1747), 1, + STATE(1745), 2, sym_line_comment, - ACTIONS(3291), 56, + sym_block_comment, + ACTIONS(3166), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207283,26 +202061,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8843] = 6, - ACTIONS(497), 1, + [7909] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, + anon_sym_SLASH_STAR, + ACTIONS(3264), 1, anon_sym_LBRACK, - STATE(1748), 1, + STATE(1746), 2, sym_line_comment, - ACTIONS(3167), 6, + sym_block_comment, + ACTIONS(3266), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2970), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -207317,6 +202093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -207324,6 +202101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -207350,16 +202128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8916] = 5, - ACTIONS(497), 1, + [7981] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3253), 1, + anon_sym_SLASH_STAR, + ACTIONS(3168), 1, anon_sym_LBRACK, - STATE(1749), 1, + STATE(1747), 2, sym_line_comment, - ACTIONS(3255), 56, + sym_block_comment, + ACTIONS(3170), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207416,16 +202195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8987] = 5, - ACTIONS(497), 1, + [8053] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3245), 1, + anon_sym_SLASH_STAR, + ACTIONS(3384), 1, anon_sym_LBRACK, - STATE(1750), 1, + STATE(1748), 2, sym_line_comment, - ACTIONS(3247), 56, + sym_block_comment, + ACTIONS(3386), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207482,16 +202262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9058] = 5, - ACTIONS(497), 1, + [8125] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3261), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym_LBRACK, - STATE(1751), 1, + STATE(1749), 2, sym_line_comment, - ACTIONS(3263), 56, + sym_block_comment, + ACTIONS(3390), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207548,26 +202329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9129] = 6, - ACTIONS(497), 1, + [8197] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(2941), 1, anon_sym_LBRACK, - STATE(1752), 1, + STATE(1750), 2, sym_line_comment, - ACTIONS(2747), 4, + sym_block_comment, + ACTIONS(2943), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2869), 52, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -207582,6 +202361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -207589,6 +202369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -207615,20 +202396,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9202] = 7, - ACTIONS(497), 1, + [8269] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2473), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_LBRACK, - ACTIONS(4759), 1, - anon_sym_else, - STATE(1753), 1, + STATE(1751), 2, sym_line_comment, - STATE(1833), 1, - sym_else_branch, - ACTIONS(2475), 54, + sym_block_comment, + ACTIONS(3194), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207650,6 +202428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -207657,6 +202436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -207683,16 +202463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9277] = 5, - ACTIONS(497), 1, + [8341] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3341), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1752), 2, sym_line_comment, - ACTIONS(3343), 56, + sym_block_comment, + ACTIONS(3206), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207749,16 +202530,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9348] = 5, - ACTIONS(497), 1, + [8413] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3425), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, anon_sym_LBRACK, - STATE(1755), 1, + STATE(1753), 2, sym_line_comment, - ACTIONS(3427), 56, + sym_block_comment, + ACTIONS(3306), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207815,16 +202597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9419] = 5, - ACTIONS(497), 1, + [8485] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3233), 1, + anon_sym_SLASH_STAR, + ACTIONS(2899), 1, anon_sym_LBRACK, - STATE(1756), 1, + STATE(1754), 2, sym_line_comment, - ACTIONS(3235), 56, + sym_block_comment, + ACTIONS(2901), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207881,16 +202664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9490] = 5, - ACTIONS(497), 1, + [8557] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3285), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, anon_sym_LBRACK, - STATE(1757), 1, + STATE(1755), 2, sym_line_comment, - ACTIONS(3287), 56, + sym_block_comment, + ACTIONS(2913), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207947,16 +202731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9561] = 5, - ACTIONS(497), 1, + [8629] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3005), 1, + anon_sym_SLASH_STAR, + ACTIONS(2915), 1, anon_sym_LBRACK, - STATE(1758), 1, + STATE(1756), 2, sym_line_comment, - ACTIONS(3007), 56, + sym_block_comment, + ACTIONS(2917), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208013,16 +202798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9632] = 5, - ACTIONS(497), 1, + [8701] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3349), 1, + anon_sym_SLASH_STAR, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(1759), 1, + STATE(1757), 2, sym_line_comment, - ACTIONS(3351), 56, + sym_block_comment, + ACTIONS(2927), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208079,16 +202865,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9703] = 5, - ACTIONS(497), 1, + [8773] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3249), 1, + anon_sym_SLASH_STAR, + ACTIONS(2929), 1, anon_sym_LBRACK, - STATE(1760), 1, + STATE(1758), 2, sym_line_comment, - ACTIONS(3251), 56, + sym_block_comment, + ACTIONS(2931), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208145,16 +202932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9774] = 5, - ACTIONS(497), 1, + [8845] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3397), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, anon_sym_LBRACK, - STATE(1761), 1, + STATE(1759), 2, sym_line_comment, - ACTIONS(3399), 56, + sym_block_comment, + ACTIONS(3302), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208211,16 +202999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9845] = 5, - ACTIONS(497), 1, + [8917] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3241), 1, + anon_sym_SLASH_STAR, + ACTIONS(3412), 1, anon_sym_LBRACK, - STATE(1762), 1, + STATE(1760), 2, sym_line_comment, - ACTIONS(3243), 56, + sym_block_comment, + ACTIONS(3414), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208277,16 +203066,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9916] = 5, - ACTIONS(497), 1, + [8989] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3009), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(1763), 1, + STATE(1761), 2, sym_line_comment, - ACTIONS(3011), 56, + sym_block_comment, + ACTIONS(2759), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208343,20 +203133,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9987] = 5, - ACTIONS(497), 1, + [9061] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3169), 1, + anon_sym_SLASH_STAR, + ACTIONS(2869), 1, + anon_sym_DOT, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(1764), 1, + STATE(1762), 2, sym_line_comment, - ACTIONS(3171), 56, + sym_block_comment, + ACTIONS(3020), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -208409,16 +203201,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10058] = 5, - ACTIONS(497), 1, + [9135] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, + anon_sym_LBRACK, + STATE(1763), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3013), 1, + ACTIONS(3044), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(3029), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [9209] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(1765), 1, + STATE(1764), 2, sym_line_comment, - ACTIONS(3015), 56, + sym_block_comment, + ACTIONS(2703), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208440,7 +203301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -208448,7 +203308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -208458,6 +203317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208475,16 +203336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10129] = 5, - ACTIONS(497), 1, + [9281] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3229), 1, + anon_sym_SLASH_STAR, + ACTIONS(2933), 1, anon_sym_LBRACK, - STATE(1766), 1, + STATE(1765), 2, sym_line_comment, - ACTIONS(3231), 56, + sym_block_comment, + ACTIONS(2935), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208541,16 +203403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10200] = 5, - ACTIONS(497), 1, + [9353] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - STATE(1767), 1, + ACTIONS(4761), 1, + anon_sym_else, + STATE(1856), 1, + sym_else_branch, + STATE(1766), 2, sym_line_comment, - ACTIONS(2869), 56, + sym_block_comment, + ACTIONS(2491), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208572,7 +203439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -208580,7 +203446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -208607,21 +203472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10271] = 6, - ACTIONS(497), 1, + [9429] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2673), 1, - anon_sym_DOT, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3404), 1, anon_sym_LBRACK, - STATE(1768), 1, + STATE(1767), 2, sym_line_comment, - ACTIONS(3135), 55, + sym_block_comment, + ACTIONS(3406), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -208674,16 +203539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10344] = 5, - ACTIONS(497), 1, + [9501] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3357), 1, + anon_sym_SLASH_STAR, + ACTIONS(2667), 1, anon_sym_LBRACK, - STATE(1769), 1, + STATE(1768), 2, sym_line_comment, - ACTIONS(3359), 56, + sym_block_comment, + ACTIONS(2669), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208705,7 +203571,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -208713,7 +203578,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -208723,6 +203587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -208740,16 +203606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10415] = 5, - ACTIONS(497), 1, + [9573] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3409), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, anon_sym_LBRACK, - STATE(1770), 1, + STATE(1769), 2, sym_line_comment, - ACTIONS(3411), 56, + sym_block_comment, + ACTIONS(3218), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208806,16 +203673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10486] = 5, - ACTIONS(497), 1, + [9645] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3217), 1, + anon_sym_SLASH_STAR, + ACTIONS(3292), 1, anon_sym_LBRACK, - STATE(1771), 1, + STATE(1770), 2, sym_line_comment, - ACTIONS(3219), 56, + sym_block_comment, + ACTIONS(3294), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208872,16 +203740,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10557] = 5, - ACTIONS(497), 1, + [9717] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3333), 1, + anon_sym_SLASH_STAR, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1772), 1, + STATE(1771), 2, sym_line_comment, - ACTIONS(3335), 56, + sym_block_comment, + ACTIONS(3326), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208938,16 +203807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10628] = 5, - ACTIONS(497), 1, + [9789] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2669), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 1, anon_sym_LBRACK, - STATE(1773), 1, + STATE(1772), 2, sym_line_comment, - ACTIONS(2671), 56, + sym_block_comment, + ACTIONS(3246), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209004,16 +203874,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10699] = 5, - ACTIONS(497), 1, + [9861] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3049), 1, + anon_sym_SLASH_STAR, + ACTIONS(2479), 1, anon_sym_LBRACK, - STATE(1774), 1, + ACTIONS(4761), 1, + anon_sym_else, + STATE(1855), 1, + sym_else_branch, + STATE(1773), 2, sym_line_comment, - ACTIONS(3051), 56, + sym_block_comment, + ACTIONS(2481), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209035,7 +203910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -209043,7 +203917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -209070,16 +203943,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10770] = 5, - ACTIONS(497), 1, + [9937] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3213), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, anon_sym_LBRACK, - STATE(1775), 1, + STATE(1774), 2, sym_line_comment, - ACTIONS(3215), 56, + sym_block_comment, + ACTIONS(3338), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209136,16 +204010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10841] = 5, - ACTIONS(497), 1, + [10009] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3157), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_LBRACK, - STATE(1776), 1, + STATE(1775), 2, sym_line_comment, - ACTIONS(3159), 56, + sym_block_comment, + ACTIONS(3398), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209202,16 +204077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10912] = 5, - ACTIONS(497), 1, + [10081] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3309), 1, + anon_sym_SLASH_STAR, + ACTIONS(3176), 1, anon_sym_LBRACK, - STATE(1777), 1, + STATE(1776), 2, sym_line_comment, - ACTIONS(3311), 56, + sym_block_comment, + ACTIONS(3178), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209268,23 +204144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10983] = 5, - ACTIONS(497), 1, + [10153] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3161), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(1778), 1, + STATE(1777), 2, sym_line_comment, - ACTIONS(3163), 56, + sym_block_comment, + ACTIONS(2703), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2759), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -209334,16 +204212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11054] = 5, - ACTIONS(497), 1, + [10227] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3413), 1, + anon_sym_SLASH_STAR, + ACTIONS(3240), 1, anon_sym_LBRACK, - STATE(1779), 1, + STATE(1778), 2, sym_line_comment, - ACTIONS(3415), 56, + sym_block_comment, + ACTIONS(3242), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209400,16 +204279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11125] = 5, - ACTIONS(497), 1, + [10299] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3173), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_LBRACK, - STATE(1780), 1, + STATE(1779), 2, sym_line_comment, - ACTIONS(3175), 56, + sym_block_comment, + ACTIONS(3346), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209466,16 +204346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11196] = 5, - ACTIONS(497), 1, + [10371] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3193), 1, + anon_sym_SLASH_STAR, + ACTIONS(3180), 1, anon_sym_LBRACK, - STATE(1781), 1, + STATE(1780), 2, sym_line_comment, - ACTIONS(3195), 56, + sym_block_comment, + ACTIONS(3182), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209532,23 +204413,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11267] = 5, - ACTIONS(497), 1, + [10443] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3433), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - STATE(1782), 1, + STATE(1781), 2, sym_line_comment, - ACTIONS(3435), 56, + sym_block_comment, + ACTIONS(3116), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3035), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -209563,7 +204448,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -209571,7 +204455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -209598,23 +204481,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11338] = 5, - ACTIONS(497), 1, + [10517] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3177), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, anon_sym_LBRACK, - STATE(1783), 1, + STATE(1782), 2, sym_line_comment, - ACTIONS(3179), 56, + sym_block_comment, + ACTIONS(3044), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3029), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -209629,7 +204516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -209637,7 +204523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -209664,16 +204549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11409] = 5, - ACTIONS(497), 1, + [10591] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3075), 1, + anon_sym_SLASH_STAR, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1784), 1, + STATE(1783), 2, sym_line_comment, - ACTIONS(3077), 56, + sym_block_comment, + ACTIONS(3040), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209730,23 +204616,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11480] = 5, - ACTIONS(497), 1, + [10663] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(1785), 1, + STATE(1784), 2, sym_line_comment, - ACTIONS(3227), 56, + sym_block_comment, + ACTIONS(2703), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2759), 52, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -209761,7 +204651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -209769,7 +204658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, @@ -209796,16 +204684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11551] = 5, - ACTIONS(497), 1, + [10737] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3221), 1, + anon_sym_SLASH_STAR, + ACTIONS(3236), 1, anon_sym_LBRACK, - STATE(1786), 1, + STATE(1785), 2, sym_line_comment, - ACTIONS(3223), 56, + sym_block_comment, + ACTIONS(3238), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209862,16 +204751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11622] = 5, - ACTIONS(497), 1, + [10809] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3201), 1, + anon_sym_SLASH_STAR, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(1787), 1, + STATE(1786), 2, sym_line_comment, - ACTIONS(3203), 56, + sym_block_comment, + ACTIONS(3318), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209928,16 +204818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11693] = 5, - ACTIONS(497), 1, + [10881] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3421), 1, + anon_sym_SLASH_STAR, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(1788), 1, + STATE(1787), 2, sym_line_comment, - ACTIONS(3423), 56, + sym_block_comment, + ACTIONS(2981), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209994,16 +204885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11764] = 5, - ACTIONS(497), 1, + [10953] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3137), 1, + anon_sym_SLASH_STAR, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(1789), 1, + STATE(1788), 2, sym_line_comment, - ACTIONS(3139), 56, + sym_block_comment, + ACTIONS(2985), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210060,16 +204952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11835] = 5, - ACTIONS(497), 1, + [11025] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3380), 1, anon_sym_LBRACK, - STATE(1790), 1, + STATE(1789), 2, sym_line_comment, - ACTIONS(3135), 56, + sym_block_comment, + ACTIONS(3382), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210126,16 +205019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11906] = 5, - ACTIONS(497), 1, + [11097] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3205), 1, + anon_sym_SLASH_STAR, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(1791), 1, + STATE(1790), 2, sym_line_comment, - ACTIONS(3207), 56, + sym_block_comment, + ACTIONS(2989), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210192,18 +205086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11977] = 6, - ACTIONS(497), 1, + [11169] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3079), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, anon_sym_LBRACK, - ACTIONS(4761), 1, - anon_sym_BANG, - STATE(1792), 1, + STATE(1791), 2, sym_line_comment, - ACTIONS(3081), 55, + sym_block_comment, + ACTIONS(3230), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210229,6 +205122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -210259,16 +205153,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12050] = 5, - ACTIONS(497), 1, + [11241] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3417), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, anon_sym_LBRACK, - STATE(1793), 1, + STATE(1792), 2, sym_line_comment, - ACTIONS(3419), 56, + sym_block_comment, + ACTIONS(3226), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210325,16 +205220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12121] = 5, - ACTIONS(497), 1, + [11313] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3209), 1, + anon_sym_SLASH_STAR, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(1794), 1, + STATE(1793), 2, sym_line_comment, - ACTIONS(3211), 56, + sym_block_comment, + ACTIONS(2993), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210391,27 +205287,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12192] = 6, - ACTIONS(497), 1, + [11385] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2859), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(4763), 1, - anon_sym_DOLLARelse, - STATE(1795), 1, + STATE(1794), 2, sym_line_comment, - ACTIONS(2861), 54, + sym_block_comment, + ACTIONS(3116), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(3035), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -210444,64 +205355,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12264] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [11459] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1796), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 15, + STATE(1795), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, + ACTIONS(1847), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210532,70 +205433,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12354] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [11554] = 21, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(4767), 1, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, - anon_sym_POUND_LBRACK, + anon_sym_LBRACK2, ACTIONS(4779), 1, - anon_sym_as, - ACTIONS(4789), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4791), 1, - anon_sym_DASH_DASH, - ACTIONS(4793), 1, - anon_sym_AMP_AMP, - ACTIONS(4795), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4797), 1, - anon_sym_or, - ACTIONS(4799), 1, - anon_sym_is, - ACTIONS(4801), 1, - anon_sym_BANGis, - ACTIONS(4803), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4785), 1, anon_sym_in, - ACTIONS(4805), 1, + ACTIONS(4787), 1, anon_sym_BANGin, - STATE(1797), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4785), 2, + ACTIONS(4781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 4, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4787), 4, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4783), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210604,11 +205490,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1869), 16, + ACTIONS(1847), 24, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210621,35 +205515,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12472] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [11657] = 15, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1798), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1837), 15, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210665,7 +205560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1835), 30, + ACTIONS(1847), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210696,43 +205591,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12562] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [11748] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4711), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, anon_sym_QMARK, - ACTIONS(4773), 1, + ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(4775), 1, + ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4777), 1, + ACTIONS(4733), 1, + anon_sym_AMP_AMP, + ACTIONS(4735), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1799), 1, - sym_line_comment, - STATE(2106), 1, - sym_argument_list, - STATE(2107), 1, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4745), 1, + anon_sym_in, + ACTIONS(4747), 1, + anon_sym_BANGin, + STATE(2000), 1, sym_or_block, - STATE(4341), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 7, - anon_sym_EQ, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, - ACTIONS(4783), 8, + ACTIONS(4719), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210741,25 +205664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, - anon_sym_as, + ACTIONS(2069), 16, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210772,14 +205680,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12654] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [11867] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1711), 1, - anon_sym_LBRACE, - ACTIONS(1719), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1933), 1, anon_sym_EQ, ACTIONS(4705), 1, anon_sym_as, @@ -210813,15 +205720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(4747), 1, anon_sym_BANGin, - STATE(1800), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4031), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, @@ -210829,6 +205732,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4717), 2, anon_sym_LT, anon_sym_GT, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -210848,74 +205754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3544), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12776] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2689), 1, - anon_sym_LBRACK, - ACTIONS(4807), 1, - anon_sym_DOLLARelse, - STATE(1801), 1, - sym_line_comment, - ACTIONS(2691), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, + ACTIONS(1931), 16, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -210929,44 +205771,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12848] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [11986] = 16, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1802), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 3, + STATE(1800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4781), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4783), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -210975,7 +205817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, + ACTIONS(1847), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211006,66 +205848,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [12942] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12079] = 15, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, - anon_sym_EQ, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - ACTIONS(4803), 1, - anon_sym_in, - ACTIONS(4805), 1, - anon_sym_BANGin, - STATE(1803), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4781), 4, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1913), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4787), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4783), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 24, + ACTIONS(1911), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -211075,6 +205910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211087,76 +205924,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13044] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12170] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1755), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2071), 1, anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, + ACTIONS(4773), 1, anon_sym_QMARK, - ACTIONS(4729), 1, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(4731), 1, + ACTIONS(4777), 1, anon_sym_LBRACK2, - ACTIONS(4733), 1, + ACTIONS(4779), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4785), 1, + anon_sym_in, + ACTIONS(4787), 1, + anon_sym_BANGin, + ACTIONS(4789), 1, + anon_sym_as, + ACTIONS(4791), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4793), 1, + anon_sym_DASH_DASH, + ACTIONS(4795), 1, anon_sym_AMP_AMP, - ACTIONS(4735), 1, + ACTIONS(4797), 1, anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, + ACTIONS(4799), 1, anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, + ACTIONS(4801), 1, anon_sym_is, - ACTIONS(4743), 1, + ACTIONS(4803), 1, anon_sym_BANGis, - ACTIONS(4745), 1, - anon_sym_in, - ACTIONS(4747), 1, - anon_sym_BANGin, - ACTIONS(4809), 1, - anon_sym_COMMA, - STATE(1804), 1, - sym_line_comment, - STATE(2027), 1, + STATE(2114), 1, sym_argument_list, - STATE(2038), 1, + STATE(2115), 1, sym_or_block, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4152), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4703), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4717), 2, + ACTIONS(4781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4713), 4, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4719), 4, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4715), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -211165,7 +205997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3502), 13, + ACTIONS(2069), 16, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211178,57 +206014,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13168] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12289] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1933), 1, anon_sym_EQ, - ACTIONS(4767), 1, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, + ACTIONS(4785), 1, + anon_sym_in, + ACTIONS(4787), 1, + anon_sym_BANGin, + ACTIONS(4789), 1, + anon_sym_as, + ACTIONS(4791), 1, + anon_sym_PLUS_PLUS, ACTIONS(4793), 1, + anon_sym_DASH_DASH, + ACTIONS(4795), 1, anon_sym_AMP_AMP, + ACTIONS(4797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4799), 1, + anon_sym_or, + ACTIONS(4801), 1, + anon_sym_is, ACTIONS(4803), 1, - anon_sym_in, - ACTIONS(4805), 1, - anon_sym_BANGin, - STATE(1805), 1, - sym_line_comment, - STATE(2106), 1, + anon_sym_BANGis, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4785), 2, + ACTIONS(4781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 4, + STATE(1803), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4787), 4, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4783), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -211237,18 +206087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 23, - anon_sym_as, + ACTIONS(1931), 16, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_LT_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211261,44 +206104,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13272] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12408] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, ACTIONS(4771), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4773), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(4775), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1806), 1, - sym_line_comment, - STATE(2106), 1, + STATE(2114), 1, sym_argument_list, - STATE(2107), 1, + STATE(2115), 1, sym_or_block, - STATE(4341), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1899), 3, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 4, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4783), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -211307,7 +206151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 30, + ACTIONS(1879), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211338,53 +206182,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13366] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12503] = 15, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4711), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, + ACTIONS(4727), 1, anon_sym_QMARK, - ACTIONS(4773), 1, + ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(4775), 1, + ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4777), 1, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1807), 1, - sym_line_comment, - STATE(2106), 1, - sym_argument_list, - STATE(2107), 1, + STATE(2000), 1, sym_or_block, - STATE(4341), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1807), 3, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1925), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4781), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4783), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1805), 30, + ACTIONS(1923), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211392,10 +206236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -211415,174 +206257,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13460] = 31, + anon_sym_COLON_EQ, + [12594] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1711), 1, - anon_sym_SEMI, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, - anon_sym_in, - ACTIONS(4825), 1, - anon_sym_BANGin, - STATE(1808), 1, + ACTIONS(2759), 1, + anon_sym_LBRACE, + STATE(1806), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(3920), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, + sym_block_comment, + ACTIONS(2703), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4811), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4817), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3544), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13582] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1769), 1, - anon_sym_EQ, - ACTIONS(4767), 1, - anon_sym_LPAREN, - ACTIONS(4769), 1, - anon_sym_LBRACK, - ACTIONS(4771), 1, - anon_sym_QMARK, - ACTIONS(4773), 1, - anon_sym_BANG, - ACTIONS(4775), 1, - anon_sym_LBRACK2, - ACTIONS(4777), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4779), 1, - anon_sym_as, - ACTIONS(4789), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4791), 1, - anon_sym_DASH_DASH, - ACTIONS(4793), 1, anon_sym_AMP_AMP, - ACTIONS(4795), 1, anon_sym_PIPE_PIPE, - ACTIONS(4797), 1, anon_sym_or, - ACTIONS(4799), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4801), 1, anon_sym_BANGis, - ACTIONS(4803), 1, anon_sym_in, - ACTIONS(4805), 1, anon_sym_BANGin, - STATE(1809), 1, - sym_line_comment, - STATE(2106), 1, - sym_argument_list, - STATE(2107), 1, - sym_or_block, - STATE(4341), 1, - sym_type_parameters, - ACTIONS(4765), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4785), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4781), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4787), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4783), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211595,35 +206324,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13700] = 15, + anon_sym_COLON_EQ, + [12667] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, - anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, - anon_sym_QMARK, - ACTIONS(4773), 1, - anon_sym_BANG, - ACTIONS(4775), 1, - anon_sym_LBRACK2, - ACTIONS(4777), 1, - anon_sym_POUND_LBRACK, - STATE(1810), 1, + STATE(1807), 2, sym_line_comment, - STATE(2106), 1, - sym_argument_list, - STATE(2107), 1, - sym_or_block, - STATE(4341), 1, - sym_type_parameters, - ACTIONS(4765), 2, + sym_block_comment, + ACTIONS(2971), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1925), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211633,27 +206355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1923), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -211670,18 +206391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13790] = 6, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [12740] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, + ACTIONS(3020), 1, anon_sym_LBRACE, - STATE(1811), 1, + STATE(1808), 2, sym_line_comment, - ACTIONS(2747), 54, + sym_block_comment, + ACTIONS(2867), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -211736,171 +206459,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13862] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12813] = 15, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1769), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4745), 1, - anon_sym_in, - ACTIONS(4747), 1, - anon_sym_BANGin, - STATE(1812), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4715), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1767), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13980] = 29, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1871), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, ACTIONS(4727), 1, anon_sym_QMARK, ACTIONS(4729), 1, anon_sym_BANG, ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, - anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4745), 1, - anon_sym_in, - ACTIONS(4747), 1, - anon_sym_BANGin, - STATE(1813), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1869), 16, + ACTIONS(1847), 30, anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211914,11 +206535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14098] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12904] = 15, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -211931,18 +206552,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1814), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1925), 15, + STATE(1810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1913), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211958,7 +206580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1923), 30, + ACTIONS(1911), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -211989,64 +206611,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14188] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [12995] = 31, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1761), 1, + anon_sym_LBRACE, + ACTIONS(1765), 1, + anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, ACTIONS(4727), 1, anon_sym_QMARK, ACTIONS(4729), 1, anon_sym_BANG, ACTIONS(4731), 1, anon_sym_LBRACK2, + ACTIONS(4733), 1, + anon_sym_AMP_AMP, + ACTIONS(4735), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, + anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1815), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4745), 1, + anon_sym_in, + ACTIONS(4747), 1, + anon_sym_BANGin, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(3951), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1837), 15, - anon_sym_EQ, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4719), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1835), 30, - anon_sym_SEMI, + ACTIONS(3550), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [13118] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, + anon_sym_LBRACK, + STATE(1939), 1, + sym_type_parameters, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2695), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -212064,18 +206770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14278] = 6, - ACTIONS(497), 1, + [13191] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(1816), 1, + ACTIONS(4805), 1, + anon_sym_DOLLARelse, + STATE(1813), 2, sym_line_comment, - STATE(1868), 1, - sym_type_parameters, - ACTIONS(2741), 54, + sym_block_comment, + ACTIONS(2751), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -212130,44 +206837,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14350] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13264] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4711), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(4727), 1, + ACTIONS(4773), 1, anon_sym_QMARK, - ACTIONS(4729), 1, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(4731), 1, + ACTIONS(4777), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1817), 1, - sym_line_comment, - STATE(2027), 1, + STATE(2114), 1, sym_argument_list, - STATE(2038), 1, + STATE(2115), 1, sym_or_block, - STATE(4152), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4703), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1807), 3, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1877), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4713), 4, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 8, + ACTIONS(4769), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -212176,8 +206884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1805), 30, - anon_sym_SEMI, + ACTIONS(1875), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212185,8 +206892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -212206,12 +206915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14444] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13359] = 16, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -212224,25 +206932,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1818), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1899), 3, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, ACTIONS(4715), 8, anon_sym_STAR, @@ -212253,7 +206961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 30, + ACTIONS(1847), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -212284,17 +206992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14538] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13452] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(1723), 1, anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, ACTIONS(4727), 1, anon_sym_QMARK, ACTIONS(4729), 1, @@ -212303,19 +207019,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4733), 1, anon_sym_AMP_AMP, + ACTIONS(4735), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, + anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, ACTIONS(4745), 1, anon_sym_in, ACTIONS(4747), 1, anon_sym_BANGin, - STATE(1819), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + ACTIONS(4807), 1, + anon_sym_COMMA, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(3381), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, @@ -212323,6 +207049,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4717), 2, anon_sym_LT, anon_sym_GT, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, @@ -212342,17 +207071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(3502), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -212366,54 +207085,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14642] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13577] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1761), 1, + anon_sym_SEMI, + ACTIONS(1765), 1, anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, ACTIONS(4727), 1, anon_sym_QMARK, ACTIONS(4729), 1, anon_sym_BANG, ACTIONS(4731), 1, anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4747), 1, + ACTIONS(4823), 1, anon_sym_BANGin, - STATE(1820), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(3887), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4717), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4713), 4, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4719), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4715), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -212422,18 +207162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 24, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3550), 14, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -212447,54 +207177,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14744] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13700] = 15, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4711), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(4771), 1, anon_sym_LBRACK, - ACTIONS(4727), 1, + ACTIONS(4773), 1, anon_sym_QMARK, - ACTIONS(4729), 1, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(4731), 1, + ACTIONS(4777), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - STATE(1821), 1, - sym_line_comment, - STATE(2027), 1, + STATE(2114), 1, sym_argument_list, - STATE(2038), 1, + STATE(2115), 1, sym_or_block, - STATE(4152), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(4703), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 3, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1925), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, - anon_sym_SEMI, + ACTIONS(1923), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212502,8 +207230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -212523,12 +207253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14838] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13791] = 17, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -212541,34 +207270,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1822), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 15, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, + ACTIONS(1879), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -212599,11 +207331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14928] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [13886] = 17, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -212616,24 +207348,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1823), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 7, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1877), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, anon_sym_CARET, ACTIONS(4715), 8, anon_sym_STAR, @@ -212644,7 +207378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 30, + ACTIONS(1875), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -212675,125 +207409,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15020] = 6, - ACTIONS(497), 1, + [13981] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(3053), 1, - anon_sym_LBRACK, - STATE(1824), 1, - sym_line_comment, - ACTIONS(3055), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1849), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, anon_sym_QMARK, + ACTIONS(4729), 1, anon_sym_BANG, + ACTIONS(4731), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4733), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4745), 1, anon_sym_in, + ACTIONS(4747), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15092] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_LBRACE, - STATE(1825), 1, - sym_line_comment, - ACTIONS(2671), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4715), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1847), 23, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -212807,57 +207492,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15164] = 5, - ACTIONS(497), 1, + [14086] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3245), 1, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(4765), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, anon_sym_LBRACK, - STATE(1826), 1, - sym_line_comment, - ACTIONS(3247), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4773), 1, + anon_sym_QMARK, + ACTIONS(4775), 1, + anon_sym_BANG, + ACTIONS(4777), 1, + anon_sym_LBRACK2, + ACTIONS(4779), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4785), 1, + anon_sym_in, + ACTIONS(4787), 1, + anon_sym_BANGin, + ACTIONS(4795), 1, + anon_sym_AMP_AMP, + STATE(2114), 1, + sym_argument_list, + STATE(2115), 1, + sym_or_block, + STATE(4204), 1, + sym_type_parameters, + ACTIONS(4763), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4781), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4769), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1847), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -212870,17 +207575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15233] = 5, - ACTIONS(497), 1, + [14191] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3257), 1, + anon_sym_SLASH_STAR, + ACTIONS(2725), 1, anon_sym_LBRACK, - STATE(1827), 1, + ACTIONS(4825), 1, + anon_sym_DOLLARelse, + STATE(1823), 2, sym_line_comment, - ACTIONS(3259), 54, + sym_block_comment, + ACTIONS(2727), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -212935,134 +207642,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15302] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [14264] = 21, ACTIONS(5), 1, - sym_block_comment, - STATE(1828), 1, - sym_line_comment, - ACTIONS(2663), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2661), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [15371] = 29, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1769), 1, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, ACTIONS(4727), 1, anon_sym_QMARK, ACTIONS(4729), 1, anon_sym_BANG, ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4737), 1, - anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, + ACTIONS(4745), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4747), 1, anon_sym_BANGin, - STATE(1829), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -213071,74 +207699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1767), 15, + ACTIONS(1847), 24, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15488] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3079), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_BANG, - STATE(1830), 1, - sym_line_comment, - ACTIONS(3081), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -213152,117 +207724,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15559] = 5, - ACTIONS(497), 1, + [14367] = 17, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3401), 1, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, anon_sym_LBRACK, - STATE(1831), 1, - sym_line_comment, - ACTIONS(3403), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4715), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15628] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3405), 1, - anon_sym_LBRACK, - STATE(1832), 1, - sym_line_comment, - ACTIONS(3407), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1847), 30, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -213280,16 +207802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15697] = 5, - ACTIONS(497), 1, + [14462] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3205), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_LBRACK, - STATE(1833), 1, + STATE(1826), 2, sym_line_comment, - ACTIONS(3207), 54, + sym_block_comment, + ACTIONS(3346), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213344,121 +207867,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15766] = 5, - ACTIONS(497), 1, + [14532] = 29, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - STATE(1834), 1, - sym_line_comment, - ACTIONS(3045), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(2055), 1, + anon_sym_EQ, + ACTIONS(4705), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4711), 1, anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, anon_sym_DASH_DASH, + ACTIONS(4727), 1, anon_sym_QMARK, + ACTIONS(4729), 1, anon_sym_BANG, + ACTIONS(4731), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4733), 1, anon_sym_AMP_AMP, + ACTIONS(4735), 1, anon_sym_PIPE_PIPE, + ACTIONS(4737), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4745), 1, anon_sym_in, + ACTIONS(4747), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15835] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3421), 1, - anon_sym_LBRACK, - STATE(1835), 1, - sym_line_comment, - ACTIONS(3423), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4827), 1, + anon_sym_is, + ACTIONS(4829), 1, + anon_sym_BANGis, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4717), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4715), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(2053), 15, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -213472,16 +207956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15904] = 5, - ACTIONS(497), 1, + [14650] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3417), 1, + anon_sym_SLASH_STAR, + ACTIONS(3392), 1, anon_sym_LBRACK, - STATE(1836), 1, + STATE(1828), 2, sym_line_comment, - ACTIONS(3419), 54, + sym_block_comment, + ACTIONS(3394), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213536,16 +208021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15973] = 5, - ACTIONS(497), 1, + [14720] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3325), 1, + anon_sym_SLASH_STAR, + ACTIONS(3328), 1, anon_sym_LBRACK, - STATE(1837), 1, + STATE(1829), 2, sym_line_comment, - ACTIONS(3327), 54, + sym_block_comment, + ACTIONS(3330), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213600,16 +208086,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16042] = 5, - ACTIONS(497), 1, + [14790] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(1838), 1, + STATE(1830), 2, sym_line_comment, - ACTIONS(2741), 54, + sym_block_comment, + ACTIONS(3326), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213664,82 +208151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16111] = 7, + [14860] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4829), 1, - anon_sym_else, - STATE(1839), 1, - sym_line_comment, - STATE(2091), 1, - sym_else_branch, - ACTIONS(2481), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2479), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [16184] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3039), 1, + anon_sym_SLASH_STAR, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(1840), 1, + STATE(1831), 2, sym_line_comment, - ACTIONS(3041), 54, + sym_block_comment, + ACTIONS(3318), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213794,18 +208216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16253] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [14930] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4829), 1, - anon_sym_else, - STATE(1841), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1832), 2, sym_line_comment, - STATE(2095), 1, - sym_else_branch, - ACTIONS(2475), 18, + sym_block_comment, + ACTIONS(2669), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213824,7 +208243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2473), 35, + ACTIONS(2667), 37, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213835,15 +208255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -213860,16 +208280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16326] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [15000] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3329), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, anon_sym_LBRACK, - STATE(1842), 1, + STATE(1833), 2, sym_line_comment, - ACTIONS(3331), 54, + sym_block_comment, + ACTIONS(3310), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213924,16 +208346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16395] = 5, - ACTIONS(497), 1, + [15070] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3321), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, anon_sym_LBRACK, - STATE(1843), 1, + STATE(1834), 2, sym_line_comment, - ACTIONS(3323), 54, + sym_block_comment, + ACTIONS(3306), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -213988,16 +208411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16464] = 5, - ACTIONS(497), 1, + [15140] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3393), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, anon_sym_LBRACK, - STATE(1844), 1, + STATE(1835), 2, sym_line_comment, - ACTIONS(3395), 54, + sym_block_comment, + ACTIONS(3302), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -214052,65 +208476,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16533] = 17, + [15210] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3292), 1, anon_sym_LBRACK, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - STATE(1845), 1, + STATE(1836), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, + sym_block_comment, + ACTIONS(3294), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1807), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4811), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4813), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1805), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -214128,26 +208541,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16626] = 5, - ACTIONS(497), 1, + [15280] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3177), 1, + anon_sym_SLASH_STAR, + ACTIONS(2995), 1, anon_sym_LBRACK, - STATE(1846), 1, + STATE(1837), 2, sym_line_comment, - ACTIONS(3179), 54, + sym_block_comment, + ACTIONS(2997), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -214159,6 +208575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -214179,29 +208599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16695] = 5, - ACTIONS(497), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [15350] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3313), 1, + anon_sym_SLASH_STAR, + ACTIONS(2999), 1, anon_sym_LBRACK, - STATE(1847), 1, + STATE(1838), 2, sym_line_comment, - ACTIONS(3315), 54, + sym_block_comment, + ACTIONS(3001), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -214256,11 +208671,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [16764] = 17, + [15420] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 1, + anon_sym_LBRACK, + STATE(1839), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3246), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15490] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -214273,27 +208753,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1848), 1, - sym_line_comment, - STATE(2027), 1, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, sym_argument_list, - STATE(2038), 1, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 7, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_CARET, + ACTIONS(4811), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15582] = 17, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1899), 3, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -214302,7 +208859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 29, + ACTIONS(1847), 29, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -214332,12 +208889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16857] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [15676] = 21, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, anon_sym_EQ, ACTIONS(4711), 1, anon_sym_LPAREN, @@ -214351,37 +208908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4823), 1, anon_sym_BANGin, - STATE(1849), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -214390,12 +208946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 22, + ACTIONS(1847), 23, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -214413,12 +208970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16960] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [15778] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, anon_sym_EQ, ACTIONS(4711), 1, anon_sym_LPAREN, @@ -214432,35 +208989,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4823), 1, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4823), 1, anon_sym_BANGin, - STATE(1850), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -214469,13 +209029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 23, + ACTIONS(1847), 22, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, @@ -214493,53 +209052,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17061] = 5, - ACTIONS(497), 1, + [15882] = 17, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3341), 1, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, anon_sym_LBRACK, - STATE(1851), 1, - sym_line_comment, - ACTIONS(3343), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(1844), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1877), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1875), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -214557,11 +209129,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17130] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [15976] = 17, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4711), 1, anon_sym_LPAREN, ACTIONS(4721), 1, @@ -214574,27 +209146,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - STATE(1852), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1889), 3, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -214603,7 +209176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 29, + ACTIONS(1879), 29, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -214633,64 +209206,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17223] = 16, + [16070] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3240), 1, + anon_sym_LBRACK, + STATE(1846), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4711), 1, + ACTIONS(3242), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4727), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(4739), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - STATE(1853), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16140] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3236), 1, + anon_sym_LBRACK, + STATE(1847), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, + sym_block_comment, + ACTIONS(3238), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(1889), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, - ACTIONS(4813), 8, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [16210] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4831), 1, + anon_sym_else, + STATE(1965), 1, + sym_else_branch, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2481), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 29, + ACTIONS(2479), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -214708,16 +209403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17314] = 5, - ACTIONS(497), 1, + [16284] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3365), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, anon_sym_LBRACK, - STATE(1854), 1, + STATE(1849), 2, sym_line_comment, - ACTIONS(3367), 54, + sym_block_comment, + ACTIONS(3230), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -214772,16 +209468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17383] = 5, - ACTIONS(497), 1, + [16354] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3361), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, anon_sym_LBRACK, - STATE(1855), 1, + STATE(1850), 2, sym_line_comment, - ACTIONS(3363), 54, + sym_block_comment, + ACTIONS(3226), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -214836,20 +209533,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17452] = 5, - ACTIONS(497), 1, + [16424] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2963), 1, + anon_sym_SLASH_STAR, + ACTIONS(2869), 1, + anon_sym_DOT, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(1856), 1, + STATE(1851), 2, sym_line_comment, - ACTIONS(2965), 54, + sym_block_comment, + ACTIONS(3020), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -214900,16 +209599,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17521] = 5, - ACTIONS(497), 1, + [16496] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2881), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, anon_sym_LBRACK, - STATE(1857), 1, + STATE(1852), 2, sym_line_comment, - ACTIONS(2883), 54, + sym_block_comment, + ACTIONS(3206), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -214964,16 +209664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17590] = 5, - ACTIONS(497), 1, + [16566] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2885), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_LBRACK, - STATE(1858), 1, + STATE(1853), 2, sym_line_comment, - ACTIONS(2887), 54, + sym_block_comment, + ACTIONS(3194), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215028,16 +209729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17659] = 5, - ACTIONS(497), 1, + [16636] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3353), 1, + anon_sym_SLASH_STAR, + ACTIONS(3184), 1, anon_sym_LBRACK, - STATE(1859), 1, + STATE(1854), 2, sym_line_comment, - ACTIONS(3355), 54, + sym_block_comment, + ACTIONS(3186), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215092,16 +209794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17728] = 5, - ACTIONS(497), 1, + [16706] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2889), 1, + anon_sym_SLASH_STAR, + ACTIONS(3180), 1, anon_sym_LBRACK, - STATE(1860), 1, + STATE(1855), 2, sym_line_comment, - ACTIONS(2891), 54, + sym_block_comment, + ACTIONS(3182), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215156,16 +209859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17797] = 5, - ACTIONS(497), 1, + [16776] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2893), 1, + anon_sym_SLASH_STAR, + ACTIONS(3176), 1, anon_sym_LBRACK, - STATE(1861), 1, + STATE(1856), 2, sym_line_comment, - ACTIONS(2895), 54, + sym_block_comment, + ACTIONS(3178), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215220,16 +209924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17866] = 5, - ACTIONS(497), 1, + [16846] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2959), 1, + anon_sym_SLASH_STAR, + ACTIONS(3168), 1, anon_sym_LBRACK, - STATE(1862), 1, + STATE(1857), 2, sym_line_comment, - ACTIONS(2961), 54, + sym_block_comment, + ACTIONS(3170), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215284,25 +209989,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17935] = 5, - ACTIONS(497), 1, + [16916] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3345), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - STATE(1863), 1, + STATE(1858), 2, sym_line_comment, - ACTIONS(3347), 54, + sym_block_comment, + ACTIONS(3116), 19, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + ACTIONS(3035), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215335,6 +210055,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [16988] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, + anon_sym_LBRACK, + STATE(1859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3044), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -215348,15 +210085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18004] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1864), 1, - sym_line_comment, - ACTIONS(2663), 18, - anon_sym_EQ, + ACTIONS(3029), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215365,6 +210097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -215374,27 +210112,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2661), 37, - anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [17060] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, + anon_sym_LBRACK, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3166), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -215412,81 +210186,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18073] = 29, + [17130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1841), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4745), 1, - anon_sym_in, - ACTIONS(4747), 1, - anon_sym_BANGin, - ACTIONS(4831), 1, - anon_sym_is, - ACTIONS(4833), 1, - anon_sym_BANGis, - STATE(1865), 1, + STATE(1861), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, + sym_block_comment, + ACTIONS(3162), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4715), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 15, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -215500,23 +210251,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18190] = 9, + [17200] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3156), 1, + anon_sym_LBRACK, + STATE(1862), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4835), 1, + ACTIONS(3158), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4837), 1, - anon_sym_COLON_EQ, - STATE(1866), 1, - sym_line_comment, - STATE(3989), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2671), 19, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215526,7 +210279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -215536,17 +210294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -215568,81 +210315,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18267] = 29, + anon_sym_COLON_EQ, + [17270] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1841), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3148), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, - anon_sym_in, - ACTIONS(4825), 1, - anon_sym_BANGin, - ACTIONS(4831), 1, - anon_sym_is, - ACTIONS(4833), 1, - anon_sym_BANGis, - STATE(1867), 1, + STATE(1863), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, + sym_block_comment, + ACTIONS(3150), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4811), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4817), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 15, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -215656,16 +210381,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18384] = 5, - ACTIONS(497), 1, + [17340] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3075), 1, + anon_sym_SLASH_STAR, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(1868), 1, + STATE(1864), 2, sym_line_comment, - ACTIONS(3077), 54, + sym_block_comment, + ACTIONS(3146), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215720,26 +210446,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18453] = 5, - ACTIONS(497), 1, + [17410] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3005), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, anon_sym_LBRACK, - STATE(1869), 1, + STATE(1865), 2, sym_line_comment, - ACTIONS(3007), 54, + sym_block_comment, + ACTIONS(3198), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215751,6 +210480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -215771,39 +210504,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18522] = 5, - ACTIONS(497), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [17480] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3317), 1, + anon_sym_SLASH_STAR, + ACTIONS(3200), 1, anon_sym_LBRACK, - STATE(1870), 1, + STATE(1866), 2, sym_line_comment, - ACTIONS(3319), 54, + sym_block_comment, + ACTIONS(3202), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -215815,6 +210545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -215835,29 +210569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18591] = 5, - ACTIONS(497), 1, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [17550] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3009), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, anon_sym_LBRACK, - STATE(1871), 1, + STATE(1867), 2, sym_line_comment, - ACTIONS(3011), 54, + sym_block_comment, + ACTIONS(3009), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215912,16 +210641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18660] = 5, - ACTIONS(497), 1, + [17620] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3013), 1, + anon_sym_SLASH_STAR, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(1872), 1, + STATE(1868), 2, sym_line_comment, - ACTIONS(3015), 54, + sym_block_comment, + ACTIONS(2993), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -215976,16 +210706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18729] = 5, - ACTIONS(497), 1, + [17690] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3305), 1, + anon_sym_SLASH_STAR, + ACTIONS(3408), 1, anon_sym_LBRACK, - STATE(1873), 1, + STATE(1869), 2, sym_line_comment, - ACTIONS(3307), 54, + sym_block_comment, + ACTIONS(3410), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216040,16 +210771,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18798] = 5, - ACTIONS(497), 1, + [17760] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(1870), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3293), 1, + ACTIONS(2703), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2701), 37, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(1874), 1, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [17830] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2987), 1, + anon_sym_LBRACK, + STATE(1871), 2, sym_line_comment, - ACTIONS(3295), 54, + sym_block_comment, + ACTIONS(2989), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216104,16 +210901,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18867] = 5, - ACTIONS(497), 1, + [17900] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3273), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - STATE(1875), 1, + STATE(1872), 2, sym_line_comment, - ACTIONS(3275), 54, + sym_block_comment, + ACTIONS(3035), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216168,16 +210966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18936] = 5, - ACTIONS(497), 1, + [17970] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3017), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, anon_sym_LBRACK, - STATE(1876), 1, + STATE(1873), 2, sym_line_comment, - ACTIONS(3019), 54, + sym_block_comment, + ACTIONS(3029), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216232,16 +211031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19005] = 5, - ACTIONS(497), 1, + [18040] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3049), 1, + anon_sym_SLASH_STAR, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(1877), 1, + STATE(1874), 2, sym_line_comment, - ACTIONS(3051), 54, + sym_block_comment, + ACTIONS(2985), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216296,16 +211096,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19074] = 5, - ACTIONS(497), 1, + [18110] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2979), 1, + anon_sym_LBRACK, + STATE(1875), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3269), 1, + ACTIONS(2981), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18180] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2933), 1, anon_sym_LBRACK, - STATE(1878), 1, + STATE(1876), 2, sym_line_comment, - ACTIONS(3271), 54, + sym_block_comment, + ACTIONS(2935), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216360,16 +211226,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19143] = 5, - ACTIONS(497), 1, + [18250] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2929), 1, + anon_sym_LBRACK, + STATE(1877), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3265), 1, + ACTIONS(2931), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18320] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(1879), 1, + STATE(1878), 2, sym_line_comment, - ACTIONS(3267), 54, + sym_block_comment, + ACTIONS(2927), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216424,16 +211356,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19212] = 5, - ACTIONS(497), 1, + [18390] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2915), 1, + anon_sym_LBRACK, + STATE(1879), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3229), 1, + ACTIONS(2917), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18460] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, anon_sym_LBRACK, - STATE(1880), 1, + STATE(1880), 2, sym_line_comment, - ACTIONS(3231), 54, + sym_block_comment, + ACTIONS(2913), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216488,28 +211486,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19281] = 5, - ACTIONS(497), 1, + [18530] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3145), 1, + anon_sym_SLASH_STAR, + ACTIONS(2899), 1, anon_sym_LBRACK, - STATE(1881), 1, + STATE(1881), 2, sym_line_comment, - ACTIONS(3147), 54, + sym_block_comment, + ACTIONS(2901), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216521,10 +211518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -216545,35 +211538,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [19350] = 5, - ACTIONS(497), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18600] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3141), 1, + anon_sym_SLASH_STAR, + ACTIONS(2941), 1, anon_sym_LBRACK, - STATE(1882), 1, + STATE(1882), 2, sym_line_comment, - ACTIONS(3143), 54, + sym_block_comment, + ACTIONS(2943), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216585,10 +211583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -216609,23 +211603,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [19419] = 5, - ACTIONS(497), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [18670] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3157), 1, + anon_sym_SLASH_STAR, + ACTIONS(2903), 1, anon_sym_LBRACK, - STATE(1883), 1, + STATE(1883), 2, sym_line_comment, - ACTIONS(3159), 54, + sym_block_comment, + ACTIONS(2905), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216680,16 +211681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19488] = 5, - ACTIONS(497), 1, + [18740] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3161), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - STATE(1884), 1, + ACTIONS(4833), 1, + anon_sym_BANG, + STATE(1884), 2, sym_line_comment, - ACTIONS(3163), 54, + sym_block_comment, + ACTIONS(2975), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216714,7 +211718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -216744,24 +211747,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19557] = 5, - ACTIONS(497), 1, + [18812] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3169), 1, + ACTIONS(4835), 1, + anon_sym_COMMA, + ACTIONS(4837), 1, + anon_sym_COLON_EQ, + STATE(4001), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2872), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(1885), 1, + STATE(1885), 2, sym_line_comment, - ACTIONS(3171), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym_block_comment, + ACTIONS(2867), 19, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216771,12 +211774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -216786,6 +211784,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2865), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216807,26 +211816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19626] = 6, - ACTIONS(497), 1, + [18890] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2673), 1, - anon_sym_DOT, - ACTIONS(3133), 1, - anon_sym_LBRACK, - STATE(1886), 1, + ACTIONS(4831), 1, + anon_sym_else, + STATE(1966), 1, + sym_else_branch, + STATE(1886), 2, sym_line_comment, - ACTIONS(3135), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym_block_comment, + ACTIONS(2491), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216836,12 +211838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -216851,6 +211847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2489), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -216873,16 +211883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19697] = 5, - ACTIONS(497), 1, + [18964] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3173), 1, + anon_sym_SLASH_STAR, + ACTIONS(3152), 1, anon_sym_LBRACK, - STATE(1887), 1, + STATE(1887), 2, sym_line_comment, - ACTIONS(3175), 54, + sym_block_comment, + ACTIONS(3154), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -216937,26 +211948,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19766] = 5, - ACTIONS(497), 1, + [19034] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3193), 1, + anon_sym_SLASH_STAR, + ACTIONS(3372), 1, anon_sym_LBRACK, - STATE(1888), 1, + STATE(1888), 2, sym_line_comment, - ACTIONS(3195), 54, + sym_block_comment, + ACTIONS(3374), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -216968,6 +211982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -216988,6 +212006,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [19104] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2701), 37, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -217001,16 +212078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19835] = 5, - ACTIONS(497), 1, + [19174] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3197), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, anon_sym_LBRACK, - STATE(1889), 1, + STATE(1890), 2, sym_line_comment, - ACTIONS(3199), 54, + sym_block_comment, + ACTIONS(3210), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217065,24 +212143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19904] = 5, - ACTIONS(497), 1, + [19244] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3201), 1, - anon_sym_LBRACK, - STATE(1890), 1, + ACTIONS(4839), 1, + anon_sym_else, + STATE(2020), 1, + sym_else_branch, + STATE(1891), 2, sym_line_comment, - ACTIONS(3203), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym_block_comment, + ACTIONS(2481), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217092,12 +212165,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -217107,6 +212174,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2479), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -217128,17 +212210,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19973] = 5, - ACTIONS(497), 1, + [19318] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3349), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(1891), 1, + STATE(1892), 2, sym_line_comment, - ACTIONS(3351), 54, + sym_block_comment, + ACTIONS(2759), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217193,14 +212275,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20042] = 5, + [19388] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1892), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, + anon_sym_LBRACK, + STATE(1893), 2, sym_line_comment, - ACTIONS(2747), 18, + sym_block_comment, + ACTIONS(3398), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217210,6 +212303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -217219,27 +212318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2745), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -217257,21 +212340,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20111] = 6, - ACTIONS(497), 1, + [19458] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3429), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 1, anon_sym_LBRACK, - ACTIONS(3437), 1, - anon_sym_DOT, - STATE(1893), 1, + STATE(1894), 2, sym_line_comment, - ACTIONS(3431), 53, + sym_block_comment, + ACTIONS(3222), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -217322,16 +212405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20182] = 5, - ACTIONS(497), 1, + [19528] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3213), 1, + anon_sym_SLASH_STAR, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(1894), 1, + STATE(1895), 2, sym_line_comment, - ACTIONS(3215), 54, + sym_block_comment, + ACTIONS(3234), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217386,16 +212470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20251] = 5, - ACTIONS(497), 1, + [19598] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3237), 1, + anon_sym_SLASH_STAR, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(1895), 1, + STATE(1896), 2, sym_line_comment, - ACTIONS(3239), 54, + sym_block_comment, + ACTIONS(3250), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217450,39 +212535,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20320] = 6, - ACTIONS(497), 1, + [19668] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3252), 1, anon_sym_LBRACK, - STATE(1896), 1, + STATE(1897), 2, sym_line_comment, - ACTIONS(3183), 19, + sym_block_comment, + ACTIONS(3254), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2976), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -217515,22 +212587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [20391] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, - anon_sym_LBRACK, - STATE(1897), 1, - sym_line_comment, - ACTIONS(3167), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -217544,10 +212600,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(2970), 35, + [19738] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3256), 1, + anon_sym_LBRACK, + STATE(1898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3258), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -217580,16 +212652,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [20462] = 5, - ACTIONS(497), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [19808] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, anon_sym_LBRACK, - STATE(1898), 1, + STATE(1899), 2, sym_line_comment, - ACTIONS(2869), 54, + sym_block_comment, + ACTIONS(3262), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217644,16 +212730,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20531] = 5, - ACTIONS(497), 1, + [19878] = 29, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(2055), 1, + anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4821), 1, + anon_sym_in, + ACTIONS(4823), 1, + anon_sym_BANGin, + ACTIONS(4827), 1, + anon_sym_is, + ACTIONS(4829), 1, + anon_sym_BANGis, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1900), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3209), 1, + ACTIONS(4809), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4815), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4811), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2053), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [19996] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3264), 1, anon_sym_LBRACK, - STATE(1899), 1, + STATE(1901), 2, sym_line_comment, - ACTIONS(3211), 54, + sym_block_comment, + ACTIONS(3266), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217708,16 +212884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20600] = 5, - ACTIONS(497), 1, + [20066] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3217), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(1900), 1, + STATE(1902), 2, sym_line_comment, - ACTIONS(3219), 54, + sym_block_comment, + ACTIONS(3270), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217772,16 +212949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20669] = 5, - ACTIONS(497), 1, + [20136] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3357), 1, + anon_sym_SLASH_STAR, + ACTIONS(3296), 1, anon_sym_LBRACK, - STATE(1901), 1, + STATE(1903), 2, sym_line_comment, - ACTIONS(3359), 54, + sym_block_comment, + ACTIONS(3298), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217836,16 +213014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20738] = 5, - ACTIONS(497), 1, + [20206] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3233), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, anon_sym_LBRACK, - STATE(1902), 1, + STATE(1904), 2, sym_line_comment, - ACTIONS(3235), 54, + sym_block_comment, + ACTIONS(3314), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217900,16 +213079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20807] = 5, - ACTIONS(497), 1, + [20276] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3221), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, anon_sym_LBRACK, - STATE(1903), 1, + STATE(1905), 2, sym_line_comment, - ACTIONS(3223), 54, + sym_block_comment, + ACTIONS(3322), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -217964,24 +213144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20876] = 5, - ACTIONS(497), 1, + [20346] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3225), 1, - anon_sym_LBRACK, - STATE(1904), 1, + ACTIONS(4839), 1, + anon_sym_else, + STATE(2021), 1, + sym_else_branch, + STATE(1906), 2, sym_line_comment, - ACTIONS(3227), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym_block_comment, + ACTIONS(2491), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217991,12 +213166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -218006,6 +213175,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2489), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -218027,17 +213211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20945] = 5, - ACTIONS(497), 1, + [20420] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3241), 1, + anon_sym_SLASH_STAR, + ACTIONS(3380), 1, anon_sym_LBRACK, - STATE(1905), 1, + STATE(1907), 2, sym_line_comment, - ACTIONS(3243), 54, + sym_block_comment, + ACTIONS(3382), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218092,16 +213276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21014] = 5, - ACTIONS(497), 1, + [20490] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3397), 1, + anon_sym_SLASH_STAR, + ACTIONS(3384), 1, anon_sym_LBRACK, - STATE(1906), 1, + STATE(1908), 2, sym_line_comment, - ACTIONS(3399), 54, + sym_block_comment, + ACTIONS(3386), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218156,16 +213341,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21083] = 5, - ACTIONS(497), 1, + [20560] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3249), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym_LBRACK, - STATE(1907), 1, + STATE(1909), 2, sym_line_comment, - ACTIONS(3251), 54, + sym_block_comment, + ACTIONS(3390), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218220,16 +213406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21152] = 5, - ACTIONS(497), 1, + [20630] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3261), 1, + anon_sym_SLASH_STAR, + ACTIONS(3412), 1, anon_sym_LBRACK, - STATE(1908), 1, + STATE(1910), 2, sym_line_comment, - ACTIONS(3263), 54, + sym_block_comment, + ACTIONS(3414), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218284,16 +213471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21221] = 5, - ACTIONS(497), 1, + [20700] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3253), 1, + anon_sym_SLASH_STAR, + ACTIONS(2921), 1, anon_sym_LBRACK, - STATE(1909), 1, + STATE(1911), 2, sym_line_comment, - ACTIONS(3255), 54, + sym_block_comment, + ACTIONS(2923), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218348,104 +213536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21290] = 29, + [20770] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1871), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, - anon_sym_in, - ACTIONS(4825), 1, - anon_sym_BANGin, - STATE(1910), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4811), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4813), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1869), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21407] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3289), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(1911), 1, + STATE(1912), 2, sym_line_comment, - ACTIONS(3291), 54, + sym_block_comment, + ACTIONS(3013), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218500,16 +213601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21476] = 5, - ACTIONS(497), 1, + [20840] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, anon_sym_LBRACK, - STATE(1912), 1, + STATE(1913), 2, sym_line_comment, - ACTIONS(3135), 54, + sym_block_comment, + ACTIONS(3442), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218564,24 +213666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21545] = 5, - ACTIONS(497), 1, + [20910] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3137), 1, - anon_sym_LBRACK, - STATE(1913), 1, + STATE(1914), 2, sym_line_comment, - ACTIONS(3139), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + sym_block_comment, + ACTIONS(2669), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218591,12 +213684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -218606,11 +213693,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2667), 37, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -218627,17 +213731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21614] = 5, - ACTIONS(497), 1, + [20980] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3277), 1, + anon_sym_SLASH_STAR, + ACTIONS(3400), 1, anon_sym_LBRACK, - STATE(1914), 1, + STATE(1915), 2, sym_line_comment, - ACTIONS(3279), 54, + sym_block_comment, + ACTIONS(3402), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218692,16 +213796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21683] = 5, - ACTIONS(497), 1, + [21050] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3281), 1, + anon_sym_SLASH_STAR, + ACTIONS(3360), 1, anon_sym_LBRACK, - STATE(1915), 1, + STATE(1916), 2, sym_line_comment, - ACTIONS(3283), 54, + sym_block_comment, + ACTIONS(3362), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -218756,92 +213861,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21752] = 5, - ACTIONS(497), 1, + [21120] = 29, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - STATE(1916), 1, - sym_line_comment, - ACTIONS(3109), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(4705), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4711), 1, anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4821), 1, + anon_sym_in, + ACTIONS(4823), 1, + anon_sym_BANGin, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1917), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4811), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2069), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [21238] = 29, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1933), 1, + anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4739), 1, anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, anon_sym_is, + ACTIONS(4743), 1, anon_sym_BANGis, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4821), 1, anon_sym_in, + ACTIONS(4823), 1, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [21821] = 5, - ACTIONS(497), 1, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4815), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4811), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1931), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [21356] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3085), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, anon_sym_LBRACK, - STATE(1917), 1, + STATE(1919), 2, sym_line_comment, - ACTIONS(3087), 54, + sym_block_comment, + ACTIONS(3120), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -218853,10 +214071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -218877,65 +214091,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [21890] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1918), 1, - sym_line_comment, - ACTIONS(2747), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2745), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -218948,16 +214103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [21959] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [21426] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3337), 1, + anon_sym_SLASH_STAR, + ACTIONS(3003), 1, anon_sym_LBRACK, - STATE(1919), 1, + STATE(1920), 2, sym_line_comment, - ACTIONS(3339), 54, + sym_block_comment, + ACTIONS(3005), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219012,16 +214169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22028] = 5, - ACTIONS(497), 1, + [21496] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2669), 1, + anon_sym_SLASH_STAR, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(1920), 1, + STATE(1921), 2, sym_line_comment, - ACTIONS(2671), 54, + sym_block_comment, + ACTIONS(3040), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219076,16 +214234,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22097] = 5, - ACTIONS(497), 1, + [21566] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3140), 1, anon_sym_LBRACK, - STATE(1921), 1, + STATE(1922), 2, sym_line_comment, - ACTIONS(2976), 54, + sym_block_comment, + ACTIONS(3142), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219140,16 +214299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22166] = 5, - ACTIONS(497), 1, + [21636] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, + anon_sym_SLASH_STAR, + ACTIONS(3172), 1, anon_sym_LBRACK, - STATE(1922), 1, + STATE(1923), 2, sym_line_comment, - ACTIONS(2970), 54, + sym_block_comment, + ACTIONS(3174), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219204,16 +214364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22235] = 5, - ACTIONS(497), 1, + [21706] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3413), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, anon_sym_LBRACK, - STATE(1923), 1, + STATE(1924), 2, sym_line_comment, - ACTIONS(3415), 54, + sym_block_comment, + ACTIONS(3190), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219268,16 +214429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22304] = 5, - ACTIONS(497), 1, + [21776] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3149), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, anon_sym_LBRACK, - STATE(1924), 1, + STATE(1925), 2, sym_line_comment, - ACTIONS(3151), 54, + sym_block_comment, + ACTIONS(3214), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219332,16 +214494,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22373] = 5, - ACTIONS(497), 1, + [21846] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3369), 1, + anon_sym_SLASH_STAR, + ACTIONS(3022), 1, anon_sym_LBRACK, - STATE(1925), 1, + STATE(1926), 2, sym_line_comment, - ACTIONS(3371), 54, + sym_block_comment, + ACTIONS(3024), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219396,16 +214559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22442] = 5, - ACTIONS(497), 1, + [21916] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3297), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(1926), 1, + STATE(1927), 2, sym_line_comment, - ACTIONS(3299), 54, + sym_block_comment, + ACTIONS(3020), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219460,16 +214624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22511] = 5, - ACTIONS(497), 1, + [21986] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3129), 1, + anon_sym_SLASH_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, - STATE(1927), 1, + STATE(1928), 2, sym_line_comment, - ACTIONS(3131), 54, + sym_block_comment, + ACTIONS(2867), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219524,16 +214689,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22580] = 5, - ACTIONS(497), 1, + [22056] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3125), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, anon_sym_LBRACK, - STATE(1928), 1, + STATE(1929), 2, sym_line_comment, - ACTIONS(3127), 54, + sym_block_comment, + ACTIONS(3218), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219588,16 +214754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22649] = 5, - ACTIONS(497), 1, + [22126] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3301), 1, + anon_sym_SLASH_STAR, + ACTIONS(3332), 1, anon_sym_LBRACK, - STATE(1929), 1, + STATE(1930), 2, sym_line_comment, - ACTIONS(3303), 54, + sym_block_comment, + ACTIONS(3334), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219652,16 +214819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22718] = 5, - ACTIONS(497), 1, + [22196] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3121), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, anon_sym_LBRACK, - STATE(1930), 1, + STATE(1931), 2, sym_line_comment, - ACTIONS(3123), 54, + sym_block_comment, + ACTIONS(3342), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219716,16 +214884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22787] = 5, - ACTIONS(497), 1, + [22266] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3153), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_LBRACK, - STATE(1931), 1, + STATE(1932), 2, sym_line_comment, - ACTIONS(3155), 54, + sym_block_comment, + ACTIONS(3350), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219780,16 +214949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22856] = 5, - ACTIONS(497), 1, + [22336] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3309), 1, + anon_sym_SLASH_STAR, + ACTIONS(3352), 1, anon_sym_LBRACK, - STATE(1932), 1, + STATE(1933), 2, sym_line_comment, - ACTIONS(3311), 54, + sym_block_comment, + ACTIONS(3354), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219844,16 +215014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22925] = 5, - ACTIONS(497), 1, + [22406] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3409), 1, + anon_sym_SLASH_STAR, + ACTIONS(3356), 1, anon_sym_LBRACK, - STATE(1933), 1, + STATE(1934), 2, sym_line_comment, - ACTIONS(3411), 54, + sym_block_comment, + ACTIONS(3358), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219908,16 +215079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22994] = 5, - ACTIONS(497), 1, + [22476] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3117), 1, + anon_sym_SLASH_STAR, + ACTIONS(3364), 1, anon_sym_LBRACK, - STATE(1934), 1, + STATE(1935), 2, sym_line_comment, - ACTIONS(3119), 54, + sym_block_comment, + ACTIONS(3366), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -219972,16 +215144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23063] = 5, - ACTIONS(497), 1, + [22546] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3373), 1, + anon_sym_SLASH_STAR, + ACTIONS(3368), 1, anon_sym_LBRACK, - STATE(1935), 1, + STATE(1936), 2, sym_line_comment, - ACTIONS(3375), 54, + sym_block_comment, + ACTIONS(3370), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220036,20 +215209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23132] = 5, - ACTIONS(497), 1, + [22616] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3185), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(1936), 1, + ACTIONS(3015), 1, + anon_sym_DOT, + STATE(1937), 2, sym_line_comment, - ACTIONS(3187), 54, + sym_block_comment, + ACTIONS(3013), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -220100,16 +215275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23201] = 5, - ACTIONS(497), 1, + [22688] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3377), 1, + anon_sym_SLASH_STAR, + ACTIONS(3376), 1, anon_sym_LBRACK, - STATE(1937), 1, + STATE(1938), 2, sym_line_comment, - ACTIONS(3379), 54, + sym_block_comment, + ACTIONS(3378), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220164,16 +215340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23270] = 5, - ACTIONS(497), 1, + [22758] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3381), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, anon_sym_LBRACK, - STATE(1938), 1, + STATE(1939), 2, sym_line_comment, - ACTIONS(3383), 54, + sym_block_comment, + ACTIONS(3338), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220228,16 +215405,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23339] = 5, - ACTIONS(497), 1, + [22828] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3285), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, anon_sym_LBRACK, - STATE(1939), 1, + STATE(1940), 2, sym_line_comment, - ACTIONS(3287), 54, + sym_block_comment, + ACTIONS(2909), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220292,16 +215470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23408] = 5, - ACTIONS(497), 1, + [22898] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3333), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, anon_sym_LBRACK, - STATE(1940), 1, + STATE(1941), 2, sym_line_comment, - ACTIONS(3335), 54, + sym_block_comment, + ACTIONS(3418), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220356,16 +215535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23477] = 5, - ACTIONS(497), 1, + [22968] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3425), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, anon_sym_LBRACK, - STATE(1941), 1, + STATE(1942), 2, sym_line_comment, - ACTIONS(3427), 54, + sym_block_comment, + ACTIONS(3422), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220420,16 +215600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23546] = 5, - ACTIONS(497), 1, + [23038] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3440), 1, + anon_sym_SLASH_STAR, + ACTIONS(3424), 1, anon_sym_LBRACK, - STATE(1942), 1, + STATE(1943), 2, sym_line_comment, - ACTIONS(3442), 54, + sym_block_comment, + ACTIONS(3426), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220484,82 +215665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23615] = 7, + [23108] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4839), 1, - anon_sym_else, - STATE(1943), 1, - sym_line_comment, - STATE(2158), 1, - sym_else_branch, - ACTIONS(2475), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2473), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23688] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3385), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(1944), 1, + STATE(1944), 2, sym_line_comment, - ACTIONS(3387), 54, + sym_block_comment, + ACTIONS(3430), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220614,16 +215730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23757] = 5, - ACTIONS(497), 1, + [23178] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3389), 1, + anon_sym_SLASH_STAR, + ACTIONS(3404), 1, anon_sym_LBRACK, - STATE(1945), 1, + STATE(1945), 2, sym_line_comment, - ACTIONS(3391), 54, + sym_block_comment, + ACTIONS(3406), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220678,18 +215795,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23826] = 7, + [23248] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4839), 1, - anon_sym_else, - STATE(1946), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, + anon_sym_LBRACK, + STATE(1946), 2, sym_line_comment, - STATE(2159), 1, - sym_else_branch, - ACTIONS(2481), 18, + sym_block_comment, + ACTIONS(3438), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220699,6 +215823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -220708,20 +215838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2479), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220744,16 +215860,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23899] = 5, - ACTIONS(497), 1, + [23318] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3429), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, anon_sym_LBRACK, - STATE(1947), 1, + STATE(1947), 2, sym_line_comment, - ACTIONS(3431), 54, + sym_block_comment, + ACTIONS(3434), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220808,16 +215925,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23968] = 5, - ACTIONS(497), 1, + [23388] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3433), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, anon_sym_LBRACK, - STATE(1948), 1, + STATE(1948), 2, sym_line_comment, - ACTIONS(3435), 54, + sym_block_comment, + ACTIONS(2695), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -220872,16 +215990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24037] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [23458] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4841), 1, - anon_sym_DOLLARelse, - STATE(1949), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2008), 1, + sym_type_parameters, + STATE(1949), 2, sym_line_comment, - ACTIONS(2691), 18, + sym_block_comment, + ACTIONS(2695), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220900,8 +216019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2689), 35, - anon_sym_SEMI, + ACTIONS(2693), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220912,8 +216030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220935,98 +216055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24107] = 5, - ACTIONS(497), 1, + [23529] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(1950), 1, + STATE(2082), 1, + sym_type_parameters, + STATE(1950), 2, sym_line_comment, - ACTIONS(4845), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4843), 49, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [24175] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4849), 1, - anon_sym_COMMA, - ACTIONS(4851), 1, + ACTIONS(2695), 18, anon_sym_EQ, - STATE(1951), 1, - sym_line_comment, - STATE(3380), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4847), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(3427), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -221044,19 +216084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3425), 21, + ACTIONS(2693), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221066,57 +216107,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [24251] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [23600] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4853), 1, - anon_sym_DOLLARelse, - STATE(1952), 1, - sym_line_comment, - ACTIONS(2861), 18, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1765), 1, anon_sym_EQ, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4711), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + anon_sym_LBRACK, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, + anon_sym_QMARK, + ACTIONS(4729), 1, + anon_sym_BANG, + ACTIONS(4731), 1, + anon_sym_LBRACK2, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, + anon_sym_is, + ACTIONS(4743), 1, + anon_sym_BANGis, + ACTIONS(4817), 1, + anon_sym_AMP_AMP, + ACTIONS(4819), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4821), 1, + anon_sym_in, + ACTIONS(4823), 1, + anon_sym_BANGin, + STATE(2000), 1, + sym_or_block, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, + sym_type_parameters, + ACTIONS(4703), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4815), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2859), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3550), 14, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -221130,12 +216208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24321] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [23717] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1719), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 1, anon_sym_EQ, ACTIONS(4705), 1, anon_sym_as, @@ -221157,43 +216235,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, + ACTIONS(4817), 1, anon_sym_AMP_AMP, - ACTIONS(4821), 1, + ACTIONS(4819), 1, anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4823), 1, anon_sym_BANGin, - STATE(1953), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + ACTIONS(4841), 1, + anon_sym_is, + ACTIONS(4843), 1, + anon_sym_BANGis, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -221202,7 +216281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3544), 14, + ACTIONS(2053), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -221217,12 +216296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24437] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [23834] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1841), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 1, anon_sym_EQ, ACTIONS(4705), 1, anon_sym_as, @@ -221244,43 +216323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4819), 1, + ACTIONS(4817), 1, anon_sym_AMP_AMP, - ACTIONS(4821), 1, + ACTIONS(4819), 1, anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4823), 1, anon_sym_BANGin, - ACTIONS(4855), 1, + ACTIONS(4845), 1, anon_sym_is, - ACTIONS(4857), 1, + ACTIONS(4847), 1, anon_sym_BANGis, - STATE(1954), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -221289,7 +216369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 14, + ACTIONS(2053), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -221304,14 +216384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24553] = 4, - ACTIONS(497), 1, + [23951] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(1955), 1, + anon_sym_SLASH_STAR, + STATE(1954), 2, sym_line_comment, - ACTIONS(3754), 54, + sym_block_comment, + ACTIONS(3760), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -221366,16 +216447,17 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - [24619] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24018] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4859), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4849), 1, anon_sym_DOLLARelse, - STATE(1956), 1, + STATE(1955), 2, sym_line_comment, - ACTIONS(2861), 18, + sym_block_comment, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221394,7 +216476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2859), 35, + ACTIONS(2725), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221430,16 +216512,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24689] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24089] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(1957), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4851), 1, + anon_sym_DOLLARelse, + STATE(1956), 2, sym_line_comment, - STATE(1994), 1, - sym_type_parameters, - ACTIONS(2741), 18, + sym_block_comment, + ACTIONS(2751), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221458,7 +216541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, + ACTIONS(2749), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221494,17 +216577,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24759] = 6, + [24160] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(1957), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4855), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4853), 49, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [24229] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4859), 1, + anon_sym_COMMA, ACTIONS(4861), 1, - anon_sym_DOLLARelse, - STATE(1958), 1, - sym_line_comment, - ACTIONS(2691), 18, anon_sym_EQ, + STATE(3384), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(1958), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4857), 13, + anon_sym_LBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(3442), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -221522,11 +216687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2689), 35, + ACTIONS(3440), 21, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -221546,24 +216709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24829] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24306] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1841), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2055), 1, anon_sym_EQ, ACTIONS(4705), 1, anon_sym_as, @@ -221585,43 +216736,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, ACTIONS(4739), 1, anon_sym_POUND_LBRACK, - ACTIONS(4819), 1, + ACTIONS(4817), 1, anon_sym_AMP_AMP, - ACTIONS(4821), 1, + ACTIONS(4819), 1, anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, + ACTIONS(4821), 1, anon_sym_in, - ACTIONS(4825), 1, + ACTIONS(4823), 1, anon_sym_BANGin, ACTIONS(4863), 1, anon_sym_is, ACTIONS(4865), 1, anon_sym_BANGis, - STATE(1959), 1, - sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, + STATE(2000), 1, sym_or_block, - STATE(4152), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4815), 2, + ACTIONS(4813), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4811), 4, + STATE(1959), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4809), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4817), 4, + ACTIONS(4815), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4813), 8, + ACTIONS(4811), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -221630,7 +216782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 14, + ACTIONS(2053), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -221645,16 +216797,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24945] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24423] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(1960), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4867), 1, + anon_sym_DOLLARelse, + STATE(1960), 2, sym_line_comment, - STATE(2045), 1, - sym_type_parameters, - ACTIONS(2741), 18, + sym_block_comment, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221673,7 +216826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, + ACTIONS(2725), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221709,80 +216862,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25015] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24494] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1841), 1, - anon_sym_EQ, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4819), 1, - anon_sym_AMP_AMP, - ACTIONS(4821), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 1, - anon_sym_in, - ACTIONS(4825), 1, - anon_sym_BANGin, - ACTIONS(4867), 1, - anon_sym_is, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4869), 1, - anon_sym_BANGis, - STATE(1961), 1, + anon_sym_DOLLARelse, + STATE(1961), 2, sym_line_comment, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4815), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4811), 4, + sym_block_comment, + ACTIONS(2751), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4817), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4813), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 14, + ACTIONS(2749), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -221796,14 +216927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25131] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24565] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1962), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1962), 2, sym_line_comment, - ACTIONS(3351), 18, + sym_block_comment, + ACTIONS(3430), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221822,7 +216954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3349), 35, + ACTIONS(3428), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221833,10 +216966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -221858,14 +216989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25198] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [24633] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1963), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1963), 2, sym_line_comment, - ACTIONS(3395), 18, + sym_block_comment, + ACTIONS(3234), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221884,7 +217017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3393), 35, + ACTIONS(3232), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221920,33 +217053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25265] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [24701] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1964), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3183), 1, + ACTIONS(3242), 18, anon_sym_EQ, - STATE(1964), 1, - sym_line_comment, - ACTIONS(3181), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2976), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -221964,9 +217080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2973), 19, + ACTIONS(3240), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -221984,20 +217103,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [25336] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3167), 1, - anon_sym_EQ, - STATE(1965), 1, - sym_line_comment, - ACTIONS(3165), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -222010,7 +217115,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(2970), 17, + anon_sym_COLON_EQ, + [24769] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1965), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3182), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -222028,9 +217143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2967), 19, + ACTIONS(3180), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -222048,14 +217166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [25407] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [24837] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1966), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1966), 2, sym_line_comment, - ACTIONS(2747), 18, + sym_block_comment, + ACTIONS(3178), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222074,7 +217206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2745), 35, + ACTIONS(3176), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222085,10 +217218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222110,14 +217241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25474] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [24905] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1967), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1967), 2, sym_line_comment, - ACTIONS(3055), 18, + sym_block_comment, + ACTIONS(3170), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222136,7 +217269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3053), 35, + ACTIONS(3168), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222147,10 +217281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222172,14 +217304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25541] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [24973] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1968), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1968), 2, sym_line_comment, - ACTIONS(2970), 18, + sym_block_comment, + ACTIONS(3166), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222198,7 +217332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2967), 35, + ACTIONS(3164), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222234,14 +217368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25608] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [25041] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1969), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1969), 2, sym_line_comment, - ACTIONS(2976), 18, + sym_block_comment, + ACTIONS(3162), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222260,7 +217395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2973), 35, + ACTIONS(3160), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222296,14 +217431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25675] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [25109] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1970), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1970), 2, sym_line_comment, - ACTIONS(3187), 18, + sym_block_comment, + ACTIONS(3158), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222322,7 +217458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3156), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222333,10 +217470,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222358,16 +217493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25742] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25177] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_DOT, - STATE(1971), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1971), 2, sym_line_comment, - ACTIONS(3135), 18, + sym_block_comment, + ACTIONS(3150), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222386,8 +217521,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3133), 34, + ACTIONS(3148), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222421,16 +217557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25811] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [25245] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_DOT, - STATE(1972), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1972), 2, sym_line_comment, - ACTIONS(3135), 18, + sym_block_comment, + ACTIONS(3302), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222449,7 +217584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3133), 34, + ACTIONS(3300), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222484,16 +217620,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25880] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [25313] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1973), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4871), 1, + ACTIONS(3194), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3192), 35, + anon_sym_SEMI, anon_sym_DOT, - STATE(1973), 1, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [25381] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1974), 2, sym_line_comment, - ACTIONS(3431), 18, + sym_block_comment, + ACTIONS(3146), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222512,8 +217710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3429), 34, + ACTIONS(3144), 35, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222547,14 +217746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25949] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [25449] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1974), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1975), 2, sym_line_comment, - ACTIONS(3119), 18, + sym_block_comment, + ACTIONS(3009), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222573,7 +217773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3117), 35, + ACTIONS(3007), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222584,10 +217785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222609,14 +217808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26016] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25517] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1975), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1976), 2, sym_line_comment, - ACTIONS(3155), 18, + sym_block_comment, + ACTIONS(2993), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222635,7 +217836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3153), 35, + ACTIONS(2991), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222646,10 +217848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222671,14 +217871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26083] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25585] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1976), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1977), 2, sym_line_comment, - ACTIONS(3123), 18, + sym_block_comment, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222697,7 +217899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3121), 35, + ACTIONS(2987), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222708,10 +217911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222733,14 +217934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26150] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25653] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1977), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1978), 2, sym_line_comment, - ACTIONS(3231), 18, + sym_block_comment, + ACTIONS(2985), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222759,7 +217962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3229), 35, + ACTIONS(2983), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222770,10 +217974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222795,16 +217997,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26217] = 6, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [25721] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(1979), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2981), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2979), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [25789] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1980), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4871), 1, + ACTIONS(2935), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2933), 35, + anon_sym_SEMI, anon_sym_DOT, - STATE(1978), 1, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [25857] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1981), 2, sym_line_comment, - ACTIONS(3431), 18, + sym_block_comment, + ACTIONS(2931), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222823,7 +218151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3429), 34, + ACTIONS(2929), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222833,10 +218163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222858,76 +218186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26286] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25925] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1979), 1, - sym_line_comment, - ACTIONS(3127), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3125), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26353] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1980), 1, + STATE(1982), 2, sym_line_comment, - ACTIONS(3131), 18, + sym_block_comment, + ACTIONS(2927), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222946,7 +218214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3129), 35, + ACTIONS(2925), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222957,10 +218226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -222982,14 +218249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26420] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [25993] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1981), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1983), 2, sym_line_comment, - ACTIONS(3151), 18, + sym_block_comment, + ACTIONS(2917), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223008,7 +218277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3149), 35, + ACTIONS(2915), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223019,10 +218289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223044,14 +218312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26487] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26061] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1982), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1984), 2, sym_line_comment, - ACTIONS(3139), 18, + sym_block_comment, + ACTIONS(2913), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223070,7 +218340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3137), 35, + ACTIONS(2911), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223081,10 +218352,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223106,14 +218375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26554] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26129] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1985), 2, sym_line_comment, - ACTIONS(3135), 18, + sym_block_comment, + ACTIONS(2901), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223132,7 +218403,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3133), 35, + ACTIONS(2899), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223143,10 +218415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223168,14 +218438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26621] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26197] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1984), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1986), 2, sym_line_comment, - ACTIONS(3239), 18, + sym_block_comment, + ACTIONS(2943), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223194,7 +218466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3237), 35, + ACTIONS(2941), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223205,10 +218478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223230,14 +218501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26688] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26265] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1985), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1987), 2, sym_line_comment, - ACTIONS(2869), 18, + sym_block_comment, + ACTIONS(2905), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223256,7 +218529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2871), 35, + ACTIONS(2903), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -223292,14 +218565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26755] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [26333] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1986), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1988), 2, sym_line_comment, - ACTIONS(3055), 18, + sym_block_comment, + ACTIONS(3005), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223318,7 +218592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3053), 35, + ACTIONS(3003), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -223354,14 +218628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26822] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [26401] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1987), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1989), 2, sym_line_comment, - ACTIONS(3259), 18, + sym_block_comment, + ACTIONS(3206), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223380,7 +218655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3257), 35, + ACTIONS(3204), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223391,10 +218667,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223416,14 +218690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26889] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26469] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1988), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1990), 2, sym_line_comment, - ACTIONS(3267), 18, + sym_block_comment, + ACTIONS(3218), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223442,7 +218718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3265), 35, + ACTIONS(3216), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223453,10 +218730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223478,14 +218753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26956] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26537] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1989), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1991), 2, sym_line_comment, - ACTIONS(3271), 18, + sym_block_comment, + ACTIONS(3226), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223504,7 +218781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3269), 35, + ACTIONS(3224), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223515,10 +218793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223540,14 +218816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27023] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26605] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(1990), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4871), 1, + anon_sym_BANG, + STATE(1992), 2, sym_line_comment, - ACTIONS(3275), 18, + sym_block_comment, + ACTIONS(2975), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223558,7 +218838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -223566,7 +218845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3273), 35, + ACTIONS(2973), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223577,10 +218857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223602,14 +218880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27090] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26675] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1991), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1993), 2, sym_line_comment, - ACTIONS(3295), 18, + sym_block_comment, + ACTIONS(3154), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223628,7 +218908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3293), 35, + ACTIONS(3152), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223639,10 +218920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223664,14 +218943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27157] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26743] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1994), 2, sym_line_comment, - ACTIONS(3307), 18, + sym_block_comment, + ACTIONS(2971), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223690,7 +218971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3305), 35, + ACTIONS(2969), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223701,10 +218983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223726,14 +219006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27224] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26811] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1993), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1995), 2, sym_line_comment, - ACTIONS(3319), 18, + sym_block_comment, + ACTIONS(3210), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223752,7 +219034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3317), 35, + ACTIONS(3208), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223763,10 +219046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223788,14 +219069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27291] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26879] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1996), 2, sym_line_comment, - ACTIONS(3077), 18, + sym_block_comment, + ACTIONS(3230), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223814,7 +219097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3075), 35, + ACTIONS(3228), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223825,10 +219109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223850,77 +219132,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27358] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [26947] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1995), 1, - sym_line_comment, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2671), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2669), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27427] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(1996), 1, + STATE(1997), 2, sym_line_comment, - ACTIONS(3355), 18, + sym_block_comment, + ACTIONS(3222), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223939,7 +219160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3353), 35, + ACTIONS(3220), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223950,10 +219172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223975,14 +219195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27494] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27015] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1997), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1998), 2, sym_line_comment, - ACTIONS(3287), 18, + sym_block_comment, + ACTIONS(3246), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224001,8 +219223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3285), 35, - anon_sym_SEMI, + ACTIONS(3244), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224013,8 +219234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224036,15 +219259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27561] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27083] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1998), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1999), 2, sym_line_comment, - ACTIONS(2671), 18, + sym_block_comment, + ACTIONS(3234), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224063,7 +219286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 35, + ACTIONS(3232), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224099,14 +219322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27628] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27151] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1999), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2000), 2, sym_line_comment, - ACTIONS(3335), 18, + sym_block_comment, + ACTIONS(3250), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224125,7 +219349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3333), 35, + ACTIONS(3248), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224161,14 +219385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27695] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27219] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2000), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2001), 2, sym_line_comment, - ACTIONS(3363), 18, + sym_block_comment, + ACTIONS(3254), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224187,7 +219412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3361), 35, + ACTIONS(3252), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224198,10 +219424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224223,14 +219447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27762] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27287] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2001), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2002), 2, sym_line_comment, - ACTIONS(3367), 18, + sym_block_comment, + ACTIONS(3258), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224249,7 +219475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3365), 35, + ACTIONS(3256), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224260,10 +219487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224285,14 +219510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27829] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27355] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2002), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2003), 2, sym_line_comment, - ACTIONS(3403), 18, + sym_block_comment, + ACTIONS(3242), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224311,8 +219538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3401), 35, - anon_sym_SEMI, + ACTIONS(3240), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224323,8 +219549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224346,15 +219574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27896] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27423] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2003), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2004), 2, sym_line_comment, - ACTIONS(3427), 18, + sym_block_comment, + ACTIONS(3266), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224373,7 +219601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3425), 35, + ACTIONS(3264), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224409,14 +219637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27963] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27491] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2004), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2005), 2, sym_line_comment, - ACTIONS(3431), 18, + sym_block_comment, + ACTIONS(3040), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224435,7 +219664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3429), 35, + ACTIONS(3038), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224471,14 +219700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28030] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27559] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2005), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2006), 2, sym_line_comment, - ACTIONS(3435), 18, + sym_block_comment, + ACTIONS(3270), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224497,7 +219727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3433), 35, + ACTIONS(3268), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224533,14 +219763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28097] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27627] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2006), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2007), 2, sym_line_comment, - ACTIONS(3403), 18, + sym_block_comment, + ACTIONS(3142), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224559,7 +219790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3401), 35, + ACTIONS(3140), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224570,10 +219802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224595,14 +219825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28164] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27695] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2007), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2008), 2, sym_line_comment, - ACTIONS(3442), 18, + sym_block_comment, + ACTIONS(3338), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224621,8 +219853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3440), 35, - anon_sym_SEMI, + ACTIONS(3336), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224633,8 +219864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224656,15 +219889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28231] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27763] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2008), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2009), 2, sym_line_comment, - ACTIONS(2671), 18, + sym_block_comment, + ACTIONS(3206), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224683,7 +219916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 35, + ACTIONS(3204), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224719,14 +219952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28298] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [27831] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2009), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2010), 2, sym_line_comment, - ACTIONS(2741), 18, + sym_block_comment, + ACTIONS(3298), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224745,7 +219979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, + ACTIONS(3296), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224756,10 +219991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224781,14 +220014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28365] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27899] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2010), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2011), 2, sym_line_comment, - ACTIONS(3407), 18, + sym_block_comment, + ACTIONS(3314), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224807,7 +220042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3405), 35, + ACTIONS(3312), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224818,10 +220054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224843,14 +220077,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28432] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [27967] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2011), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2012), 2, sym_line_comment, - ACTIONS(3399), 18, + sym_block_comment, + ACTIONS(3322), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224869,7 +220105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3397), 35, + ACTIONS(3320), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -224905,14 +220141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28499] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28035] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2012), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2013), 2, sym_line_comment, - ACTIONS(3419), 18, + sym_block_comment, + ACTIONS(3194), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224931,7 +220168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3417), 35, + ACTIONS(3192), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -224967,14 +220204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28566] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28103] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2013), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2014), 2, sym_line_comment, - ACTIONS(3359), 18, + sym_block_comment, + ACTIONS(3186), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -224993,8 +220231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3357), 35, - anon_sym_SEMI, + ACTIONS(3184), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225005,8 +220242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225028,15 +220267,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28633] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28171] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2014), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2015), 2, sym_line_comment, - ACTIONS(3351), 18, + sym_block_comment, + ACTIONS(3382), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225055,7 +220294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3349), 35, + ACTIONS(3380), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225091,14 +220330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28700] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28239] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2015), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2016), 2, sym_line_comment, - ACTIONS(3343), 18, + sym_block_comment, + ACTIONS(3386), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225117,7 +220357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3341), 35, + ACTIONS(3384), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225153,14 +220393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28767] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28307] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2016), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2017), 2, sym_line_comment, - ACTIONS(3331), 18, + sym_block_comment, + ACTIONS(3390), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225179,7 +220420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3329), 35, + ACTIONS(3388), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225215,14 +220456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28834] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28375] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2017), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2018), 2, sym_line_comment, - ACTIONS(3327), 18, + sym_block_comment, + ACTIONS(3414), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225241,7 +220483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3325), 35, + ACTIONS(3412), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225277,14 +220519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28901] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28443] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2018), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2019), 2, sym_line_comment, - ACTIONS(3323), 18, + sym_block_comment, + ACTIONS(3238), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225303,7 +220546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3321), 35, + ACTIONS(3236), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225339,20 +220582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28968] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28511] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2019), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2020), 2, sym_line_comment, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4874), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(2671), 18, + sym_block_comment, + ACTIONS(3182), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225371,17 +220609,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 31, - anon_sym_SEMI, + ACTIONS(3180), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225389,6 +220631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225402,15 +220645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29039] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28579] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2020), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2021), 2, sym_line_comment, - ACTIONS(2747), 18, + sym_block_comment, + ACTIONS(3178), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225429,8 +220672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2745), 35, - anon_sym_SEMI, + ACTIONS(3176), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225441,8 +220683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225464,15 +220708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29106] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28647] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2021), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2022), 2, sym_line_comment, - ACTIONS(3311), 18, + sym_block_comment, + ACTIONS(3174), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225491,7 +220735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 35, + ACTIONS(3172), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225527,14 +220771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29173] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28715] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2022), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2023), 2, sym_line_comment, - ACTIONS(3303), 18, + sym_block_comment, + ACTIONS(3190), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225553,7 +220798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3301), 35, + ACTIONS(3188), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225589,14 +220834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29240] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28783] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2023), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2024), 2, sym_line_comment, - ACTIONS(3299), 18, + sym_block_comment, + ACTIONS(3346), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225615,7 +220861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3297), 35, + ACTIONS(3344), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225651,14 +220897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29307] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28851] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2024), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2025), 2, sym_line_comment, - ACTIONS(3291), 18, + sym_block_comment, + ACTIONS(3162), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225677,8 +220924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3289), 35, - anon_sym_SEMI, + ACTIONS(3160), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225689,8 +220935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225712,15 +220960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29374] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [28919] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2025), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2026), 2, sym_line_comment, - ACTIONS(3427), 18, + sym_block_comment, + ACTIONS(2923), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225739,7 +220987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3425), 35, + ACTIONS(2921), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225750,10 +220999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225775,14 +221022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29441] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [28987] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2026), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2027), 2, sym_line_comment, - ACTIONS(3435), 18, + sym_block_comment, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225801,7 +221050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3433), 35, + ACTIONS(3011), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225812,10 +221062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225837,14 +221085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29508] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [29055] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2027), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2028), 2, sym_line_comment, - ACTIONS(3255), 18, + sym_block_comment, + ACTIONS(3442), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225863,7 +221113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3253), 35, + ACTIONS(3440), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -225899,14 +221149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29575] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29123] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2028), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2029), 2, sym_line_comment, - ACTIONS(3407), 18, + sym_block_comment, + ACTIONS(3158), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225925,8 +221176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3405), 35, - anon_sym_SEMI, + ACTIONS(3156), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -225937,8 +221187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -225960,15 +221212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29642] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29191] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2029), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2030), 2, sym_line_comment, - ACTIONS(2741), 18, + sym_block_comment, + ACTIONS(3402), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -225987,7 +221239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2739), 35, + ACTIONS(3400), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226023,16 +221275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29709] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29259] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(2030), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2031), 2, sym_line_comment, - ACTIONS(2747), 18, + sym_block_comment, + ACTIONS(3362), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226051,10 +221302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2745), 34, + ACTIONS(3360), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -226086,17 +221338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29778] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29327] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2031), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2032), 2, sym_line_comment, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2671), 18, + sym_block_comment, + ACTIONS(3214), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226115,16 +221365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 33, + ACTIONS(3212), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -226149,14 +221401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29847] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29395] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2032), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2033), 2, sym_line_comment, - ACTIONS(3127), 18, + sym_block_comment, + ACTIONS(3418), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226175,8 +221428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3125), 35, - anon_sym_SEMI, + ACTIONS(3416), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -226187,8 +221439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226210,15 +221464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29914] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29463] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2033), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2034), 2, sym_line_comment, - ACTIONS(3395), 18, + sym_block_comment, + ACTIONS(3410), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226237,8 +221491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3393), 35, - anon_sym_SEMI, + ACTIONS(3408), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -226249,8 +221502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226272,18 +221527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29981] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29531] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2034), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2035), 2, sym_line_comment, - ACTIONS(3165), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2970), 18, + sym_block_comment, + ACTIONS(3009), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226302,9 +221554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2967), 33, + ACTIONS(3007), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -226312,8 +221565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226335,18 +221590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30050] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29599] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2035), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2036), 2, sym_line_comment, - ACTIONS(3181), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2976), 18, + sym_block_comment, + ACTIONS(3024), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226365,9 +221617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2973), 33, + ACTIONS(3022), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -226399,76 +221653,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30119] = 5, - ACTIONS(497), 1, + [29667] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(2036), 1, + STATE(2037), 2, sym_line_comment, - ACTIONS(4878), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4876), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, + sym_block_comment, + ACTIONS(3294), 18, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3292), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [30186] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [29735] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2037), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2038), 2, sym_line_comment, - ACTIONS(3359), 18, + sym_block_comment, + ACTIONS(3370), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226487,7 +221743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3357), 35, + ACTIONS(3368), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -226523,14 +221779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30253] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [29803] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2038), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2039), 2, sym_line_comment, - ACTIONS(3247), 18, + sym_block_comment, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226549,7 +221806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3245), 35, + ACTIONS(3018), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226585,14 +221842,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30320] = 5, + [29871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(2040), 2, + sym_line_comment, sym_block_comment, - STATE(2039), 1, + ACTIONS(4875), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4873), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [29939] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2041), 2, sym_line_comment, - ACTIONS(3347), 18, + sym_block_comment, + ACTIONS(3378), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226611,7 +221932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3345), 35, + ACTIONS(3376), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -226647,14 +221968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30387] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30007] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2040), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3042), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2042), 2, sym_line_comment, - ACTIONS(3343), 18, + sym_block_comment, + ACTIONS(3029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226673,10 +221998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3341), 35, + ACTIONS(3026), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -226684,10 +222008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226709,14 +222031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30454] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [30077] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2041), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3114), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2043), 2, sym_line_comment, - ACTIONS(3367), 18, + sym_block_comment, + ACTIONS(3035), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226735,11 +222062,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3365), 35, - anon_sym_SEMI, + ACTIONS(3032), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -226771,14 +222096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30521] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30147] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2042), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2044), 2, sym_line_comment, - ACTIONS(3363), 18, + sym_block_comment, + ACTIONS(3394), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226797,8 +222123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3361), 35, - anon_sym_SEMI, + ACTIONS(3392), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -226809,8 +222134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -226832,15 +222159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30588] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30215] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2043), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2045), 2, sym_line_comment, - ACTIONS(3355), 18, + sym_block_comment, + ACTIONS(2759), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226859,7 +222186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3353), 35, + ACTIONS(2761), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -226895,14 +222222,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30655] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30283] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2044), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4877), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(2046), 2, sym_line_comment, - ACTIONS(3347), 18, + sym_block_comment, + ACTIONS(2867), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226921,18 +222255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3345), 35, + ACTIONS(2865), 31, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -226942,7 +222273,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226957,14 +222287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30722] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30355] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2045), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_DOT, + STATE(2047), 2, sym_line_comment, - ACTIONS(3077), 18, + sym_block_comment, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -226983,9 +222316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3075), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3018), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -226995,8 +222326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227018,15 +222351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30789] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30425] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2046), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_DOT, + STATE(2048), 2, sym_line_comment, - ACTIONS(3235), 18, + sym_block_comment, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227045,8 +222380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 35, - anon_sym_DOT, + ACTIONS(3018), 34, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -227056,10 +222391,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227081,14 +222414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30856] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [30495] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2047), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2049), 2, sym_line_comment, - ACTIONS(3415), 18, + sym_block_comment, + ACTIONS(2867), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227107,17 +222445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3413), 35, + ACTIONS(2865), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -227143,14 +222479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30923] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30565] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2048), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2050), 2, sym_line_comment, - ACTIONS(3219), 18, + sym_block_comment, + ACTIONS(2943), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227169,7 +222506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3217), 35, + ACTIONS(2941), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227205,14 +222542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30990] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30633] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2049), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2051), 2, sym_line_comment, - ACTIONS(3219), 18, + sym_block_comment, + ACTIONS(2905), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227231,8 +222569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3217), 35, - anon_sym_SEMI, + ACTIONS(2903), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227243,8 +222580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227266,15 +222605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31057] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30701] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2050), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2052), 2, sym_line_comment, - ACTIONS(2869), 18, + sym_block_comment, + ACTIONS(2703), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227293,7 +222632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2871), 35, + ACTIONS(2701), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227329,14 +222668,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31124] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30769] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2051), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + STATE(2053), 2, sym_line_comment, - ACTIONS(3215), 18, + sym_block_comment, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227355,9 +222697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3213), 35, + ACTIONS(3011), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -227391,14 +222732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31191] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30839] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2052), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2054), 2, sym_line_comment, - ACTIONS(3319), 18, + sym_block_comment, + ACTIONS(3406), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227417,7 +222759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3317), 35, + ACTIONS(3404), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227453,14 +222795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31258] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30907] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2053), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2055), 2, sym_line_comment, - ACTIONS(3307), 18, + sym_block_comment, + ACTIONS(3246), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227479,7 +222822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3305), 35, + ACTIONS(3244), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227515,138 +222858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31325] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [30975] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2054), 1, - sym_line_comment, - ACTIONS(3287), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3285), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31392] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2055), 1, + STATE(2056), 2, sym_line_comment, - ACTIONS(3335), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3333), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31459] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2056), 1, - sym_line_comment, - ACTIONS(3187), 18, + ACTIONS(3035), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227665,7 +222885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3032), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227701,14 +222921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31526] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31043] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2057), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2057), 2, sym_line_comment, - ACTIONS(3179), 18, + sym_block_comment, + ACTIONS(3294), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227727,7 +222948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3177), 35, + ACTIONS(3292), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -227763,14 +222984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31593] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31111] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2058), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2058), 2, sym_line_comment, - ACTIONS(3391), 18, + sym_block_comment, + ACTIONS(3029), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227789,7 +223011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3389), 35, + ACTIONS(3026), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227800,10 +223023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227825,14 +223046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31660] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31179] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2059), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2059), 2, sym_line_comment, - ACTIONS(3387), 18, + sym_block_comment, + ACTIONS(3334), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227851,7 +223074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3385), 35, + ACTIONS(3332), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227862,10 +223086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227887,14 +223109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31727] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31247] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2060), 2, sym_line_comment, - ACTIONS(3431), 18, + sym_block_comment, + ACTIONS(3302), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227913,7 +223137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3429), 35, + ACTIONS(3300), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -227924,10 +223149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -227949,14 +223172,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31794] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31315] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2061), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2061), 2, sym_line_comment, - ACTIONS(3295), 18, + sym_block_comment, + ACTIONS(3342), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -227975,7 +223200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3293), 35, + ACTIONS(3340), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228011,14 +223236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31861] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31383] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2062), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2062), 2, sym_line_comment, - ACTIONS(3275), 18, + sym_block_comment, + ACTIONS(3362), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228037,8 +223263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3273), 35, - anon_sym_SEMI, + ACTIONS(3360), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228049,8 +223274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228072,15 +223299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31928] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31451] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2063), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2063), 2, sym_line_comment, - ACTIONS(3271), 18, + sym_block_comment, + ACTIONS(3402), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228099,8 +223326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3269), 35, - anon_sym_SEMI, + ACTIONS(3400), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228111,8 +223337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228134,15 +223362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31519] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2064), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2064), 2, sym_line_comment, - ACTIONS(3267), 18, + sym_block_comment, + ACTIONS(3350), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228161,7 +223389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3265), 35, + ACTIONS(3348), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228197,14 +223425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32062] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31587] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2065), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2065), 2, sym_line_comment, - ACTIONS(3259), 18, + sym_block_comment, + ACTIONS(3354), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228223,7 +223452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3257), 35, + ACTIONS(3352), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228259,14 +223488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32129] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31655] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2066), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2066), 2, sym_line_comment, - ACTIONS(3383), 18, + sym_block_comment, + ACTIONS(3358), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228285,7 +223515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3381), 35, + ACTIONS(3356), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228296,10 +223527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228321,14 +223550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32196] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31723] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2067), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2067), 2, sym_line_comment, - ACTIONS(3442), 18, + sym_block_comment, + ACTIONS(3366), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228347,7 +223578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3440), 35, + ACTIONS(3364), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228358,10 +223590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228383,14 +223613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32263] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31791] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2068), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2068), 2, sym_line_comment, - ACTIONS(3239), 18, + sym_block_comment, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228409,8 +223641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3237), 35, - anon_sym_SEMI, + ACTIONS(3011), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228421,8 +223652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228444,15 +223677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32330] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [31859] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2069), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2069), 2, sym_line_comment, - ACTIONS(3045), 18, + sym_block_comment, + ACTIONS(3370), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228471,7 +223704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3043), 35, + ACTIONS(3368), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228482,10 +223716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228507,14 +223739,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32397] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31927] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2070), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2070), 2, sym_line_comment, - ACTIONS(3041), 18, + sym_block_comment, + ACTIONS(3306), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228533,7 +223767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3039), 35, + ACTIONS(3304), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228544,10 +223779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228569,16 +223802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32464] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [31995] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4880), 1, - anon_sym_BANG, - STATE(2071), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2071), 2, sym_line_comment, - ACTIONS(3081), 17, + sym_block_comment, + ACTIONS(3310), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228589,6 +223822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -228596,7 +223830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3079), 35, + ACTIONS(3308), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228632,14 +223866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32533] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32063] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2072), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2072), 2, sym_line_comment, - ACTIONS(3379), 18, + sym_block_comment, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228658,7 +223893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3377), 35, + ACTIONS(3316), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228669,10 +223905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228694,14 +223928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32600] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [32131] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2073), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2073), 2, sym_line_comment, - ACTIONS(3045), 18, + sym_block_comment, + ACTIONS(3326), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228720,7 +223956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3043), 35, + ACTIONS(3324), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -228756,55 +223992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32667] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32199] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2074), 1, - sym_line_comment, - ACTIONS(3041), 18, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3116), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3039), 35, + STATE(2074), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3114), 16, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -228818,15 +224019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32734] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2075), 1, - sym_line_comment, - ACTIONS(3375), 18, - anon_sym_EQ, + ACTIONS(3035), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -228844,21 +224037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3373), 35, + ACTIONS(3032), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228868,26 +224057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32801] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32271] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2076), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2075), 2, sym_line_comment, - ACTIONS(2965), 18, + sym_block_comment, + ACTIONS(3346), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228906,8 +224084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 35, - anon_sym_SEMI, + ACTIONS(3344), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -228918,8 +224095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -228941,15 +224120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32868] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32339] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2077), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2076), 2, sym_line_comment, - ACTIONS(2883), 18, + sym_block_comment, + ACTIONS(3378), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -228968,7 +224147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 35, + ACTIONS(3376), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229004,14 +224183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32935] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32407] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2078), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2077), 2, sym_line_comment, - ACTIONS(3135), 18, + sym_block_comment, + ACTIONS(2759), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229030,8 +224210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3133), 35, - anon_sym_SEMI, + ACTIONS(2761), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229042,8 +224221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229065,15 +224246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33002] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32475] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2079), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2078), 2, sym_line_comment, - ACTIONS(3139), 18, + sym_block_comment, + ACTIONS(3222), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229092,8 +224273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3137), 35, - anon_sym_SEMI, + ACTIONS(3220), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229104,8 +224284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229127,57 +224309,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33069] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32543] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2080), 1, - sym_line_comment, - ACTIONS(3399), 18, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3044), 1, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3397), 35, - anon_sym_DOT, - anon_sym_as, + STATE(2079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3042), 16, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -229190,15 +224335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33136] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2081), 1, - sym_line_comment, - ACTIONS(3423), 18, - anon_sym_EQ, + anon_sym_COLON_EQ, + ACTIONS(3029), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -229216,21 +224354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3421), 35, + ACTIONS(3026), 19, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229240,26 +224374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33203] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32615] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2082), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2080), 2, sym_line_comment, - ACTIONS(3051), 18, + sym_block_comment, + ACTIONS(3330), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229278,7 +224401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3049), 35, + ACTIONS(3328), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229289,10 +224413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229314,14 +224436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33270] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [32683] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2083), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2081), 2, sym_line_comment, - ACTIONS(3151), 18, + sym_block_comment, + ACTIONS(3422), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229340,8 +224464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3149), 35, - anon_sym_SEMI, + ACTIONS(3420), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229352,8 +224475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229375,15 +224500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33337] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32751] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2084), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2082), 2, sym_line_comment, - ACTIONS(3171), 18, + sym_block_comment, + ACTIONS(3338), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229402,7 +224527,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3169), 35, + ACTIONS(3336), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229413,10 +224539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229438,14 +224562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33404] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [32819] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2085), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2083), 2, sym_line_comment, - ACTIONS(2887), 18, + sym_block_comment, + ACTIONS(3418), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229464,7 +224590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 35, + ACTIONS(3416), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229500,14 +224626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33471] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [32887] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2086), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2084), 2, sym_line_comment, - ACTIONS(3175), 18, + sym_block_comment, + ACTIONS(3422), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229526,7 +224653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3173), 35, + ACTIONS(3420), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229537,10 +224665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229562,14 +224688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33538] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [32955] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2087), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2085), 2, sym_line_comment, - ACTIONS(3131), 18, + sym_block_comment, + ACTIONS(3394), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229588,7 +224716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3129), 35, + ACTIONS(3392), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -229624,14 +224752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33605] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33023] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2088), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2086), 2, sym_line_comment, - ACTIONS(3411), 18, + sym_block_comment, + ACTIONS(3426), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229650,7 +224779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3409), 35, + ACTIONS(3424), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229661,10 +224791,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229686,18 +224814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33672] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [33091] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(2089), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2087), 2, sym_line_comment, - ACTIONS(2671), 18, + sym_block_comment, + ACTIONS(3398), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229716,16 +224842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2669), 33, + ACTIONS(3396), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -229750,14 +224878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [33743] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33159] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2090), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2088), 2, sym_line_comment, - ACTIONS(3051), 18, + sym_block_comment, + ACTIONS(3414), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229776,8 +224905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3049), 35, - anon_sym_SEMI, + ACTIONS(3412), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229788,8 +224916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -229811,15 +224941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33810] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33227] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2091), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2089), 2, sym_line_comment, - ACTIONS(3203), 18, + sym_block_comment, + ACTIONS(3382), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229838,7 +224968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, + ACTIONS(3380), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229874,14 +225004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33877] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33295] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2092), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2090), 2, sym_line_comment, - ACTIONS(3331), 18, + sym_block_comment, + ACTIONS(3386), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229900,7 +225031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3329), 35, + ACTIONS(3384), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229936,14 +225067,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33944] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33363] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2091), 2, + sym_line_comment, sym_block_comment, - STATE(2093), 1, + ACTIONS(3390), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3388), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [33431] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2092), 2, sym_line_comment, - ACTIONS(3327), 18, + sym_block_comment, + ACTIONS(3238), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -229962,7 +225157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3325), 35, + ACTIONS(3236), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -229998,14 +225193,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34011] = 5, - ACTIONS(3), 1, + [33499] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3438), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3436), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [33567] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2094), 2, + sym_line_comment, sym_block_comment, - STATE(2094), 1, + ACTIONS(3434), 18, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3432), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [33635] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2095), 2, sym_line_comment, - ACTIONS(3323), 18, + sym_block_comment, + ACTIONS(2971), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230024,7 +225346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3321), 35, + ACTIONS(2969), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230060,14 +225382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34078] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33703] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2095), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2096), 2, sym_line_comment, - ACTIONS(3207), 18, + sym_block_comment, + ACTIONS(3366), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230086,7 +225409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3205), 35, + ACTIONS(3364), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230122,14 +225445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34145] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33771] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2096), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2097), 2, sym_line_comment, - ACTIONS(3211), 18, + sym_block_comment, + ACTIONS(3410), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230148,7 +225472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3209), 35, + ACTIONS(3408), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230159,10 +225484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -230184,14 +225507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34212] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [33839] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2097), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2098), 2, sym_line_comment, - ACTIONS(3223), 18, + sym_block_comment, + ACTIONS(3306), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230210,7 +225535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3221), 35, + ACTIONS(3304), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230246,14 +225571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34279] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33907] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2098), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2099), 2, sym_line_comment, - ACTIONS(3311), 18, + sym_block_comment, + ACTIONS(3310), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230272,7 +225598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 35, + ACTIONS(3308), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230308,14 +225634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34346] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [33975] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2099), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2100), 2, sym_line_comment, - ACTIONS(3303), 18, + sym_block_comment, + ACTIONS(3322), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230334,7 +225661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3301), 35, + ACTIONS(3320), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230370,14 +225697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34413] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34043] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2100), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2101), 2, sym_line_comment, - ACTIONS(3299), 18, + sym_block_comment, + ACTIONS(3314), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230396,7 +225724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3297), 35, + ACTIONS(3312), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230432,14 +225760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34480] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34111] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2101), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2102), 2, sym_line_comment, - ACTIONS(3291), 18, + sym_block_comment, + ACTIONS(3298), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230458,7 +225787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3289), 35, + ACTIONS(3296), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230494,76 +225823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34547] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34179] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2102), 1, - sym_line_comment, - ACTIONS(3227), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3225), 35, - anon_sym_DOT, - anon_sym_as, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34614] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2103), 1, + STATE(2103), 2, sym_line_comment, - ACTIONS(2891), 18, + sym_block_comment, + ACTIONS(2867), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230582,18 +225853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2889), 35, + ACTIONS(2865), 33, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -230618,14 +225887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34681] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34249] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2104), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_LBRACE, + STATE(2104), 2, sym_line_comment, - ACTIONS(3123), 18, + sym_block_comment, + ACTIONS(2703), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230644,11 +225916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3121), 35, + ACTIONS(2701), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -230680,14 +225951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34748] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34319] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2105), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2105), 2, sym_line_comment, - ACTIONS(2895), 18, + sym_block_comment, + ACTIONS(3426), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230706,8 +225978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2893), 35, - anon_sym_SEMI, + ACTIONS(3424), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230718,8 +225989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -230741,15 +226014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34815] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34387] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2106), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2106), 2, sym_line_comment, - ACTIONS(3255), 18, + sym_block_comment, + ACTIONS(3270), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230768,7 +226041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3253), 35, + ACTIONS(3268), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230804,14 +226077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34882] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34455] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2107), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2107), 2, sym_line_comment, - ACTIONS(3247), 18, + sym_block_comment, + ACTIONS(3266), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230830,7 +226104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3245), 35, + ACTIONS(3264), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230866,14 +226140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34949] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34523] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2108), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2108), 2, sym_line_comment, - ACTIONS(3155), 18, + sym_block_comment, + ACTIONS(3262), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230892,8 +226167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3153), 35, - anon_sym_SEMI, + ACTIONS(3260), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230904,8 +226178,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -230927,15 +226203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35016] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34591] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2109), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2109), 2, sym_line_comment, - ACTIONS(2961), 18, + sym_block_comment, + ACTIONS(3258), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -230954,8 +226230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2959), 35, - anon_sym_SEMI, + ACTIONS(3256), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -230966,8 +226241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -230989,15 +226266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35083] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34659] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2110), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2110), 2, sym_line_comment, - ACTIONS(3339), 18, + sym_block_comment, + ACTIONS(2695), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231016,7 +226293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3337), 35, + ACTIONS(2693), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231027,10 +226305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231052,14 +226328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35150] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [34727] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2111), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2111), 2, sym_line_comment, - ACTIONS(3007), 18, + sym_block_comment, + ACTIONS(2909), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231078,7 +226356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3005), 35, + ACTIONS(2907), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231114,14 +226392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35217] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34795] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2112), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2112), 2, sym_line_comment, - ACTIONS(3011), 18, + sym_block_comment, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231140,8 +226419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3009), 35, - anon_sym_SEMI, + ACTIONS(3316), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231152,8 +226430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231175,15 +226455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35284] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34863] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2113), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2113), 2, sym_line_comment, - ACTIONS(3015), 18, + sym_block_comment, + ACTIONS(3230), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231202,8 +226482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, - anon_sym_SEMI, + ACTIONS(3228), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231214,8 +226493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231237,15 +226518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35351] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34931] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2114), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2114), 2, sym_line_comment, - ACTIONS(3215), 18, + sym_block_comment, + ACTIONS(3254), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231264,7 +226545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3213), 35, + ACTIONS(3252), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231300,14 +226581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35418] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [34999] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2115), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2115), 2, sym_line_comment, - ACTIONS(3279), 18, + sym_block_comment, + ACTIONS(3250), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231326,7 +226608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3277), 35, + ACTIONS(3248), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231362,14 +226644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35485] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35067] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2116), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2116), 2, sym_line_comment, - ACTIONS(3283), 18, + sym_block_comment, + ACTIONS(3326), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231388,7 +226671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3281), 35, + ACTIONS(3324), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231424,14 +226707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35552] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35135] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2117), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2117), 2, sym_line_comment, - ACTIONS(3179), 18, + sym_block_comment, + ACTIONS(2923), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231450,7 +226734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3177), 35, + ACTIONS(2921), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231486,14 +226770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35619] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35203] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2118), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2118), 2, sym_line_comment, - ACTIONS(3423), 18, + sym_block_comment, + ACTIONS(3442), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231512,8 +226797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3421), 35, - anon_sym_SEMI, + ACTIONS(3440), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231524,8 +226808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231547,15 +226833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35686] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35271] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2119), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2119), 2, sym_line_comment, - ACTIONS(3419), 18, + sym_block_comment, + ACTIONS(3226), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231574,8 +226860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3417), 35, - anon_sym_SEMI, + ACTIONS(3224), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231586,8 +226871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231609,15 +226896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35753] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35339] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2120), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2120), 2, sym_line_comment, - ACTIONS(3415), 18, + sym_block_comment, + ACTIONS(3430), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231636,8 +226923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3413), 35, - anon_sym_SEMI, + ACTIONS(3428), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231648,8 +226934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231671,15 +226959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35820] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35407] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2121), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2121), 2, sym_line_comment, - ACTIONS(3411), 18, + sym_block_comment, + ACTIONS(3358), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231698,8 +226986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3409), 35, - anon_sym_SEMI, + ACTIONS(3356), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231710,8 +226997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231733,15 +227022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35887] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35475] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2122), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2122), 2, sym_line_comment, - ACTIONS(3391), 18, + sym_block_comment, + ACTIONS(3210), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231760,8 +227049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3389), 35, - anon_sym_SEMI, + ACTIONS(3208), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231772,8 +227060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231795,15 +227085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35954] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35543] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2123), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2123), 2, sym_line_comment, - ACTIONS(3019), 18, + sym_block_comment, + ACTIONS(3330), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231822,8 +227112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3017), 35, - anon_sym_SEMI, + ACTIONS(3328), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231834,8 +227123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231857,15 +227148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36021] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35611] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2124), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2124), 2, sym_line_comment, - ACTIONS(3387), 18, + sym_block_comment, + ACTIONS(3120), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231884,7 +227175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3385), 35, + ACTIONS(3118), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -231920,14 +227211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36088] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35679] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2125), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2125), 2, sym_line_comment, - ACTIONS(3383), 18, + sym_block_comment, + ACTIONS(3154), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -231946,8 +227238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3381), 35, - anon_sym_SEMI, + ACTIONS(3152), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -231958,8 +227249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -231981,15 +227274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36155] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35747] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2126), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2126), 2, sym_line_comment, - ACTIONS(3379), 18, + sym_block_comment, + ACTIONS(3398), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232008,8 +227301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3377), 35, - anon_sym_SEMI, + ACTIONS(3396), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232020,8 +227312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232043,15 +227337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36222] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35815] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2127), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2127), 2, sym_line_comment, - ACTIONS(3375), 18, + sym_block_comment, + ACTIONS(3262), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232070,7 +227364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3373), 35, + ACTIONS(3260), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232106,16 +227400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36289] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35883] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4882), 1, - anon_sym_BANG, - STATE(2128), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2128), 2, sym_line_comment, - ACTIONS(3081), 17, + sym_block_comment, + ACTIONS(3406), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232126,6 +227419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -232133,7 +227427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3079), 35, + ACTIONS(3404), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232169,14 +227463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36358] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [35951] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2129), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2129), 2, sym_line_comment, - ACTIONS(3235), 18, + sym_block_comment, + ACTIONS(3354), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232195,8 +227490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 35, - anon_sym_SEMI, + ACTIONS(3352), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232207,8 +227501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232230,34 +227526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36425] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36019] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(2130), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3183), 1, + ACTIONS(2867), 18, anon_sym_EQ, - STATE(2130), 1, - sym_line_comment, - ACTIONS(3181), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2976), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232275,15 +227557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2973), 19, + ACTIONS(2865), 33, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -232295,19 +227578,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [36496] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [36091] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3167), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3116), 1, anon_sym_EQ, - STATE(2131), 1, + STATE(2131), 2, sym_line_comment, - ACTIONS(3165), 16, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3114), 16, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -232320,8 +227618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2970), 17, + ACTIONS(3035), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232339,7 +227636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2967), 19, + ACTIONS(3032), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -232359,17 +227656,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [36567] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36163] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3044), 1, + anon_sym_EQ, + STATE(2132), 2, + sym_line_comment, sym_block_comment, - ACTIONS(2871), 1, + ACTIONS(3042), 16, anon_sym_LBRACE, - STATE(2132), 1, - sym_line_comment, - ACTIONS(3055), 18, - anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(3029), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232387,11 +227701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3053), 34, - anon_sym_SEMI, + ACTIONS(3026), 19, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -232409,27 +227721,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36636] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36235] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2133), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2133), 2, sym_line_comment, - ACTIONS(3371), 18, + sym_block_comment, + ACTIONS(2867), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232448,7 +227748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3369), 35, + ACTIONS(2865), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232484,14 +227784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36703] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36303] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2134), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2134), 2, sym_line_comment, - ACTIONS(3339), 18, + sym_block_comment, + ACTIONS(2909), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232510,8 +227811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3337), 35, - anon_sym_SEMI, + ACTIONS(2907), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232522,8 +227822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232545,15 +227847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36770] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36371] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2135), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2135), 2, sym_line_comment, - ACTIONS(3119), 18, + sym_block_comment, + ACTIONS(2703), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232572,7 +227874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3117), 35, + ACTIONS(2701), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -232608,14 +227910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [36837] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36439] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2136), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4882), 1, + anon_sym_BANG, + STATE(2136), 2, sym_line_comment, - ACTIONS(3263), 18, + sym_block_comment, + ACTIONS(2975), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232626,7 +227931,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -232634,7 +227938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3261), 35, + ACTIONS(2973), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232670,14 +227974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36904] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36509] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2137), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2137), 2, sym_line_comment, - ACTIONS(2965), 18, + sym_block_comment, + ACTIONS(3350), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232696,7 +228001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2963), 35, + ACTIONS(3348), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232732,14 +228037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [36971] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36577] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2138), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2138), 2, sym_line_comment, - ACTIONS(2883), 18, + sym_block_comment, + ACTIONS(3342), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232758,7 +228064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2881), 35, + ACTIONS(3340), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232794,14 +228100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37038] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36645] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2139), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2139), 2, sym_line_comment, - ACTIONS(2887), 18, + sym_block_comment, + ACTIONS(3334), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232820,7 +228127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2885), 35, + ACTIONS(3332), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232856,14 +228163,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37105] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36713] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2140), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_LBRACE, + STATE(2140), 2, sym_line_comment, - ACTIONS(2891), 18, + sym_block_comment, + ACTIONS(2971), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232882,10 +228192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2889), 35, + ACTIONS(2969), 34, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -232893,10 +228203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -232918,14 +228226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37172] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [36783] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2141), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2141), 2, sym_line_comment, - ACTIONS(2895), 18, + sym_block_comment, + ACTIONS(3170), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -232944,7 +228254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2893), 35, + ACTIONS(3168), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -232980,14 +228290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37239] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36851] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2142), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2142), 2, sym_line_comment, - ACTIONS(2961), 18, + sym_block_comment, + ACTIONS(3120), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233006,7 +228317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2959), 35, + ACTIONS(3118), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233042,14 +228353,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37306] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36919] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2143), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + STATE(2143), 2, sym_line_comment, - ACTIONS(3283), 18, + sym_block_comment, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233068,9 +228382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3281), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3011), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -233080,8 +228392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233103,15 +228417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37373] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [36989] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2144), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2144), 2, sym_line_comment, - ACTIONS(3279), 18, + sym_block_comment, + ACTIONS(3166), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233130,8 +228444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3277), 35, - anon_sym_SEMI, + ACTIONS(3164), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233142,8 +228455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233165,15 +228480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37440] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37057] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2145), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2145), 2, sym_line_comment, - ACTIONS(3263), 18, + sym_block_comment, + ACTIONS(2901), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233192,8 +228507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3261), 35, - anon_sym_SEMI, + ACTIONS(2899), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233204,8 +228518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233227,15 +228543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37507] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37125] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2146), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2146), 2, sym_line_comment, - ACTIONS(3371), 18, + sym_block_comment, + ACTIONS(2913), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233254,7 +228570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3369), 35, + ACTIONS(2911), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233290,14 +228606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37574] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37193] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2147), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2147), 2, sym_line_comment, - ACTIONS(3251), 18, + sym_block_comment, + ACTIONS(2917), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233316,8 +228633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3249), 35, - anon_sym_SEMI, + ACTIONS(2915), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233328,8 +228644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233351,15 +228669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37641] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37261] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2148), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2148), 2, sym_line_comment, - ACTIONS(3007), 18, + sym_block_comment, + ACTIONS(2927), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233378,7 +228696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3005), 35, + ACTIONS(2925), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233414,14 +228732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37708] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37329] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2149), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2149), 2, sym_line_comment, - ACTIONS(3011), 18, + sym_block_comment, + ACTIONS(2931), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233440,7 +228759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3009), 35, + ACTIONS(2929), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233476,14 +228795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37775] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37397] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2150), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2150), 2, sym_line_comment, - ACTIONS(3015), 18, + sym_block_comment, + ACTIONS(2935), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233502,7 +228822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3013), 35, + ACTIONS(2933), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233538,14 +228858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [37842] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37465] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2151), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2151), 2, sym_line_comment, - ACTIONS(3243), 18, + sym_block_comment, + ACTIONS(3020), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233564,8 +228885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3241), 35, - anon_sym_SEMI, + ACTIONS(3018), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233576,8 +228896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233599,15 +228921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37909] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37533] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2152), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2152), 2, sym_line_comment, - ACTIONS(3231), 18, + sym_block_comment, + ACTIONS(3005), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233626,8 +228948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3229), 35, - anon_sym_SEMI, + ACTIONS(3003), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233638,8 +228959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233661,15 +228984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [37976] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37601] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2153), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2153), 2, sym_line_comment, - ACTIONS(3019), 18, + sym_block_comment, + ACTIONS(3040), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233688,7 +229011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3017), 35, + ACTIONS(3038), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233724,14 +229047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38043] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37669] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2154), 2, sym_line_comment, - ACTIONS(3227), 18, + sym_block_comment, + ACTIONS(3186), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233750,7 +229074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3225), 35, + ACTIONS(3184), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -233786,14 +229110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [38110] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37737] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2155), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2155), 2, sym_line_comment, - ACTIONS(3223), 18, + sym_block_comment, + ACTIONS(3142), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233812,8 +229137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3221), 35, - anon_sym_SEMI, + ACTIONS(3140), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233824,8 +229148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233847,15 +229173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38177] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37805] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2156), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2156), 2, sym_line_comment, - ACTIONS(3251), 18, + sym_block_comment, + ACTIONS(2981), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233874,7 +229200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3249), 35, + ACTIONS(2979), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233910,14 +229236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38244] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37873] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2157), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2157), 2, sym_line_comment, - ACTIONS(3211), 18, + sym_block_comment, + ACTIONS(2985), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233936,8 +229263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3209), 35, - anon_sym_SEMI, + ACTIONS(2983), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -233948,8 +229274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -233971,15 +229299,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38311] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [37941] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2158), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2158), 2, sym_line_comment, - ACTIONS(3207), 18, + sym_block_comment, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -233998,8 +229326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3205), 35, - anon_sym_SEMI, + ACTIONS(2987), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234010,8 +229337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234033,15 +229362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38378] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38009] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2159), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2159), 2, sym_line_comment, - ACTIONS(3203), 18, + sym_block_comment, + ACTIONS(3218), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234060,8 +229389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, - anon_sym_SEMI, + ACTIONS(3216), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234072,8 +229400,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234095,15 +229425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38445] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38077] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2160), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2160), 2, sym_line_comment, - ACTIONS(3159), 18, + sym_block_comment, + ACTIONS(2695), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234122,7 +229452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3157), 35, + ACTIONS(2693), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234158,14 +229488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38512] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38145] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2161), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2161), 2, sym_line_comment, - ACTIONS(3163), 18, + sym_block_comment, + ACTIONS(2993), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234184,7 +229515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3161), 35, + ACTIONS(2991), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234220,14 +229551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38579] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38213] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2162), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2162), 2, sym_line_comment, - ACTIONS(3243), 18, + sym_block_comment, + ACTIONS(2867), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234246,7 +229578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3241), 35, + ACTIONS(2865), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234282,14 +229614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38646] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38281] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2163), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2163), 2, sym_line_comment, - ACTIONS(3159), 18, + sym_block_comment, + ACTIONS(3434), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234308,8 +229641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3157), 35, - anon_sym_SEMI, + ACTIONS(3432), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234320,8 +229652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234343,15 +229677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38713] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38349] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2164), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2164), 2, sym_line_comment, - ACTIONS(3199), 18, + sym_block_comment, + ACTIONS(3174), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234370,8 +229704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3197), 35, - anon_sym_SEMI, + ACTIONS(3172), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234382,8 +229715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234405,15 +229740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38780] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38417] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2165), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2165), 2, sym_line_comment, - ACTIONS(3195), 18, + sym_block_comment, + ACTIONS(3438), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234432,7 +229767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, + ACTIONS(3436), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234468,14 +229803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38847] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38485] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2166), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2166), 2, sym_line_comment, - ACTIONS(3195), 18, + sym_block_comment, + ACTIONS(3190), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234494,8 +229830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, - anon_sym_SEMI, + ACTIONS(3188), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234506,8 +229841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234529,15 +229866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [38914] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38553] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2167), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2167), 2, sym_line_comment, - ACTIONS(3199), 18, + sym_block_comment, + ACTIONS(3214), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234556,7 +229893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3197), 35, + ACTIONS(3212), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234592,14 +229929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [38981] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38621] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2168), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2168), 2, sym_line_comment, - ACTIONS(3175), 18, + sym_block_comment, + ACTIONS(3146), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234618,8 +229956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3173), 35, - anon_sym_SEMI, + ACTIONS(3144), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234630,8 +229967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234653,15 +229992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [39048] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38689] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2169), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2169), 2, sym_line_comment, - ACTIONS(3171), 18, + sym_block_comment, + ACTIONS(3150), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234680,8 +230019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3169), 35, - anon_sym_SEMI, + ACTIONS(3148), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234692,8 +230030,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234715,15 +230055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [39115] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38757] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2170), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2170), 2, sym_line_comment, - ACTIONS(3163), 18, + sym_block_comment, + ACTIONS(3024), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -234742,8 +230082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3161), 35, - anon_sym_SEMI, + ACTIONS(3022), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -234754,8 +230093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -234777,15 +230118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [39182] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38825] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2171), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2171), 2, sym_line_comment, - ACTIONS(3315), 24, + sym_block_comment, + ACTIONS(3374), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -234810,7 +230151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3313), 28, + ACTIONS(3372), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -234839,14 +230180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [39248] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38892] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2172), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2172), 2, sym_line_comment, - ACTIONS(3147), 24, + sym_block_comment, + ACTIONS(2997), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -234871,7 +230213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3145), 28, + ACTIONS(2995), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -234900,14 +230242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [39314] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [38959] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2173), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2173), 2, sym_line_comment, - ACTIONS(3143), 24, + sym_block_comment, + ACTIONS(3001), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -234932,7 +230275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3141), 28, + ACTIONS(2999), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -234961,14 +230304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [39380] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [39026] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2174), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2174), 2, sym_line_comment, - ACTIONS(3109), 24, + sym_block_comment, + ACTIONS(3198), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -234993,7 +230337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3107), 28, + ACTIONS(3196), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -235022,14 +230366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [39446] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [39093] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2175), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2175), 2, sym_line_comment, - ACTIONS(3087), 24, + sym_block_comment, + ACTIONS(3202), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -235054,7 +230399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3085), 28, + ACTIONS(3200), 28, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -235083,676 +230428,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_EQ, anon_sym_map_LBRACK, anon_sym_DOT_DOT, - [39512] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2176), 1, - sym_line_comment, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1925), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39593] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2177), 1, - sym_line_comment, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1889), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39674] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4898), 1, - anon_sym_EQ, - STATE(2178), 1, - sym_line_comment, - ACTIONS(4896), 14, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(3427), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3425), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [39743] = 13, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2179), 1, - sym_line_comment, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1837), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39824] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2479), 1, - anon_sym_LBRACK, - ACTIONS(4900), 1, - anon_sym_else, - STATE(2180), 1, - sym_line_comment, - STATE(2266), 1, - sym_else_branch, - ACTIONS(2481), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39892] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4902), 1, - anon_sym_COLON, - ACTIONS(4904), 1, - anon_sym_static, - ACTIONS(4906), 1, - anon_sym_volatile, - STATE(2181), 1, - sym_line_comment, - ACTIONS(4603), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4601), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [39962] = 7, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2473), 1, - anon_sym_LBRACK, - ACTIONS(4900), 1, - anon_sym_else, - STATE(2182), 1, - sym_line_comment, - STATE(2273), 1, - sym_else_branch, - ACTIONS(2475), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40030] = 5, + [39160] = 13, ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2183), 1, - sym_line_comment, - ACTIONS(4910), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4908), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40093] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4904), 1, - anon_sym_static, - ACTIONS(4906), 1, - anon_sym_volatile, - ACTIONS(4912), 1, - sym_identifier, - STATE(2184), 1, - sym_line_comment, - ACTIONS(4603), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4601), 24, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40162] = 29, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4894), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4916), 1, - anon_sym_as, - ACTIONS(4924), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, - anon_sym_DASH_DASH, - ACTIONS(4928), 1, - anon_sym_LBRACK2, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4934), 1, - anon_sym_or, - ACTIONS(4936), 1, - anon_sym_is, - ACTIONS(4938), 1, - anon_sym_BANGis, - ACTIONS(4940), 1, - anon_sym_in, - ACTIONS(4942), 1, - anon_sym_BANGin, - ACTIONS(4944), 1, - anon_sym_AT_LBRACK, - STATE(2185), 1, - sym_line_comment, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, sym_or_block, - STATE(3509), 1, - sym_attribute, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4918), 4, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1913), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4922), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4914), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - sym_identifier, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [40273] = 5, - ACTIONS(497), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39242] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - STATE(2186), 1, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2177), 2, sym_line_comment, - ACTIONS(2747), 48, + sym_block_comment, + ACTIONS(1849), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, @@ -235771,9 +230551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -235783,34 +230560,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40336] = 5, - ACTIONS(497), 1, + [39324] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2661), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - STATE(2187), 1, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2178), 2, sym_line_comment, - ACTIONS(2663), 48, + sym_block_comment, + ACTIONS(1925), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, @@ -235829,6 +230620,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39406] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4898), 1, + anon_sym_EQ, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4896), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(3442), 17, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -235838,30 +230678,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(3440), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40399] = 6, - ACTIONS(497), 1, + [39476] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(2489), 1, anon_sym_LBRACK, - STATE(2188), 1, + ACTIONS(4900), 1, + anon_sym_else, + STATE(2252), 1, + sym_else_branch, + STATE(2180), 2, sym_line_comment, - STATE(2255), 1, - sym_type_parameters, - ACTIONS(2741), 47, + sym_block_comment, + ACTIONS(2491), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -235909,16 +230760,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40464] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [39545] = 8, ACTIONS(5), 1, - sym_block_comment, - STATE(2189), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4902), 1, + anon_sym_COLON, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + STATE(2181), 2, sym_line_comment, - ACTIONS(2661), 23, + sym_block_comment, + ACTIONS(4599), 22, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -235940,7 +230797,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2663), 26, + ACTIONS(4597), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -235952,7 +230809,6 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, - anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -235967,18 +230823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [40527] = 6, - ACTIONS(497), 1, + [39616] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, + anon_sym_SLASH_STAR, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(3135), 1, - anon_sym_LBRACE, - STATE(2190), 1, + ACTIONS(4900), 1, + anon_sym_else, + STATE(2254), 1, + sym_else_branch, + STATE(2182), 2, sym_line_comment, - ACTIONS(2671), 47, + sym_block_comment, + ACTIONS(2481), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236026,16 +230885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40592] = 5, - ACTIONS(497), 1, + [39685] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2661), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(2191), 1, + STATE(2183), 2, sym_line_comment, - ACTIONS(2663), 48, + sym_block_comment, + ACTIONS(2703), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236084,16 +230944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40655] = 5, - ACTIONS(497), 1, + [39749] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - STATE(2192), 1, + ACTIONS(3020), 1, + anon_sym_LBRACE, + STATE(2184), 2, sym_line_comment, - ACTIONS(2747), 48, + sym_block_comment, + ACTIONS(2867), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236135,26 +230998,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40718] = 7, + [39815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2667), 1, + anon_sym_LBRACK, + STATE(2185), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4904), 1, - anon_sym_static, - ACTIONS(4906), 1, - anon_sym_volatile, - STATE(2193), 1, + ACTIONS(2669), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [39879] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2186), 2, sym_line_comment, - ACTIONS(4603), 22, + sym_block_comment, + ACTIONS(4910), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -236176,7 +231095,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4601), 25, + ACTIONS(4908), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236188,6 +231107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, + anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -236202,14 +231122,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [40785] = 5, - ACTIONS(3), 1, + [39943] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(2187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1492), 24, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4912), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [40007] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2188), 2, + sym_line_comment, sym_block_comment, - STATE(2194), 1, + ACTIONS(4916), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4914), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [40071] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2189), 2, sym_line_comment, - ACTIONS(2745), 23, + sym_block_comment, + ACTIONS(4920), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -236233,7 +231272,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(2747), 26, + ACTIONS(4918), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236260,18 +231299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [40848] = 6, - ACTIONS(497), 1, + [40135] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2859), 1, + anon_sym_SLASH_STAR, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(4946), 1, + ACTIONS(4922), 1, anon_sym_DOLLARelse, - STATE(2195), 1, + STATE(2190), 2, sym_line_comment, - ACTIONS(2861), 47, + sym_block_comment, + ACTIONS(2751), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236319,72 +231359,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40913] = 5, + [40201] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2196), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2667), 1, + anon_sym_LBRACK, + STATE(2191), 2, sym_line_comment, - ACTIONS(4950), 23, - anon_sym_LBRACE, + sym_block_comment, + ACTIONS(2669), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4948), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40976] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AT_LBRACK, + [40265] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2197), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2192), 2, sym_line_comment, - ACTIONS(4954), 23, + sym_block_comment, + ACTIONS(2667), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -236408,7 +231450,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4952), 26, + ACTIONS(2669), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236435,16 +231477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [41039] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [40329] = 8, ACTIONS(5), 1, - sym_block_comment, - STATE(2198), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + ACTIONS(4924), 1, + sym_identifier, + STATE(2193), 2, sym_line_comment, - ACTIONS(4958), 23, + sym_block_comment, + ACTIONS(4599), 22, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, @@ -236466,7 +231514,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4956), 26, + ACTIONS(4597), 24, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236478,7 +231526,6 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, - anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -236488,19 +231535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_sql, sym_int_literal, sym_pseudo_compile_time_identifier, - sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [41102] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [40399] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2199), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2194), 2, sym_line_comment, - ACTIONS(4962), 23, + sym_block_comment, + ACTIONS(2701), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -236524,7 +231571,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4960), 26, + ACTIONS(2703), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236551,21 +231598,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [41165] = 5, + [40463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, + anon_sym_LBRACK, + STATE(2262), 1, + sym_type_parameters, + STATE(2195), 2, + sym_line_comment, sym_block_comment, - STATE(2200), 1, + ACTIONS(2695), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [40529] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2196), 2, sym_line_comment, - ACTIONS(1482), 24, + sym_block_comment, + ACTIONS(4928), 23, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_BANG, anon_sym_json_DOTdecode, @@ -236583,7 +231690,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4964), 25, + ACTIONS(4926), 26, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -236595,6 +231702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_false, sym_nil, anon_sym_if, + anon_sym_else, anon_sym_DOLLARif, anon_sym_match, anon_sym_select, @@ -236609,18 +231717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [41228] = 6, - ACTIONS(497), 1, + [40593] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2689), 1, + anon_sym_SLASH_STAR, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(4966), 1, + ACTIONS(4930), 1, anon_sym_DOLLARelse, - STATE(2201), 1, + STATE(2197), 2, sym_line_comment, - ACTIONS(2691), 47, + sym_block_comment, + ACTIONS(2727), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236668,11 +231777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41293] = 26, - ACTIONS(497), 1, + [40659] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4886), 1, anon_sym_LPAREN, ACTIONS(4888), 1, @@ -236681,53 +231790,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4916), 1, + ACTIONS(4894), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4934), 1, anon_sym_as, - ACTIONS(4924), 1, + ACTIONS(4942), 1, anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, + ACTIONS(4944), 1, anon_sym_DASH_DASH, - ACTIONS(4930), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, anon_sym_AMP_AMP, - ACTIONS(4932), 1, + ACTIONS(4950), 1, anon_sym_PIPE_PIPE, - ACTIONS(4934), 1, + ACTIONS(4952), 1, anon_sym_or, - ACTIONS(4936), 1, + ACTIONS(4954), 1, anon_sym_is, - ACTIONS(4938), 1, + ACTIONS(4956), 1, anon_sym_BANGis, - ACTIONS(4940), 1, + ACTIONS(4958), 1, anon_sym_in, - ACTIONS(4942), 1, + ACTIONS(4960), 1, anon_sym_BANGin, - STATE(2202), 1, - sym_line_comment, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + ACTIONS(4962), 1, + anon_sym_AT_LBRACK, + STATE(2232), 1, sym_or_block, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(3508), 1, + sym_attribute, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, + STATE(2198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, + ACTIONS(4940), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4920), 8, + ACTIONS(4932), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + ACTIONS(4938), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -236736,26 +231860,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1769), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + [40771] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4966), 23, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4964), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, - anon_sym_AT_LBRACK, - [41397] = 5, - ACTIONS(497), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [40835] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(2203), 1, + STATE(2200), 2, sym_line_comment, - ACTIONS(3227), 47, + sym_block_comment, + ACTIONS(2703), 48, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236797,22 +231971,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41459] = 5, - ACTIONS(497), 1, + [40899] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(4904), 1, + anon_sym_static, + ACTIONS(4906), 1, + anon_sym_volatile, + STATE(2201), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3229), 1, + ACTIONS(4599), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4597), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [40967] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3236), 1, anon_sym_LBRACK, - STATE(2204), 1, + STATE(2202), 2, sym_line_comment, - ACTIONS(3231), 47, + sym_block_comment, + ACTIONS(3238), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236860,16 +232097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41521] = 5, - ACTIONS(497), 1, + [41030] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3333), 1, + anon_sym_SLASH_STAR, + ACTIONS(3352), 1, anon_sym_LBRACK, - STATE(2205), 1, + STATE(2203), 2, sym_line_comment, - ACTIONS(3335), 47, + sym_block_comment, + ACTIONS(3354), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236917,16 +232155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41583] = 5, - ACTIONS(497), 1, + [41093] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3177), 1, + anon_sym_SLASH_STAR, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(2206), 1, + STATE(2204), 2, sym_line_comment, - ACTIONS(3179), 47, + sym_block_comment, + ACTIONS(2985), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236974,16 +232213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41645] = 5, - ACTIONS(497), 1, + [41156] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3397), 1, + anon_sym_SLASH_STAR, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(2207), 1, + STATE(2205), 2, sym_line_comment, - ACTIONS(3399), 47, + sym_block_comment, + ACTIONS(2981), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237031,97 +232271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41707] = 29, - ACTIONS(497), 1, + [41219] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(2933), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3448), 1, - anon_sym_fn, - ACTIONS(3450), 1, - anon_sym_STAR, - ACTIONS(3452), 1, - anon_sym_struct, - ACTIONS(3454), 1, - anon_sym_QMARK, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3458), 1, - anon_sym_LBRACK2, - ACTIONS(3460), 1, - anon_sym_AMP, - ACTIONS(3462), 1, - anon_sym_shared, - ACTIONS(3464), 1, - anon_sym_map_LBRACK, - ACTIONS(3466), 1, - anon_sym_chan, - ACTIONS(3468), 1, - anon_sym_thread, - ACTIONS(3470), 1, - anon_sym_atomic, - ACTIONS(4968), 1, - anon_sym_LPAREN, - ACTIONS(4970), 1, - anon_sym_LT2, - STATE(2208), 1, + STATE(2206), 2, sym_line_comment, - STATE(3446), 1, - sym_plain_type, - STATE(3458), 1, - sym_signature, - STATE(3829), 1, - sym_generic_parameters, - STATE(4434), 1, - sym_reference_expression, - STATE(2497), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3424), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3135), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3467), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [41817] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3273), 1, - anon_sym_LBRACK, - STATE(2209), 1, - sym_line_comment, - ACTIONS(3275), 47, + ACTIONS(2935), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237169,16 +232329,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41879] = 5, - ACTIONS(497), 1, + [41282] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4934), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4944), 1, + anon_sym_DASH_DASH, + ACTIONS(4948), 1, + anon_sym_AMP_AMP, + ACTIONS(4950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4952), 1, + anon_sym_or, + ACTIONS(4954), 1, + anon_sym_is, + ACTIONS(4956), 1, + anon_sym_BANGis, + ACTIONS(4958), 1, + anon_sym_in, + ACTIONS(4960), 1, + anon_sym_BANGin, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2207), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3285), 1, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4940), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1933), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + [41387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, anon_sym_LBRACK, - STATE(2210), 1, + STATE(2208), 2, sym_line_comment, - ACTIONS(3287), 47, + sym_block_comment, + ACTIONS(3120), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237226,16 +232466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41941] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [41450] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4976), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4972), 1, anon_sym_volatile, - STATE(2211), 1, + STATE(2209), 2, sym_line_comment, - ACTIONS(4974), 22, + sym_block_comment, + ACTIONS(4970), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -237258,7 +232499,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4972), 25, + ACTIONS(4968), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -237284,16 +232525,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [42005] = 5, - ACTIONS(497), 1, + [41515] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3253), 1, + anon_sym_SLASH_STAR, + ACTIONS(2929), 1, anon_sym_LBRACK, - STATE(2212), 1, + STATE(2210), 2, sym_line_comment, - ACTIONS(3255), 47, + sym_block_comment, + ACTIONS(2931), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237341,130 +232583,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42067] = 5, + [41578] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2213), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2925), 1, + anon_sym_LBRACK, + STATE(2211), 2, sym_line_comment, - ACTIONS(3141), 24, - anon_sym_LBRACE, + sym_block_comment, + ACTIONS(2927), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3143), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [42129] = 5, + anon_sym_AT_LBRACK, + [41641] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2214), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2915), 1, + anon_sym_LBRACK, + STATE(2212), 2, sym_line_comment, - ACTIONS(3145), 24, - anon_sym_LBRACE, + sym_block_comment, + ACTIONS(2917), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3147), 24, + sym_identifier, + anon_sym_AT_LBRACK, + [41704] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4938), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [42191] = 5, - ACTIONS(497), 1, + anon_sym_AT_LBRACK, + [41787] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3185), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, anon_sym_LBRACK, - STATE(2215), 1, + STATE(2214), 2, sym_line_comment, - ACTIONS(3187), 47, + sym_block_comment, + ACTIONS(2913), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237512,130 +232825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42253] = 5, + [41850] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2216), 1, - sym_line_comment, - ACTIONS(3085), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3087), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [42315] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2217), 1, - sym_line_comment, - ACTIONS(3313), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3315), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [42377] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2669), 1, + anon_sym_SLASH_STAR, + ACTIONS(2899), 1, anon_sym_LBRACK, - STATE(2218), 1, + STATE(2215), 2, sym_line_comment, - ACTIONS(2671), 47, + sym_block_comment, + ACTIONS(2901), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237683,18 +232883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42439] = 6, - ACTIONS(497), 1, + [41913] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3079), 1, + anon_sym_SLASH_STAR, + ACTIONS(2941), 1, anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_BANG, - STATE(2219), 1, + STATE(2216), 2, sym_line_comment, - ACTIONS(3081), 46, + sym_block_comment, + ACTIONS(2943), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237723,6 +232922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -237741,16 +232941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42503] = 5, - ACTIONS(497), 1, + [41976] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3405), 1, + anon_sym_SLASH_STAR, + ACTIONS(2903), 1, anon_sym_LBRACK, - STATE(2220), 1, + STATE(2217), 2, sym_line_comment, - ACTIONS(3407), 47, + sym_block_comment, + ACTIONS(2905), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237798,16 +232999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42565] = 5, - ACTIONS(497), 1, + [42039] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, anon_sym_LBRACK, - STATE(2221), 1, + STATE(2218), 2, sym_line_comment, - ACTIONS(2741), 47, + sym_block_comment, + ACTIONS(2909), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237855,16 +233057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42627] = 5, - ACTIONS(497), 1, + [42102] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3321), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, anon_sym_LBRACK, - STATE(2222), 1, + STATE(2219), 2, sym_line_comment, - ACTIONS(3323), 47, + sym_block_comment, + ACTIONS(2695), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -237912,130 +233115,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42689] = 5, + [42165] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2223), 1, - sym_line_comment, - ACTIONS(1948), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, anon_sym_QMARK, + ACTIONS(4892), 1, anon_sym_BANG, - anon_sym_json_DOTdecode, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, anon_sym_LBRACK2, - anon_sym_TILDE, + anon_sym_POUND_LBRACK, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4980), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [42751] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3401), 1, - anon_sym_LBRACK, - STATE(2224), 1, - sym_line_comment, - ACTIONS(3403), 47, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42813] = 5, - ACTIONS(497), 1, + [42248] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3245), 1, + anon_sym_SLASH_STAR, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(2225), 1, + STATE(2221), 2, sym_line_comment, - ACTIONS(3247), 47, + sym_block_comment, + ACTIONS(3318), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238083,16 +233241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42875] = 5, - ACTIONS(497), 1, + [42311] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3233), 1, + anon_sym_SLASH_STAR, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(2226), 1, + STATE(2222), 2, sym_line_comment, - ACTIONS(3235), 47, + sym_block_comment, + ACTIONS(2993), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238140,16 +233299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42937] = 5, - ACTIONS(497), 1, + [42374] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3393), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - STATE(2227), 1, + ACTIONS(4974), 1, + anon_sym_BANG, + STATE(2223), 2, sym_line_comment, - ACTIONS(3395), 47, + sym_block_comment, + ACTIONS(2975), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238178,7 +233340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -238197,16 +233358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42999] = 5, - ACTIONS(497), 1, + [42439] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3421), 1, + anon_sym_SLASH_STAR, + ACTIONS(3152), 1, anon_sym_LBRACK, - STATE(2228), 1, + STATE(2224), 2, sym_line_comment, - ACTIONS(3423), 47, + sym_block_comment, + ACTIONS(3154), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238254,16 +233416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43061] = 5, - ACTIONS(497), 1, + [42502] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3417), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, anon_sym_LBRACK, - STATE(2229), 1, + STATE(2225), 2, sym_line_comment, - ACTIONS(3419), 47, + sym_block_comment, + ACTIONS(3210), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238311,16 +233474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43123] = 5, - ACTIONS(497), 1, + [42565] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3413), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, anon_sym_LBRACK, - STATE(2230), 1, + STATE(2226), 2, sym_line_comment, - ACTIONS(3415), 47, + sym_block_comment, + ACTIONS(3434), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238368,16 +233532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43185] = 5, - ACTIONS(497), 1, + [42628] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3409), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - STATE(2231), 1, + STATE(2227), 2, sym_line_comment, - ACTIONS(3411), 47, + sym_block_comment, + ACTIONS(2759), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238425,16 +233590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43247] = 5, - ACTIONS(497), 1, + [42691] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3389), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(2232), 1, + STATE(2228), 2, sym_line_comment, - ACTIONS(3391), 47, + sym_block_comment, + ACTIONS(3222), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238482,16 +233648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43309] = 5, - ACTIONS(497), 1, + [42754] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3440), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, anon_sym_LBRACK, - STATE(2233), 1, + STATE(2229), 2, sym_line_comment, - ACTIONS(3442), 47, + sym_block_comment, + ACTIONS(3009), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238539,16 +233706,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43371] = 5, - ACTIONS(497), 1, + [42817] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3385), 1, + anon_sym_SLASH_STAR, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(2234), 1, + STATE(2230), 2, sym_line_comment, - ACTIONS(3387), 47, + sym_block_comment, + ACTIONS(3234), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238596,16 +233764,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43433] = 5, - ACTIONS(497), 1, + [42880] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3381), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, anon_sym_LBRACK, - STATE(2235), 1, + STATE(2231), 2, sym_line_comment, - ACTIONS(3383), 47, + sym_block_comment, + ACTIONS(3438), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238653,16 +233822,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43495] = 5, - ACTIONS(497), 1, + [42943] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3377), 1, + anon_sym_SLASH_STAR, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(2236), 1, + STATE(2232), 2, sym_line_comment, - ACTIONS(3379), 47, + sym_block_comment, + ACTIONS(3250), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238710,16 +233880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43557] = 5, - ACTIONS(497), 1, + [43006] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3365), 1, + anon_sym_SLASH_STAR, + ACTIONS(3252), 1, anon_sym_LBRACK, - STATE(2237), 1, + STATE(2233), 2, sym_line_comment, - ACTIONS(3367), 47, + sym_block_comment, + ACTIONS(3254), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238767,244 +233938,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43619] = 5, - ACTIONS(497), 1, + [43069] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3361), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - STATE(2238), 1, - sym_line_comment, - ACTIONS(3363), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4934), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + ACTIONS(4942), 1, anon_sym_PLUS_PLUS, + ACTIONS(4944), 1, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4948), 1, anon_sym_AMP_AMP, + ACTIONS(4950), 1, anon_sym_PIPE_PIPE, + ACTIONS(4952), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4954), 1, anon_sym_is, + ACTIONS(4956), 1, anon_sym_BANGis, + ACTIONS(4958), 1, anon_sym_in, + ACTIONS(4960), 1, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43681] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3353), 1, - anon_sym_LBRACK, - STATE(2239), 1, - sym_line_comment, - ACTIONS(3355), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43743] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3345), 1, - anon_sym_LBRACK, - STATE(2240), 1, + STATE(2234), 2, sym_line_comment, - ACTIONS(3347), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + sym_block_comment, + ACTIONS(4936), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4940), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43805] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3373), 1, - anon_sym_LBRACK, - STATE(2241), 1, - sym_line_comment, - ACTIONS(3375), 47, + ACTIONS(2071), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43867] = 5, - ACTIONS(497), 1, + [43174] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3369), 1, + anon_sym_SLASH_STAR, + ACTIONS(3256), 1, anon_sym_LBRACK, - STATE(2242), 1, + STATE(2235), 2, sym_line_comment, - ACTIONS(3371), 47, + sym_block_comment, + ACTIONS(3258), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239052,16 +234075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43929] = 5, - ACTIONS(497), 1, + [43237] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3337), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, anon_sym_LBRACK, - STATE(2243), 1, + STATE(2236), 2, sym_line_comment, - ACTIONS(3339), 47, + sym_block_comment, + ACTIONS(3262), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239109,16 +234133,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43991] = 5, - ACTIONS(497), 1, + [43300] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3281), 1, + anon_sym_SLASH_STAR, + ACTIONS(3264), 1, anon_sym_LBRACK, - STATE(2244), 1, + STATE(2237), 2, sym_line_comment, - ACTIONS(3283), 47, + sym_block_comment, + ACTIONS(3266), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239166,16 +234191,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44053] = 5, - ACTIONS(497), 1, + [43363] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3277), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(2245), 1, + STATE(2238), 2, sym_line_comment, - ACTIONS(3279), 47, + sym_block_comment, + ACTIONS(3270), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239223,16 +234249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44115] = 5, - ACTIONS(497), 1, + [43426] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3261), 1, + anon_sym_SLASH_STAR, + ACTIONS(3144), 1, anon_sym_LBRACK, - STATE(2246), 1, + STATE(2239), 2, sym_line_comment, - ACTIONS(3263), 47, + sym_block_comment, + ACTIONS(3146), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239280,16 +234307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44177] = 5, - ACTIONS(497), 1, + [43489] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3249), 1, + anon_sym_SLASH_STAR, + ACTIONS(3148), 1, anon_sym_LBRACK, - STATE(2247), 1, + STATE(2240), 2, sym_line_comment, - ACTIONS(3251), 47, + sym_block_comment, + ACTIONS(3150), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239337,16 +234365,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44239] = 5, - ACTIONS(497), 1, + [43552] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3241), 1, + anon_sym_SLASH_STAR, + ACTIONS(3156), 1, anon_sym_LBRACK, - STATE(2248), 1, + STATE(2241), 2, sym_line_comment, - ACTIONS(3243), 47, + sym_block_comment, + ACTIONS(3158), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239394,16 +234423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44301] = 5, - ACTIONS(497), 1, + [43615] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3043), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(2249), 1, + STATE(2242), 2, sym_line_comment, - ACTIONS(3045), 47, + sym_block_comment, + ACTIONS(3430), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239451,16 +234481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44363] = 5, - ACTIONS(497), 1, + [43678] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3217), 1, + anon_sym_SLASH_STAR, + ACTIONS(3424), 1, anon_sym_LBRACK, - STATE(2250), 1, + STATE(2243), 2, sym_line_comment, - ACTIONS(3219), 47, + sym_block_comment, + ACTIONS(3426), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239508,16 +234539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44425] = 5, - ACTIONS(497), 1, + [43741] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2889), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, anon_sym_LBRACK, - STATE(2251), 1, + STATE(2244), 2, sym_line_comment, - ACTIONS(2891), 47, + sym_block_comment, + ACTIONS(3422), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239565,16 +234597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44487] = 5, - ACTIONS(497), 1, + [43804] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3221), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, anon_sym_LBRACK, - STATE(2252), 1, + STATE(2245), 2, sym_line_comment, - ACTIONS(3223), 47, + sym_block_comment, + ACTIONS(3418), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239622,16 +234655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44549] = 5, - ACTIONS(497), 1, + [43867] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3039), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, anon_sym_LBRACK, - STATE(2253), 1, + STATE(2246), 2, sym_line_comment, - ACTIONS(3041), 47, + sym_block_comment, + ACTIONS(3162), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239679,16 +234713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44611] = 5, - ACTIONS(497), 1, + [43930] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2963), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_LBRACK, - STATE(2254), 1, + STATE(2247), 2, sym_line_comment, - ACTIONS(2965), 47, + sym_block_comment, + ACTIONS(3166), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239736,16 +234771,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44673] = 5, - ACTIONS(497), 1, + [43993] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3075), 1, + anon_sym_SLASH_STAR, + ACTIONS(3168), 1, anon_sym_LBRACK, - STATE(2255), 1, + STATE(2248), 2, sym_line_comment, - ACTIONS(3077), 47, + sym_block_comment, + ACTIONS(3170), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239793,73 +234829,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44735] = 5, - ACTIONS(497), 1, + [44056] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2881), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - STATE(2256), 1, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4948), 1, + anon_sym_AMP_AMP, + ACTIONS(4958), 1, + anon_sym_in, + ACTIONS(4960), 1, + anon_sym_BANGin, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2249), 2, sym_line_comment, - ACTIONS(2883), 47, + sym_block_comment, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4940), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 16, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + anon_sym_AT_LBRACK, + [44147] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4958), 1, + anon_sym_in, + ACTIONS(4960), 1, + anon_sym_BANGin, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4940), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + anon_sym_AT_LBRACK, + [44236] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, anon_sym_QMARK, + ACTIONS(4892), 1, anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2251), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1849), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44797] = 5, - ACTIONS(497), 1, + [44319] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2885), 1, + anon_sym_SLASH_STAR, + ACTIONS(3176), 1, anon_sym_LBRACK, - STATE(2257), 1, + STATE(2252), 2, sym_line_comment, - ACTIONS(2887), 47, + sym_block_comment, + ACTIONS(3178), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239907,16 +235098,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44859] = 5, - ACTIONS(497), 1, + [44382] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2253), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3325), 1, + ACTIONS(4978), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4976), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [44445] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3180), 1, anon_sym_LBRACK, - STATE(2258), 1, + STATE(2254), 2, sym_line_comment, - ACTIONS(3327), 47, + sym_block_comment, + ACTIONS(3182), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -239964,32 +235214,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44921] = 6, - ACTIONS(497), 1, + [44508] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, + anon_sym_SLASH_STAR, + ACTIONS(3184), 1, anon_sym_LBRACK, - STATE(2259), 1, + STATE(2255), 2, sym_line_comment, - ACTIONS(3167), 12, + sym_block_comment, + ACTIONS(3186), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2970), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -240002,6 +235247,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -240022,16 +235270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [44985] = 5, - ACTIONS(497), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [44571] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3297), 1, + anon_sym_SLASH_STAR, + ACTIONS(3296), 1, anon_sym_LBRACK, - STATE(2260), 1, + STATE(2256), 2, sym_line_comment, - ACTIONS(3299), 47, + sym_block_comment, + ACTIONS(3298), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240079,16 +235330,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45047] = 5, - ACTIONS(497), 1, + [44634] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3317), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, anon_sym_LBRACK, - STATE(2261), 1, + STATE(2257), 2, sym_line_comment, - ACTIONS(3319), 47, + sym_block_comment, + ACTIONS(3314), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240136,16 +235388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45109] = 5, - ACTIONS(497), 1, + [44697] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3209), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, anon_sym_LBRACK, - STATE(2262), 1, + STATE(2258), 2, sym_line_comment, - ACTIONS(3211), 47, + sym_block_comment, + ACTIONS(3322), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240193,16 +235446,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45171] = 5, - ACTIONS(497), 1, + [44760] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3301), 1, + anon_sym_SLASH_STAR, + ACTIONS(3380), 1, anon_sym_LBRACK, - STATE(2263), 1, + STATE(2259), 2, sym_line_comment, - ACTIONS(3303), 47, + sym_block_comment, + ACTIONS(3382), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240250,16 +235504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45233] = 5, - ACTIONS(497), 1, + [44823] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3305), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_LBRACK, - STATE(2264), 1, + STATE(2260), 2, sym_line_comment, - ACTIONS(3307), 47, + sym_block_comment, + ACTIONS(3194), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240307,16 +235562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45295] = 5, - ACTIONS(497), 1, + [44886] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3117), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, anon_sym_LBRACK, - STATE(2265), 1, + STATE(2261), 2, sym_line_comment, - ACTIONS(3119), 47, + sym_block_comment, + ACTIONS(3206), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240364,16 +235620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45357] = 5, - ACTIONS(497), 1, + [44949] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3201), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, anon_sym_LBRACK, - STATE(2266), 1, + STATE(2262), 2, sym_line_comment, - ACTIONS(3203), 47, + sym_block_comment, + ACTIONS(3338), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240421,82 +235678,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45419] = 14, - ACTIONS(497), 1, + [45012] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2267), 1, + STATE(2263), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 29, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45499] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3265), 1, - anon_sym_LBRACK, - STATE(2268), 1, - sym_line_comment, - ACTIONS(3267), 47, + ACTIONS(3226), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240544,16 +235736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45561] = 5, - ACTIONS(497), 1, + [45075] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3309), 1, + anon_sym_SLASH_STAR, + ACTIONS(3384), 1, anon_sym_LBRACK, - STATE(2269), 1, + STATE(2264), 2, sym_line_comment, - ACTIONS(3311), 47, + sym_block_comment, + ACTIONS(3386), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240601,16 +235794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45623] = 5, - ACTIONS(497), 1, + [45138] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3257), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym_LBRACK, - STATE(2270), 1, + STATE(2265), 2, sym_line_comment, - ACTIONS(3259), 47, + sym_block_comment, + ACTIONS(3390), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240658,16 +235852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45685] = 5, - ACTIONS(497), 1, + [45201] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3293), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, anon_sym_LBRACK, - STATE(2271), 1, + STATE(2266), 2, sym_line_comment, - ACTIONS(3295), 47, + sym_block_comment, + ACTIONS(3230), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240715,16 +235910,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45747] = 5, - ACTIONS(497), 1, + [45264] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3237), 1, + anon_sym_SLASH_STAR, + ACTIONS(3240), 1, anon_sym_LBRACK, - STATE(2272), 1, + STATE(2267), 2, sym_line_comment, - ACTIONS(3239), 47, + sym_block_comment, + ACTIONS(3242), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240772,16 +235968,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45809] = 5, - ACTIONS(497), 1, + [45327] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3205), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 1, anon_sym_LBRACK, - STATE(2273), 1, + STATE(2268), 2, sym_line_comment, - ACTIONS(3207), 47, + sym_block_comment, + ACTIONS(3246), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240829,74 +236026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45871] = 6, - ACTIONS(497), 1, + [45390] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3376), 1, anon_sym_LBRACK, - STATE(2274), 1, + STATE(2269), 2, sym_line_comment, - ACTIONS(3183), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2976), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [45935] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3197), 1, - anon_sym_LBRACK, - STATE(2275), 1, - sym_line_comment, - ACTIONS(3199), 47, + ACTIONS(3378), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240944,16 +236084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [45997] = 5, - ACTIONS(497), 1, + [45453] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3357), 1, + anon_sym_SLASH_STAR, + ACTIONS(3292), 1, anon_sym_LBRACK, - STATE(2276), 1, + STATE(2270), 2, sym_line_comment, - ACTIONS(3359), 47, + sym_block_comment, + ACTIONS(3294), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241001,16 +236142,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46059] = 5, - ACTIONS(497), 1, + [45516] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3193), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2271), 2, sym_line_comment, - ACTIONS(3195), 47, + sym_block_comment, + ACTIONS(3302), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241058,74 +236200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46121] = 6, - ACTIONS(497), 1, + [45579] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3429), 1, + anon_sym_SLASH_STAR, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(3437), 1, - anon_sym_DOT, - STATE(2278), 1, + STATE(2272), 2, sym_line_comment, - ACTIONS(3431), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46185] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3173), 1, - anon_sym_LBRACK, - STATE(2279), 1, - sym_line_comment, - ACTIONS(3175), 47, + ACTIONS(3370), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241173,73 +236258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46247] = 5, + [45642] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2280), 1, - sym_line_comment, - ACTIONS(2504), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4982), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [46309] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3169), 1, + anon_sym_SLASH_STAR, + ACTIONS(3364), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2273), 2, sym_line_comment, - ACTIONS(3171), 47, + sym_block_comment, + ACTIONS(3366), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241287,16 +236316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46371] = 5, - ACTIONS(497), 1, + [45705] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3433), 1, + anon_sym_SLASH_STAR, + ACTIONS(3356), 1, anon_sym_LBRACK, - STATE(2282), 1, + STATE(2274), 2, sym_line_comment, - ACTIONS(3435), 47, + sym_block_comment, + ACTIONS(3358), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241344,16 +236374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46433] = 5, - ACTIONS(497), 1, + [45768] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3161), 1, + anon_sym_SLASH_STAR, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(2283), 1, + STATE(2275), 2, sym_line_comment, - ACTIONS(3163), 47, + sym_block_comment, + ACTIONS(2989), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241401,16 +236432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46495] = 5, - ACTIONS(497), 1, + [45831] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_LBRACK, - STATE(2284), 1, + STATE(2276), 2, sym_line_comment, - ACTIONS(2869), 47, + sym_block_comment, + ACTIONS(3350), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241458,16 +236490,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46557] = 5, - ACTIONS(497), 1, + [45894] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3425), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, anon_sym_LBRACK, - STATE(2285), 1, + STATE(2277), 2, sym_line_comment, - ACTIONS(3427), 47, + sym_block_comment, + ACTIONS(3306), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241515,16 +236548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46619] = 5, - ACTIONS(497), 1, + [45957] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3213), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, anon_sym_LBRACK, - STATE(2286), 1, + STATE(2278), 2, sym_line_comment, - ACTIONS(3215), 47, + sym_block_comment, + ACTIONS(3342), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241572,16 +236606,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46681] = 5, - ACTIONS(497), 1, + [46020] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3269), 1, + anon_sym_SLASH_STAR, + ACTIONS(3412), 1, anon_sym_LBRACK, - STATE(2287), 1, + STATE(2279), 2, sym_line_comment, - ACTIONS(3271), 47, + sym_block_comment, + ACTIONS(3414), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241629,16 +236664,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46743] = 5, - ACTIONS(497), 1, + [46083] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3157), 1, + anon_sym_SLASH_STAR, + ACTIONS(3332), 1, anon_sym_LBRACK, - STATE(2288), 1, + STATE(2280), 2, sym_line_comment, - ACTIONS(3159), 47, + sym_block_comment, + ACTIONS(3334), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241686,16 +236722,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46805] = 5, - ACTIONS(497), 1, + [46146] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2281), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3349), 1, + ACTIONS(4938), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 29, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [46227] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3372), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - STATE(2289), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3374), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [46290] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3003), 1, + anon_sym_LBRACK, + STATE(2283), 2, sym_line_comment, - ACTIONS(3351), 47, + sym_block_comment, + ACTIONS(3005), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241743,16 +236905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46867] = 5, - ACTIONS(497), 1, + [46353] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3049), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, anon_sym_LBRACK, - STATE(2290), 1, + STATE(2284), 2, sym_line_comment, - ACTIONS(3051), 47, + sym_block_comment, + ACTIONS(3310), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241800,16 +236963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46929] = 5, - ACTIONS(497), 1, + [46416] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3017), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, anon_sym_LBRACK, - STATE(2291), 1, + STATE(2285), 2, sym_line_comment, - ACTIONS(3019), 47, + sym_block_comment, + ACTIONS(3218), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241857,16 +237021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [46991] = 5, - ACTIONS(497), 1, + [46479] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2893), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_LBRACK, - STATE(2292), 1, + STATE(2286), 2, sym_line_comment, - ACTIONS(2895), 47, + sym_block_comment, + ACTIONS(3346), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241914,16 +237079,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47053] = 5, - ACTIONS(497), 1, + [46542] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2287), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3153), 1, + ACTIONS(2514), 23, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4980), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [46605] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(2293), 1, + STATE(2288), 2, sym_line_comment, - ACTIONS(3155), 47, + sym_block_comment, + ACTIONS(3326), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -241971,14 +237195,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47115] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [46668] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2289), 2, + sym_line_comment, sym_block_comment, - STATE(2294), 1, + ACTIONS(3200), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3202), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [46731] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2290), 2, sym_line_comment, - ACTIONS(4986), 23, + sym_block_comment, + ACTIONS(1944), 23, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -242002,7 +237285,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4984), 25, + ACTIONS(4982), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -242028,161 +237311,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [47177] = 15, - ACTIONS(497), 1, + [46794] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2291), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4886), 1, + ACTIONS(3196), 24, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2295), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4920), 8, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [47259] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4916), 1, - anon_sym_as, - ACTIONS(4924), 1, anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, anon_sym_DASH_DASH, - ACTIONS(4930), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4932), 1, anon_sym_PIPE_PIPE, - ACTIONS(4934), 1, - anon_sym_or, - ACTIONS(4936), 1, - anon_sym_is, - ACTIONS(4938), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_BANGis, - ACTIONS(4940), 1, - anon_sym_in, - ACTIONS(4942), 1, anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2296), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, + anon_sym_map_LBRACK, + ACTIONS(3198), 24, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4922), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1871), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [47363] = 5, - ACTIONS(497), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [46857] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3013), 1, + anon_sym_SLASH_STAR, + ACTIONS(3328), 1, anon_sym_LBRACK, - STATE(2297), 1, + STATE(2292), 2, sym_line_comment, - ACTIONS(3015), 47, + sym_block_comment, + ACTIONS(3330), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242230,16 +237427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47425] = 5, - ACTIONS(497), 1, + [46920] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2959), 1, + anon_sym_SLASH_STAR, + ACTIONS(3038), 1, anon_sym_LBRACK, - STATE(2298), 1, + STATE(2293), 2, sym_line_comment, - ACTIONS(2961), 47, + sym_block_comment, + ACTIONS(3040), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242287,135 +237485,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47487] = 5, - ACTIONS(497), 1, + [46983] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3009), 1, - anon_sym_LBRACK, - STATE(2299), 1, + STATE(2294), 2, sym_line_comment, - ACTIONS(3011), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + sym_block_comment, + ACTIONS(2999), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [47549] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3133), 1, - anon_sym_LBRACK, - STATE(2300), 1, - sym_line_comment, - ACTIONS(3135), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_map_LBRACK, + ACTIONS(3001), 24, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [47046] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2995), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(2997), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [47611] = 5, - ACTIONS(497), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [47109] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3137), 1, + anon_sym_SLASH_STAR, + ACTIONS(2869), 1, + anon_sym_DOT, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(2301), 1, + STATE(2296), 2, sym_line_comment, - ACTIONS(3139), 47, + sym_block_comment, + ACTIONS(3020), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -242458,21 +237660,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47673] = 5, - ACTIONS(497), 1, + [47174] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3341), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(2302), 1, + ACTIONS(3015), 1, + anon_sym_DOT, + STATE(2297), 2, sym_line_comment, - ACTIONS(3343), 47, + sym_block_comment, + ACTIONS(3013), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -242515,16 +237719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47735] = 5, - ACTIONS(497), 1, + [47239] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3149), 1, + anon_sym_SLASH_STAR, + ACTIONS(2921), 1, anon_sym_LBRACK, - STATE(2303), 1, + STATE(2298), 2, sym_line_comment, - ACTIONS(3151), 47, + sym_block_comment, + ACTIONS(2923), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242572,16 +237777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47797] = 5, - ACTIONS(497), 1, + [47302] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3005), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(2304), 1, + STATE(2299), 2, sym_line_comment, - ACTIONS(3007), 47, + sym_block_comment, + ACTIONS(3013), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242629,16 +237835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47859] = 5, - ACTIONS(497), 1, + [47365] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3121), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, anon_sym_LBRACK, - STATE(2305), 1, + STATE(2300), 2, sym_line_comment, - ACTIONS(3123), 47, + sym_block_comment, + ACTIONS(3442), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242686,22 +237893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47921] = 6, - ACTIONS(497), 1, + [47428] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2673), 1, - anon_sym_DOT, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3400), 1, anon_sym_LBRACK, - STATE(2306), 1, + STATE(2301), 2, sym_line_comment, - ACTIONS(3135), 46, + sym_block_comment, + ACTIONS(3402), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -242744,16 +237951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [47985] = 5, - ACTIONS(497), 1, + [47491] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3289), 1, + anon_sym_SLASH_STAR, + ACTIONS(3392), 1, anon_sym_LBRACK, - STATE(2307), 1, + STATE(2302), 2, sym_line_comment, - ACTIONS(3291), 47, + sym_block_comment, + ACTIONS(3394), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242801,16 +238009,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48047] = 5, - ACTIONS(497), 1, + [47554] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2867), 1, + anon_sym_DOT, + ACTIONS(3018), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3448), 1, + anon_sym_fn, + ACTIONS(3450), 1, + anon_sym_STAR, + ACTIONS(3452), 1, + anon_sym_struct, + ACTIONS(3454), 1, + anon_sym_QMARK, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(3458), 1, + anon_sym_LBRACK2, + ACTIONS(3460), 1, + anon_sym_AMP, + ACTIONS(3462), 1, + anon_sym_shared, + ACTIONS(3464), 1, + anon_sym_map_LBRACK, + ACTIONS(3466), 1, + anon_sym_chan, + ACTIONS(3468), 1, + anon_sym_thread, + ACTIONS(3470), 1, + anon_sym_atomic, + ACTIONS(4984), 1, + anon_sym_LPAREN, + ACTIONS(4986), 1, + anon_sym_LT2, + STATE(3446), 1, + sym_plain_type, + STATE(3472), 1, + sym_signature, + STATE(3774), 1, + sym_generic_parameters, + STATE(4460), 1, + sym_reference_expression, + STATE(2303), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3429), 1, + STATE(2485), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3433), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3464), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3020), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [47665] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_LBRACK, - STATE(2308), 1, + STATE(2304), 2, sym_line_comment, - ACTIONS(3431), 47, + sym_block_comment, + ACTIONS(3398), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242858,16 +238149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48109] = 5, - ACTIONS(497), 1, + [47728] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3329), 1, + anon_sym_SLASH_STAR, + ACTIONS(3360), 1, anon_sym_LBRACK, - STATE(2309), 1, + STATE(2305), 2, sym_line_comment, - ACTIONS(3331), 47, + sym_block_comment, + ACTIONS(3362), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242915,16 +238207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48171] = 5, - ACTIONS(497), 1, + [47791] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3129), 1, + anon_sym_SLASH_STAR, + ACTIONS(3140), 1, anon_sym_LBRACK, - STATE(2310), 1, + STATE(2306), 2, sym_line_comment, - ACTIONS(3131), 47, + sym_block_comment, + ACTIONS(3142), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242972,83 +238265,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48233] = 15, - ACTIONS(497), 1, + [47854] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2311), 1, + STATE(2307), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, + sym_block_comment, + ACTIONS(3044), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(3029), 35, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4920), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1807), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [48315] = 5, - ACTIONS(497), 1, + [47919] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3125), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(2312), 1, + STATE(2308), 2, sym_line_comment, - ACTIONS(3127), 47, + sym_block_comment, + ACTIONS(3020), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243096,411 +238382,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48377] = 15, - ACTIONS(497), 1, + [47982] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3022), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2313), 1, + STATE(2309), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, + sym_block_comment, + ACTIONS(3024), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4920), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1899), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [48459] = 19, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4940), 1, - anon_sym_in, - ACTIONS(4942), 1, - anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2314), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4922), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48549] = 18, - ACTIONS(497), 1, + [48045] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4940), 1, - anon_sym_in, - ACTIONS(4942), 1, - anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2315), 1, + STATE(2310), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4918), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4922), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4920), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 17, + sym_block_comment, + ACTIONS(3116), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym___global, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, sym_identifier, anon_sym_AT_LBRACK, - [48637] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2316), 1, - sym_line_comment, - ACTIONS(3107), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3109), 24, + ACTIONS(3035), 35, anon_sym_DOT, anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [48699] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2317), 1, - sym_line_comment, - ACTIONS(2747), 13, - anon_sym_DOT, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2745), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48760] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(4892), 1, anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2318), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [48841] = 6, - ACTIONS(497), 1, + [48110] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, anon_sym_LBRACK, - STATE(2319), 1, + STATE(2311), 2, sym_line_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2747), 44, + sym_block_comment, + ACTIONS(3214), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym___global, @@ -243516,6 +238532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -243540,579 +238557,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [48904] = 15, - ACTIONS(497), 1, + [48173] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3404), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2320), 1, + STATE(2312), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1899), 24, + sym_block_comment, + ACTIONS(3406), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [48985] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - STATE(2321), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1889), 9, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1887), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49068] = 26, - ACTIONS(497), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [48236] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, + anon_sym_SLASH_STAR, + ACTIONS(3408), 1, anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4916), 1, - anon_sym_as, - ACTIONS(4924), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, - anon_sym_DASH_DASH, - ACTIONS(4934), 1, - anon_sym_or, - ACTIONS(4936), 1, - anon_sym_is, - ACTIONS(4938), 1, - anon_sym_BANGis, - ACTIONS(5010), 1, - anon_sym_AMP_AMP, - ACTIONS(5012), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5014), 1, - anon_sym_in, - ACTIONS(5016), 1, - anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2322), 1, + STATE(2313), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5008), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1871), 8, + sym_block_comment, + ACTIONS(3410), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49171] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4916), 1, - anon_sym_as, - ACTIONS(4924), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, - anon_sym_DASH_DASH, - ACTIONS(4934), 1, - anon_sym_or, - ACTIONS(4936), 1, - anon_sym_is, - ACTIONS(4938), 1, - anon_sym_BANGis, - ACTIONS(5010), 1, - anon_sym_AMP_AMP, - ACTIONS(5012), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5014), 1, - anon_sym_in, - ACTIONS(5016), 1, - anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2323), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5008), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1769), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [49274] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(4916), 1, - anon_sym_as, - ACTIONS(4924), 1, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, anon_sym_DASH_DASH, - ACTIONS(4934), 1, - anon_sym_or, - ACTIONS(4936), 1, - anon_sym_is, - ACTIONS(4938), 1, - anon_sym_BANGis, - ACTIONS(5010), 1, - anon_sym_AMP_AMP, - ACTIONS(5012), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5014), 1, - anon_sym_in, - ACTIONS(5016), 1, - anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2324), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(5008), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3756), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49377] = 19, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - ACTIONS(5010), 1, anon_sym_AMP_AMP, - ACTIONS(5014), 1, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5016), 1, anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2325), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [48299] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3172), 1, + anon_sym_LBRACK, + STATE(2314), 2, sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, + sym_block_comment, + ACTIONS(3174), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5008), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 15, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - [49466] = 16, + anon_sym_AT_LBRACK, + [48362] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_LBRACK, + STATE(2315), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(3190), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - STATE(2326), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1837), 9, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1835), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49549] = 16, + sym_identifier, + anon_sym_AT_LBRACK, + [48425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2865), 1, + anon_sym_LBRACK, + STATE(2316), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(2867), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - STATE(2327), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1925), 9, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1923), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49632] = 18, - ACTIONS(497), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [48488] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4886), 1, anon_sym_LPAREN, ACTIONS(4888), 1, @@ -244121,17 +238860,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5014), 1, + ACTIONS(4934), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4944), 1, + anon_sym_DASH_DASH, + ACTIONS(4952), 1, + anon_sym_or, + ACTIONS(4954), 1, + anon_sym_is, + ACTIONS(4956), 1, + anon_sym_BANGis, + ACTIONS(4994), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4998), 1, anon_sym_in, - ACTIONS(5016), 1, + ACTIONS(5000), 1, anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + STATE(2232), 1, sym_or_block, - STATE(2328), 1, - sym_line_comment, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, @@ -244139,76 +238892,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(2317), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5008), 6, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4990), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 16, + ACTIONS(2071), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, sym_identifier, - [49719] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(4886), 1, - anon_sym_LPAREN, - ACTIONS(4888), 1, - anon_sym_LBRACK, - ACTIONS(4890), 1, - anon_sym_QMARK, - ACTIONS(4892), 1, - anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, - sym_or_block, - STATE(2329), 1, - sym_line_comment, - STATE(4328), 1, - sym_type_parameters, - ACTIONS(4884), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4894), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4988), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, ACTIONS(4990), 8, anon_sym_STAR, anon_sym_SLASH, @@ -244218,36 +238925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [49800] = 26, - ACTIONS(497), 1, + [48592] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4886), 1, anon_sym_LPAREN, ACTIONS(4888), 1, @@ -244256,33 +238938,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4916), 1, + ACTIONS(4934), 1, anon_sym_as, - ACTIONS(4924), 1, + ACTIONS(4942), 1, anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, + ACTIONS(4944), 1, anon_sym_DASH_DASH, - ACTIONS(4934), 1, + ACTIONS(4952), 1, anon_sym_or, - ACTIONS(4936), 1, + ACTIONS(4954), 1, anon_sym_is, - ACTIONS(4938), 1, + ACTIONS(4956), 1, anon_sym_BANGis, - ACTIONS(5010), 1, + ACTIONS(4994), 1, anon_sym_AMP_AMP, - ACTIONS(5012), 1, + ACTIONS(4996), 1, anon_sym_PIPE_PIPE, - ACTIONS(5014), 1, + ACTIONS(4998), 1, anon_sym_in, - ACTIONS(5016), 1, + ACTIONS(5000), 1, anon_sym_BANGin, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + STATE(2232), 1, sym_or_block, - STATE(2330), 1, - sym_line_comment, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, @@ -244290,19 +238970,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(2318), 2, + sym_line_comment, + sym_block_comment, ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5008), 6, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3764), 8, + ACTIONS(3754), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244320,19 +239003,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49903] = 6, - ACTIONS(497), 1, + [48696] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3053), 1, + anon_sym_SLASH_STAR, + ACTIONS(2969), 1, anon_sym_LBRACK, - STATE(2331), 1, - sym_line_comment, - ACTIONS(2869), 2, + ACTIONS(2759), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(3055), 44, + STATE(2319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2971), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244377,67 +239061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [49966] = 5, + [48760] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2332), 1, - sym_line_comment, - ACTIONS(5020), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(5018), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [50027] = 14, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4886), 1, anon_sym_LPAREN, ACTIONS(4888), 1, @@ -244446,13 +239074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4892), 1, anon_sym_BANG, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + STATE(2232), 1, sym_or_block, - STATE(2333), 1, - sym_line_comment, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, @@ -244460,6 +239086,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, + STATE(2320), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, ACTIONS(4990), 8, anon_sym_STAR, anon_sym_SLASH, @@ -244469,7 +239103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 28, + ACTIONS(1881), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244477,9 +239111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -244489,7 +239120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -244498,70 +239128,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, sym_identifier, - [50106] = 5, + [48842] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2334), 1, - sym_line_comment, - ACTIONS(2663), 13, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4990), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2661), 34, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50167] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [48924] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2335), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2322), 2, sym_line_comment, - ACTIONS(4974), 22, + sym_block_comment, + ACTIONS(4970), 22, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_PLUS, @@ -244584,7 +239226,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4972), 25, + ACTIONS(4968), 25, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -244610,18 +239252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [50228] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [48986] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5022), 1, - anon_sym_else, - STATE(2336), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2323), 2, sym_line_comment, - STATE(2359), 1, - sym_else_branch, - ACTIONS(2481), 13, + sym_block_comment, + ACTIONS(2703), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -244635,11 +239274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2479), 31, + ACTIONS(2701), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -244661,17 +239301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50292] = 29, - ACTIONS(497), 1, + [49048] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(4886), 1, anon_sym_LPAREN, ACTIONS(4888), 1, @@ -244680,64 +239322,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(4894), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4934), 1, anon_sym_as, - ACTIONS(4924), 1, + ACTIONS(4942), 1, anon_sym_PLUS_PLUS, - ACTIONS(4926), 1, + ACTIONS(4944), 1, anon_sym_DASH_DASH, - ACTIONS(4928), 1, - anon_sym_LBRACK2, - ACTIONS(4930), 1, - anon_sym_AMP_AMP, - ACTIONS(4932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4934), 1, + ACTIONS(4952), 1, anon_sym_or, - ACTIONS(4936), 1, + ACTIONS(4954), 1, anon_sym_is, - ACTIONS(4938), 1, + ACTIONS(4956), 1, anon_sym_BANGis, - ACTIONS(4940), 1, + ACTIONS(4994), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4998), 1, anon_sym_in, - ACTIONS(4942), 1, + ACTIONS(5000), 1, anon_sym_BANGin, - ACTIONS(4944), 1, - anon_sym_AT_LBRACK, - STATE(2212), 1, - sym_argument_list, - STATE(2225), 1, + STATE(2232), 1, sym_or_block, - STATE(2337), 1, - sym_line_comment, - STATE(3689), 1, - sym_attribute, - STATE(4328), 1, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, sym_type_parameters, ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4918), 4, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5024), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4922), 6, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4920), 8, + ACTIONS(3724), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4990), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -244746,50 +239387,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50400] = 7, + [49152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5022), 1, - anon_sym_else, - STATE(2338), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, + anon_sym_LBRACK, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2325), 2, sym_line_comment, - STATE(2429), 1, - sym_else_branch, - ACTIONS(2475), 13, + sym_block_comment, + ACTIONS(2703), 44, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2473), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -244801,35 +239443,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50464] = 6, - ACTIONS(497), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [49216] = 14, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(3053), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - STATE(2339), 1, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2326), 2, sym_line_comment, - ACTIONS(3055), 43, + sym_block_comment, + ACTIONS(4990), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -244839,78 +239502,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [50525] = 13, - ACTIONS(497), 1, + [49296] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5010), 1, anon_sym_BANG, - STATE(2340), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(1889), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1847), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -244920,33 +239577,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [50600] = 6, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [49380] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(2341), 1, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2328), 2, sym_line_comment, - ACTIONS(2747), 43, + sym_block_comment, + ACTIONS(4988), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4990), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -244956,35 +239638,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [50661] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [49462] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2329), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5038), 1, - anon_sym_DOLLARelse, - STATE(2342), 1, + ACTIONS(5020), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(5018), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [49524] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2330), 2, sym_line_comment, - ACTIONS(2861), 13, + sym_block_comment, + ACTIONS(2669), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -244998,11 +239725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2859), 31, + ACTIONS(2667), 34, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -245024,100 +239752,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50722] = 28, - ACTIONS(497), 1, + [49586] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5042), 1, - anon_sym_COMMA, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5064), 1, - anon_sym_in, - ACTIONS(5066), 1, - anon_sym_BANGin, - STATE(2343), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(3604), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(1761), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5044), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5048), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50827] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5068), 1, - anon_sym_DOLLARelse, - STATE(2344), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + STATE(2331), 2, sym_line_comment, - ACTIONS(2691), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(1925), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245125,17 +239798,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2689), 31, + ACTIONS(1923), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -245143,7 +239812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -245154,25 +239822,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50888] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [49670] = 16, ACTIONS(5), 1, - sym_block_comment, - STATE(2345), 1, - sym_line_comment, - STATE(2370), 1, - sym_type_parameters, - ACTIONS(2741), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + STATE(2332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1913), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -245180,17 +239866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2739), 31, + ACTIONS(1911), 27, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -245198,7 +239880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -245209,199 +239890,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50949] = 13, - ACTIONS(497), 1, + [49754] = 18, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(4892), 1, anon_sym_BANG, - STATE(2346), 1, - sym_line_comment, - STATE(2560), 1, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + STATE(2232), 1, sym_or_block, - STATE(2561), 1, + STATE(2233), 1, sym_argument_list, - STATE(4345), 1, + STATE(4332), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1837), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(2333), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4990), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1849), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51024] = 13, - ACTIONS(497), 1, + sym_identifier, + [49842] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(4892), 1, anon_sym_BANG, - STATE(2347), 1, - sym_line_comment, - STATE(2560), 1, + ACTIONS(4994), 1, + anon_sym_AMP_AMP, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + STATE(2232), 1, sym_or_block, - STATE(2561), 1, + STATE(2233), 1, sym_argument_list, - STATE(4345), 1, + STATE(4332), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(4894), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1925), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4990), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1849), 15, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + sym_identifier, + [49932] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, + anon_sym_LPAREN, + ACTIONS(4888), 1, + anon_sym_LBRACK, + ACTIONS(4890), 1, + anon_sym_QMARK, + ACTIONS(4892), 1, + anon_sym_BANG, + ACTIONS(4934), 1, + anon_sym_as, + ACTIONS(4942), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4944), 1, + anon_sym_DASH_DASH, + ACTIONS(4952), 1, + anon_sym_or, + ACTIONS(4954), 1, + anon_sym_is, + ACTIONS(4956), 1, + anon_sym_BANGis, + ACTIONS(4994), 1, + anon_sym_AMP_AMP, + ACTIONS(4996), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4998), 1, anon_sym_in, + ACTIONS(5000), 1, anon_sym_BANGin, - [51099] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2348), 1, - sym_line_comment, - ACTIONS(3351), 13, + STATE(2232), 1, + sym_or_block, + STATE(2233), 1, + sym_argument_list, + STATE(4332), 1, + sym_type_parameters, + ACTIONS(4884), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4894), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4988), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_CARET, + ACTIONS(4992), 6, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3349), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(1933), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4990), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51157] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50036] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2349), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5022), 1, + anon_sym_else, + STATE(2390), 1, + sym_else_branch, + STATE(2336), 2, sym_line_comment, - ACTIONS(3215), 13, + sym_block_comment, + ACTIONS(2481), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -245415,7 +240141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3213), 31, + ACTIONS(2479), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -245447,14 +240173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51215] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50101] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2350), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5022), 1, + anon_sym_else, + STATE(2396), 1, + sym_else_branch, + STATE(2337), 2, sym_line_comment, - ACTIONS(3127), 13, + sym_block_comment, + ACTIONS(2491), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -245468,7 +240199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3125), 31, + ACTIONS(2489), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -245500,72 +240231,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51273] = 26, - ACTIONS(497), 1, + [50166] = 29, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(4886), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(4888), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(4890), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(4892), 1, anon_sym_BANG, - ACTIONS(5040), 1, + ACTIONS(4894), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4934), 1, anon_sym_as, - ACTIONS(5050), 1, + ACTIONS(4942), 1, anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, + ACTIONS(4944), 1, anon_sym_DASH_DASH, - ACTIONS(5058), 1, + ACTIONS(4946), 1, + anon_sym_LBRACK2, + ACTIONS(4948), 1, + anon_sym_AMP_AMP, + ACTIONS(4950), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4952), 1, anon_sym_or, - ACTIONS(5060), 1, + ACTIONS(4954), 1, anon_sym_is, - ACTIONS(5062), 1, + ACTIONS(4956), 1, anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, + ACTIONS(4958), 1, anon_sym_in, - ACTIONS(5082), 1, + ACTIONS(4960), 1, anon_sym_BANGin, - STATE(2351), 1, - sym_line_comment, - STATE(2560), 1, + ACTIONS(4962), 1, + anon_sym_AT_LBRACK, + STATE(2232), 1, sym_or_block, - STATE(2561), 1, + STATE(2233), 1, sym_argument_list, - STATE(4345), 1, + STATE(3692), 1, + sym_attribute, + STATE(4332), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(4884), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4936), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1871), 5, + ACTIONS(5024), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5074), 6, + sym_identifier, + ACTIONS(4940), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 8, + ACTIONS(4938), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -245574,96 +240311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51373] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50275] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5086), 1, - anon_sym_LBRACE, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - STATE(2336), 1, - sym_block, - STATE(2352), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51489] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2353), 1, + ACTIONS(5026), 1, + anon_sym_DOLLARelse, + STATE(2339), 2, sym_line_comment, - ACTIONS(3347), 13, + sym_block_comment, + ACTIONS(2751), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -245677,7 +240335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3345), 31, + ACTIONS(2749), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -245709,345 +240367,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51547] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50337] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(2354), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5028), 1, + anon_sym_DOLLARelse, + STATE(2340), 2, sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2741), 1, - sym_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2727), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5098), 4, + ACTIONS(2725), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51663] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5106), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(1839), 1, - sym_block, - STATE(2355), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51779] = 34, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50399] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(1946), 1, - sym_block, - STATE(2356), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + STATE(2556), 1, sym_or_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51895] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2357), 1, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2341), 2, sym_line_comment, - ACTIONS(3355), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(1925), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3353), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51953] = 5, + [50475] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2358), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, + anon_sym_LBRACK, + STATE(2342), 2, sym_line_comment, - ACTIONS(3363), 13, + sym_block_comment, + ACTIONS(2971), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3361), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -246059,16 +240541,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [50537] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2359), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2480), 1, + sym_type_parameters, + STATE(2343), 2, sym_line_comment, - ACTIONS(3203), 13, + sym_block_comment, + ACTIONS(2695), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246082,7 +240566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3201), 31, + ACTIONS(2693), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246114,72 +240598,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52069] = 26, - ACTIONS(497), 1, + [50599] = 28, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5040), 1, + ACTIONS(5042), 1, anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, + ACTIONS(5044), 1, + anon_sym_COMMA, ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, anon_sym_DASH_DASH, + ACTIONS(5056), 1, + anon_sym_AMP_AMP, ACTIONS(5058), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(5060), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, + ACTIONS(5066), 1, anon_sym_in, - ACTIONS(5082), 1, + ACTIONS(5068), 1, anon_sym_BANGin, - STATE(2360), 1, - sym_line_comment, - STATE(2560), 1, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(3660), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1769), 5, + STATE(2344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1723), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5074), 6, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5050), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 8, + ACTIONS(5048), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -246188,78 +240676,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [52169] = 5, + [50705] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2361), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, + anon_sym_LBRACK, + ACTIONS(2759), 1, + anon_sym_LBRACE, + STATE(2345), 2, sym_line_comment, - ACTIONS(3151), 13, + sym_block_comment, + ACTIONS(2703), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3149), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + [50767] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1913), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52227] = 5, - ACTIONS(497), 1, + [50843] = 13, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2661), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, anon_sym_LBRACK, - STATE(2362), 1, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2347), 2, sym_line_comment, - ACTIONS(2663), 43, + sym_block_comment, + ACTIONS(1849), 34, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -246274,9 +240845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -246286,22 +240854,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [52285] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50919] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2363), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2348), 2, sym_line_comment, - ACTIONS(3187), 13, + sym_block_comment, + ACTIONS(3206), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246315,7 +240880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3185), 31, + ACTIONS(3204), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246347,14 +240912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52343] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [50978] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2364), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2349), 2, sym_line_comment, - ACTIONS(3367), 13, + sym_block_comment, + ACTIONS(3342), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246368,7 +240934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3365), 31, + ACTIONS(3340), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246400,88 +240966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52401] = 26, - ACTIONS(497), 1, + [51037] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5064), 1, - anon_sym_in, - ACTIONS(5066), 1, - anon_sym_BANGin, - ACTIONS(5126), 1, - anon_sym_is, - ACTIONS(5128), 1, - anon_sym_BANGis, - STATE(2365), 1, + STATE(2350), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1841), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5048), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [52501] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2366), 1, - sym_line_comment, - ACTIONS(3423), 13, + ACTIONS(3214), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246495,7 +240988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3421), 31, + ACTIONS(3212), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246527,14 +241020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52559] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51096] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2367), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2351), 2, sym_line_comment, - ACTIONS(3419), 13, + sym_block_comment, + ACTIONS(3362), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246548,7 +241042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3417), 31, + ACTIONS(3360), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246580,96 +241074,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52617] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51155] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2352), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(3230), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3228), 31, + anon_sym_SEMI, anon_sym_as, - ACTIONS(5088), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5100), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5106), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_block, - STATE(2368), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [52733] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [51214] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2369), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2353), 2, sym_line_comment, - ACTIONS(3415), 13, + sym_block_comment, + ACTIONS(3414), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246683,7 +241150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3413), 31, + ACTIONS(3412), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246715,14 +241182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52791] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51273] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2370), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2354), 2, sym_line_comment, - ACTIONS(3077), 13, + sym_block_comment, + ACTIONS(3390), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246736,7 +241204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3075), 31, + ACTIONS(3388), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246768,14 +241236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52849] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51332] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2371), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2355), 2, sym_line_comment, - ACTIONS(3411), 13, + sym_block_comment, + ACTIONS(3386), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246789,7 +241258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3409), 31, + ACTIONS(3384), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246821,14 +241290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52907] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51391] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2372), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2356), 2, sym_line_comment, - ACTIONS(3139), 13, + sym_block_comment, + ACTIONS(3226), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246842,7 +241312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3137), 31, + ACTIONS(3224), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -246874,96 +241344,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52965] = 34, + [51450] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + ACTIONS(5042), 1, anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, + ACTIONS(5052), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, + ACTIONS(5054), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, + ACTIONS(5056), 1, anon_sym_AMP_AMP, - ACTIONS(5108), 1, + ACTIONS(5058), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, + ACTIONS(5060), 1, anon_sym_or, - ACTIONS(5112), 1, + ACTIONS(5062), 1, anon_sym_is, - ACTIONS(5114), 1, + ACTIONS(5064), 1, anon_sym_BANGis, - ACTIONS(5116), 1, + ACTIONS(5066), 1, anon_sym_in, - ACTIONS(5118), 1, + ACTIONS(5068), 1, anon_sym_BANGin, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(2373), 1, - sym_line_comment, - STATE(2436), 1, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, sym_argument_list, - STATE(2437), 1, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(2071), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [51551] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, + anon_sym_in, + ACTIONS(5082), 1, + anon_sym_BANGin, + STATE(2556), 1, sym_or_block, - STATE(2537), 1, - sym_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(2071), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, + ACTIONS(5072), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [53081] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51652] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2374), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2359), 2, sym_line_comment, - ACTIONS(3287), 13, + sym_block_comment, + ACTIONS(3382), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -246977,7 +241516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 31, + ACTIONS(3380), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247009,14 +241548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53139] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51711] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2375), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2360), 2, sym_line_comment, - ACTIONS(3335), 13, + sym_block_comment, + ACTIONS(3322), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247030,7 +241570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3333), 31, + ACTIONS(3320), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247062,96 +241602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53197] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51770] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(2376), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2461), 1, - sym_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53313] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2377), 1, + STATE(2361), 2, sym_line_comment, - ACTIONS(3427), 13, + sym_block_comment, + ACTIONS(3314), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247165,7 +241624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3425), 31, + ACTIONS(3312), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247197,14 +241656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53371] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51829] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2378), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2362), 2, sym_line_comment, - ACTIONS(3431), 13, + sym_block_comment, + ACTIONS(3298), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247218,7 +241678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 31, + ACTIONS(3296), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247250,14 +241710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53429] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51888] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2379), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2363), 2, sym_line_comment, - ACTIONS(3395), 13, + sym_block_comment, + ACTIONS(3270), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247271,7 +241732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3393), 31, + ACTIONS(3268), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247303,14 +241764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53487] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [51947] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2380), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2364), 2, sym_line_comment, - ACTIONS(3435), 13, + sym_block_comment, + ACTIONS(3346), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247324,7 +241786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3433), 31, + ACTIONS(3344), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247356,16 +241818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53545] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52006] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3437), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3015), 1, anon_sym_DOT, - STATE(2381), 1, + STATE(2365), 2, sym_line_comment, - ACTIONS(3431), 12, + sym_block_comment, + ACTIONS(3013), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -247378,7 +241841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 31, + ACTIONS(3011), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247410,14 +241873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53605] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52067] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2382), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2366), 2, sym_line_comment, - ACTIONS(3442), 13, + sym_block_comment, + ACTIONS(3266), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247431,7 +241895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3440), 31, + ACTIONS(3264), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247463,14 +241927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53663] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52126] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2383), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2367), 2, sym_line_comment, - ACTIONS(3391), 13, + sym_block_comment, + ACTIONS(3262), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247484,7 +241949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3389), 31, + ACTIONS(3260), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247516,14 +241981,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53721] = 5, + [52185] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5056), 1, + anon_sym_AMP_AMP, + ACTIONS(5058), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5066), 1, + anon_sym_in, + ACTIONS(5068), 1, + anon_sym_BANGin, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2368), 2, + sym_line_comment, sym_block_comment, - STATE(2384), 1, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1933), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [52286] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2369), 2, sym_line_comment, - ACTIONS(3387), 13, + sym_block_comment, + ACTIONS(2923), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247537,7 +242078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3385), 31, + ACTIONS(2921), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247569,14 +242110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53779] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52345] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2385), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2370), 2, sym_line_comment, - ACTIONS(2869), 13, + sym_block_comment, + ACTIONS(3013), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247590,7 +242132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2871), 31, + ACTIONS(3011), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247622,14 +242164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53837] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52404] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2386), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2371), 2, sym_line_comment, - ACTIONS(3383), 13, + sym_block_comment, + ACTIONS(3258), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247643,7 +242186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3381), 31, + ACTIONS(3256), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247675,14 +242218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53895] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52463] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2387), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2372), 2, sym_line_comment, - ACTIONS(3379), 13, + sym_block_comment, + ACTIONS(3442), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247696,7 +242240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3377), 31, + ACTIONS(3440), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247728,14 +242272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53953] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52522] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2388), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2373), 2, sym_line_comment, - ACTIONS(3375), 13, + sym_block_comment, + ACTIONS(3218), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247749,7 +242294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3373), 31, + ACTIONS(3216), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247781,14 +242326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52581] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2389), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2374), 2, sym_line_comment, - ACTIONS(3371), 13, + sym_block_comment, + ACTIONS(3402), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247802,7 +242348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3369), 31, + ACTIONS(3400), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247834,67 +242380,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54069] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52640] = 34, ACTIONS(5), 1, - sym_block_comment, - STATE(2390), 1, - sym_line_comment, - ACTIONS(3339), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(5088), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + STATE(1295), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5094), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [52757] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, anon_sym_QMARK, + ACTIONS(5038), 1, anon_sym_BANG, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3337), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [54127] = 5, + [52834] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, + anon_sym_in, + ACTIONS(5082), 1, + anon_sym_BANGin, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2377), 2, + sym_line_comment, sym_block_comment, - STATE(2391), 1, + ACTIONS(5070), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1933), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5074), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [52935] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2378), 2, sym_line_comment, - ACTIONS(3283), 13, + sym_block_comment, + ACTIONS(3254), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -247908,7 +242623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3281), 31, + ACTIONS(3252), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247940,16 +242655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54185] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [52994] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2379), 2, + sym_line_comment, sym_block_comment, - ACTIONS(2673), 1, + ACTIONS(3250), 13, anon_sym_DOT, - STATE(2392), 1, - sym_line_comment, - ACTIONS(3135), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -247962,7 +242677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3133), 31, + ACTIONS(3248), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -247994,14 +242709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54245] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53053] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2393), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2380), 2, sym_line_comment, - ACTIONS(3131), 13, + sym_block_comment, + ACTIONS(3234), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248015,7 +242731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3129), 31, + ACTIONS(3232), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248047,14 +242763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54303] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53112] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2394), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2381), 2, sym_line_comment, - ACTIONS(3319), 13, + sym_block_comment, + ACTIONS(3005), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248068,7 +242785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3317), 31, + ACTIONS(3003), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248100,14 +242817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54361] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53171] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2395), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2382), 2, sym_line_comment, - ACTIONS(3399), 13, + sym_block_comment, + ACTIONS(3194), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248121,7 +242839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3397), 31, + ACTIONS(3192), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248153,46 +242871,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54419] = 5, - ACTIONS(497), 1, + [53230] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - STATE(2396), 1, + STATE(2383), 2, sym_line_comment, - ACTIONS(2747), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(3186), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3184), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -248200,95 +242919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54477] = 27, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53289] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5064), 1, - anon_sym_in, - ACTIONS(5066), 1, - anon_sym_BANGin, - ACTIONS(5136), 1, - anon_sym_COMMA, - STATE(2397), 1, + STATE(2384), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3552), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5044), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5048), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54579] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2398), 1, - sym_line_comment, - ACTIONS(3359), 13, + ACTIONS(3190), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248302,7 +242947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3357), 31, + ACTIONS(3188), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248334,14 +242979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54637] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53348] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2399), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2385), 2, sym_line_comment, - ACTIONS(3279), 13, + sym_block_comment, + ACTIONS(3222), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248355,7 +243001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3277), 31, + ACTIONS(3220), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248387,22 +243033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54695] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53407] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3183), 1, - anon_sym_COLON, - STATE(2400), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2386), 2, sym_line_comment, - ACTIONS(3181), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2976), 12, + sym_block_comment, + ACTIONS(2909), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248410,15 +243049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2973), 26, + ACTIONS(2907), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -248426,6 +243069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -248442,14 +243086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [54757] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, + [53466] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2401), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2387), 2, sym_line_comment, - ACTIONS(3343), 13, + sym_block_comment, + ACTIONS(2695), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248463,7 +243109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3341), 31, + ACTIONS(2693), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248495,34 +243141,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54815] = 14, - ACTIONS(497), 1, + [53525] = 18, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5038), 1, anon_sym_BANG, - STATE(2402), 1, - sym_line_comment, - STATE(2560), 1, + ACTIONS(5066), 1, + anon_sym_in, + ACTIONS(5068), 1, + anon_sym_BANGin, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5072), 8, + STATE(2388), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5048), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -248531,40 +243194,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 25, + ACTIONS(1849), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [54891] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [53610] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2403), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2389), 2, sym_line_comment, - ACTIONS(3331), 13, + sym_block_comment, + ACTIONS(3040), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248578,7 +243230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3329), 31, + ACTIONS(3038), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248610,210 +243262,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54949] = 15, - ACTIONS(497), 1, + [53669] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - STATE(2404), 1, + STATE(2390), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, + sym_block_comment, + ACTIONS(3182), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3180), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55027] = 18, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53728] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5080), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5088), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5082), 1, + ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2405), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, + ACTIONS(5120), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(4345), 1, + STATE(2379), 1, + sym_or_block, + STATE(2861), 1, + sym_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5074), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 8, + ACTIONS(5092), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [55111] = 19, - ACTIONS(497), 1, + [53845] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5080), 1, - anon_sym_in, - ACTIONS(5082), 1, - anon_sym_BANGin, - STATE(2406), 1, + STATE(2392), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, + sym_block_comment, + ACTIONS(3210), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5074), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3208), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [55197] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53904] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2407), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2393), 2, sym_line_comment, - ACTIONS(3327), 13, + sym_block_comment, + ACTIONS(3154), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -248827,7 +243475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3325), 31, + ACTIONS(3152), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -248859,140 +243507,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55255] = 15, - ACTIONS(497), 1, + [53963] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - STATE(2408), 1, + STATE(2394), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, + sym_block_comment, + ACTIONS(3174), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 8, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1899), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3172), 31, anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55333] = 15, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54022] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5010), 1, anon_sym_BANG, - STATE(2409), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5088), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(4345), 1, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5070), 4, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5072), 8, - anon_sym_STAR, + ACTIONS(5094), 3, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1807), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, + [54139] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3178), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3176), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55411] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [54198] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2410), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2397), 2, sym_line_comment, - ACTIONS(3403), 13, + sym_block_comment, + ACTIONS(3378), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249006,7 +243720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3401), 31, + ACTIONS(3376), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249038,14 +243752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55469] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54257] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2411), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5124), 1, + anon_sym_BANG, + STATE(2398), 2, sym_line_comment, - ACTIONS(3323), 13, + sym_block_comment, + ACTIONS(2975), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249055,11 +243772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3321), 31, + ACTIONS(2973), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249091,104 +243807,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55527] = 34, + [54318] = 19, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, + ACTIONS(5056), 1, anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, + ACTIONS(5066), 1, anon_sym_in, - ACTIONS(5118), 1, + ACTIONS(5068), 1, anon_sym_BANGin, - ACTIONS(5138), 1, - anon_sym_LBRACE, - STATE(1294), 1, - sym_block, - STATE(2412), 1, - sym_line_comment, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + STATE(2556), 1, sym_or_block, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_CARET, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, + ACTIONS(5048), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55643] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1849), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [54405] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3167), 1, - anon_sym_COLON, - STATE(2413), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2400), 2, sym_line_comment, - ACTIONS(3165), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2970), 12, + sym_block_comment, + ACTIONS(3238), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249196,15 +243891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2967), 26, + ACTIONS(3236), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -249212,6 +243911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -249228,14 +243928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [55705] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, + [54464] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2414), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2401), 2, sym_line_comment, - ACTIONS(3119), 13, + sym_block_comment, + ACTIONS(2905), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249249,7 +243951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3117), 31, + ACTIONS(2903), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249281,14 +243983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55763] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54523] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2415), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3044), 1, + anon_sym_COLON, + STATE(2402), 2, sym_line_comment, - ACTIONS(3263), 13, + sym_block_comment, + ACTIONS(3042), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3029), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249296,19 +244007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3261), 31, - anon_sym_SEMI, + ACTIONS(3026), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -249316,7 +244023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -249333,15 +244039,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [55821] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54586] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2416), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3116), 1, + anon_sym_COLON, + STATE(2403), 2, sym_line_comment, - ACTIONS(3123), 13, + sym_block_comment, + ACTIONS(3114), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3035), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249349,19 +244063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3121), 31, - anon_sym_SEMI, + ACTIONS(3032), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -249369,7 +244079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -249386,15 +244095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [55879] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54649] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2417), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2404), 2, sym_line_comment, - ACTIONS(3251), 13, + sym_block_comment, + ACTIONS(3170), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249408,7 +244117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3249), 31, + ACTIONS(3168), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249440,14 +244149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55937] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54708] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2418), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2405), 2, sym_line_comment, - ACTIONS(3311), 13, + sym_block_comment, + ACTIONS(3024), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249461,7 +244171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3309), 31, + ACTIONS(3022), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249493,14 +244203,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [55995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54767] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2419), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2406), 2, sym_line_comment, - ACTIONS(3303), 13, + sym_block_comment, + ACTIONS(2943), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249514,7 +244225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3301), 31, + ACTIONS(2941), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249546,14 +244257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56053] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54826] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2420), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2407), 2, sym_line_comment, - ACTIONS(3243), 13, + sym_block_comment, + ACTIONS(2901), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249567,7 +244279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3241), 31, + ACTIONS(2899), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249599,14 +244311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56111] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54885] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2421), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2408), 2, sym_line_comment, - ACTIONS(3299), 13, + sym_block_comment, + ACTIONS(3166), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249620,7 +244333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 31, + ACTIONS(3164), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249652,14 +244365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56169] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [54944] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2422), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2409), 2, sym_line_comment, - ACTIONS(3291), 13, + sym_block_comment, + ACTIONS(2913), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249673,7 +244387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3289), 31, + ACTIONS(2911), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249705,24 +244419,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56227] = 34, + [55003] = 27, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5056), 1, + anon_sym_AMP_AMP, + ACTIONS(5058), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5066), 1, + anon_sym_in, + ACTIONS(5068), 1, + anon_sym_BANGin, + ACTIONS(5126), 1, + anon_sym_COMMA, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2410), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3546), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55106] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3502), 1, anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -249748,26 +244538,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5140), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1717), 1, + STATE(1906), 1, sym_block, - STATE(2423), 1, - sym_line_comment, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(3986), 1, + STATE(3977), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -249787,14 +244578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [56343] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55223] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2424), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2412), 2, sym_line_comment, - ACTIONS(3135), 13, + sym_block_comment, + ACTIONS(2917), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249808,7 +244600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3133), 31, + ACTIONS(2915), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249840,14 +244632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56401] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55282] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2425), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2413), 2, sym_line_comment, - ACTIONS(3231), 13, + sym_block_comment, + ACTIONS(2927), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249861,7 +244654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3229), 31, + ACTIONS(2925), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249893,14 +244686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56459] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55341] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2426), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2414), 2, sym_line_comment, - ACTIONS(3227), 13, + sym_block_comment, + ACTIONS(2931), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249914,7 +244708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3225), 31, + ACTIONS(2929), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249946,14 +244740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56517] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55400] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2427), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2415), 2, sym_line_comment, - ACTIONS(3223), 13, + sym_block_comment, + ACTIONS(2759), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -249967,7 +244762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3221), 31, + ACTIONS(2761), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -249999,14 +244794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56575] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55459] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2428), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2416), 2, sym_line_comment, - ACTIONS(3211), 13, + sym_block_comment, + ACTIONS(3242), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250020,7 +244816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3209), 31, + ACTIONS(3240), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250052,120 +244848,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56633] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55518] = 34, ACTIONS(5), 1, - sym_block_comment, - STATE(2429), 1, - sym_line_comment, - ACTIONS(3207), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3205), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5106), 1, anon_sym_AMP_AMP, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5116), 1, anon_sym_in, + ACTIONS(5118), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [56691] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2430), 1, - sym_line_comment, - ACTIONS(3195), 13, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(1886), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5094), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3193), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55635] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5088), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5106), 1, anon_sym_AMP_AMP, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5116), 1, anon_sym_in, + ACTIONS(5118), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [56749] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5132), 1, + anon_sym_LBRACE, + STATE(1766), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2418), 2, + sym_line_comment, sym_block_comment, - STATE(2431), 1, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55752] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2419), 2, sym_line_comment, - ACTIONS(3199), 13, + sym_block_comment, + ACTIONS(3020), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250179,7 +245036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3197), 31, + ACTIONS(3018), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250211,14 +245068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56807] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55811] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2432), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2420), 2, sym_line_comment, - ACTIONS(3175), 13, + sym_block_comment, + ACTIONS(2867), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250232,7 +245090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3173), 31, + ACTIONS(2865), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250264,14 +245122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56865] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55870] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2433), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2421), 2, sym_line_comment, - ACTIONS(3171), 13, + sym_block_comment, + ACTIONS(3434), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250285,7 +245144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 31, + ACTIONS(3432), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250317,14 +245176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56923] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55929] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2434), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2422), 2, sym_line_comment, - ACTIONS(3163), 13, + sym_block_comment, + ACTIONS(3246), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250338,7 +245198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3161), 31, + ACTIONS(3244), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250370,24 +245230,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [56981] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [55988] = 34, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3502), 1, anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -250413,26 +245273,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5142), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1157), 1, + STATE(2337), 1, sym_block, - STATE(2435), 1, - sym_line_comment, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(3986), 1, + STATE(3977), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -250452,46 +245313,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57097] = 5, + [56105] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2436), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2667), 1, + anon_sym_LBRACK, + STATE(2424), 2, sym_line_comment, - ACTIONS(3255), 13, + sym_block_comment, + ACTIONS(2669), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3253), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -250499,20 +245361,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [57155] = 5, + [56164] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5056), 1, + anon_sym_AMP_AMP, + ACTIONS(5058), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5066), 1, + anon_sym_in, + ACTIONS(5068), 1, + anon_sym_BANGin, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2425), 2, + sym_line_comment, sym_block_comment, - STATE(2437), 1, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1765), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56265] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2426), 2, sym_line_comment, - ACTIONS(3247), 13, + sym_block_comment, + ACTIONS(3294), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250526,7 +245464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3245), 31, + ACTIONS(3292), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250558,67 +245496,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57213] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [56324] = 34, ACTIONS(5), 1, - sym_block_comment, - STATE(2438), 1, - sym_line_comment, - ACTIONS(3159), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3157), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5106), 1, anon_sym_AMP_AMP, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5116), 1, anon_sym_in, + ACTIONS(5118), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [57271] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2427), 2, + sym_line_comment, sym_block_comment, - STATE(2439), 1, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56441] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2428), 2, sym_line_comment, - ACTIONS(3051), 13, + sym_block_comment, + ACTIONS(2935), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250632,7 +245601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3049), 31, + ACTIONS(2933), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250664,88 +245633,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57329] = 26, - ACTIONS(497), 1, + [56500] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5040), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - ACTIONS(5050), 1, + ACTIONS(5088), 1, + anon_sym_COMMA, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5054), 1, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, anon_sym_AMP_AMP, - ACTIONS(5056), 1, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, + ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5060), 1, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5062), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5064), 1, + ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5066), 1, + ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2440), 1, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(2465), 1, + sym_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2429), 2, sym_line_comment, - STATE(2560), 1, + sym_block_comment, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [56617] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, + STATE(2430), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1769), 5, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1877), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5048), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5046), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56696] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, + anon_sym_LBRACK, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [57429] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56755] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2441), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2432), 2, sym_line_comment, - ACTIONS(2671), 13, + sym_block_comment, + ACTIONS(3334), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250759,7 +245856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2669), 31, + ACTIONS(3332), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250791,88 +245888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57487] = 26, - ACTIONS(497), 1, + [56814] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5064), 1, - anon_sym_in, - ACTIONS(5066), 1, - anon_sym_BANGin, - STATE(2442), 1, + STATE(2433), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1871), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5048), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [57587] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2443), 1, - sym_line_comment, - ACTIONS(3019), 13, + ACTIONS(3142), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250886,7 +245910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3017), 31, + ACTIONS(3140), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250918,14 +245942,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57645] = 5, + [56873] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2434), 2, + sym_line_comment, sym_block_comment, - STATE(2444), 1, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5048), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56952] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2435), 2, sym_line_comment, - ACTIONS(3235), 13, + sym_block_comment, + ACTIONS(3406), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250939,7 +246028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3233), 31, + ACTIONS(3404), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -250971,14 +246060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57703] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57011] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2445), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2436), 2, sym_line_comment, - ACTIONS(3015), 13, + sym_block_comment, + ACTIONS(3162), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250992,7 +246082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3013), 31, + ACTIONS(3160), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251024,14 +246114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57761] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57070] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2446), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2437), 2, sym_line_comment, - ACTIONS(3011), 13, + sym_block_comment, + ACTIONS(3350), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251045,7 +246136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3009), 31, + ACTIONS(3348), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251077,14 +246168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57819] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57129] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2447), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2438), 2, sym_line_comment, - ACTIONS(3007), 13, + sym_block_comment, + ACTIONS(3354), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251098,7 +246190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3005), 31, + ACTIONS(3352), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251130,14 +246222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57877] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57188] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2448), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2439), 2, sym_line_comment, - ACTIONS(2961), 13, + sym_block_comment, + ACTIONS(3358), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251151,7 +246244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2959), 31, + ACTIONS(3356), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251183,14 +246276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57935] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57247] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2449), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2440), 2, sym_line_comment, - ACTIONS(2895), 13, + sym_block_comment, + ACTIONS(2985), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251204,7 +246298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2893), 31, + ACTIONS(2983), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251236,24 +246330,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [57993] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57306] = 34, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3502), 1, anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -251279,26 +246375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5144), 1, - anon_sym_LBRACE, - STATE(1006), 1, + STATE(1663), 1, sym_block, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2450), 1, - sym_line_comment, - STATE(3986), 1, + STATE(3977), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -251318,14 +246413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58109] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57423] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2451), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2442), 2, sym_line_comment, - ACTIONS(2891), 13, + sym_block_comment, + ACTIONS(3150), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251339,7 +246435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2889), 31, + ACTIONS(3148), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251371,96 +246467,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58167] = 34, + [57482] = 26, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(4994), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + ACTIONS(5042), 1, anon_sym_as, - ACTIONS(5088), 1, - anon_sym_COMMA, - ACTIONS(5100), 1, + ACTIONS(5052), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, + ACTIONS(5054), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, + ACTIONS(5056), 1, anon_sym_AMP_AMP, - ACTIONS(5108), 1, + ACTIONS(5058), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, + ACTIONS(5060), 1, anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, + ACTIONS(5066), 1, anon_sym_in, - ACTIONS(5118), 1, + ACTIONS(5068), 1, anon_sym_BANGin, - ACTIONS(5146), 1, - anon_sym_LBRACE, - STATE(2180), 1, - sym_block, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + ACTIONS(5140), 1, + anon_sym_is, + ACTIONS(5142), 1, + anon_sym_BANGis, + STATE(2556), 1, sym_or_block, - STATE(2452), 1, - sym_line_comment, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5046), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_CARET, + ACTIONS(2055), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5050), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, + ACTIONS(5048), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58283] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57583] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2453), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2444), 2, sym_line_comment, - ACTIONS(2887), 13, + sym_block_comment, + ACTIONS(3438), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251474,7 +246564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2885), 31, + ACTIONS(3436), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251506,14 +246596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58341] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57642] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2454), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2445), 2, sym_line_comment, - ACTIONS(2883), 13, + sym_block_comment, + ACTIONS(3410), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251527,7 +246618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2881), 31, + ACTIONS(3408), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251559,14 +246650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58399] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57701] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2455), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2446), 2, sym_line_comment, - ACTIONS(2965), 13, + sym_block_comment, + ACTIONS(3158), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251580,7 +246672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2963), 31, + ACTIONS(3156), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251612,14 +246704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58457] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57760] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2456), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2447), 2, sym_line_comment, - ACTIONS(3239), 13, + sym_block_comment, + ACTIONS(3302), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251633,7 +246726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3237), 31, + ACTIONS(3300), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251665,14 +246758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58515] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57819] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2457), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2448), 2, sym_line_comment, - ACTIONS(3259), 13, + sym_block_comment, + ACTIONS(3398), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251686,7 +246780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3257), 31, + ACTIONS(3396), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251718,14 +246812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58573] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57878] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2458), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2449), 2, sym_line_comment, - ACTIONS(3041), 13, + sym_block_comment, + ACTIONS(3394), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251739,7 +246834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3039), 31, + ACTIONS(3392), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251771,14 +246866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58631] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57937] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2459), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2450), 2, sym_line_comment, - ACTIONS(3267), 13, + sym_block_comment, + ACTIONS(3366), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251792,7 +246888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3265), 31, + ACTIONS(3364), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251824,14 +246920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58689] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [57996] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2460), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2451), 2, sym_line_comment, - ACTIONS(3045), 13, + sym_block_comment, + ACTIONS(3370), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251845,7 +246942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3043), 31, + ACTIONS(3368), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -251877,105 +246974,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [58747] = 7, - ACTIONS(497), 1, + [58055] = 34, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2479), 1, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5148), 1, - anon_sym_else, - STATE(2461), 1, - sym_line_comment, - STATE(2626), 1, - sym_else_branch, - ACTIONS(2481), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, + ACTIONS(5088), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(359), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5094), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58809] = 7, - ACTIONS(497), 1, + [58172] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2473), 1, - anon_sym_LBRACK, - ACTIONS(5148), 1, - anon_sym_else, - STATE(2462), 1, + STATE(2453), 2, sym_line_comment, - STATE(2624), 1, - sym_else_branch, - ACTIONS(2475), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(2981), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2979), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -251987,100 +247109,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58871] = 26, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58231] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5056), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5064), 1, - anon_sym_in, - ACTIONS(5066), 1, - anon_sym_BANGin, - STATE(2463), 1, + STATE(2454), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, + sym_block_comment, + ACTIONS(3146), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1719), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5048), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3144), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [58971] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58290] = 34, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3502), 1, anon_sym_COLON_EQ, - ACTIONS(4757), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -252106,24 +247208,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - STATE(1666), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5146), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2464), 1, - sym_line_comment, - STATE(3986), 1, + STATE(2568), 1, + sym_block, + STATE(3977), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -252143,14 +247248,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59087] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [58407] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2869), 1, + anon_sym_DOT, + STATE(2456), 2, + sym_line_comment, sym_block_comment, - STATE(2465), 1, + ACTIONS(3020), 12, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3018), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58468] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2457), 2, sym_line_comment, - ACTIONS(3271), 13, + sym_block_comment, + ACTIONS(3330), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252164,7 +247325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3269), 31, + ACTIONS(3328), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252196,14 +247357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59145] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [58527] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2466), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2458), 2, sym_line_comment, - ACTIONS(3155), 13, + sym_block_comment, + ACTIONS(3326), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252217,7 +247379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3153), 31, + ACTIONS(3324), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252249,14 +247411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59203] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [58586] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2467), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2459), 2, sym_line_comment, - ACTIONS(3407), 13, + sym_block_comment, + ACTIONS(3120), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252270,7 +247433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3405), 31, + ACTIONS(3118), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252302,16 +247465,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59261] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [58645] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2460), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5150), 1, + ACTIONS(3318), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_BANG, - STATE(2468), 1, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3316), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58704] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2461), 2, sym_line_comment, - ACTIONS(3081), 12, + sym_block_comment, + ACTIONS(2989), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252321,10 +247537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON, anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3079), 31, + ACTIONS(2987), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252356,14 +247573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59321] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [58763] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2469), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2462), 2, sym_line_comment, - ACTIONS(2741), 13, + sym_block_comment, + ACTIONS(3310), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252377,7 +247595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2739), 31, + ACTIONS(3308), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252409,14 +247627,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59379] = 5, + [58822] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2463), 2, + sym_line_comment, sym_block_comment, - STATE(2470), 1, + ACTIONS(5070), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [58901] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2464), 2, sym_line_comment, - ACTIONS(3275), 13, + sym_block_comment, + ACTIONS(3306), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252430,7 +247713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 31, + ACTIONS(3304), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252443,12 +247726,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [58960] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2489), 1, + anon_sym_LBRACK, + ACTIONS(5148), 1, + anon_sym_else, + STATE(2586), 1, + sym_else_branch, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2491), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -252460,54 +247801,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [59437] = 14, - ACTIONS(497), 1, + [59023] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, + anon_sym_SLASH_STAR, + ACTIONS(2479), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - STATE(2471), 1, + ACTIONS(5148), 1, + anon_sym_else, + STATE(2593), 1, + sym_else_branch, + STATE(2466), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1889), 25, + sym_block_comment, + ACTIONS(2481), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -252516,47 +247839,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59513] = 15, - ACTIONS(497), 1, + [59086] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5038), 1, anon_sym_BANG, - STATE(2472), 1, - sym_line_comment, - STATE(2560), 1, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, + STATE(2467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5046), 8, + ACTIONS(5072), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -252565,12 +247899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 21, + ACTIONS(1877), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, @@ -252587,50 +247921,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59591] = 18, - ACTIONS(497), 1, + [59165] = 19, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5064), 1, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5080), 1, anon_sym_in, - ACTIONS(5066), 1, + ACTIONS(5082), 1, anon_sym_BANGin, - STATE(2473), 1, - sym_line_comment, - STATE(2560), 1, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, + STATE(2468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5048), 6, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5046), 8, + ACTIONS(5072), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -252639,66 +247976,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 13, + ACTIONS(1849), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [59675] = 19, - ACTIONS(497), 1, + [59252] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2469), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5028), 1, + ACTIONS(3430), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3428), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5030), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [59311] = 18, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(5032), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5054), 1, - anon_sym_AMP_AMP, - ACTIONS(5064), 1, + ACTIONS(5080), 1, anon_sym_in, - ACTIONS(5066), 1, + ACTIONS(5082), 1, anon_sym_BANGin, - STATE(2474), 1, - sym_line_comment, - STATE(2560), 1, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, + STATE(2470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5048), 6, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5046), 8, + ACTIONS(5072), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -252707,27 +248096,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 12, + ACTIONS(1849), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - [59761] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [59396] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2475), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2471), 2, sym_line_comment, - ACTIONS(3295), 13, + sym_block_comment, + ACTIONS(3426), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252741,7 +248132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3293), 31, + ACTIONS(3424), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252773,14 +248164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59819] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [59455] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2476), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2472), 2, sym_line_comment, - ACTIONS(3307), 13, + sym_block_comment, + ACTIONS(3422), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252794,7 +248186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3305), 31, + ACTIONS(3420), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252826,14 +248218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59877] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [59514] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2477), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2473), 2, sym_line_comment, - ACTIONS(3179), 13, + sym_block_comment, + ACTIONS(3418), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252847,7 +248240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3177), 31, + ACTIONS(3416), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -252879,102 +248272,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [59935] = 15, - ACTIONS(497), 1, + [59573] = 15, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, + anon_sym_SLASH_STAR, ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - STATE(2478), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5046), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1807), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60013] = 15, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, anon_sym_LPAREN, - ACTIONS(5030), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5034), 1, + ACTIONS(5038), 1, anon_sym_BANG, - STATE(2479), 1, - sym_line_comment, - STATE(2560), 1, + STATE(2556), 1, sym_or_block, - STATE(2561), 1, + STATE(2560), 1, sym_argument_list, - STATE(4345), 1, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5026), 2, + ACTIONS(5030), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + ACTIONS(5040), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5044), 4, + STATE(2474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5046), 8, + ACTIONS(5072), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -252983,12 +248314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1899), 21, + ACTIONS(1849), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, @@ -253005,14 +248336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60091] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [59652] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2480), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2475), 2, sym_line_comment, - ACTIONS(3219), 13, + sym_block_comment, + ACTIONS(3009), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253026,7 +248358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3217), 31, + ACTIONS(3007), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -253058,111 +248390,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [60149] = 16, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [59711] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2476), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(2993), 13, anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - STATE(2481), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(1837), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1835), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60228] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2689), 1, - anon_sym_LBRACK, - ACTIONS(5168), 1, - anon_sym_DOLLARelse, - STATE(2482), 1, - sym_line_comment, - ACTIONS(2691), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2991), 31, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -253174,343 +248442,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60287] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [59770] = 34, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - STATE(2483), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(1807), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5170), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5172), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1805), 17, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5088), 1, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, anon_sym_AMP_AMP, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5116), 1, anon_sym_in, + ACTIONS(5118), 1, anon_sym_BANGin, - [60374] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - STATE(2484), 1, - sym_line_comment, - STATE(2851), 1, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1899), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5170), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5172), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1897), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60461] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, + ACTIONS(5014), 2, anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - ACTIONS(5182), 1, - anon_sym_AMP_AMP, - ACTIONS(5184), 1, - anon_sym_in, - ACTIONS(5186), 1, - anon_sym_BANGin, - STATE(2485), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(5178), 2, + ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5170), 3, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5180), 4, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5172), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [60558] = 24, + [59887] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - ACTIONS(5184), 1, - anon_sym_in, - ACTIONS(5186), 1, - anon_sym_BANGin, - STATE(2486), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, + STATE(2556), 1, sym_or_block, - STATE(4221), 1, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, sym_type_parameters, - ACTIONS(5178), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5170), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5180), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5172), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [60653] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(5030), 2, anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5040), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - STATE(2487), 1, + STATE(2478), 2, sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(1889), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5170), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5172), 5, + sym_block_comment, + ACTIONS(5072), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 17, + ACTIONS(1849), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -253518,64 +248590,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60740] = 18, + [59964] = 15, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5036), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5038), 1, anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5040), 2, + anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - STATE(2488), 1, + STATE(2479), 2, sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5172), 5, + sym_block_comment, + ACTIONS(5046), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5048), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1887), 18, + ACTIONS(1881), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -253583,17 +248654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60823] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [60043] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2489), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2480), 2, sym_line_comment, - ACTIONS(2676), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2671), 13, + sym_block_comment, + ACTIONS(3338), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253601,24 +248670,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2669), 28, + ACTIONS(3336), 31, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -253636,244 +248707,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [60882] = 26, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [60102] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, + anon_sym_SLASH_STAR, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, - anon_sym_in, - ACTIONS(5082), 1, - anon_sym_BANGin, - STATE(2490), 1, + ACTIONS(5152), 1, + anon_sym_DOLLARelse, + STATE(2481), 2, sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3586), 4, + sym_block_comment, + ACTIONS(2727), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(5070), 4, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5074), 6, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5072), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60981] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, anon_sym_DASH_DASH, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, - anon_sym_in, - ACTIONS(5082), 1, - anon_sym_BANGin, - STATE(2491), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3558), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5070), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(5074), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61080] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5058), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5060), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5062), 1, anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, anon_sym_in, - ACTIONS(5082), 1, anon_sym_BANGin, - STATE(2492), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3578), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5070), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5074), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [61179] = 6, - ACTIONS(497), 1, + [60162] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(2969), 1, anon_sym_LBRACK, - STATE(2493), 1, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2482), 2, sym_line_comment, - STATE(2559), 1, - sym_type_parameters, - ACTIONS(2741), 41, + sym_block_comment, + ACTIONS(2971), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, @@ -253908,119 +248816,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61238] = 25, - ACTIONS(497), 1, + [60222] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(2872), 1, anon_sym_LBRACK, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3446), 1, - anon_sym_LPAREN, - ACTIONS(3448), 1, - anon_sym_fn, - ACTIONS(3450), 1, - anon_sym_STAR, - ACTIONS(3452), 1, - anon_sym_struct, - ACTIONS(3454), 1, - anon_sym_QMARK, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3458), 1, - anon_sym_LBRACK2, - ACTIONS(3460), 1, - anon_sym_AMP, - ACTIONS(3462), 1, - anon_sym_shared, - ACTIONS(3464), 1, - anon_sym_map_LBRACK, - ACTIONS(3466), 1, - anon_sym_chan, - ACTIONS(3468), 1, - anon_sym_thread, - ACTIONS(3470), 1, - anon_sym_atomic, - STATE(2494), 1, + ACTIONS(3020), 1, + anon_sym_LBRACE, + STATE(2483), 2, sym_line_comment, - STATE(3446), 1, - sym_plain_type, - STATE(4434), 1, - sym_reference_expression, - STATE(3424), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3135), 7, + sym_block_comment, + ACTIONS(2867), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3467), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [61335] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2495), 1, - sym_line_comment, - ACTIONS(2871), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2747), 12, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2745), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -254032,12 +248870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [61394] = 23, - ACTIONS(497), 1, + [60282] = 23, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(3444), 1, sym_identifier, ACTIONS(3446), 1, @@ -254066,21 +248903,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3470), 1, anon_sym_atomic, - STATE(2496), 1, - sym_line_comment, - STATE(3457), 1, + STATE(3466), 1, sym_plain_type, - STATE(4434), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2484), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(627), 9, + ACTIONS(567), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -254090,7 +248928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3467), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254103,11 +248941,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [61487] = 23, - ACTIONS(497), 1, + [60376] = 23, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(3444), 1, sym_identifier, ACTIONS(3446), 1, @@ -254136,21 +248974,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3470), 1, anon_sym_atomic, - STATE(2497), 1, - sym_line_comment, - STATE(3470), 1, + STATE(3458), 1, sym_plain_type, - STATE(4434), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2485), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(619), 9, + ACTIONS(605), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -254160,7 +248999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3467), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254173,11 +249012,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [61580] = 23, - ACTIONS(497), 1, + [60470] = 23, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(3444), 1, sym_identifier, ACTIONS(3446), 1, @@ -254206,21 +249045,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3470), 1, anon_sym_atomic, - STATE(2498), 1, - sym_line_comment, - STATE(3471), 1, + STATE(3461), 1, sym_plain_type, - STATE(4434), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(589), 9, + ACTIONS(601), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -254230,7 +249070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3467), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254243,181 +249083,198 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [61673] = 31, + [60564] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, + anon_sym_LBRACK, + STATE(2543), 1, + sym_type_parameters, + STATE(2487), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(2695), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, - anon_sym_CARET, - ACTIONS(5200), 1, - anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, anon_sym_in, - ACTIONS(5206), 1, anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + [60624] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + STATE(2824), 1, sym_or_block, - STATE(2499), 1, - sym_line_comment, - STATE(4233), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5188), 3, + STATE(2488), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1869), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(5196), 4, + ACTIONS(1847), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61782] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, - anon_sym_CARET, - ACTIONS(5200), 1, - anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, anon_sym_in, - ACTIONS(5206), 1, anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2500), 1, + [60704] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(2489), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5188), 3, + sym_block_comment, + ACTIONS(2867), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1767), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(5196), 4, + ACTIONS(2865), 28, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61891] = 6, - ACTIONS(497), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [60764] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3053), 1, + anon_sym_SLASH_STAR, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(2501), 1, + ACTIONS(5170), 1, + anon_sym_DOLLARelse, + STATE(2490), 2, sym_line_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3055), 40, + sym_block_comment, + ACTIONS(2751), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, @@ -254452,48 +249309,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61950] = 6, - ACTIONS(497), 1, + [60824] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(3135), 1, + ACTIONS(2761), 2, anon_sym_LBRACE, - STATE(2502), 1, + anon_sym_COMMA, + STATE(2491), 2, sym_line_comment, - ACTIONS(2671), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(2703), 12, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2701), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -254505,55 +249362,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62009] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, + [60884] = 20, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2503), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1807), 2, + ACTIONS(1881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1805), 18, + ACTIONS(1879), 18, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -254572,55 +249431,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [62096] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [60972] = 20, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2504), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1899), 2, + ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 18, + ACTIONS(1875), 18, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -254639,66 +249499,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [62183] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [61060] = 24, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2505), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2494), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 11, + ACTIONS(1847), 11, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACK, @@ -254710,64 +249571,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_DOT_DOT, - [62278] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [61156] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2506), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 12, + ACTIONS(1847), 12, anon_sym_SEMI, anon_sym_as, anon_sym_RBRACK, @@ -254780,119 +249642,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_BANGis, anon_sym_DOT_DOT, - [62371] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [61250] = 20, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2507), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1889), 2, + ACTIONS(1849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2496), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 18, - anon_sym_SEMI, - anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [62458] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2508), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1889), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 19, + ACTIONS(1847), 18, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -254903,7 +249702,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -254912,653 +249710,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [62541] = 16, + [61338] = 25, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - STATE(2509), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(1925), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1923), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62620] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, - anon_sym_LBRACK, - STATE(2510), 1, - sym_line_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2747), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH_STAR, + ACTIONS(2867), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(3018), 1, + anon_sym_LBRACK, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3446), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3448), 1, + anon_sym_fn, + ACTIONS(3450), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3452), 1, + anon_sym_struct, + ACTIONS(3454), 1, anon_sym_QMARK, + ACTIONS(3456), 1, anon_sym_BANG, + ACTIONS(3458), 1, anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(3460), 1, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62679] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2859), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - anon_sym_DOLLARelse, - STATE(2511), 1, + ACTIONS(3462), 1, + anon_sym_shared, + ACTIONS(3464), 1, + anon_sym_map_LBRACK, + ACTIONS(3466), 1, + anon_sym_chan, + ACTIONS(3468), 1, + anon_sym_thread, + ACTIONS(3470), 1, + anon_sym_atomic, + STATE(3446), 1, + sym_plain_type, + STATE(4460), 1, + sym_reference_expression, + STATE(2497), 2, sym_line_comment, - ACTIONS(2861), 41, + sym_block_comment, + STATE(3433), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3464), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3020), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62738] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3462), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [61436] = 18, ACTIONS(5), 1, - sym_block_comment, - STATE(2512), 1, - sym_line_comment, - ACTIONS(2676), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3133), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2671), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2669), 27, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [62799] = 16, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5154), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2513), 1, - sym_line_comment, - STATE(2851), 1, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1889), 9, + STATE(2498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1849), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(1887), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62878] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2514), 1, - sym_line_comment, - ACTIONS(2871), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3055), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3053), 29, + ACTIONS(1847), 19, anon_sym_SEMI, anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [62937] = 26, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5028), 1, - anon_sym_LPAREN, - ACTIONS(5030), 1, - anon_sym_LBRACK, - ACTIONS(5032), 1, - anon_sym_QMARK, - ACTIONS(5034), 1, - anon_sym_BANG, - ACTIONS(5040), 1, - anon_sym_as, - ACTIONS(5050), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 1, - anon_sym_DASH_DASH, - ACTIONS(5058), 1, - anon_sym_or, - ACTIONS(5060), 1, - anon_sym_is, - ACTIONS(5062), 1, - anon_sym_BANGis, - ACTIONS(5076), 1, - anon_sym_AMP_AMP, - ACTIONS(5078), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5080), 1, - anon_sym_in, - ACTIONS(5082), 1, - anon_sym_BANGin, - STATE(2515), 1, - sym_line_comment, - STATE(2560), 1, - sym_or_block, - STATE(2561), 1, - sym_argument_list, - STATE(4345), 1, - sym_type_parameters, - ACTIONS(5026), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5036), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3582), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5070), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5074), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5072), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [63036] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [61520] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1769), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5154), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - ACTIONS(5182), 1, - anon_sym_AMP_AMP, - ACTIONS(5184), 1, - anon_sym_in, - ACTIONS(5186), 1, - anon_sym_BANGin, - ACTIONS(5210), 1, + ACTIONS(5084), 1, anon_sym_as, - ACTIONS(5212), 1, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5218), 1, + ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5220), 1, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5222), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - STATE(2516), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(5178), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1767), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5170), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5174), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5180), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5172), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [63147] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1871), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5182), 1, - anon_sym_AMP_AMP, ACTIONS(5184), 1, - anon_sym_in, + anon_sym_AMP_AMP, ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5210), 1, - anon_sym_as, - ACTIONS(5212), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, - anon_sym_DASH_DASH, - ACTIONS(5216), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5218), 1, - anon_sym_or, - ACTIONS(5220), 1, - anon_sym_is, - ACTIONS(5222), 1, - anon_sym_BANGis, - STATE(2517), 1, - sym_line_comment, - STATE(2851), 1, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5178), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5170), 3, + STATE(2499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5180), 4, + ACTIONS(2069), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5172), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [63258] = 5, - ACTIONS(497), 1, + [61630] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3337), 1, - anon_sym_LBRACK, - STATE(2518), 1, - sym_line_comment, - ACTIONS(3339), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5154), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5156), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5166), 1, anon_sym_QMARK_DOT, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63314] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2519), 1, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2500), 2, sym_line_comment, - ACTIONS(2663), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(1913), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2661), 29, + ACTIONS(1911), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -255566,7 +249979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -255576,77 +249988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63370] = 5, - ACTIONS(497), 1, + [61710] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3221), 1, - anon_sym_LBRACK, - STATE(2520), 1, - sym_line_comment, - ACTIONS(3223), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2761), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63426] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5224), 1, - anon_sym_else, - STATE(2521), 1, + STATE(2501), 2, sym_line_comment, - STATE(2717), 1, - sym_else_branch, - ACTIONS(2475), 13, + sym_block_comment, + ACTIONS(2971), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255659,20 +250016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2473), 27, + ACTIONS(2969), 29, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -255688,23 +250045,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63486] = 5, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [61770] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3225), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - STATE(2522), 1, + ACTIONS(2759), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2502), 2, sym_line_comment, - ACTIONS(3227), 41, + sym_block_comment, + ACTIONS(2703), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, @@ -255739,97 +250100,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63542] = 5, - ACTIONS(497), 1, + [61830] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3121), 1, - anon_sym_LBRACK, - STATE(2523), 1, - sym_line_comment, - ACTIONS(3123), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5180), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2503), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5176), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1931), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [61940] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2071), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5192), 1, + anon_sym_as, + ACTIONS(5204), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5206), 1, + anon_sym_DASH_DASH, + ACTIONS(5208), 1, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5210), 1, anon_sym_AMP_AMP, + ACTIONS(5212), 1, anon_sym_PIPE_PIPE, + ACTIONS(5214), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5216), 1, anon_sym_is, + ACTIONS(5218), 1, anon_sym_BANGis, + ACTIONS(5220), 1, anon_sym_in, + ACTIONS(5222), 1, anon_sym_BANGin, - [63598] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(5200), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2504), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3241), 1, + ACTIONS(2069), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5198), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62052] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2524), 1, + ACTIONS(3018), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2505), 2, sym_line_comment, - ACTIONS(3243), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(2867), 12, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2865), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -255841,476 +250313,939 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63654] = 5, - ACTIONS(497), 1, + anon_sym_DOT_DOT, + [62114] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3039), 1, - anon_sym_LBRACK, - STATE(2525), 1, - sym_line_comment, - ACTIONS(3041), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1933), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5192), 1, anon_sym_as, + ACTIONS(5204), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5206), 1, + anon_sym_DASH_DASH, + ACTIONS(5208), 1, + anon_sym_CARET, + ACTIONS(5210), 1, + anon_sym_AMP_AMP, + ACTIONS(5212), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5220), 1, + anon_sym_in, + ACTIONS(5222), 1, + anon_sym_BANGin, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(5200), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1931), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5198), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [62226] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5062), 1, anon_sym_is, + ACTIONS(5064), 1, anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, anon_sym_in, + ACTIONS(5082), 1, anon_sym_BANGin, - [63710] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - STATE(2526), 1, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2507), 2, sym_line_comment, - ACTIONS(3045), 41, + sym_block_comment, + ACTIONS(3570), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [62326] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5062), 1, anon_sym_is, + ACTIONS(5064), 1, anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, anon_sym_in, + ACTIONS(5082), 1, anon_sym_BANGin, - [63766] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3249), 1, - anon_sym_LBRACK, - STATE(2527), 1, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2508), 2, sym_line_comment, - ACTIONS(3251), 41, + sym_block_comment, + ACTIONS(3578), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [62426] = 26, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, + anon_sym_LBRACK, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5062), 1, anon_sym_is, + ACTIONS(5064), 1, anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, anon_sym_in, + ACTIONS(5082), 1, anon_sym_BANGin, - [63822] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3153), 1, - anon_sym_LBRACK, - STATE(2528), 1, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2509), 2, sym_line_comment, - ACTIONS(3155), 41, + sym_block_comment, + ACTIONS(3582), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62526] = 20, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5208), 1, anon_sym_CARET, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5198), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1879), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63878] = 6, - ACTIONS(497), 1, + [62614] = 26, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3079), 1, + anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + anon_sym_LPAREN, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5226), 1, + ACTIONS(5036), 1, + anon_sym_QMARK, + ACTIONS(5038), 1, anon_sym_BANG, - STATE(2529), 1, + ACTIONS(5042), 1, + anon_sym_as, + ACTIONS(5052), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5054), 1, + anon_sym_DASH_DASH, + ACTIONS(5060), 1, + anon_sym_or, + ACTIONS(5062), 1, + anon_sym_is, + ACTIONS(5064), 1, + anon_sym_BANGis, + ACTIONS(5076), 1, + anon_sym_AMP_AMP, + ACTIONS(5078), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5080), 1, + anon_sym_in, + ACTIONS(5082), 1, + anon_sym_BANGin, + STATE(2556), 1, + sym_or_block, + STATE(2560), 1, + sym_argument_list, + STATE(4198), 1, + sym_type_parameters, + ACTIONS(5030), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5040), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + STATE(2511), 2, sym_line_comment, - ACTIONS(3081), 40, + sym_block_comment, + ACTIONS(3586), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5070), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5074), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5072), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62714] = 20, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5208), 1, anon_sym_CARET, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1877), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5198), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1875), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63936] = 5, - ACTIONS(497), 1, + [62802] = 25, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3261), 1, - anon_sym_LBRACK, - STATE(2530), 1, - sym_line_comment, - ACTIONS(3263), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5156), 1, anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5208), 1, + anon_sym_CARET, + ACTIONS(5210), 1, + anon_sym_AMP_AMP, + ACTIONS(5220), 1, + anon_sym_in, + ACTIONS(5222), 1, + anon_sym_BANGin, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(5200), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5198), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [62900] = 24, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5208), 1, anon_sym_CARET, + ACTIONS(5220), 1, + anon_sym_in, + ACTIONS(5222), 1, + anon_sym_BANGin, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(5200), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5194), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5198), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5202), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1847), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63992] = 5, - ACTIONS(497), 1, + [62996] = 20, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3277), 1, - anon_sym_LBRACK, - STATE(2531), 1, - sym_line_comment, - ACTIONS(3279), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5154), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5156), 1, anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5208), 1, + anon_sym_CARET, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1849), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5198), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [63084] = 18, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, anon_sym_QMARK, + ACTIONS(5162), 1, anon_sym_BANG, + ACTIONS(5164), 1, anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2516), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5198), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5196), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1849), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1847), 18, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64048] = 5, - ACTIONS(497), 1, + [63168] = 16, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3281), 1, - anon_sym_LBRACK, - STATE(2532), 1, - sym_line_comment, - ACTIONS(3283), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5154), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5156), 1, anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1925), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1923), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64104] = 5, - ACTIONS(497), 1, + [63248] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3117), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - STATE(2533), 1, - sym_line_comment, - ACTIONS(3119), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5104), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + STATE(2518), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5094), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 5, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64160] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [63333] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3237), 1, + anon_sym_SLASH_STAR, + ACTIONS(3320), 1, anon_sym_LBRACK, - STATE(2534), 1, + STATE(2519), 2, sym_line_comment, - ACTIONS(3239), 41, + sym_block_comment, + ACTIONS(3322), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256352,24 +251287,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64216] = 5, - ACTIONS(497), 1, + [63390] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3257), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, anon_sym_LBRACK, - STATE(2535), 1, + STATE(2520), 2, sym_line_comment, - ACTIONS(3259), 41, + sym_block_comment, + ACTIONS(3044), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3029), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -256403,16 +251340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64272] = 5, - ACTIONS(497), 1, + [63449] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3149), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 1, anon_sym_LBRACK, - STATE(2536), 1, + STATE(2521), 2, sym_line_comment, - ACTIONS(3151), 41, + sym_block_comment, + ACTIONS(3222), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256454,69 +251392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64328] = 7, + [63506] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5224), 1, - anon_sym_else, - STATE(2537), 1, - sym_line_comment, - STATE(2716), 1, - sym_else_branch, - ACTIONS(2481), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2479), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64388] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2669), 1, + anon_sym_SLASH_STAR, + ACTIONS(2933), 1, anon_sym_LBRACK, - STATE(2538), 1, + STATE(2522), 2, sym_line_comment, - ACTIONS(2671), 41, + sym_block_comment, + ACTIONS(2935), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256558,16 +251444,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64444] = 5, - ACTIONS(497), 1, + [63563] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2523), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3369), 1, + ACTIONS(2669), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2667), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - STATE(2539), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [63620] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2929), 1, + anon_sym_LBRACK, + STATE(2524), 2, sym_line_comment, - ACTIONS(3371), 41, + sym_block_comment, + ACTIONS(2931), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256609,16 +251548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64500] = 5, - ACTIONS(497), 1, + [63677] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3373), 1, + anon_sym_SLASH_STAR, + ACTIONS(2925), 1, anon_sym_LBRACK, - STATE(2540), 1, + STATE(2525), 2, sym_line_comment, - ACTIONS(3375), 41, + sym_block_comment, + ACTIONS(2927), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256660,46 +251600,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64556] = 5, - ACTIONS(497), 1, + [63734] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3265), 1, - anon_sym_LBRACK, - STATE(2541), 1, + ACTIONS(3044), 1, + anon_sym_DOT_DOT, + STATE(2526), 2, sym_line_comment, - ACTIONS(3267), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + sym_block_comment, + ACTIONS(3042), 5, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3029), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3026), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [63795] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3116), 1, + anon_sym_DOT_DOT, + STATE(2527), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3114), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3035), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3032), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -256711,16 +251708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64612] = 5, - ACTIONS(497), 1, + [63856] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3269), 1, + anon_sym_SLASH_STAR, + ACTIONS(3328), 1, anon_sym_LBRACK, - STATE(2542), 1, + STATE(2528), 2, sym_line_comment, - ACTIONS(3271), 41, + sym_block_comment, + ACTIONS(3330), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256762,16 +251760,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64668] = 5, - ACTIONS(497), 1, + [63913] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3273), 1, + anon_sym_SLASH_STAR, + ACTIONS(2915), 1, anon_sym_LBRACK, - STATE(2543), 1, + STATE(2529), 2, sym_line_comment, - ACTIONS(3275), 41, + sym_block_comment, + ACTIONS(2917), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256813,94 +251812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64724] = 32, + [63970] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1871), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5210), 1, - anon_sym_as, - ACTIONS(5212), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, - anon_sym_DASH_DASH, - ACTIONS(5218), 1, - anon_sym_or, - ACTIONS(5220), 1, - anon_sym_is, - ACTIONS(5222), 1, - anon_sym_BANGis, - ACTIONS(5238), 1, - anon_sym_CARET, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(5242), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5244), 1, - anon_sym_in, - ACTIONS(5246), 1, - anon_sym_BANGin, - STATE(2544), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(1869), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5228), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5232), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5230), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [64834] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3137), 1, + anon_sym_SLASH_STAR, + ACTIONS(2911), 1, anon_sym_LBRACK, - STATE(2545), 1, + STATE(2530), 2, sym_line_comment, - ACTIONS(3139), 41, + sym_block_comment, + ACTIONS(2913), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -256942,21 +251864,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64890] = 5, - ACTIONS(497), 1, + [64027] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3377), 1, + anon_sym_SLASH_STAR, + ACTIONS(2869), 1, + anon_sym_DOT, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(2546), 1, + STATE(2531), 2, sym_line_comment, - ACTIONS(3379), 41, + sym_block_comment, + ACTIONS(3020), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -256993,16 +251917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64946] = 5, - ACTIONS(497), 1, + [64086] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3293), 1, + anon_sym_SLASH_STAR, + ACTIONS(2899), 1, anon_sym_LBRACK, - STATE(2547), 1, + STATE(2532), 2, sym_line_comment, - ACTIONS(3295), 41, + sym_block_comment, + ACTIONS(2901), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257044,16 +251969,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65002] = 5, - ACTIONS(497), 1, + [64143] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3305), 1, + anon_sym_SLASH_STAR, + ACTIONS(2941), 1, anon_sym_LBRACK, - STATE(2548), 1, + STATE(2533), 2, sym_line_comment, - ACTIONS(3307), 41, + sym_block_comment, + ACTIONS(2943), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257095,81 +252021,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65058] = 19, + [64200] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3256), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5254), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2549), 1, + STATE(2534), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3258), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5248), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5250), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1805), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65142] = 5, - ACTIONS(497), 1, + [64257] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3177), 1, + anon_sym_SLASH_STAR, + ACTIONS(2903), 1, anon_sym_LBRACK, - STATE(2550), 1, + STATE(2535), 2, sym_line_comment, - ACTIONS(3179), 41, + sym_block_comment, + ACTIONS(2905), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257211,16 +252125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65198] = 5, - ACTIONS(497), 1, + [64314] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3317), 1, + anon_sym_SLASH_STAR, + ACTIONS(3118), 1, anon_sym_LBRACK, - STATE(2551), 1, + STATE(2536), 2, sym_line_comment, - ACTIONS(3319), 41, + sym_block_comment, + ACTIONS(3120), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257262,16 +252177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65254] = 5, - ACTIONS(497), 1, + [64371] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3213), 1, + anon_sym_SLASH_STAR, + ACTIONS(2979), 1, anon_sym_LBRACK, - STATE(2552), 1, + STATE(2537), 2, sym_line_comment, - ACTIONS(3215), 41, + sym_block_comment, + ACTIONS(2981), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257313,81 +252229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65310] = 19, + [64428] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5254), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2553), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5248), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5252), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5250), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1897), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [65394] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2871), 1, + anon_sym_SLASH_STAR, + ACTIONS(2983), 1, anon_sym_LBRACK, - STATE(2554), 1, + STATE(2538), 2, sym_line_comment, - ACTIONS(2869), 41, + sym_block_comment, + ACTIONS(2985), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257429,16 +252281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65450] = 5, - ACTIONS(497), 1, + [64485] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3217), 1, + anon_sym_SLASH_STAR, + ACTIONS(2987), 1, anon_sym_LBRACK, - STATE(2555), 1, + STATE(2539), 2, sym_line_comment, - ACTIONS(3219), 41, + sym_block_comment, + ACTIONS(2989), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257480,161 +252333,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65506] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [64542] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5254), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5260), 1, + ACTIONS(5236), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5240), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5242), 1, anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2556), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5248), 3, + STATE(2540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1931), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 10, - anon_sym_SEMI, + [64649] = 33, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5192), 1, anon_sym_as, - anon_sym_COMMA, + ACTIONS(5204), 1, anon_sym_PLUS_PLUS, + ACTIONS(5206), 1, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, + ACTIONS(5214), 1, anon_sym_or, + ACTIONS(5216), 1, anon_sym_is, + ACTIONS(5218), 1, anon_sym_BANGis, - anon_sym_COLON_EQ, - [65598] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5244), 1, + anon_sym_LBRACE, + ACTIONS(5256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5258), 1, + anon_sym_CARET, + ACTIONS(5260), 1, + anon_sym_AMP_AMP, + ACTIONS(5262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + anon_sym_BANGin, + ACTIONS(5268), 1, + anon_sym_DOT_DOT, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(5252), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2541), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5254), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [64762] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5254), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5262), 1, + ACTIONS(5236), 1, + anon_sym_AMP_AMP, + ACTIONS(5238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5240), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5242), 1, anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2557), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5248), 3, + STATE(2542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2069), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 11, + [64869] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3336), 1, + anon_sym_LBRACK, + STATE(2543), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3338), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [65688] = 5, - ACTIONS(497), 1, + anon_sym_in, + anon_sym_BANGin, + [64926] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3233), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, anon_sym_LBRACK, - STATE(2558), 1, + STATE(2544), 2, sym_line_comment, - ACTIONS(3235), 41, + sym_block_comment, + ACTIONS(3116), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3035), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -257668,16 +252672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65744] = 5, - ACTIONS(497), 1, + [64985] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3075), 1, + anon_sym_SLASH_STAR, + ACTIONS(2991), 1, anon_sym_LBRACK, - STATE(2559), 1, + STATE(2545), 2, sym_line_comment, - ACTIONS(3077), 41, + sym_block_comment, + ACTIONS(2993), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257719,16 +252724,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65800] = 5, - ACTIONS(497), 1, + [65042] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3245), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(2560), 1, + STATE(2546), 2, sym_line_comment, - ACTIONS(3247), 41, + sym_block_comment, + ACTIONS(3020), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257770,16 +252776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65856] = 5, - ACTIONS(497), 1, + [65099] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3253), 1, + anon_sym_SLASH_STAR, + ACTIONS(3022), 1, anon_sym_LBRACK, - STATE(2561), 1, + STATE(2547), 2, sym_line_comment, - ACTIONS(3255), 41, + sym_block_comment, + ACTIONS(3024), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257821,81 +252828,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65912] = 19, + [65156] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2761), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5254), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2562), 1, + STATE(2548), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2759), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5248), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5250), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65996] = 5, - ACTIONS(497), 1, + [65213] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3289), 1, + anon_sym_SLASH_STAR, + ACTIONS(3212), 1, anon_sym_LBRACK, - STATE(2563), 1, + STATE(2549), 2, sym_line_comment, - ACTIONS(3291), 41, + sym_block_comment, + ACTIONS(3214), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257937,16 +252932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66052] = 5, - ACTIONS(497), 1, + [65270] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3297), 1, + anon_sym_SLASH_STAR, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(2564), 1, + STATE(2550), 2, sym_line_comment, - ACTIONS(3299), 41, + sym_block_comment, + ACTIONS(3234), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -257988,16 +252984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66108] = 5, - ACTIONS(497), 1, + [65327] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3301), 1, + anon_sym_SLASH_STAR, + ACTIONS(3392), 1, anon_sym_LBRACK, - STATE(2565), 1, + STATE(2551), 2, sym_line_comment, - ACTIONS(3303), 41, + sym_block_comment, + ACTIONS(3394), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258039,16 +253036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66164] = 5, - ACTIONS(497), 1, + [65384] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3385), 1, + anon_sym_SLASH_STAR, + ACTIONS(3296), 1, anon_sym_LBRACK, - STATE(2566), 1, + STATE(2552), 2, sym_line_comment, - ACTIONS(3387), 41, + sym_block_comment, + ACTIONS(3298), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258090,16 +253088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66220] = 5, - ACTIONS(497), 1, + [65441] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3309), 1, + anon_sym_SLASH_STAR, + ACTIONS(3396), 1, anon_sym_LBRACK, - STATE(2567), 1, + STATE(2553), 2, sym_line_comment, - ACTIONS(3311), 41, + sym_block_comment, + ACTIONS(3398), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258141,16 +253140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66276] = 5, - ACTIONS(497), 1, + [65498] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3321), 1, + anon_sym_SLASH_STAR, + ACTIONS(2973), 1, anon_sym_LBRACK, - STATE(2568), 1, + ACTIONS(5270), 1, + anon_sym_BANG, + STATE(2554), 2, sym_line_comment, - ACTIONS(3323), 41, + sym_block_comment, + ACTIONS(2975), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258175,7 +253177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, @@ -258192,67 +253193,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66332] = 5, - ACTIONS(497), 1, + [65557] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3325), 1, - anon_sym_LBRACK, - STATE(2569), 1, - sym_line_comment, - ACTIONS(3327), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3502), 1, anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5234), 1, + anon_sym_CARET, + ACTIONS(5236), 1, + anon_sym_AMP_AMP, + ACTIONS(5238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5240), 1, + anon_sym_in, + ACTIONS(5242), 1, + anon_sym_BANGin, + ACTIONS(5272), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(3959), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5230), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5228), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5226), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66388] = 5, - ACTIONS(497), 1, + [65668] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3389), 1, + anon_sym_SLASH_STAR, + ACTIONS(3248), 1, anon_sym_LBRACK, - STATE(2570), 1, + STATE(2556), 2, sym_line_comment, - ACTIONS(3391), 41, + sym_block_comment, + ACTIONS(3250), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258294,16 +253324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66444] = 5, - ACTIONS(497), 1, + [65725] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3329), 1, + anon_sym_SLASH_STAR, + ACTIONS(3332), 1, anon_sym_LBRACK, - STATE(2571), 1, + STATE(2557), 2, sym_line_comment, - ACTIONS(3331), 41, + sym_block_comment, + ACTIONS(3334), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258345,79 +253376,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66500] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [65782] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2436), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2572), 1, - sym_line_comment, - STATE(4233), 1, + STATE(3917), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5252), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1889), 5, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2558), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5250), 5, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 18, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [66580] = 5, - ACTIONS(497), 1, + [65893] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3345), 1, + anon_sym_SLASH_STAR, + ACTIONS(3404), 1, anon_sym_LBRACK, - STATE(2573), 1, + STATE(2559), 2, sym_line_comment, - ACTIONS(3347), 41, + sym_block_comment, + ACTIONS(3406), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258459,16 +253507,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66636] = 5, - ACTIONS(497), 1, + [65950] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3252), 1, anon_sym_LBRACK, - STATE(2574), 1, + STATE(2560), 2, sym_line_comment, - ACTIONS(3135), 41, + sym_block_comment, + ACTIONS(3254), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258510,16 +253559,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66692] = 5, - ACTIONS(497), 1, + [66007] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5276), 1, + anon_sym_else, + STATE(2722), 1, + sym_else_branch, + STATE(2561), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3185), 1, + ACTIONS(2481), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2479), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [66068] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3408), 1, anon_sym_LBRACK, - STATE(2575), 1, + STATE(2562), 2, sym_line_comment, - ACTIONS(3187), 41, + sym_block_comment, + ACTIONS(3410), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258561,16 +253665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66748] = 5, - ACTIONS(497), 1, + [66125] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3017), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, anon_sym_LBRACK, - STATE(2576), 1, + STATE(2563), 2, sym_line_comment, - ACTIONS(3019), 41, + sym_block_comment, + ACTIONS(3342), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258612,168 +253717,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66804] = 30, + [66182] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3144), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2577), 1, + STATE(2564), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3146), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1869), 3, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5090), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66910] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5106), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2578), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1767), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5090), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67016] = 5, - ACTIONS(497), 1, + [66239] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3353), 1, + anon_sym_SLASH_STAR, + ACTIONS(3148), 1, anon_sym_LBRACK, - STATE(2579), 1, + STATE(2565), 2, sym_line_comment, - ACTIONS(3355), 41, + sym_block_comment, + ACTIONS(3150), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258815,16 +253821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67072] = 5, - ACTIONS(497), 1, + [66296] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3413), 1, + anon_sym_SLASH_STAR, + ACTIONS(3348), 1, anon_sym_LBRACK, - STATE(2580), 1, + STATE(2566), 2, sym_line_comment, - ACTIONS(3415), 41, + sym_block_comment, + ACTIONS(3350), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258866,16 +253873,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67128] = 5, - ACTIONS(497), 1, + [66353] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3365), 1, + anon_sym_SLASH_STAR, + ACTIONS(3352), 1, anon_sym_LBRACK, - STATE(2581), 1, + STATE(2567), 2, sym_line_comment, - ACTIONS(3367), 41, + sym_block_comment, + ACTIONS(3354), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -258917,46 +253925,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67184] = 5, - ACTIONS(497), 1, + [66410] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3361), 1, - anon_sym_LBRACK, - STATE(2582), 1, + ACTIONS(5276), 1, + anon_sym_else, + STATE(2721), 1, + sym_else_branch, + STATE(2568), 2, sym_line_comment, - ACTIONS(3363), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + sym_block_comment, + ACTIONS(2491), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2489), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -258968,16 +253979,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67240] = 5, - ACTIONS(497), 1, + [66471] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3417), 1, + anon_sym_SLASH_STAR, + ACTIONS(3356), 1, anon_sym_LBRACK, - STATE(2583), 1, + STATE(2569), 2, sym_line_comment, - ACTIONS(3419), 41, + sym_block_comment, + ACTIONS(3358), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259019,16 +254031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67296] = 5, - ACTIONS(497), 1, + [66528] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3341), 1, + anon_sym_SLASH_STAR, + ACTIONS(3260), 1, anon_sym_LBRACK, - STATE(2584), 1, + STATE(2570), 2, sym_line_comment, - ACTIONS(3343), 41, + sym_block_comment, + ACTIONS(3262), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259070,16 +254083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67352] = 5, - ACTIONS(497), 1, + [66585] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3421), 1, + anon_sym_SLASH_STAR, + ACTIONS(3304), 1, anon_sym_LBRACK, - STATE(2585), 1, + STATE(2571), 2, sym_line_comment, - ACTIONS(3423), 41, + sym_block_comment, + ACTIONS(3306), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259121,21 +254135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67408] = 6, - ACTIONS(497), 1, + [66642] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(3053), 1, + anon_sym_SLASH_STAR, + ACTIONS(3156), 1, anon_sym_LBRACK, - STATE(2586), 1, + STATE(2572), 2, sym_line_comment, - ACTIONS(3055), 40, + sym_block_comment, + ACTIONS(3158), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -259173,22 +254187,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67466] = 6, - ACTIONS(497), 1, + [66699] = 18, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2673), 1, + ACTIONS(5154), 1, anon_sym_DOT, - ACTIONS(3133), 1, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1847), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [66782] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3420), 1, anon_sym_LBRACK, - STATE(2587), 1, + STATE(2574), 2, sym_line_comment, - ACTIONS(3135), 40, + sym_block_comment, + ACTIONS(3422), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -259225,16 +254304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67524] = 5, - ACTIONS(497), 1, + [66839] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3349), 1, + anon_sym_SLASH_STAR, + ACTIONS(3308), 1, anon_sym_LBRACK, - STATE(2588), 1, + STATE(2575), 2, sym_line_comment, - ACTIONS(3351), 41, + sym_block_comment, + ACTIONS(3310), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259276,16 +254356,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67580] = 5, - ACTIONS(497), 1, + [66896] = 20, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5258), 1, + anon_sym_CARET, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2576), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3357), 1, + ACTIONS(1849), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [66983] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3364), 1, anon_sym_LBRACK, - STATE(2589), 1, + STATE(2577), 2, sym_line_comment, - ACTIONS(3359), 41, + sym_block_comment, + ACTIONS(3366), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259327,16 +254475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67636] = 5, - ACTIONS(497), 1, + [67040] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3173), 1, + anon_sym_SLASH_STAR, + ACTIONS(3324), 1, anon_sym_LBRACK, - STATE(2590), 1, + STATE(2578), 2, sym_line_comment, - ACTIONS(3175), 41, + sym_block_comment, + ACTIONS(3326), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259378,16 +254527,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67692] = 5, - ACTIONS(497), 1, + [67097] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3169), 1, + anon_sym_SLASH_STAR, + ACTIONS(3316), 1, anon_sym_LBRACK, - STATE(2591), 1, + STATE(2579), 2, sym_line_comment, - ACTIONS(3171), 41, + sym_block_comment, + ACTIONS(3318), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259429,48 +254579,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67748] = 7, + [67154] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3183), 1, - anon_sym_DOT_DOT, - STATE(2592), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3160), 1, + anon_sym_LBRACK, + STATE(2580), 2, sym_line_comment, - ACTIONS(3181), 5, + sym_block_comment, + ACTIONS(3162), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2976), 12, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2973), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -259482,16 +254631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67808] = 5, - ACTIONS(497), 1, + [67211] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3397), 1, + anon_sym_SLASH_STAR, + ACTIONS(3424), 1, anon_sym_LBRACK, - STATE(2593), 1, + STATE(2581), 2, sym_line_comment, - ACTIONS(3399), 41, + sym_block_comment, + ACTIONS(3426), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259533,16 +254683,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67864] = 5, - ACTIONS(497), 1, + [67268] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3049), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, anon_sym_LBRACK, - STATE(2594), 1, + STATE(2582), 2, sym_line_comment, - ACTIONS(3051), 41, + sym_block_comment, + ACTIONS(3190), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259584,16 +254735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67920] = 5, - ACTIONS(497), 1, + [67325] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3409), 1, + anon_sym_SLASH_STAR, + ACTIONS(3164), 1, anon_sym_LBRACK, - STATE(2595), 1, + STATE(2583), 2, sym_line_comment, - ACTIONS(3411), 41, + sym_block_comment, + ACTIONS(3166), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259635,16 +254787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [67976] = 5, - ACTIONS(497), 1, + [67382] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3393), 1, + anon_sym_SLASH_STAR, + ACTIONS(3172), 1, anon_sym_LBRACK, - STATE(2596), 1, + STATE(2584), 2, sym_line_comment, - ACTIONS(3395), 41, + sym_block_comment, + ACTIONS(3174), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259686,48 +254839,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68032] = 7, + [67439] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3167), 1, - anon_sym_DOT_DOT, - STATE(2597), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3168), 1, + anon_sym_LBRACK, + STATE(2585), 2, sym_line_comment, - ACTIONS(3165), 5, + sym_block_comment, + ACTIONS(3170), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2970), 12, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2967), 24, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67496] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3176), 1, + anon_sym_LBRACK, + STATE(2586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3178), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -259739,82 +254943,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68092] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [67553] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1933), 1, + anon_sym_DOT_DOT, ACTIONS(5154), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(5156), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5158), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5160), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5162), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5164), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5192), 1, + anon_sym_as, + ACTIONS(5204), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5206), 1, + anon_sym_DASH_DASH, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5258), 1, anon_sym_CARET, - STATE(2598), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, + ACTIONS(5260), 1, + anon_sym_AMP_AMP, + ACTIONS(5262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + anon_sym_BANGin, + STATE(2824), 1, sym_or_block, - STATE(4221), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(1807), 3, + ACTIONS(1931), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5252), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5228), 3, + STATE(2587), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5230), 5, + ACTIONS(5254), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1805), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [68178] = 5, - ACTIONS(497), 1, + [67664] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3013), 1, + anon_sym_SLASH_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, - STATE(2599), 1, + STATE(2588), 2, sym_line_comment, - ACTIONS(3015), 41, + sym_block_comment, + ACTIONS(2867), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259856,16 +255074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68234] = 5, - ACTIONS(497), 1, + [67721] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3009), 1, + anon_sym_SLASH_STAR, + ACTIONS(3208), 1, anon_sym_LBRACK, - STATE(2600), 1, + STATE(2589), 2, sym_line_comment, - ACTIONS(3011), 41, + sym_block_comment, + ACTIONS(3210), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -259907,133 +255126,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68290] = 20, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [67778] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5104), 1, anon_sym_CARET, - STATE(2601), 1, - sym_line_comment, - STATE(2851), 1, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1899), 3, + ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5228), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5230), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1897), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [68376] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2602), 1, - sym_line_comment, - ACTIONS(2747), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2745), 29, + ACTIONS(1875), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68432] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [67863] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3401), 1, + anon_sym_SLASH_STAR, + ACTIONS(3376), 1, anon_sym_LBRACK, - STATE(2603), 1, + STATE(2591), 2, sym_line_comment, - ACTIONS(3403), 41, + sym_block_comment, + ACTIONS(3378), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260075,92 +255244,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68488] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [67920] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5254), 1, + ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5260), 1, + ACTIONS(5106), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5266), 1, - anon_sym_PIPE_PIPE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2604), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3544), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5248), 3, + STATE(2592), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68594] = 5, - ACTIONS(497), 1, + ACTIONS(1847), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [68013] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3440), 1, + anon_sym_SLASH_STAR, + ACTIONS(3180), 1, anon_sym_LBRACK, - STATE(2605), 1, + STATE(2593), 2, sym_line_comment, - ACTIONS(3442), 41, + sym_block_comment, + ACTIONS(3182), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260202,16 +255366,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68650] = 5, - ACTIONS(497), 1, + [68070] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3209), 1, + anon_sym_SLASH_STAR, + ACTIONS(3428), 1, anon_sym_LBRACK, - STATE(2606), 1, + STATE(2594), 2, sym_line_comment, - ACTIONS(3211), 41, + sym_block_comment, + ACTIONS(3430), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260253,16 +255418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68706] = 5, - ACTIONS(497), 1, + [68127] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2739), 1, + anon_sym_SLASH_STAR, + ACTIONS(3380), 1, anon_sym_LBRACK, - STATE(2607), 1, + STATE(2595), 2, sym_line_comment, - ACTIONS(2741), 41, + sym_block_comment, + ACTIONS(3382), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260304,16 +255470,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68762] = 5, - ACTIONS(497), 1, + [68184] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3405), 1, + anon_sym_SLASH_STAR, + ACTIONS(3184), 1, anon_sym_LBRACK, - STATE(2608), 1, + STATE(2596), 2, sym_line_comment, - ACTIONS(3407), 41, + sym_block_comment, + ACTIONS(3186), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260355,16 +255522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68818] = 5, - ACTIONS(497), 1, + [68241] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3433), 1, + anon_sym_SLASH_STAR, + ACTIONS(3368), 1, anon_sym_LBRACK, - STATE(2609), 1, + STATE(2597), 2, sym_line_comment, - ACTIONS(3435), 41, + sym_block_comment, + ACTIONS(3370), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260406,16 +255574,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68874] = 5, - ACTIONS(497), 1, + [68298] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3429), 1, + anon_sym_SLASH_STAR, + ACTIONS(3192), 1, anon_sym_LBRACK, - STATE(2610), 1, + STATE(2598), 2, sym_line_comment, - ACTIONS(3431), 41, + sym_block_comment, + ACTIONS(3194), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260457,16 +255626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68930] = 5, - ACTIONS(497), 1, + [68355] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3425), 1, + anon_sym_SLASH_STAR, + ACTIONS(3384), 1, anon_sym_LBRACK, - STATE(2611), 1, + STATE(2599), 2, sym_line_comment, - ACTIONS(3427), 41, + sym_block_comment, + ACTIONS(3386), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260508,138 +255678,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68986] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [68412] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(5244), 1, - anon_sym_in, - ACTIONS(5246), 1, - anon_sym_BANGin, - STATE(2612), 1, - sym_line_comment, - STATE(2851), 1, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5234), 2, + ACTIONS(1881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5228), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2600), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5230), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [69082] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2963), 1, - anon_sym_LBRACK, - STATE(2613), 1, - sym_line_comment, - ACTIONS(2965), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1879), 17, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69138] = 5, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [68497] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2881), 1, + anon_sym_SLASH_STAR, + ACTIONS(3216), 1, anon_sym_LBRACK, - STATE(2614), 1, + STATE(2601), 2, sym_line_comment, - ACTIONS(2883), 41, + sym_block_comment, + ACTIONS(3218), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260681,16 +255796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69194] = 5, - ACTIONS(497), 1, + [68554] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2885), 1, + anon_sym_SLASH_STAR, + ACTIONS(3388), 1, anon_sym_LBRACK, - STATE(2615), 1, + STATE(2602), 2, sym_line_comment, - ACTIONS(2887), 41, + sym_block_comment, + ACTIONS(3390), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260732,16 +255848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69250] = 5, - ACTIONS(497), 1, + [68611] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2889), 1, + anon_sym_SLASH_STAR, + ACTIONS(2907), 1, anon_sym_LBRACK, - STATE(2616), 1, + STATE(2603), 2, sym_line_comment, - ACTIONS(2891), 41, + sym_block_comment, + ACTIONS(2909), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260783,22 +255900,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69306] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [68668] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -260812,63 +255929,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5254), 1, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5260), 1, + ACTIONS(5236), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5240), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5242), 1, anon_sym_BANGin, - ACTIONS(5266), 1, - anon_sym_PIPE_PIPE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2617), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1767), 3, + STATE(2604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON_EQ, - ACTIONS(5248), 3, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69412] = 5, - ACTIONS(497), 1, + [68775] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3005), 1, + anon_sym_SLASH_STAR, + ACTIONS(3204), 1, anon_sym_LBRACK, - STATE(2618), 1, + STATE(2605), 2, sym_line_comment, - ACTIONS(3007), 41, + sym_block_comment, + ACTIONS(3206), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -260910,96 +256029,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69468] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [68832] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5254), 1, + ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5260), 1, - anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5266), 1, - anon_sym_PIPE_PIPE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2619), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1869), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5248), 3, + STATE(2606), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69574] = 5, - ACTIONS(497), 1, + ACTIONS(1847), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [68923] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3333), 1, + anon_sym_SLASH_STAR, + ACTIONS(2759), 1, + anon_sym_LBRACE, + ACTIONS(2969), 1, anon_sym_LBRACK, - STATE(2620), 1, + STATE(2607), 2, sym_line_comment, - ACTIONS(3335), 41, + sym_block_comment, + ACTIONS(2971), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -261037,16 +256151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69630] = 5, - ACTIONS(497), 1, + [68982] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3285), 1, + anon_sym_SLASH_STAR, + ACTIONS(3268), 1, anon_sym_LBRACK, - STATE(2621), 1, + STATE(2608), 2, sym_line_comment, - ACTIONS(3287), 41, + sym_block_comment, + ACTIONS(3270), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261088,21 +256203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69686] = 5, - ACTIONS(497), 1, + [69039] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2893), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - STATE(2622), 1, + ACTIONS(3015), 1, + anon_sym_DOT, + STATE(2609), 2, sym_line_comment, - ACTIONS(2895), 41, + sym_block_comment, + ACTIONS(3013), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -261139,16 +256256,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69742] = 5, - ACTIONS(497), 1, + [69098] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3161), 1, + anon_sym_SLASH_STAR, + ACTIONS(3140), 1, anon_sym_LBRACK, - STATE(2623), 1, + STATE(2610), 2, sym_line_comment, - ACTIONS(3163), 41, + sym_block_comment, + ACTIONS(3142), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261190,16 +256308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69798] = 5, - ACTIONS(497), 1, + [69155] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3205), 1, + anon_sym_SLASH_STAR, + ACTIONS(3264), 1, anon_sym_LBRACK, - STATE(2624), 1, + STATE(2611), 2, sym_line_comment, - ACTIONS(3207), 41, + sym_block_comment, + ACTIONS(3266), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261241,95 +256360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69854] = 33, + [69212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, - anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, - anon_sym_QMARK, - ACTIONS(5160), 1, - anon_sym_BANG, - ACTIONS(5162), 1, - anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5210), 1, - anon_sym_as, - ACTIONS(5212), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, - anon_sym_DASH_DASH, - ACTIONS(5218), 1, - anon_sym_or, - ACTIONS(5220), 1, - anon_sym_is, - ACTIONS(5222), 1, - anon_sym_BANGis, - ACTIONS(5238), 1, - anon_sym_CARET, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(5242), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5244), 1, - anon_sym_in, - ACTIONS(5246), 1, - anon_sym_BANGin, - ACTIONS(5268), 1, - anon_sym_LBRACE, - ACTIONS(5270), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5272), 1, - anon_sym_DOT_DOT, - STATE(2625), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, - sym_or_block, - STATE(4221), 1, - sym_type_parameters, - ACTIONS(5234), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5228), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5232), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5230), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69966] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3201), 1, + anon_sym_SLASH_STAR, + ACTIONS(3224), 1, anon_sym_LBRACK, - STATE(2626), 1, + STATE(2612), 2, sym_line_comment, - ACTIONS(3203), 41, + sym_block_comment, + ACTIONS(3226), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261371,16 +256412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70022] = 5, - ACTIONS(497), 1, + [69269] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3229), 1, + anon_sym_SLASH_STAR, + ACTIONS(3436), 1, anon_sym_LBRACK, - STATE(2627), 1, + STATE(2613), 2, sym_line_comment, - ACTIONS(3231), 41, + sym_block_comment, + ACTIONS(3438), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261422,16 +256464,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70078] = 5, - ACTIONS(497), 1, + [69326] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5104), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2614), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3157), 1, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [69411] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, anon_sym_LBRACK, - STATE(2628), 1, + STATE(2615), 2, sym_line_comment, - ACTIONS(3159), 41, + sym_block_comment, + ACTIONS(3009), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261473,69 +256582,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70134] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [69468] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1889), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5244), 1, - anon_sym_in, - ACTIONS(5246), 1, - anon_sym_BANGin, - STATE(2629), 1, - sym_line_comment, - STATE(2851), 1, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5234), 2, + ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5228), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5236), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5230), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 10, + ACTIONS(1875), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -261543,16 +256645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [70228] = 5, - ACTIONS(497), 1, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [69553] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2959), 1, + anon_sym_SLASH_STAR, + ACTIONS(3152), 1, anon_sym_LBRACK, - STATE(2630), 1, + STATE(2617), 2, sym_line_comment, - ACTIONS(2961), 41, + sym_block_comment, + ACTIONS(3154), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -261594,212 +256700,316 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70284] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [69610] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1769), 1, - anon_sym_DOT_DOT, - ACTIONS(5152), 1, - anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, - anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5210), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1849), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 18, anon_sym_as, - ACTIONS(5212), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, anon_sym_DASH_DASH, - ACTIONS(5218), 1, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5220), 1, anon_sym_is, - ACTIONS(5222), 1, anon_sym_BANGis, - ACTIONS(5238), 1, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [69691] = 24, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5258), 1, anon_sym_CARET, - ACTIONS(5240), 1, - anon_sym_AMP_AMP, - ACTIONS(5242), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5244), 1, + ACTIONS(5264), 1, anon_sym_in, - ACTIONS(5246), 1, + ACTIONS(5266), 1, anon_sym_BANGin, - STATE(2631), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, + STATE(2824), 1, sym_or_block, - STATE(4221), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(1767), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5234), 2, + ACTIONS(5252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5228), 3, + STATE(2619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5236), 4, + ACTIONS(5254), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5230), 5, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70394] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1847), 10, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [69786] = 25, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_SEMI, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5158), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5160), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5162), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5164), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5254), 1, + ACTIONS(5258), 1, anon_sym_CARET, ACTIONS(5260), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, - anon_sym_in, ACTIONS(5264), 1, - anon_sym_BANGin, + anon_sym_in, ACTIONS(5266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5274), 1, - anon_sym_COMMA, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + anon_sym_BANGin, + STATE(2824), 1, sym_or_block, - STATE(2632), 1, - sym_line_comment, - STATE(3875), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5252), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5248), 3, + STATE(2620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5254), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70504] = 20, + ACTIONS(1847), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [69883] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, + anon_sym_LBRACK, + STATE(2621), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(3230), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [69940] = 20, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, ACTIONS(5156), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5158), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5160), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5162), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5164), 1, - anon_sym_QMARK_DOT, + anon_sym_LBRACK2, ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - ACTIONS(5238), 1, + ACTIONS(5258), 1, anon_sym_CARET, - STATE(2633), 1, - sym_line_comment, - STATE(2851), 1, - sym_argument_list, - STATE(2853), 1, + STATE(2824), 1, sym_or_block, - STATE(4221), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(1889), 3, + STATE(2622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1877), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(5228), 3, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5232), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5230), 5, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 16, + ACTIONS(1875), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -261816,167 +257026,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70590] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [70027] = 20, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5158), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5160), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5162), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5164), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + ACTIONS(5258), 1, + anon_sym_CARET, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + STATE(2623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1881), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 16, anon_sym_as, - ACTIONS(5100), 1, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, anon_sym_AMP_AMP, - ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5276), 1, + [70114] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3038), 1, + anon_sym_LBRACK, + STATE(2624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3040), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, - STATE(2436), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70171] = 23, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5234), 1, + anon_sym_CARET, + ACTIONS(5236), 1, + anon_sym_AMP_AMP, + ACTIONS(5240), 1, + anon_sym_in, + ACTIONS(5242), 1, + anon_sym_BANGin, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2634), 1, - sym_line_comment, - STATE(3918), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, + ACTIONS(5230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5090), 3, + STATE(2625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5098), 4, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70700] = 18, + ACTIONS(1847), 10, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_COLON_EQ, + [70264] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3292), 1, + anon_sym_LBRACK, + STATE(2626), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(3294), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5154), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5156), 1, - anon_sym_LBRACK, - ACTIONS(5158), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5160), 1, anon_sym_BANG, - ACTIONS(5162), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, anon_sym_POUND_LBRACK, - STATE(2635), 1, - sym_line_comment, - STATE(2851), 1, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [70321] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5234), 1, + anon_sym_CARET, + ACTIONS(5240), 1, + anon_sym_in, + ACTIONS(5242), 1, + anon_sym_BANGin, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5232), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5230), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2627), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5230), 5, + ACTIONS(5232), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1889), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(1887), 17, + ACTIONS(1847), 11, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [70782] = 6, - ACTIONS(497), 1, + anon_sym_COLON_EQ, + [70412] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2967), 1, + anon_sym_SLASH_STAR, + ACTIONS(3236), 1, anon_sym_LBRACK, - STATE(2636), 1, + STATE(2628), 2, sym_line_comment, - ACTIONS(3167), 6, + sym_block_comment, + ACTIONS(3238), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2970), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -262010,25 +257388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70840] = 6, - ACTIONS(497), 1, + [70469] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(3412), 1, anon_sym_LBRACK, - STATE(2637), 1, + STATE(2629), 2, sym_line_comment, - ACTIONS(3183), 6, + sym_block_comment, + ACTIONS(3414), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2976), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -262062,16 +257440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70898] = 5, - ACTIONS(497), 1, + [70526] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3381), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, anon_sym_LBRACK, - STATE(2638), 1, + STATE(2630), 2, sym_line_comment, - ACTIONS(3383), 41, + sym_block_comment, + ACTIONS(3314), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -262113,119 +257492,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70954] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [70583] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2436), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2639), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1931), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1889), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 18, + [70690] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3240), 1, + anon_sym_LBRACK, + STATE(2632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3242), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [71034] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [70747] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5104), 1, + ACTIONS(5234), 1, anon_sym_CARET, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2640), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1889), 2, + ACTIONS(1849), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 3, + STATE(2633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5092), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 17, + ACTIONS(1847), 17, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -262241,283 +257687,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [71118] = 22, + [70832] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3300), 1, + anon_sym_LBRACK, + STATE(2634), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(3302), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5116), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2641), 1, + [70889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3360), 1, + anon_sym_LBRACK, + STATE(2635), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, + sym_block_comment, + ACTIONS(3362), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [71208] = 23, + anon_sym_in, + anon_sym_BANGin, + [70946] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3400), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2642), 1, + STATE(2636), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3402), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [71300] = 19, + anon_sym_in, + anon_sym_BANGin, + [71003] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3440), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5104), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2643), 1, + STATE(2637), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3442), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1897), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [71384] = 19, + [71060] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3011), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5104), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2644), 1, + STATE(2638), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3013), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5090), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5092), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1805), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [71468] = 5, - ACTIONS(497), 1, + [71117] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3197), 1, + anon_sym_SLASH_STAR, + ACTIONS(2921), 1, anon_sym_LBRACK, - STATE(2645), 1, + STATE(2639), 2, sym_line_comment, - ACTIONS(3199), 41, + sym_block_comment, + ACTIONS(2923), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -262559,21 +257999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71524] = 6, - ACTIONS(497), 1, + [71174] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 1, anon_sym_LBRACK, - ACTIONS(2869), 1, - anon_sym_LBRACE, - STATE(2646), 1, + STATE(2640), 2, sym_line_comment, - ACTIONS(2747), 40, + sym_block_comment, + ACTIONS(3246), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -262611,22 +258051,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71582] = 6, - ACTIONS(497), 1, + [71231] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(2071), 1, + anon_sym_DOT_DOT, + ACTIONS(5154), 1, + anon_sym_DOT, + ACTIONS(5156), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACK, + ACTIONS(5160), 1, + anon_sym_QMARK, + ACTIONS(5162), 1, + anon_sym_BANG, + ACTIONS(5164), 1, + anon_sym_LBRACK2, + ACTIONS(5166), 1, + anon_sym_QMARK_DOT, + ACTIONS(5168), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5192), 1, + anon_sym_as, + ACTIONS(5204), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5206), 1, + anon_sym_DASH_DASH, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5258), 1, + anon_sym_CARET, + ACTIONS(5260), 1, + anon_sym_AMP_AMP, + ACTIONS(5262), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + anon_sym_BANGin, + STATE(2824), 1, + sym_or_block, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, + sym_type_parameters, + ACTIONS(2069), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5252), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2641), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3429), 1, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5254), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [71342] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2701), 1, anon_sym_LBRACK, - ACTIONS(3437), 1, - anon_sym_DOT, - STATE(2647), 1, + ACTIONS(2759), 1, + anon_sym_LBRACE, + STATE(2642), 2, sym_line_comment, - ACTIONS(3431), 40, + sym_block_comment, + ACTIONS(2703), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -262663,16 +258183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71640] = 5, - ACTIONS(497), 1, + [71401] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3125), 1, + anon_sym_SLASH_STAR, + ACTIONS(3003), 1, anon_sym_LBRACK, - STATE(2648), 1, + STATE(2643), 2, sym_line_comment, - ACTIONS(3127), 41, + sym_block_comment, + ACTIONS(3005), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -262714,16 +258235,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71696] = 5, - ACTIONS(497), 1, + [71458] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2644), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3193), 1, + ACTIONS(2069), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5090), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5094), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5098), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [71565] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3432), 1, anon_sym_LBRACK, - STATE(2649), 1, + STATE(2645), 2, sym_line_comment, - ACTIONS(3195), 41, + sym_block_comment, + ACTIONS(3434), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -262765,16 +258364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71752] = 5, - ACTIONS(497), 1, + [71622] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3129), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_LBRACK, - STATE(2650), 1, + STATE(2646), 2, sym_line_comment, - ACTIONS(3131), 41, + sym_block_comment, + ACTIONS(3346), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -262816,19 +258416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71808] = 5, - ACTIONS(497), 1, + [71679] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(2693), 1, anon_sym_LBRACK, - STATE(2651), 1, + STATE(2647), 2, sym_line_comment, - ACTIONS(2976), 40, + sym_block_comment, + ACTIONS(2695), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -262866,19 +258468,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71863] = 5, - ACTIONS(497), 1, + [71736] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + STATE(2648), 2, + sym_line_comment, sym_block_comment, - ACTIONS(2967), 1, + ACTIONS(2703), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2701), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [71793] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3416), 1, anon_sym_LBRACK, - STATE(2652), 1, + STATE(2649), 2, sym_line_comment, - ACTIONS(2970), 40, + sym_block_comment, + ACTIONS(3418), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -262916,20 +258572,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71918] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [71850] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5228), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1849), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5226), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 18, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [71931] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -262943,75 +258669,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(5288), 1, - anon_sym_QMARK, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(1949), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_RBRACK, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2653), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72025] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72041] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263025,70 +258747,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(5302), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_DOT_DOT, - STATE(2436), 1, + ACTIONS(5282), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2654), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72134] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72151] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2653), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(2971), 13, anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2969), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [72207] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263102,70 +258870,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5284), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_QMARK, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5304), 1, - anon_sym_RBRACK, - STATE(2436), 1, + STATE(1015), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2655), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72243] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72315] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5308), 1, + anon_sym_DOLLARelse, + STATE(2655), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(2751), 13, anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2749), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [72373] = 32, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263179,66 +259005,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5302), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_DOT_DOT, - ACTIONS(5306), 1, + ACTIONS(5310), 1, anon_sym_RBRACK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2656), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72352] = 30, + [72483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3032), 1, + anon_sym_LBRACK, + STATE(2657), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(3035), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [72539] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3026), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + STATE(2658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3029), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [72595] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263248,70 +259175,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5254), 1, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5260), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5266), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5308), 1, - anon_sym_is, - ACTIONS(5310), 1, - anon_sym_BANGis, - STATE(2436), 1, + ACTIONS(5312), 1, + anon_sym_LBRACE, + ACTIONS(5314), 1, + anon_sym_QMARK, + STATE(1167), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2657), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1839), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5248), 3, + STATE(2659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72457] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72703] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263325,120 +259256,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5132), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5316), 1, anon_sym_QMARK, - STATE(405), 1, + STATE(1823), 1, sym_block, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2658), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72564] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72811] = 31, ACTIONS(5), 1, - sym_block_comment, - STATE(2659), 1, - sym_line_comment, - STATE(2761), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5130), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5318), 1, + anon_sym_QMARK, + STATE(1960), 1, + sym_block, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, sym_type_parameters, - ACTIONS(2741), 13, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2739), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72621] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [72919] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263452,128 +259416,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5316), 1, - anon_sym_QMARK, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5320), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2660), 1, - sym_line_comment, - STATE(2691), 1, - sym_block, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72728] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73029] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5318), 1, - anon_sym_LBRACE, - ACTIONS(5320), 1, - anon_sym_COMMA, - STATE(2661), 1, - sym_line_comment, - STATE(3877), 1, - aux_sym_match_expression_list_repeat1, - ACTIONS(3427), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3425), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72789] = 32, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263587,66 +259494,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5302), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_DOT_DOT, ACTIONS(5322), 1, anon_sym_RBRACK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2662), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72898] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73139] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263662,31 +259570,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, ACTIONS(5116), 1, anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2436), 1, + ACTIONS(5324), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_BANGis, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2663), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(2053), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5324), 2, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(2664), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -263706,155 +259615,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73003] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73245] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(2664), 1, - sym_line_comment, - ACTIONS(2671), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2669), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [73062] = 32, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5152), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5154), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5158), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5160), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5162), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5164), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5166), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5176), 1, - anon_sym_CARET, - ACTIONS(5182), 1, - anon_sym_AMP_AMP, - ACTIONS(5184), 1, - anon_sym_in, - ACTIONS(5186), 1, - anon_sym_BANGin, - ACTIONS(5210), 1, + ACTIONS(5084), 1, anon_sym_as, - ACTIONS(5212), 1, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5214), 1, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5218), 1, + ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5220), 1, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5222), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5326), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5328), 1, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_DOT_DOT, - STATE(2665), 1, - sym_line_comment, - STATE(2851), 1, + ACTIONS(5328), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2853), 1, + STATE(2379), 1, sym_or_block, - STATE(4221), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5178), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5170), 3, + STATE(2665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5174), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5180), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5172), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73171] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73355] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263868,114 +259726,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5302), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, anon_sym_DOT_DOT, ACTIONS(5330), 1, anon_sym_RBRACK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2666), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73280] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73465] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2667), 1, - sym_line_comment, - ACTIONS(2747), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5234), 1, + anon_sym_CARET, + ACTIONS(5236), 1, + anon_sym_AMP_AMP, + ACTIONS(5238), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5240), 1, + anon_sym_in, + ACTIONS(5242), 1, + anon_sym_BANGin, + ACTIONS(5332), 1, + anon_sym_is, + ACTIONS(5334), 1, + anon_sym_BANGis, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(2053), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5230), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5228), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2745), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5226), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [73335] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73571] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -263989,75 +259874,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5332), 1, + ACTIONS(5336), 1, + anon_sym_LBRACE, + ACTIONS(5338), 1, anon_sym_QMARK, - STATE(1801), 1, + STATE(1299), 1, sym_block, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2668), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73442] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73679] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264071,120 +259951,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5334), 1, - anon_sym_RBRACK, - STATE(2436), 1, + ACTIONS(5340), 1, + anon_sym_QMARK, + STATE(2340), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2669), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73551] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73787] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2670), 1, - sym_line_comment, - ACTIONS(3055), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3053), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [73606] = 32, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264192,72 +260024,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, ACTIONS(5102), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_CARET, + ACTIONS(5106), 1, + anon_sym_AMP_AMP, + ACTIONS(5108), 1, + anon_sym_PIPE_PIPE, ACTIONS(5110), 1, anon_sym_or, ACTIONS(5112), 1, anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, - anon_sym_CARET, - ACTIONS(5200), 1, - anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5116), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5118), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5336), 1, - anon_sym_RBRACK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2671), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(3550), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73715] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [73893] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264267,70 +260106,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5254), 1, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5260), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5262), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5264), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5266), 1, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5338), 1, - anon_sym_is, - ACTIONS(5340), 1, - anon_sym_BANGis, - STATE(2436), 1, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5342), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2672), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1839), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5256), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5248), 3, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5252), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5258), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5250), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73820] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74003] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264344,145 +260182,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5134), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5342), 1, + ACTIONS(5344), 1, anon_sym_QMARK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2482), 1, + STATE(2883), 1, sym_block, - STATE(2673), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73927] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74111] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2673), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(2703), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2701), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [74167] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_LBRACK, + ACTIONS(4773), 1, + anon_sym_QMARK, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(4777), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(4779), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + ACTIONS(4785), 1, + anon_sym_in, + ACTIONS(4787), 1, + anon_sym_BANGin, + ACTIONS(4789), 1, anon_sym_as, - ACTIONS(5100), 1, + ACTIONS(4791), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, + ACTIONS(4793), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, + ACTIONS(4795), 1, + anon_sym_AMP_AMP, + ACTIONS(4797), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4799), 1, anon_sym_or, - ACTIONS(5112), 1, + ACTIONS(4801), 1, anon_sym_is, - ACTIONS(5114), 1, + ACTIONS(4803), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5348), 1, + anon_sym_COLON, + ACTIONS(5350), 1, anon_sym_CARET, - ACTIONS(5292), 1, - anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, - anon_sym_in, - ACTIONS(5298), 1, - anon_sym_BANGin, - ACTIONS(5344), 1, - anon_sym_LBRACE, - ACTIONS(5346), 1, - anon_sym_QMARK, - STATE(1169), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5352), 1, + anon_sym_LT_DASH, + STATE(2114), 1, sym_argument_list, - STATE(2437), 1, + STATE(2115), 1, sym_or_block, - STATE(2674), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4204), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(4763), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(4781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2674), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(4769), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5346), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74034] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74275] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LBRACE, + STATE(2675), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(2867), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2865), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [74335] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264496,75 +260440,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5120), 1, + ACTIONS(5138), 1, anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5348), 1, + ACTIONS(5354), 1, anon_sym_QMARK, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2675), 1, - sym_line_comment, - STATE(2897), 1, + STATE(2481), 1, sym_block, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2676), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74141] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74443] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264578,70 +260517,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5350), 1, - anon_sym_RBRACK, - STATE(2436), 1, + ACTIONS(5356), 1, + anon_sym_LBRACE, + ACTIONS(5358), 1, + anon_sym_QMARK, + STATE(2197), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2676), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74250] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74551] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5362), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5360), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3013), 10, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3011), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [74613] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264651,68 +260646,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5234), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5236), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5238), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5240), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5242), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5352), 1, - anon_sym_RBRACK, - STATE(2436), 1, + ACTIONS(5324), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_BANGis, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2677), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(2053), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5230), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5224), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5228), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5232), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5226), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74359] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74719] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2769), 1, + sym_type_parameters, + STATE(2680), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(2695), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2693), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [74777] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264726,69 +260778,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5122), 1, - anon_sym_LBRACE, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5354), 1, + ACTIONS(5364), 1, anon_sym_QMARK, - STATE(1958), 1, + STATE(1697), 1, sym_block, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2678), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74466] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74885] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264802,71 +260859,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5356), 1, - anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_QMARK, - STATE(1309), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5366), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2679), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74573] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [74995] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -264890,23 +260943,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, ACTIONS(5118), 1, anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2680), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(3544), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5368), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2683), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, @@ -264926,103 +260980,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74678] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75101] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5154), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5156), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5158), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5160), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5162), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5164), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, + ACTIONS(5166), 1, anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5168), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + ACTIONS(5192), 1, anon_sym_as, - ACTIONS(5100), 1, + ACTIONS(5204), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, + ACTIONS(5206), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5208), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5210), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5212), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5214), 1, + anon_sym_or, + ACTIONS(5216), 1, + anon_sym_is, + ACTIONS(5218), 1, + anon_sym_BANGis, + ACTIONS(5220), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5222), 1, anon_sym_BANGin, - ACTIONS(5302), 1, + ACTIONS(5370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5372), 1, anon_sym_DOT_DOT, - ACTIONS(5360), 1, - anon_sym_RBRACK, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + STATE(2824), 1, sym_or_block, - STATE(2681), 1, - sym_line_comment, - STATE(4233), 1, + STATE(2826), 1, + sym_argument_list, + STATE(4201), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5200), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5194), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5198), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5202), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5196), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74787] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75211] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265036,64 +261085,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5362), 1, - anon_sym_RBRACK, - STATE(2436), 1, + ACTIONS(5374), 1, + anon_sym_LBRACE, + ACTIONS(5376), 1, + anon_sym_QMARK, + STATE(413), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2682), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74896] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75319] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5378), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_COMMA, + STATE(4107), 1, + aux_sym_match_expression_list_repeat1, + STATE(2686), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(3442), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3440), 25, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [75381] = 31, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265107,69 +261216,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5364), 1, - anon_sym_LBRACE, - ACTIONS(5366), 1, + ACTIONS(5382), 1, anon_sym_QMARK, - STATE(1008), 1, - sym_block, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2683), 1, - sym_line_comment, - STATE(4233), 1, + STATE(2692), 1, + sym_block, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2687), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75003] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75489] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265183,150 +261299,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5368), 1, - anon_sym_LBRACE, - ACTIONS(5370), 1, - anon_sym_QMARK, - STATE(2201), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5384), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2684), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2688), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75110] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75599] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4773), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4775), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(4777), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5084), 1, anon_sym_as, - ACTIONS(4789), 1, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(4791), 1, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(4793), 1, - anon_sym_AMP_AMP, - ACTIONS(4795), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4797), 1, + ACTIONS(5110), 1, anon_sym_or, - ACTIONS(4799), 1, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(4801), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(4803), 1, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(4805), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5374), 1, - anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_CARET, - ACTIONS(5378), 1, - anon_sym_LT_DASH, - STATE(2106), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5386), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2107), 1, + STATE(2379), 1, sym_or_block, - STATE(2685), 1, - sym_line_comment, - STATE(4341), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(4765), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4785), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 3, + STATE(2689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4783), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4787), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5372), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75217] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75709] = 32, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, - ACTIONS(5086), 1, - anon_sym_LBRACE, ACTIONS(5100), 1, anon_sym_PLUS_PLUS, ACTIONS(5102), 1, @@ -265337,73 +261455,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5380), 1, - anon_sym_QMARK, - STATE(2344), 1, - sym_block, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5280), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2686), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75324] = 32, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75819] = 31, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5004), 1, - anon_sym_QMARK_DOT, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265417,76 +261527,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5128), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5302), 1, - anon_sym_DOT_DOT, - ACTIONS(5382), 1, - anon_sym_RBRACK, - STATE(2436), 1, + ACTIONS(5390), 1, + anon_sym_QMARK, + STATE(1955), 1, + sym_block, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2687), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5194), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75433] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75927] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5392), 1, + anon_sym_DOLLARelse, + STATE(2692), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4871), 1, + ACTIONS(2727), 13, anon_sym_DOT, - ACTIONS(5386), 1, - anon_sym_QMARK, - STATE(2688), 1, - sym_line_comment, - ACTIONS(5384), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3431), 10, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 27, + anon_sym_DOT_DOT, + ACTIONS(2725), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -265497,6 +261612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -265513,168 +261629,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [75494] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [75985] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5104), 1, - anon_sym_CARET, - ACTIONS(5106), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - ACTIONS(5308), 1, - anon_sym_is, - ACTIONS(5310), 1, - anon_sym_BANGis, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2689), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2693), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1839), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3362), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5096), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5098), 4, + anon_sym_DOT_DOT, + ACTIONS(3360), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75599] = 31, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4757), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, anon_sym_CARET, - ACTIONS(5292), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5294), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5298), 1, anon_sym_BANGin, - ACTIONS(5388), 1, - anon_sym_QMARK, - STATE(1668), 1, - sym_block, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2690), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5282), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5286), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75706] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76040] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5390), 1, - anon_sym_DOLLARelse, - STATE(2691), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2694), 2, sym_line_comment, - ACTIONS(2691), 13, + sym_block_comment, + ACTIONS(3024), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -265688,7 +261701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2689), 27, + ACTIONS(3022), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -265716,16 +261729,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75763] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76095] = 28, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5396), 1, + anon_sym_RPAREN, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(4012), 1, + sym_parameter_declaration, + STATE(4017), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2695), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5392), 1, - anon_sym_DOLLARelse, - STATE(2692), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76196] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2696), 2, sym_line_comment, - ACTIONS(2861), 13, + sym_block_comment, + ACTIONS(3222), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -265739,7 +261824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2859), 27, + ACTIONS(3220), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -265767,96 +261852,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75820] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76251] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5394), 1, - anon_sym_RPAREN, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2693), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2697), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2759), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(2761), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75924] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [76306] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2069), 1, + anon_sym_RPAREN, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265870,116 +261933,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5416), 1, - anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2694), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76028] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76411] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2695), 1, - sym_line_comment, - ACTIONS(2869), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2871), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76082] = 30, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -265993,67 +262006,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5418), 1, + ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2696), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2699), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76186] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76516] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1931), 1, + anon_sym_RPAREN, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266067,59 +262083,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5420), 1, - anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2697), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76290] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76621] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2698), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2701), 2, sym_line_comment, - ACTIONS(2663), 11, + sym_block_comment, + ACTIONS(2971), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266131,7 +262150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2661), 29, + ACTIONS(2969), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266155,176 +262174,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76344] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76678] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5422), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2699), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2702), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2905), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(2903), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76448] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, anon_sym_CARET, - ACTIONS(5408), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5410), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5414), 1, anon_sym_BANGin, - ACTIONS(5424), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2700), 1, + [76733] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2703), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2943), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(2941), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76552] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [76788] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266338,111 +262307,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5426), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2701), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2704), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76656] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76893] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5428), 1, + ACTIONS(5394), 1, sym_identifier, - ACTIONS(5430), 1, - anon_sym_RPAREN, - ACTIONS(5432), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, + ACTIONS(5400), 1, anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5408), 1, anon_sym_shared, - STATE(2702), 1, - sym_line_comment, - STATE(3068), 1, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(3069), 1, sym_mutability_modifiers, - STATE(3944), 1, - sym_parameter_declaration, - STATE(3948), 1, + STATE(4079), 1, sym_type_parameter_declaration, - STATE(4399), 1, + STATE(4101), 1, + sym_parameter_declaration, + STATE(4261), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2705), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266455,22 +262426,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [76756] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [76994] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266484,67 +262455,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2703), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76860] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77099] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266558,62 +262530,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5446), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5438), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2704), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76964] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77204] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2705), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2708), 2, sym_line_comment, - ACTIONS(2871), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3055), 11, + sym_block_comment, + ACTIONS(3382), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266625,9 +262597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3053), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3380), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266635,12 +262609,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -266653,14 +262626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77020] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77259] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2706), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2709), 2, sym_line_comment, - ACTIONS(3045), 13, + sym_block_comment, + ACTIONS(3386), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -266674,7 +262648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3043), 27, + ACTIONS(3384), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266702,14 +262676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77074] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77314] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2707), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2710), 2, sym_line_comment, - ACTIONS(3041), 13, + sym_block_comment, + ACTIONS(3390), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -266723,7 +262698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3039), 27, + ACTIONS(3388), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266751,86 +262726,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77128] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77369] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5368), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5290), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5288), 5, anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77474] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5448), 1, anon_sym_RPAREN, - STATE(2708), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2712), 2, sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(4101), 1, - sym_type_parameter_declaration, - STATE(4103), 1, - sym_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [77228] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2709), 1, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77579] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2713), 2, sym_line_comment, - ACTIONS(3051), 13, + sym_block_comment, + ACTIONS(3009), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -266844,7 +262898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3049), 27, + ACTIONS(3007), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -266872,22 +262926,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77282] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77634] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266901,67 +262955,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5450), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5442), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2710), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77386] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77739] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2069), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -266975,59 +263032,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5452), 1, - anon_sym_LBRACE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2711), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77490] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77844] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2712), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2716), 2, sym_line_comment, - ACTIONS(3171), 13, + sym_block_comment, + ACTIONS(2923), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267041,7 +263098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3169), 27, + ACTIONS(2921), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267069,14 +263126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77544] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77899] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2713), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2717), 2, sym_line_comment, - ACTIONS(3175), 13, + sym_block_comment, + ACTIONS(3158), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267090,7 +263148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3173), 27, + ACTIONS(3156), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267118,162 +263176,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77598] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [77954] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2718), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(3162), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3160), 27, anon_sym_as, - ACTIONS(5100), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, anon_sym_CARET, - ACTIONS(5292), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5294), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5298), 1, anon_sym_BANGin, - ACTIONS(5454), 1, - anon_sym_LBRACE, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2714), 1, + [78009] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2719), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3442), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + anon_sym_DOT_DOT, + ACTIONS(3440), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77702] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78064] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2720), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(3410), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(5002), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3408), 27, anon_sym_as, - ACTIONS(5100), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5112), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + anon_sym_in, + anon_sym_BANGin, + [78119] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2721), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3178), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3176), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_CARET, - ACTIONS(5408), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5410), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5414), 1, anon_sym_BANGin, - ACTIONS(5456), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2715), 1, + [78174] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2722), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3182), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(3180), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77806] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78229] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2716), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2723), 2, sym_line_comment, - ACTIONS(3203), 13, + sym_block_comment, + ACTIONS(3394), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267287,7 +263448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3201), 27, + ACTIONS(3392), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267315,14 +263476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77860] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78284] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2717), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2724), 2, sym_line_comment, - ACTIONS(3207), 13, + sym_block_comment, + ACTIONS(3186), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267336,7 +263498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3205), 27, + ACTIONS(3184), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267364,14 +263526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77914] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78339] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2718), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2725), 2, sym_line_comment, - ACTIONS(3211), 13, + sym_block_comment, + ACTIONS(3194), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267385,7 +263548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3209), 27, + ACTIONS(3192), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267413,14 +263576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77968] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78394] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2719), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2726), 2, sym_line_comment, - ACTIONS(3223), 13, + sym_block_comment, + ACTIONS(3206), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267434,7 +263598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3221), 27, + ACTIONS(3204), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267462,14 +263626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78022] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78449] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2720), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_COMMA, + STATE(2727), 2, sym_line_comment, - ACTIONS(3227), 13, + sym_block_comment, + ACTIONS(2971), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267483,10 +263650,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3225), 27, + ACTIONS(2969), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -267511,94 +263677,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78076] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78506] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2728), 2, + sym_line_comment, sym_block_comment, - ACTIONS(47), 1, + ACTIONS(3294), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3292), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3620), 1, anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [78561] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2053), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5458), 1, - anon_sym_RPAREN, - STATE(2721), 1, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5324), 1, + anon_sym_is, + ACTIONS(5326), 1, + anon_sym_BANGis, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2729), 2, sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(3883), 1, - sym_parameter_declaration, - STATE(3884), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [78176] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5290), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [78666] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -267612,67 +263833,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5460), 1, - anon_sym_LBRACE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2722), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78280] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78771] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -267686,59 +263906,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5374), 1, - anon_sym_COLON, - STATE(2436), 1, + ACTIONS(5444), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2723), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78384] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78876] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2732), 2, sym_line_comment, - ACTIONS(3279), 13, + sym_block_comment, + ACTIONS(3242), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267752,7 +263974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3277), 27, + ACTIONS(3240), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267780,14 +264002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78438] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78931] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2725), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2733), 2, sym_line_comment, - ACTIONS(3283), 13, + sym_block_comment, + ACTIONS(3246), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -267801,7 +264024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3281), 27, + ACTIONS(3244), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -267829,166 +264052,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78492] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [78986] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5462), 1, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, + ACTIONS(5446), 1, anon_sym_RPAREN, - STATE(2726), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2734), 2, sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(4083), 1, - sym_parameter_declaration, - STATE(4087), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [78592] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5464), 1, - anon_sym_RPAREN, - STATE(2727), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(4067), 1, - sym_type_parameter_declaration, - STATE(4069), 1, - sym_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [78692] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [79091] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -268002,59 +264156,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5466), 1, + ACTIONS(5448), 1, anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2728), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2735), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78796] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79196] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2729), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2736), 2, sym_line_comment, - ACTIONS(3371), 13, + sym_block_comment, + ACTIONS(3238), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268068,7 +264224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3369), 27, + ACTIONS(3236), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268096,14 +264252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78850] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79251] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2730), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2737), 2, sym_line_comment, - ACTIONS(3375), 13, + sym_block_comment, + ACTIONS(3302), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268117,7 +264274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3373), 27, + ACTIONS(3300), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268145,14 +264302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78904] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79306] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2731), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2738), 2, sym_line_comment, - ACTIONS(3379), 13, + sym_block_comment, + ACTIONS(3306), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268166,7 +264324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3377), 27, + ACTIONS(3304), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268194,14 +264352,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78958] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79361] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2732), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2739), 2, sym_line_comment, - ACTIONS(3383), 13, + sym_block_comment, + ACTIONS(3310), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268215,7 +264374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3381), 27, + ACTIONS(3308), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268243,14 +264402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79012] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79416] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2733), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2740), 2, sym_line_comment, - ACTIONS(3387), 13, + sym_block_comment, + ACTIONS(3318), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268264,7 +264424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3385), 27, + ACTIONS(3316), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268292,14 +264452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79066] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79471] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2734), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2741), 2, sym_line_comment, - ACTIONS(3391), 13, + sym_block_comment, + ACTIONS(3326), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268313,7 +264474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3389), 27, + ACTIONS(3324), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268341,88 +264502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79120] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79526] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1767), 1, - anon_sym_RPAREN, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2735), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79224] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2736), 1, + STATE(2742), 2, sym_line_comment, - ACTIONS(3415), 13, + sym_block_comment, + ACTIONS(3330), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268436,7 +264524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3413), 27, + ACTIONS(3328), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268464,14 +264552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79278] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79581] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2737), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2743), 2, sym_line_comment, - ACTIONS(3419), 13, + sym_block_comment, + ACTIONS(3230), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268485,7 +264574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3417), 27, + ACTIONS(3228), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268513,164 +264602,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79332] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79636] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5468), 1, - anon_sym_RPAREN, - STATE(2738), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(3979), 1, - sym_type_parameter_declaration, - STATE(3981), 1, - sym_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [79432] = 30, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1869), 1, - anon_sym_RPAREN, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2739), 1, + STATE(2744), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79536] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5470), 1, - anon_sym_else, - STATE(2740), 1, - sym_line_comment, - STATE(2937), 1, - sym_else_branch, - ACTIONS(2475), 11, + ACTIONS(3398), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268682,9 +264623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2473), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3396), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268692,12 +264635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -268710,18 +264652,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79594] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79691] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5470), 1, - anon_sym_else, - STATE(2741), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2745), 2, sym_line_comment, - STATE(2938), 1, - sym_else_branch, - ACTIONS(2481), 11, + sym_block_comment, + ACTIONS(3406), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268733,9 +264673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2479), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3404), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268743,12 +264685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -268761,14 +264702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79652] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79746] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2742), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2746), 2, sym_line_comment, - ACTIONS(3235), 13, + sym_block_comment, + ACTIONS(3226), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268782,7 +264724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3233), 27, + ACTIONS(3224), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268810,15 +264752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79706] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [79801] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2743), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2747), 2, sym_line_comment, - ACTIONS(3407), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(2669), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268830,11 +264772,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3405), 27, + ACTIONS(2667), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -268842,11 +264782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -268855,18 +264796,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79760] = 5, - ACTIONS(3), 1, + [79856] = 28, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5450), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3993), 1, + sym_type_parameter_declaration, + STATE(3994), 1, + sym_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2748), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [79957] = 28, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5452), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3908), 1, + sym_parameter_declaration, + STATE(3909), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2749), 2, + sym_line_comment, sym_block_comment, - STATE(2744), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80058] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2750), 2, sym_line_comment, - ACTIONS(2741), 13, + sym_block_comment, + ACTIONS(3170), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268880,7 +264970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2739), 27, + ACTIONS(3168), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268908,14 +264998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79814] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80113] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2745), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2751), 2, sym_line_comment, - ACTIONS(2671), 13, + sym_block_comment, + ACTIONS(2909), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -268929,7 +265020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2669), 27, + ACTIONS(2907), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -268957,236 +265048,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79868] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80168] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, - anon_sym_CARET, - ACTIONS(5292), 1, - anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, - anon_sym_in, - ACTIONS(5298), 1, - anon_sym_BANGin, - ACTIONS(5472), 1, - anon_sym_LBRACE, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2746), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2752), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2695), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + anon_sym_DOT_DOT, + ACTIONS(2693), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79972] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, anon_sym_CARET, - ACTIONS(5408), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5410), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5414), 1, anon_sym_BANGin, - ACTIONS(5474), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2747), 1, + [80223] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2753), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2867), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(2865), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80076] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, anon_sym_CARET, - ACTIONS(5408), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5410), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5414), 1, anon_sym_BANGin, - ACTIONS(5476), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2748), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80180] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80278] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2749), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2754), 2, sym_line_comment, - ACTIONS(3403), 13, + sym_block_comment, + ACTIONS(3166), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -269200,7 +265170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3401), 27, + ACTIONS(3164), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269228,22 +265198,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80234] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80333] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -269257,67 +265227,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5478), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(5454), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2750), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80338] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80438] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -269331,181 +265302,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5480), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5456), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2751), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80442] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80543] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5458), 1, - anon_sym_RPAREN, - ACTIONS(5482), 1, - sym_identifier, - STATE(2752), 1, - sym_line_comment, - STATE(3067), 1, - sym_mutability_modifiers, - STATE(3883), 1, - sym_parameter_declaration, - STATE(3884), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [80542] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2871), 1, - anon_sym_COMMA, - STATE(2753), 1, + STATE(2757), 2, sym_line_comment, - ACTIONS(2747), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2745), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80598] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2754), 1, - sym_line_comment, - ACTIONS(3395), 13, + ACTIONS(3434), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -269519,7 +265370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3393), 27, + ACTIONS(3432), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269547,94 +265398,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80652] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80598] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5484), 1, - anon_sym_RPAREN, - STATE(2755), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(4049), 1, - sym_type_parameter_declaration, - STATE(4051), 1, - sym_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [80752] = 30, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -269648,255 +265427,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5486), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5458), 1, + anon_sym_SEMI, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2756), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80856] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80703] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2757), 1, - sym_line_comment, - ACTIONS(3367), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3365), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80910] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2758), 1, - sym_line_comment, - ACTIONS(3363), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3361), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80964] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2759), 1, - sym_line_comment, - ACTIONS(3355), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3353), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5298), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5300), 1, anon_sym_AMP_AMP, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5304), 1, anon_sym_in, + ACTIONS(5306), 1, anon_sym_BANGin, - [81018] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2760), 1, - sym_line_comment, - ACTIONS(3347), 13, + ACTIONS(5460), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3345), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81072] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80808] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2761), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2760), 2, sym_line_comment, - ACTIONS(3077), 13, + sym_block_comment, + ACTIONS(3234), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -269910,7 +265570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3075), 27, + ACTIONS(3232), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -269938,66 +265598,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81126] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80863] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5428), 1, + ACTIONS(5394), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, + ACTIONS(5400), 1, anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5408), 1, anon_sym_shared, ACTIONS(5462), 1, anon_sym_RPAREN, - STATE(2762), 1, - sym_line_comment, - STATE(3068), 1, + STATE(3069), 1, sym_mutability_modifiers, STATE(4041), 1, - sym_plain_type, - STATE(4083), 1, sym_parameter_declaration, - STATE(4087), 1, + STATE(4042), 1, sym_type_parameter_declaration, - STATE(4616), 1, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2761), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270010,66 +265671,117 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81226] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [80964] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2762), 2, + sym_line_comment, sym_block_comment, - ACTIONS(47), 1, + ACTIONS(3438), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3436), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [81019] = 28, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5428), 1, + ACTIONS(5394), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, + ACTIONS(5400), 1, anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5408), 1, anon_sym_shared, - ACTIONS(5488), 1, + ACTIONS(5464), 1, anon_sym_RPAREN, - STATE(2763), 1, - sym_line_comment, - STATE(3068), 1, + STATE(3069), 1, sym_mutability_modifiers, - STATE(4039), 1, + STATE(4078), 1, sym_parameter_declaration, - STATE(4040), 1, + STATE(4083), 1, sym_type_parameter_declaration, - STATE(4399), 1, + STATE(4261), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2763), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270082,14 +265794,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81326] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81120] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2764), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2764), 2, sym_line_comment, - ACTIONS(3319), 13, + sym_block_comment, + ACTIONS(3150), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270103,7 +265816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3317), 27, + ACTIONS(3148), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270131,88 +265844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81380] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81175] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5490), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2765), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81484] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2766), 1, + STATE(2765), 2, sym_line_comment, - ACTIONS(3307), 13, + sym_block_comment, + ACTIONS(3430), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270226,7 +265866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3305), 27, + ACTIONS(3428), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270254,14 +265894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81538] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81230] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2766), 2, sym_line_comment, - ACTIONS(3295), 13, + sym_block_comment, + ACTIONS(3426), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270275,7 +265916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3293), 27, + ACTIONS(3424), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270303,14 +265944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81592] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81285] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2768), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2767), 2, sym_line_comment, - ACTIONS(3275), 13, + sym_block_comment, + ACTIONS(3422), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270324,7 +265966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3273), 27, + ACTIONS(3420), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270352,14 +265994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81646] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81340] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2769), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2768), 2, sym_line_comment, - ACTIONS(3271), 13, + sym_block_comment, + ACTIONS(3418), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270373,7 +266016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3269), 27, + ACTIONS(3416), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270401,14 +266044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81700] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81395] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2770), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2769), 2, sym_line_comment, - ACTIONS(3267), 13, + sym_block_comment, + ACTIONS(3338), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270422,7 +266066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3265), 27, + ACTIONS(3336), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270450,22 +266094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81754] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81450] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -270479,59 +266123,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5492), 1, + ACTIONS(5466), 1, anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2771), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81858] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81555] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2772), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2771), 2, sym_line_comment, - ACTIONS(3259), 13, + sym_block_comment, + ACTIONS(3146), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270545,7 +266191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3257), 27, + ACTIONS(3144), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270573,22 +266219,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81912] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81610] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2772), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(3378), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3376), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [81665] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -270602,59 +266298,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5468), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2773), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82016] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81770] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2774), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2774), 2, sym_line_comment, - ACTIONS(3239), 13, + sym_block_comment, + ACTIONS(3370), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270668,7 +266366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3237), 27, + ACTIONS(3368), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -270696,237 +266394,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82070] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81825] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5198), 1, - anon_sym_CARET, - ACTIONS(5200), 1, - anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5496), 1, - anon_sym_RBRACK, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2775), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2775), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3366), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5188), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + anon_sym_DOT_DOT, + ACTIONS(3364), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82174] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, anon_sym_CARET, - ACTIONS(5408), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5410), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5414), 1, anon_sym_BANGin, - ACTIONS(5498), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2776), 1, + [81880] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2776), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3358), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(3356), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82278] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [81935] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5500), 1, - anon_sym_RPAREN, - STATE(2777), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(3896), 1, - sym_parameter_declaration, - STATE(3897), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82378] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2778), 1, + STATE(2777), 2, sym_line_comment, - ACTIONS(5502), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3427), 13, + sym_block_comment, + ACTIONS(3354), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270940,8 +266516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3425), 25, + ACTIONS(3352), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -270966,14 +266544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82434] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [81990] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2779), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2778), 2, sym_line_comment, - ACTIONS(3135), 13, + sym_block_comment, + ACTIONS(3350), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -270987,7 +266566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3133), 27, + ACTIONS(3348), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271015,14 +266594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82488] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82045] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2780), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2779), 2, sym_line_comment, - ACTIONS(3139), 13, + sym_block_comment, + ACTIONS(2993), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271036,7 +266616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3137), 27, + ACTIONS(2991), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271064,14 +266644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82542] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82100] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2781), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2780), 2, sym_line_comment, - ACTIONS(3151), 13, + sym_block_comment, + ACTIONS(3342), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271085,7 +266666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3149), 27, + ACTIONS(3340), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271113,22 +266694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82596] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82155] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -271142,120 +266723,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5504), 1, + ACTIONS(5470), 1, anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2782), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82700] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82260] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2783), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2782), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(3334), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5282), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1889), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 16, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3332), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82778] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82315] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2784), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2783), 2, sym_line_comment, - ACTIONS(3131), 13, + sym_block_comment, + ACTIONS(2989), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271269,7 +266841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3129), 27, + ACTIONS(2987), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271297,63 +266869,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82832] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82370] = 19, ACTIONS(5), 1, - sym_block_comment, - STATE(2785), 1, - sym_line_comment, - ACTIONS(3127), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5298), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3125), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 15, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82886] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82453] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2786), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2785), 2, sym_line_comment, - ACTIONS(3231), 13, + sym_block_comment, + ACTIONS(2985), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271367,7 +266955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3229), 27, + ACTIONS(2983), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271395,14 +266983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82940] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82508] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2787), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2786), 2, sym_line_comment, - ACTIONS(3123), 13, + sym_block_comment, + ACTIONS(2981), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271416,7 +267005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3121), 27, + ACTIONS(2979), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271444,14 +267033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82994] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82563] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2788), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2787), 2, sym_line_comment, - ACTIONS(3155), 13, + sym_block_comment, + ACTIONS(3020), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271465,7 +267055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3153), 27, + ACTIONS(3018), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271493,140 +267083,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83048] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82618] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5506), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2789), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83152] = 28, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5428), 1, + ACTIONS(5394), 1, sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, + ACTIONS(5400), 1, anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5408), 1, anon_sym_shared, - ACTIONS(5508), 1, + ACTIONS(5472), 1, anon_sym_RPAREN, - STATE(2790), 1, - sym_line_comment, - STATE(3068), 1, + STATE(3069), 1, sym_mutability_modifiers, - STATE(3971), 1, + STATE(3931), 1, sym_type_parameter_declaration, - STATE(3976), 1, + STATE(3932), 1, sym_parameter_declaration, - STATE(4399), 1, + STATE(4261), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2788), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271639,14 +267156,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83252] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82719] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2791), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2789), 2, sym_line_comment, - ACTIONS(3119), 13, + sym_block_comment, + ACTIONS(3214), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271660,7 +267178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3117), 27, + ACTIONS(3212), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271688,149 +267206,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83306] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82774] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5290), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2792), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2790), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2935), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5278), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5280), 5, + anon_sym_DOT_DOT, + ACTIONS(2933), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82829] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2931), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2929), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83388] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82884] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2792), 2, + sym_line_comment, sym_block_comment, - ACTIONS(47), 1, + ACTIONS(3190), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, anon_sym_BANG, - ACTIONS(5438), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5510), 1, - anon_sym_RPAREN, - STATE(2793), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(3937), 1, - sym_parameter_declaration, - STATE(3938), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83488] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3188), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82939] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2794), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2793), 2, sym_line_comment, - ACTIONS(3187), 13, + sym_block_comment, + ACTIONS(3174), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -271844,7 +267378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3185), 27, + ACTIONS(3172), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -271872,90 +267406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83542] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [82994] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5512), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2795), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83646] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(2796), 1, + STATE(2794), 2, sym_line_comment, - ACTIONS(2747), 11, + sym_block_comment, + ACTIONS(3218), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -271967,10 +267427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2745), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3216), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -271979,6 +267439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -271995,15 +267456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [83702] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83049] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2797), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2795), 2, sym_line_comment, - ACTIONS(3343), 13, + sym_block_comment, + ACTIONS(3142), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272017,7 +267478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3341), 27, + ACTIONS(3140), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272045,14 +267506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83756] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83104] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2798), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2796), 2, sym_line_comment, - ACTIONS(3335), 13, + sym_block_comment, + ACTIONS(3040), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272066,7 +267528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3333), 27, + ACTIONS(3038), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272094,154 +267556,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83810] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83159] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5514), 1, - anon_sym_RPAREN, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2799), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2797), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2927), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + anon_sym_DOT_DOT, + ACTIONS(2925), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83914] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(5290), 1, - anon_sym_CARET, - ACTIONS(5296), 1, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5298), 1, anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2800), 1, + [83214] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2798), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2917), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + anon_sym_DOT_DOT, + ACTIONS(2915), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [84002] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + anon_sym_BANGin, + [83269] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2801), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2799), 2, sym_line_comment, - ACTIONS(3351), 13, + sym_block_comment, + ACTIONS(3005), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272255,7 +267678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3349), 27, + ACTIONS(3003), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272283,14 +267706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84056] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83324] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2802), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2800), 2, sym_line_comment, - ACTIONS(3359), 13, + sym_block_comment, + ACTIONS(2913), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272304,7 +267728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3357), 27, + ACTIONS(2911), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272332,81 +267756,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84110] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83379] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5290), 1, - anon_sym_CARET, - ACTIONS(5292), 1, - anon_sym_AMP_AMP, - ACTIONS(5296), 1, - anon_sym_in, - ACTIONS(5298), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2803), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2801), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, + sym_block_comment, + ACTIONS(2901), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + anon_sym_DOT_DOT, + ACTIONS(2899), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [84200] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + anon_sym_BANGin, + [83434] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2804), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2802), 2, sym_line_comment, - ACTIONS(3431), 13, + sym_block_comment, + ACTIONS(3120), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272420,7 +267828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3429), 27, + ACTIONS(3118), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -272448,80 +267856,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84254] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83489] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5290), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2805), 1, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5474), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(4025), 1, + sym_type_parameter_declaration, + STATE(4027), 1, + sym_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2803), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5278), 3, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [83590] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_LBRACE, + STATE(2804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5280), 5, + ACTIONS(2701), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1897), 15, - anon_sym_as, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84336] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [83647] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2806), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2805), 2, sym_line_comment, - ACTIONS(2871), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2747), 11, + sym_block_comment, + ACTIONS(2703), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -272533,7 +268000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2745), 27, + ACTIONS(2701), 29, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -272557,58 +268024,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84392] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83702] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5290), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, anon_sym_CARET, - STATE(2436), 1, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5476), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2807), 1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2806), 2, sym_line_comment, - STATE(4233), 1, + sym_block_comment, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5290), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83807] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5298), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1807), 2, + ACTIONS(1877), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5278), 3, + STATE(2807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1805), 15, + ACTIONS(1875), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_EQ_EQ, @@ -272624,90 +268169,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84474] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [83890] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5516), 1, - anon_sym_LBRACE, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2808), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84578] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1847), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [83981] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3437), 1, - anon_sym_DOT, - STATE(2809), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_LBRACE, + STATE(2809), 2, sym_line_comment, - ACTIONS(3431), 12, + sym_block_comment, + ACTIONS(2971), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -272719,10 +268259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3429), 27, + ACTIONS(2969), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -272731,7 +268271,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -272748,22 +268287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84634] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [84038] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -272777,67 +268317,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5518), 1, + ACTIONS(5478), 1, anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2810), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2810), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84738] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84143] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -272851,67 +268392,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5520), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5480), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2811), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84842] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84248] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -272925,59 +268467,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5522), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(5482), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2812), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [84946] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84353] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2813), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5484), 1, + anon_sym_BANG, + STATE(2813), 2, sym_line_comment, - ACTIONS(3435), 13, + sym_block_comment, + ACTIONS(2975), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -272986,12 +268532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3433), 27, + ACTIONS(2973), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273019,64 +268564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85000] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84410] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2814), 1, - sym_line_comment, - ACTIONS(3427), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3425), 27, - anon_sym_as, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 2, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85054] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2815), 1, + STATE(2814), 2, sym_line_comment, - ACTIONS(3442), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(2703), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -273088,11 +268587,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3440), 27, + ACTIONS(2701), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273100,11 +268597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -273117,238 +268615,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85108] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84467] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4767), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4769), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4771), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4773), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4775), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(4777), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5084), 1, anon_sym_as, - ACTIONS(4789), 1, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, - ACTIONS(4791), 1, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(4793), 1, - anon_sym_AMP_AMP, - ACTIONS(4795), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4797), 1, + ACTIONS(5110), 1, anon_sym_or, - ACTIONS(4799), 1, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(4801), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(4803), 1, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(4805), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5376), 1, - anon_sym_CARET, - ACTIONS(5378), 1, - anon_sym_LT_DASH, - STATE(2106), 1, + ACTIONS(5486), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2107), 1, + STATE(2379), 1, sym_or_block, - STATE(2816), 1, - sym_line_comment, - STATE(4341), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(4765), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4785), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4781), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4783), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4787), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5372), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85212] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2817), 1, + STATE(2815), 2, sym_line_comment, - ACTIONS(3399), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3397), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85266] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2818), 1, - sym_line_comment, - ACTIONS(3423), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3421), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85320] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84572] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, + ACTIONS(5398), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, + ACTIONS(5400), 1, anon_sym_mut, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5442), 1, + ACTIONS(5408), 1, anon_sym_shared, - ACTIONS(5524), 1, + ACTIONS(5488), 1, + sym_identifier, + ACTIONS(5490), 1, anon_sym_RPAREN, - STATE(2819), 1, - sym_line_comment, - STATE(3068), 1, + STATE(3050), 1, sym_mutability_modifiers, - STATE(3941), 1, - sym_parameter_declaration, - STATE(3942), 1, + STATE(4009), 1, sym_type_parameter_declaration, - STATE(4399), 1, + STATE(4010), 1, + sym_parameter_declaration, + STATE(4261), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2816), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273361,22 +268763,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [85420] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [84673] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -273390,67 +268792,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5526), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5492), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2820), 1, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2817), 2, sym_line_comment, - STATE(4233), 1, + sym_block_comment, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [84778] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85524] = 30, - ACTIONS(3), 1, + ACTIONS(1847), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [84867] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5298), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5290), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [84950] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -273464,59 +268998,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5528), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2821), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [85628] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85055] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2822), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 1, + anon_sym_COMMA, + STATE(2821), 2, sym_line_comment, - ACTIONS(3411), 13, + sym_block_comment, + ACTIONS(2703), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -273530,10 +269068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3409), 27, + ACTIONS(2701), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273558,20 +269095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85682] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85112] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2822), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3437), 1, + ACTIONS(3154), 13, anon_sym_DOT, - STATE(2823), 1, - sym_line_comment, - ACTIONS(3943), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(3431), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -273583,8 +269116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + anon_sym_DOT_DOT, + ACTIONS(3152), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273592,6 +269128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -273608,17 +269145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [85740] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85167] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2871), 1, - anon_sym_COMMA, - STATE(2824), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2823), 2, sym_line_comment, - ACTIONS(3055), 13, + sym_block_comment, + ACTIONS(3210), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -273632,9 +269167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3053), 26, + ACTIONS(3208), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -273659,14 +269195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85796] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85222] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2825), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2824), 2, sym_line_comment, - ACTIONS(3331), 13, + sym_block_comment, + ACTIONS(3250), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -273680,7 +269217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3329), 27, + ACTIONS(3248), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273708,137 +269245,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85850] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85277] = 17, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - ACTIONS(5530), 1, - anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2826), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, + STATE(2825), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85954] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2827), 1, - sym_line_comment, - ACTIONS(3339), 13, - anon_sym_DOT, + ACTIONS(1849), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3337), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86008] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85356] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2828), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2826), 2, sym_line_comment, - ACTIONS(3327), 13, + sym_block_comment, + ACTIONS(3254), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -273852,7 +269329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3325), 27, + ACTIONS(3252), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -273880,120 +269357,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86062] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85411] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2829), 1, - sym_line_comment, - ACTIONS(3323), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2827), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3321), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, + [85516] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, anon_sym_in, + ACTIONS(5306), 1, anon_sym_BANGin, - [86116] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2830), 1, - sym_line_comment, - ACTIONS(3263), 13, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5290), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3261), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86170] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85621] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -274007,116 +269536,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5532), 1, + ACTIONS(5500), 1, anon_sym_RPAREN, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2831), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86274] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85726] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2832), 1, - sym_line_comment, - ACTIONS(3311), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, + ACTIONS(5502), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3309), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86328] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85831] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -274130,157 +269686,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5324), 1, - anon_sym_LBRACE, - STATE(2436), 1, + ACTIONS(5504), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2833), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86432] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [85936] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2834), 1, - sym_line_comment, - ACTIONS(3251), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + anon_sym_LBRACK, + ACTIONS(4773), 1, anon_sym_QMARK, + ACTIONS(4775), 1, anon_sym_BANG, + ACTIONS(4777), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3249), 27, + ACTIONS(4779), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4785), 1, + anon_sym_in, + ACTIONS(4787), 1, + anon_sym_BANGin, + ACTIONS(4789), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(4791), 1, anon_sym_PLUS_PLUS, + ACTIONS(4793), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4795), 1, anon_sym_AMP_AMP, + ACTIONS(4797), 1, anon_sym_PIPE_PIPE, + ACTIONS(4799), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, anon_sym_is, + ACTIONS(4803), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86486] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2835), 1, - sym_line_comment, - ACTIONS(3243), 13, + ACTIONS(5350), 1, + anon_sym_CARET, + ACTIONS(5352), 1, + anon_sym_LT_DASH, + STATE(2114), 1, + sym_argument_list, + STATE(2115), 1, + sym_or_block, + STATE(4204), 1, + sym_type_parameters, + ACTIONS(4763), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4781), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4767), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4769), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3241), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(4783), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5346), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86540] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86041] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2836), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2833), 2, sym_line_comment, - ACTIONS(3303), 13, + sym_block_comment, + ACTIONS(3258), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274294,7 +269829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3301), 27, + ACTIONS(3256), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274322,14 +269857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86594] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86096] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2837), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2834), 2, sym_line_comment, - ACTIONS(3287), 13, + sym_block_comment, + ACTIONS(3262), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274343,7 +269879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3285), 27, + ACTIONS(3260), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274371,14 +269907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86648] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86151] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2838), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2835), 2, sym_line_comment, - ACTIONS(3199), 13, + sym_block_comment, + ACTIONS(3266), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274392,7 +269929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3197), 27, + ACTIONS(3264), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274420,14 +269957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86702] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86206] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2839), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2836), 2, sym_line_comment, - ACTIONS(3195), 13, + sym_block_comment, + ACTIONS(3270), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274441,7 +269979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3193), 27, + ACTIONS(3268), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274469,22 +270007,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86756] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86261] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -274498,137 +270036,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5534), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5506), 1, anon_sym_SEMI, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2840), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5192), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5196), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5190), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [86860] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1767), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, - anon_sym_CARET, - ACTIONS(5292), 1, - anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, - anon_sym_in, - ACTIONS(5298), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2841), 1, + STATE(2837), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [86964] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86366] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2842), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2838), 2, sym_line_comment, - ACTIONS(2676), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2671), 13, + sym_block_comment, + ACTIONS(3298), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274642,8 +270104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2669), 24, + ACTIONS(3296), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -274652,6 +270116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -274667,17 +270132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87020] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86421] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2843), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2839), 2, sym_line_comment, - ACTIONS(2871), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3055), 13, + sym_block_comment, + ACTIONS(3314), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274691,8 +270154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3053), 25, + ACTIONS(3312), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -274717,86 +270182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87076] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86476] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5536), 1, - anon_sym_RPAREN, - STATE(2844), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(4008), 1, - sym_type_parameter_declaration, - STATE(4009), 1, - sym_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87176] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2845), 1, + STATE(2840), 2, sym_line_comment, - ACTIONS(3299), 13, + sym_block_comment, + ACTIONS(3322), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -274810,7 +270204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3297), 27, + ACTIONS(3320), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -274838,184 +270232,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87230] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86531] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5428), 1, - sym_identifier, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - ACTIONS(5538), 1, - anon_sym_RPAREN, - STATE(2846), 1, - sym_line_comment, - STATE(3068), 1, - sym_mutability_modifiers, - STATE(3987), 1, - sym_parameter_declaration, - STATE(3988), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87330] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2847), 1, - sym_line_comment, - ACTIONS(3291), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3289), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, anon_sym_in, + ACTIONS(5188), 1, anon_sym_BANGin, - [87384] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2848), 1, - sym_line_comment, - ACTIONS(3163), 13, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5508), 1, + anon_sym_RBRACK, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5180), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5176), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3161), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87438] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86636] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2849), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2842), 2, sym_line_comment, - ACTIONS(3159), 13, + sym_block_comment, + ACTIONS(3414), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275029,7 +270329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3157), 27, + ACTIONS(3412), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275057,88 +270357,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87492] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86691] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1869), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5290), 1, - anon_sym_CARET, - ACTIONS(5292), 1, - anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, - anon_sym_in, - ACTIONS(5298), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2850), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5284), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5278), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5282), 3, - anon_sym_SLASH, + ACTIONS(5406), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5286), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5280), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [87596] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5510), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(4063), 1, + sym_type_parameter_declaration, + STATE(4064), 1, + sym_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2843), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86792] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2851), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2844), 2, sym_line_comment, - ACTIONS(3255), 13, + sym_block_comment, + ACTIONS(3346), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275152,7 +270452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3253), 27, + ACTIONS(3344), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275180,17 +270480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87650] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86847] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2852), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2845), 2, sym_line_comment, - ACTIONS(2871), 2, + sym_block_comment, + ACTIONS(2872), 3, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2747), 13, + anon_sym_LBRACK, + ACTIONS(2867), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275204,7 +270506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2745), 25, + ACTIONS(2865), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -275214,7 +270516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -275230,14 +270531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87706] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86904] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2853), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2846), 2, sym_line_comment, - ACTIONS(3247), 13, + sym_block_comment, + ACTIONS(2971), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275251,10 +270556,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3245), 27, + ACTIONS(2969), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -275279,15 +270582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87760] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [86961] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2854), 1, - sym_line_comment, - ACTIONS(3019), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3015), 1, anon_sym_DOT, + STATE(2847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3013), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -275300,7 +270605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3017), 27, + ACTIONS(3011), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275328,14 +270633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87814] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [87018] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2855), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2848), 2, sym_line_comment, - ACTIONS(3015), 13, + sym_block_comment, + ACTIONS(3013), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275349,7 +270655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3013), 27, + ACTIONS(3011), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275377,140 +270683,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87868] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [87073] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, ACTIONS(5406), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2856), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1807), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5396), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5400), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1805), 15, - anon_sym_as, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5512), 1, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87950] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3870), 1, + sym_parameter_declaration, + STATE(4102), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2849), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87174] = 28, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, ACTIONS(5406), 1, - anon_sym_CARET, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2857), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3965), 1, + sym_plain_type, + STATE(4079), 1, + sym_type_parameter_declaration, + STATE(4101), 1, + sym_parameter_declaration, + STATE(4654), 1, + sym_reference_expression, + STATE(2850), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(1899), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87275] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2761), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2703), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5396), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5398), 5, + anon_sym_DOT_DOT, + ACTIONS(2701), 25, + anon_sym_as, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1897), 15, - anon_sym_as, - anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88032] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [87332] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2858), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2852), 2, sym_line_comment, - ACTIONS(3011), 13, + sym_block_comment, + ACTIONS(3402), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275524,7 +270902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3009), 27, + ACTIONS(3400), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275552,20 +270930,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88086] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [87387] = 30, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, + ACTIONS(5514), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2853), 2, + sym_line_comment, sym_block_comment, - STATE(2859), 1, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87492] = 28, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5516), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3999), 1, + sym_type_parameter_declaration, + STATE(4024), 1, + sym_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2854), 2, sym_line_comment, - ACTIONS(2676), 2, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [87593] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 2, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3133), 2, + ACTIONS(3018), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2671), 12, + STATE(2855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2867), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -275578,7 +271105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2669), 24, + ACTIONS(2865), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -275603,16 +271130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [88144] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [87652] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2673), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2869), 1, anon_sym_DOT, - STATE(2860), 1, + STATE(2856), 2, sym_line_comment, - ACTIONS(3135), 12, + sym_block_comment, + ACTIONS(3020), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -275625,7 +271153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3133), 27, + ACTIONS(3018), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -275653,15 +271181,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88200] = 5, - ACTIONS(3), 1, + [87709] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5348), 1, + anon_sym_COLON, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5180), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2857), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5182), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87814] = 30, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, + ACTIONS(5518), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2858), 2, + sym_line_comment, sym_block_comment, - STATE(2861), 1, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [87919] = 28, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5490), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(4009), 1, + sym_type_parameter_declaration, + STATE(4010), 1, + sym_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2859), 2, sym_line_comment, - ACTIONS(3219), 13, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [88020] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, + anon_sym_CARET, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5520), 1, + anon_sym_LBRACE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5290), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5294), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [88125] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5522), 1, + anon_sym_else, + STATE(2954), 1, + sym_else_branch, + STATE(2861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2491), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -275673,11 +271503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3217), 27, + ACTIONS(2489), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -275685,11 +271513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -275702,15 +271531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88254] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [88184] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2862), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5522), 1, + anon_sym_else, + STATE(2952), 1, + sym_else_branch, + STATE(2862), 2, sym_line_comment, - ACTIONS(3007), 13, - anon_sym_DOT, + sym_block_comment, + ACTIONS(2481), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -275722,11 +271555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3005), 27, + ACTIONS(2479), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -275734,11 +271565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -275751,22 +271583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88308] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [88243] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3568), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -275780,177 +271614,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5298), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5300), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5302), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5304), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5306), 1, anon_sym_BANGin, - ACTIONS(5540), 1, - anon_sym_SEMI, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2863), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5292), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5294), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5288), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88412] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [88348] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5406), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5408), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5412), 1, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5414), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - STATE(2436), 1, + ACTIONS(5524), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2864), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + STATE(2864), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 8, + [88453] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_RPAREN, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, - [88502] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, + anon_sym_in, + ACTIONS(5428), 1, + anon_sym_BANGin, + ACTIONS(5526), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2865), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5418), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [88558] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5406), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2865), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, + ACTIONS(1881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5396), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1879), 15, + anon_sym_as, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [88641] = 19, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5420), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1877), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2867), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1887), 9, + ACTIONS(1875), 15, anon_sym_as, anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -275958,24 +271934,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - [88590] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + anon_sym_BANGin, + [88724] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3580), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -275989,130 +271965,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5290), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5528), 1, + anon_sym_RBRACK, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2866), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88694] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [88829] = 28, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5530), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(4047), 1, + sym_parameter_declaration, + STATE(4048), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2869), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [88930] = 30, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5406), 1, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5298), 1, anon_sym_CARET, - STATE(2436), 1, + ACTIONS(5300), 1, + anon_sym_AMP_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5304), 1, + anon_sym_in, + ACTIONS(5306), 1, + anon_sym_BANGin, + ACTIONS(5532), 1, + anon_sym_LBRACE, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2867), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(1889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5396), 3, + ACTIONS(5292), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5286), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, + ACTIONS(5290), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 15, - anon_sym_as, - anon_sym_RPAREN, + ACTIONS(5294), 4, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88776] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5288), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [89035] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1839), 1, - anon_sym_LBRACE, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -276122,269 +272184,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5290), 1, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5292), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5294), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5298), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5308), 1, - anon_sym_is, - ACTIONS(5310), 1, - anon_sym_BANGis, - STATE(2436), 1, + ACTIONS(5534), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2868), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5284), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5278), 3, + STATE(2871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5282), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5286), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5280), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [88880] = 17, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89140] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2869), 1, - sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1889), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1887), 16, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, anon_sym_in, + ACTIONS(5428), 1, anon_sym_BANGin, - [88958] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2870), 1, - sym_line_comment, - ACTIONS(2961), 13, + ACTIONS(5536), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2872), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2959), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89012] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89245] = 30, ACTIONS(5), 1, - sym_block_comment, - STATE(2871), 1, - sym_line_comment, - ACTIONS(2895), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2893), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5100), 1, anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5110), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5112), 1, anon_sym_is, + ACTIONS(5114), 1, anon_sym_BANGis, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5422), 1, + anon_sym_AMP_AMP, + ACTIONS(5424), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5426), 1, anon_sym_in, + ACTIONS(5428), 1, anon_sym_BANGin, - [89066] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2872), 1, - sym_line_comment, - ACTIONS(2891), 13, + ACTIONS(5538), 1, + anon_sym_RPAREN, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2873), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2889), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89120] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89350] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2873), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5540), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2874), 2, sym_line_comment, - ACTIONS(2887), 13, + sym_block_comment, + ACTIONS(3442), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -276398,10 +272409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2885), 27, + ACTIONS(3440), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -276426,269 +272435,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89174] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89407] = 23, ACTIONS(5), 1, - sym_block_comment, - STATE(2874), 1, - sym_line_comment, - ACTIONS(2883), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2881), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5420), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5426), 1, anon_sym_in, + ACTIONS(5428), 1, anon_sym_BANGin, - [89228] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2875), 1, - sym_line_comment, - ACTIONS(2965), 13, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2963), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1847), 8, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + [89498] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5420), 1, + anon_sym_CARET, + ACTIONS(5426), 1, anon_sym_in, + ACTIONS(5428), 1, anon_sym_BANGin, - [89282] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2876), 1, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5416), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2876), 2, sym_line_comment, - ACTIONS(2747), 11, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2745), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, + ACTIONS(5412), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1847), 9, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89336] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89587] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2871), 1, - anon_sym_LBRACE, - STATE(2877), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5420), 1, + anon_sym_CARET, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(1849), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2877), 2, sym_line_comment, - ACTIONS(3055), 11, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5414), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3053), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 15, + anon_sym_as, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [89392] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89670] = 28, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5542), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5394), 1, + sym_identifier, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, anon_sym_BANG, - STATE(2878), 1, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + ACTIONS(5542), 1, + anon_sym_RPAREN, + STATE(3069), 1, + sym_mutability_modifiers, + STATE(3948), 1, + sym_parameter_declaration, + STATE(3949), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2878), 2, sym_line_comment, - ACTIONS(3081), 12, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [89771] = 17, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + STATE(2879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5414), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1849), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3079), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 16, + anon_sym_as, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89448] = 30, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89850] = 30, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -276702,60 +272798,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, ACTIONS(5114), 1, anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5428), 1, anon_sym_BANGin, ACTIONS(5544), 1, - anon_sym_RBRACK, - STATE(2436), 1, + anon_sym_RPAREN, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2879), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [89552] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [89955] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(2880), 1, - sym_line_comment, - ACTIONS(3215), 13, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3015), 1, anon_sym_DOT, + STATE(2881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3941), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -276767,11 +272870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3213), 27, + ACTIONS(3011), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -276779,7 +272879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -276796,15 +272895,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89606] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, + [90014] = 8, ACTIONS(5), 1, - sym_block_comment, - STATE(2881), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2872), 1, + anon_sym_LBRACK, + ACTIONS(3018), 1, + anon_sym_LBRACE, + ACTIONS(5546), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(2882), 2, sym_line_comment, - ACTIONS(3179), 13, + sym_block_comment, + ACTIONS(2867), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2865), 24, anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [90074] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5548), 1, + anon_sym_DOLLARelse, + STATE(2883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2727), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -276816,11 +272970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3177), 27, + ACTIONS(2725), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -276828,11 +272980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -276845,22 +272998,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89660] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90130] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -276870,192 +273023,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5546), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5550), 1, anon_sym_is, - ACTIONS(5548), 1, + ACTIONS(5552), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2882), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2884), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [89761] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90232] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4705), 1, + anon_sym_as, + ACTIONS(4711), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(4721), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(4723), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4725), 1, + anon_sym_DASH_DASH, + ACTIONS(4727), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(4729), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(4731), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5198), 1, - anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(4733), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(4735), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5550), 1, + ACTIONS(4737), 1, + anon_sym_or, + ACTIONS(4739), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4741), 1, anon_sym_is, - ACTIONS(5552), 1, + ACTIONS(4743), 1, anon_sym_BANGis, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, + ACTIONS(4745), 1, + anon_sym_in, + ACTIONS(4747), 1, + anon_sym_BANGin, + ACTIONS(5556), 1, + anon_sym_CARET, + STATE(2000), 1, sym_or_block, - STATE(2883), 1, - sym_line_comment, - STATE(4233), 1, + STATE(2001), 1, + sym_argument_list, + STATE(4182), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(4703), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(4717), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4713), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(4715), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(4719), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5554), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [89862] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90334] = 26, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(5554), 1, - anon_sym_COMMA, - STATE(2884), 1, - sym_line_comment, - STATE(3983), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(3427), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(623), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3425), 25, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(2867), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(3620), 1, anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + STATE(4162), 1, + sym__plain_type_without_special, + STATE(4163), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2886), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3018), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89921] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(2386), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [90430] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277063,71 +273237,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5104), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5106), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5108), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5556), 1, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, anon_sym_is, - ACTIONS(5558), 1, + ACTIONS(5114), 1, anon_sym_BANGis, - STATE(2436), 1, + ACTIONS(5116), 1, + anon_sym_in, + ACTIONS(5118), 1, + anon_sym_BANGin, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2885), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5096), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5090), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5094), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5098), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5092), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90022] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90532] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277137,69 +273312,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, ACTIONS(5560), 1, anon_sym_is, ACTIONS(5562), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2886), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2888), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90123] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90634] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277207,71 +273383,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, ACTIONS(5102), 1, anon_sym_DASH_DASH, - ACTIONS(5104), 1, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5106), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5108), 1, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_PIPE_PIPE, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, + ACTIONS(5564), 1, anon_sym_is, - ACTIONS(5114), 1, + ACTIONS(5566), 1, anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_in, - ACTIONS(5118), 1, - anon_sym_BANGin, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2887), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5096), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5090), 3, + STATE(2889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5094), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5098), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5092), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90224] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90736] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5568), 1, + anon_sym_DOLLARelse, + STATE(2890), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(2751), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2749), 27, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4996), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [90792] = 29, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277281,69 +273508,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5564), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5570), 1, anon_sym_is, - ACTIONS(5566), 1, + ACTIONS(5572), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2888), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90325] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90894] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277353,69 +273581,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5568), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5574), 1, anon_sym_is, - ACTIONS(5570), 1, + ACTIONS(5576), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2889), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2892), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90426] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [90996] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277425,61 +273654,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5572), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5578), 1, anon_sym_is, - ACTIONS(5574), 1, + ACTIONS(5580), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2890), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2893), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90527] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91098] = 8, ACTIONS(5), 1, - sym_block_comment, - STATE(2891), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4857), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_COMMA, + STATE(4082), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(2894), 2, sym_line_comment, - ACTIONS(2976), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -277491,12 +273728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2973), 28, - anon_sym_SEMI, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -277520,70 +273754,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [90580] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91158] = 29, ACTIONS(5), 1, - sym_block_comment, - STATE(2892), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5180), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2895), 2, sym_line_comment, - ACTIONS(2970), 11, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5176), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2967), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90633] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91260] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277593,69 +273852,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5112), 1, + anon_sym_is, + ACTIONS(5114), 1, + anon_sym_BANGis, + ACTIONS(5420), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5422), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, + ACTIONS(5424), 1, anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5426), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5428), 1, anon_sym_BANGin, - ACTIONS(5576), 1, - anon_sym_is, - ACTIONS(5578), 1, - anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2893), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5416), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2896), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5410), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5414), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5412), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90734] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91362] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277665,69 +273925,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5338), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5584), 1, anon_sym_is, - ACTIONS(5340), 1, + ACTIONS(5586), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2894), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2897), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90835] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91464] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277737,167 +273998,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5580), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5588), 1, anon_sym_is, - ACTIONS(5582), 1, + ACTIONS(5590), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2895), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2898), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [90936] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91566] = 25, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5584), 1, - anon_sym_DOLLARelse, - STATE(2896), 1, - sym_line_comment, - ACTIONS(2861), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(623), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2859), 27, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(2867), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(3620), 1, anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_DOT_DOT_DOT, + STATE(4336), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2899), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3018), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90991] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91660] = 26, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5586), 1, - anon_sym_DOLLARelse, - STATE(2897), 1, - sym_line_comment, - ACTIONS(2691), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(623), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2689), 27, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(2867), 1, anon_sym_DOT, - anon_sym_as, + ACTIONS(3620), 1, anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5592), 1, + anon_sym_DOT_DOT_DOT, + STATE(4335), 1, + sym__plain_type_without_special, + STATE(4336), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2900), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3018), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91046] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(2386), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [91756] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -277907,110 +274210,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2436), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5594), 1, + anon_sym_is, + ACTIONS(5596), 1, + anon_sym_BANGis, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2898), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91147] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91858] = 25, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(579), 1, + ACTIONS(623), 1, anon_sym_LBRACK2, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(2671), 1, + ACTIONS(2867), 1, anon_sym_DOT, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5588), 1, + ACTIONS(5558), 1, anon_sym_DOT_DOT_DOT, - STATE(2899), 1, - sym_line_comment, - STATE(4309), 1, + STATE(4163), 1, sym_plain_type, - STATE(4423), 1, - sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2902), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(3133), 3, + ACTIONS(3018), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2467), 3, + STATE(2386), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278023,70 +274327,92 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91242] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [91952] = 29, ACTIONS(5), 1, - sym_block_comment, - STATE(2900), 1, - sym_line_comment, - ACTIONS(3948), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3335), 12, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5084), 1, + anon_sym_as, + ACTIONS(5100), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5102), 1, + anon_sym_DASH_DASH, + ACTIONS(5110), 1, + anon_sym_or, + ACTIONS(5178), 1, + anon_sym_CARET, + ACTIONS(5184), 1, + anon_sym_AMP_AMP, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5598), 1, + anon_sym_is, + ACTIONS(5600), 1, + anon_sym_BANGis, + STATE(2378), 1, + sym_argument_list, + STATE(2379), 1, + sym_or_block, + STATE(4254), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5180), 2, + anon_sym_LT, + anon_sym_GT, + STATE(2903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5176), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3333), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [91297] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92054] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(2676), 1, - anon_sym_LBRACK, - ACTIONS(3133), 1, - anon_sym_LBRACE, - STATE(2901), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3948), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(2904), 2, sym_line_comment, - ACTIONS(5590), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2671), 11, + sym_block_comment, + ACTIONS(3402), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -278098,8 +274424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2669), 24, - anon_sym_DOT, + ACTIONS(3400), 25, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -278108,6 +274433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -278123,22 +274449,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [91356] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT, + [92110] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -278148,209 +274475,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5592), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5602), 1, anon_sym_is, - ACTIONS(5594), 1, + ACTIONS(5604), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2902), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91457] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92212] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, - anon_sym_LPAREN, - ACTIONS(4996), 1, - anon_sym_LBRACK, - ACTIONS(4998), 1, - anon_sym_QMARK, - ACTIONS(5000), 1, - anon_sym_BANG, - ACTIONS(5002), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5084), 1, - anon_sym_as, - ACTIONS(5100), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5102), 1, - anon_sym_DASH_DASH, - ACTIONS(5110), 1, - anon_sym_or, - ACTIONS(5112), 1, - anon_sym_is, - ACTIONS(5114), 1, - anon_sym_BANGis, - ACTIONS(5406), 1, - anon_sym_CARET, - ACTIONS(5408), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5412), 1, - anon_sym_in, - ACTIONS(5414), 1, - anon_sym_BANGin, - STATE(2436), 1, - sym_argument_list, - STATE(2437), 1, - sym_or_block, - STATE(2903), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2906), 2, sym_line_comment, - STATE(4233), 1, - sym_type_parameters, - ACTIONS(5004), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5402), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5396), 3, + sym_block_comment, + ACTIONS(3035), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5400), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5404), 4, + ACTIONS(3032), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5398), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91558] = 25, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [92266] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_LBRACK2, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5596), 1, - anon_sym_DOT_DOT_DOT, - STATE(2904), 1, - sym_line_comment, - STATE(4185), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3133), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91651] = 29, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -278360,69 +274597,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5598), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5332), 1, anon_sym_is, - ACTIONS(5600), 1, + ACTIONS(5334), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2905), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91752] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92368] = 29, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4994), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4996), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4998), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5000), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5002), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, ACTIONS(5084), 1, anon_sym_as, @@ -278432,270 +274670,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, ACTIONS(5110), 1, anon_sym_or, - ACTIONS(5198), 1, + ACTIONS(5178), 1, anon_sym_CARET, - ACTIONS(5200), 1, + ACTIONS(5184), 1, anon_sym_AMP_AMP, - ACTIONS(5202), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5602), 1, + ACTIONS(5190), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5606), 1, anon_sym_is, - ACTIONS(5604), 1, + ACTIONS(5608), 1, anon_sym_BANGis, - STATE(2436), 1, + STATE(2378), 1, sym_argument_list, - STATE(2437), 1, + STATE(2379), 1, sym_or_block, - STATE(2906), 1, - sym_line_comment, - STATE(4233), 1, + STATE(4254), 1, sym_type_parameters, - ACTIONS(5004), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5194), 2, + ACTIONS(5180), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5188), 3, + STATE(2908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5172), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5192), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5196), 4, + ACTIONS(5182), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5190), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91853] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92470] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4705), 1, - anon_sym_as, - ACTIONS(4711), 1, - anon_sym_LPAREN, - ACTIONS(4721), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4725), 1, - anon_sym_DASH_DASH, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(4729), 1, - anon_sym_BANG, - ACTIONS(4731), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4737), 1, - anon_sym_or, - ACTIONS(4739), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_is, - ACTIONS(4743), 1, - anon_sym_BANGis, - ACTIONS(4745), 1, - anon_sym_in, - ACTIONS(4747), 1, - anon_sym_BANGin, - ACTIONS(5608), 1, - anon_sym_CARET, - STATE(2027), 1, - sym_argument_list, - STATE(2038), 1, - sym_or_block, - STATE(2907), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2909), 2, sym_line_comment, - STATE(4152), 1, - sym_type_parameters, - ACTIONS(4703), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4717), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4713), 3, + sym_block_comment, + ACTIONS(3029), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4715), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4719), 4, + ACTIONS(3026), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5606), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [91954] = 26, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [92524] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_LBRACK2, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5596), 1, - anon_sym_DOT_DOT_DOT, - STATE(2908), 1, - sym_line_comment, - STATE(4184), 1, - sym__plain_type_without_special, - STATE(4185), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3133), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2467), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92049] = 25, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(579), 1, - anon_sym_LBRACK2, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_DOT_DOT_DOT, - STATE(2909), 1, + STATE(1682), 1, + sym_block, + STATE(2910), 2, sym_line_comment, - STATE(4309), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3133), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92142] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2910), 1, - sym_line_comment, - ACTIONS(3379), 11, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -278707,9 +274789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3377), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -278718,11 +274801,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -278735,14 +274816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92194] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92579] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2911), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2911), 2, sym_line_comment, - ACTIONS(3427), 11, + sym_block_comment, + ACTIONS(3390), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -278754,7 +274836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3425), 27, + ACTIONS(3388), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -278782,59 +274864,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92246] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92632] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2379), 1, + STATE(2437), 1, sym_plain_type, - STATE(2912), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2912), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(585), 4, + ACTIONS(563), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278847,14 +274930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92334] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92721] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2913), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2913), 2, sym_line_comment, - ACTIONS(3231), 11, + sym_block_comment, + ACTIONS(3330), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -278866,7 +274950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3229), 27, + ACTIONS(3328), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -278894,14 +274978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92386] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92774] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2914), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2914), 2, sym_line_comment, - ACTIONS(3279), 11, + sym_block_comment, + ACTIONS(3398), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -278913,7 +274998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3277), 27, + ACTIONS(3396), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -278941,64 +275026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92438] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92827] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2915), 1, - sym_line_comment, - ACTIONS(4896), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3427), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3425), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [92492] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(437), 1, - sym_block, - STATE(2916), 1, + STATE(2915), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3406), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279010,10 +275046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3404), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -279022,9 +275057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -279037,16 +275074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92546] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92880] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2896), 1, - sym_block, - STATE(2917), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2916), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3218), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279058,10 +275094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3216), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -279070,9 +275105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -279085,14 +275122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92600] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92933] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2918), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2917), 2, sym_line_comment, - ACTIONS(3419), 11, + sym_block_comment, + ACTIONS(3318), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279104,7 +275142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3417), 27, + ACTIONS(3316), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279132,16 +275170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92652] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [92986] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2342), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2190), 1, sym_block, - STATE(2919), 1, + STATE(2918), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279153,7 +275192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -279180,14 +275219,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92706] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93041] = 23, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + STATE(2451), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2919), 2, + sym_line_comment, sym_block_comment, - STATE(2920), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(603), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [93130] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2920), 2, sym_line_comment, - ACTIONS(3415), 11, + sym_block_comment, + ACTIONS(3009), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279199,7 +275305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3413), 27, + ACTIONS(3007), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279227,14 +275333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92758] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93183] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2921), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2921), 2, sym_line_comment, - ACTIONS(3391), 11, + sym_block_comment, + ACTIONS(2905), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279246,7 +275353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3389), 27, + ACTIONS(2903), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279274,14 +275381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92810] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93236] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2922), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2922), 2, sym_line_comment, - ACTIONS(3387), 11, + sym_block_comment, + ACTIONS(3222), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279293,7 +275401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3385), 27, + ACTIONS(3220), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279321,14 +275429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92862] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93289] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2923), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2923), 2, sym_line_comment, - ACTIONS(3383), 11, + sym_block_comment, + ACTIONS(3310), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279340,7 +275449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3381), 27, + ACTIONS(3308), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279368,16 +275477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92914] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93342] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(1952), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1813), 1, sym_block, - STATE(2924), 1, + STATE(2924), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279389,7 +275499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -279416,14 +275526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [92968] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93397] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2925), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2925), 2, sym_line_comment, - ACTIONS(3375), 11, + sym_block_comment, + ACTIONS(3234), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279435,7 +275546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3373), 27, + ACTIONS(3232), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279463,14 +275574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93020] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93450] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2926), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2926), 2, sym_line_comment, - ACTIONS(3371), 11, + sym_block_comment, + ACTIONS(3306), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279482,7 +275594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3369), 27, + ACTIONS(3304), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279510,79 +275622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93072] = 23, - ACTIONS(497), 1, + [93503] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3660), 1, - anon_sym_LPAREN, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5612), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_QMARK, - ACTIONS(5616), 1, - anon_sym_BANG, - ACTIONS(5618), 1, - anon_sym_LBRACK2, - ACTIONS(5620), 1, - anon_sym_AMP, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5624), 1, - anon_sym_map_LBRACK, - ACTIONS(5626), 1, - anon_sym_chan, - ACTIONS(5628), 1, - anon_sym_thread, - ACTIONS(5630), 1, - anon_sym_atomic, - STATE(1708), 1, - sym_plain_type, - STATE(2927), 1, + STATE(2927), 2, sym_line_comment, - STATE(4434), 1, - sym_reference_expression, - STATE(3424), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(627), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1669), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1672), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93160] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2928), 1, - sym_line_comment, - ACTIONS(3283), 11, + ACTIONS(3302), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279594,7 +275642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3281), 27, + ACTIONS(3300), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279622,16 +275670,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93212] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93556] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(1304), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1323), 1, sym_block, - STATE(2929), 1, + STATE(2928), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279643,7 +275692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -279670,16 +275719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93266] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93611] = 6, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, STATE(1956), 1, sym_block, - STATE(2930), 1, + STATE(2929), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279691,7 +275741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -279718,79 +275768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93320] = 23, - ACTIONS(497), 1, + [93666] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3660), 1, - anon_sym_LPAREN, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5612), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_QMARK, - ACTIONS(5616), 1, - anon_sym_BANG, - ACTIONS(5618), 1, - anon_sym_LBRACK2, - ACTIONS(5620), 1, - anon_sym_AMP, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5624), 1, - anon_sym_map_LBRACK, - ACTIONS(5626), 1, - anon_sym_chan, - ACTIONS(5628), 1, - anon_sym_thread, - ACTIONS(5630), 1, - anon_sym_atomic, - STATE(1709), 1, - sym_plain_type, - STATE(2931), 1, + STATE(1010), 1, + sym_block, + STATE(2930), 2, sym_line_comment, - STATE(4434), 1, - sym_reference_expression, - STATE(3424), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(619), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1669), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1672), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93408] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2932), 1, - sym_line_comment, - ACTIONS(3227), 11, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279802,9 +275790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3225), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -279813,11 +275802,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -279830,14 +275817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93460] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93721] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2933), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2931), 2, sym_line_comment, - ACTIONS(3223), 11, + sym_block_comment, + ACTIONS(3386), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279849,7 +275837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3221), 27, + ACTIONS(3384), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279877,14 +275865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93512] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93774] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2934), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2932), 2, sym_line_comment, - ACTIONS(3211), 11, + sym_block_comment, + ACTIONS(3246), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279896,7 +275885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3209), 27, + ACTIONS(3244), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -279924,16 +275913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93564] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93827] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2195), 1, - sym_block, - STATE(2935), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2933), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(2923), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -279945,10 +275933,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(2921), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -279957,9 +275944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -279972,79 +275961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93618] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93880] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - STATE(2459), 1, - sym_plain_type, - STATE(2936), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(625), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93706] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2937), 1, + STATE(2934), 2, sym_line_comment, - ACTIONS(3207), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280056,7 +275981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3205), 27, + ACTIONS(3440), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -280084,14 +276009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93758] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93933] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2938), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2935), 2, sym_line_comment, - ACTIONS(3203), 11, + sym_block_comment, + ACTIONS(3326), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280103,7 +276029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3201), 27, + ACTIONS(3324), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -280131,14 +276057,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93810] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [93986] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2939), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2890), 1, + sym_block, + STATE(2936), 2, sym_line_comment, - ACTIONS(3175), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280150,9 +276079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3173), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280161,11 +276091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280178,16 +276106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93862] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94041] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1018), 1, - sym_block, - STATE(2940), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2937), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(2759), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280199,10 +276126,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(2761), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280211,9 +276137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280226,14 +276154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93916] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94094] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2941), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2938), 2, sym_line_comment, - ACTIONS(3171), 11, + sym_block_comment, + ACTIONS(3242), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280245,7 +276174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3169), 27, + ACTIONS(3240), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -280273,14 +276202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [93968] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94147] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2942), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2490), 1, + sym_block, + STATE(2939), 2, sym_line_comment, - ACTIONS(3051), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280292,9 +276224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3049), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280303,11 +276236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280320,79 +276251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94020] = 23, - ACTIONS(497), 1, + [94202] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3660), 1, - anon_sym_LPAREN, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5612), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_QMARK, - ACTIONS(5616), 1, - anon_sym_BANG, - ACTIONS(5618), 1, - anon_sym_LBRACK2, - ACTIONS(5620), 1, - anon_sym_AMP, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5624), 1, - anon_sym_map_LBRACK, - ACTIONS(5626), 1, - anon_sym_chan, - ACTIONS(5628), 1, - anon_sym_thread, - ACTIONS(5630), 1, - anon_sym_atomic, - STATE(1677), 1, - sym_plain_type, - STATE(2943), 1, + STATE(421), 1, + sym_block, + STATE(2940), 2, sym_line_comment, - STATE(4434), 1, - sym_reference_expression, - STATE(3424), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(589), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1669), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1672), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94108] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2944), 1, - sym_line_comment, - ACTIONS(3041), 11, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280404,9 +276273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3039), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280415,11 +276285,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280432,14 +276300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94160] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94257] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2945), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2941), 2, sym_line_comment, - ACTIONS(3045), 11, + sym_block_comment, + ACTIONS(3206), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280451,7 +276320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3043), 27, + ACTIONS(3204), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -280479,16 +276348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94212] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94310] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2511), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1961), 1, sym_block, - STATE(2946), 1, + STATE(2942), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280500,7 +276370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -280527,16 +276397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94266] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94365] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1795), 1, - sym_block, - STATE(2947), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2943), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3194), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280548,10 +276417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3192), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280560,9 +276428,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280575,16 +276445,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94320] = 6, + [94418] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_LPAREN, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5612), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, + anon_sym_BANG, + ACTIONS(5618), 1, + anon_sym_LBRACK2, + ACTIONS(5620), 1, + anon_sym_AMP, + ACTIONS(5622), 1, + anon_sym_shared, + ACTIONS(5624), 1, + anon_sym_map_LBRACK, + ACTIONS(5626), 1, + anon_sym_chan, + ACTIONS(5628), 1, + anon_sym_thread, + ACTIONS(5630), 1, + anon_sym_atomic, + STATE(1685), 1, + sym_plain_type, + STATE(4460), 1, + sym_reference_expression, + STATE(2944), 2, + sym_line_comment, sym_block_comment, - STATE(1164), 1, - sym_block, - STATE(2948), 1, + STATE(3433), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(601), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1667), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1710), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [94507] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2945), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3382), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280596,10 +276531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3380), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280608,9 +276542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280623,14 +276559,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94374] = 5, + [94560] = 23, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_LPAREN, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5612), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, + anon_sym_BANG, + ACTIONS(5618), 1, + anon_sym_LBRACK2, + ACTIONS(5620), 1, + anon_sym_AMP, + ACTIONS(5622), 1, + anon_sym_shared, + ACTIONS(5624), 1, + anon_sym_map_LBRACK, + ACTIONS(5626), 1, + anon_sym_chan, + ACTIONS(5628), 1, + anon_sym_thread, + ACTIONS(5630), 1, + anon_sym_atomic, + STATE(1694), 1, + sym_plain_type, + STATE(4460), 1, + sym_reference_expression, + STATE(2946), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(605), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1667), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1710), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [94649] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3658), 1, + anon_sym_LPAREN, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5612), 1, + anon_sym_STAR, + ACTIONS(5614), 1, + anon_sym_QMARK, + ACTIONS(5616), 1, + anon_sym_BANG, + ACTIONS(5618), 1, + anon_sym_LBRACK2, + ACTIONS(5620), 1, + anon_sym_AMP, + ACTIONS(5622), 1, + anon_sym_shared, + ACTIONS(5624), 1, + anon_sym_map_LBRACK, + ACTIONS(5626), 1, + anon_sym_chan, + ACTIONS(5628), 1, + anon_sym_thread, + ACTIONS(5630), 1, + anon_sym_atomic, + STATE(1700), 1, + sym_plain_type, + STATE(4460), 1, + sym_reference_expression, + STATE(2947), 2, + sym_line_comment, sym_block_comment, - STATE(2949), 1, + STATE(3433), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(567), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1667), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1710), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [94738] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2948), 2, sym_line_comment, - ACTIONS(3435), 11, + sym_block_comment, + ACTIONS(3186), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280642,7 +276711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3433), 27, + ACTIONS(3184), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -280670,129 +276739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94426] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94791] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2950), 1, - sym_line_comment, - ACTIONS(3235), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3233), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [94478] = 26, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5432), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5434), 1, - anon_sym_mut, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5442), 1, - anon_sym_shared, - STATE(2951), 1, + STATE(2655), 1, + sym_block, + STATE(2949), 2, sym_line_comment, - STATE(3074), 1, - sym_mutability_modifiers, - STATE(4370), 1, - sym_type_parameter_declaration, - STATE(4399), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94572] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2952), 1, - sym_line_comment, - ACTIONS(3219), 11, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280804,9 +276761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3217), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280815,11 +276773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280832,14 +276788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94624] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94846] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2953), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(1160), 1, + sym_block, + STATE(2950), 2, sym_line_comment, - ACTIONS(2869), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280851,9 +276810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2871), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280862,11 +276822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280879,59 +276837,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94676] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94901] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2476), 1, + STATE(2444), 1, sym_plain_type, - STATE(2954), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2951), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(617), 4, + ACTIONS(599), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280944,16 +276903,15 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94764] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [94990] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(1670), 1, - sym_block, - STATE(2955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2952), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3182), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -280965,10 +276923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3180), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -280977,9 +276934,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -280992,14 +276951,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94818] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95043] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2956), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2339), 1, + sym_block, + STATE(2953), 2, sym_line_comment, - ACTIONS(3359), 11, + sym_block_comment, + ACTIONS(3262), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281011,9 +276973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3357), 27, + ACTIONS(3260), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -281022,11 +276985,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -281039,14 +277000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94870] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95098] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2957), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2954), 2, sym_line_comment, - ACTIONS(3351), 11, + sym_block_comment, + ACTIONS(3178), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281058,7 +277020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3349), 27, + ACTIONS(3176), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281086,16 +277048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94922] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95151] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(2692), 1, - sym_block, - STATE(2958), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4896), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(2955), 2, sym_line_comment, - ACTIONS(3299), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281107,10 +277071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 26, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -281134,14 +277097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [94976] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95206] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(2959), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2956), 2, sym_line_comment, - ACTIONS(3343), 11, + sym_block_comment, + ACTIONS(3162), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281153,7 +277117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3341), 27, + ACTIONS(3160), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281181,16 +277145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95028] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95259] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5632), 1, - anon_sym_RBRACK, - STATE(2960), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2957), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3158), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281202,7 +277165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3156), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281213,9 +277176,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -281228,18 +277193,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95081] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95312] = 26, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5398), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5400), 1, + anon_sym_mut, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5408), 1, + anon_sym_shared, + STATE(3038), 1, + sym_mutability_modifiers, + STATE(4184), 1, + sym_type_parameter_declaration, + STATE(4261), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(2958), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5634), 1, - anon_sym_RPAREN, - STATE(2961), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [95407] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2959), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(2943), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281251,7 +277282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(2941), 27, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281261,9 +277293,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, @@ -281276,16 +277310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95136] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95460] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5636), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5632), 1, anon_sym_RBRACK, - STATE(2962), 1, + STATE(2960), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281297,7 +277332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281323,16 +277358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95189] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95514] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5638), 1, - anon_sym_RPAREN, - STATE(2963), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5634), 1, + anon_sym_RBRACK, + STATE(2961), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281344,7 +277380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281370,16 +277406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95242] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95568] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5640), 1, - anon_sym_RBRACK, - STATE(2964), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5636), 1, + anon_sym_RPAREN, + STATE(2962), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281391,8 +277430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281417,18 +277455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95295] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95624] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5636), 1, - anon_sym_RBRACK, - STATE(2965), 1, + anon_sym_RPAREN, + STATE(2963), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281440,7 +277477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281465,16 +277503,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95350] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95678] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5642), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5638), 1, anon_sym_RBRACK, - STATE(2966), 1, + STATE(2964), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281486,7 +277525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281512,16 +277551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95403] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95732] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5642), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5640), 1, anon_sym_RBRACK, - STATE(2967), 1, + STATE(2965), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281533,8 +277575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281559,18 +277600,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95456] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95788] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5642), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5640), 1, anon_sym_RBRACK, - STATE(2968), 1, + STATE(2966), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281582,7 +277622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281607,18 +277648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95511] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95842] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5644), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5640), 1, anon_sym_RBRACK, - STATE(2969), 1, + STATE(2967), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281630,7 +277670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3360), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281655,16 +277696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95566] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95896] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5644), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5638), 1, anon_sym_RBRACK, - STATE(2970), 1, + STATE(2968), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281676,8 +277720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281702,16 +277745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95619] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [95952] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5644), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5642), 1, anon_sym_RBRACK, - STATE(2971), 1, + STATE(2969), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281723,7 +277767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281749,16 +277793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95672] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96006] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(2972), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5644), 1, + anon_sym_RBRACK, + STATE(2970), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281770,7 +277815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281796,16 +277841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95725] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96060] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5648), 1, - anon_sym_RPAREN, - STATE(2973), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5644), 1, + anon_sym_RBRACK, + STATE(2971), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281817,7 +277863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281843,18 +277889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95778] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96114] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5646), 1, - anon_sym_RPAREN, - STATE(2974), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5638), 1, + anon_sym_RBRACK, + STATE(2972), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281866,7 +277911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281891,18 +277937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95833] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96168] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_RBRACK, - STATE(2975), 1, + ACTIONS(5646), 1, + anon_sym_RPAREN, + STATE(2973), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281914,7 +277961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -281939,16 +277986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95888] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96224] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5650), 1, - anon_sym_RBRACK, - STATE(2976), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5646), 1, + anon_sym_RPAREN, + STATE(2974), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -281960,7 +278008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -281986,16 +278034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95941] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96278] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5652), 1, - anon_sym_RPAREN, - STATE(2977), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5648), 1, + anon_sym_RBRACK, + STATE(2975), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282007,8 +278058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282033,16 +278083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [95994] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96334] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5650), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5642), 1, anon_sym_RBRACK, - STATE(2978), 1, + STATE(2976), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282054,8 +278107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282080,18 +278132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96047] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96390] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5648), 1, - anon_sym_RPAREN, - STATE(2979), 1, + anon_sym_RBRACK, + STATE(2977), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282103,7 +278154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282128,16 +278180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96102] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96444] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5654), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5642), 1, anon_sym_RBRACK, - STATE(2980), 1, + STATE(2978), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282149,7 +278202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282175,18 +278228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96155] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96498] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5656), 1, - anon_sym_RPAREN, - STATE(2981), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5648), 1, + anon_sym_RBRACK, + STATE(2979), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282198,7 +278250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3360), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282223,16 +278276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96210] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96552] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5658), 1, - anon_sym_RBRACK, - STATE(2982), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5650), 1, + anon_sym_RPAREN, + STATE(2980), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282244,7 +278298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282270,16 +278324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96263] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96606] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5658), 1, - anon_sym_RBRACK, - STATE(2983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5650), 1, + anon_sym_RPAREN, + STATE(2981), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282291,8 +278348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282317,18 +278373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96316] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96662] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5658), 1, + ACTIONS(5652), 1, anon_sym_RBRACK, - STATE(2984), 1, + STATE(2982), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282340,7 +278397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282365,18 +278422,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96371] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96718] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5652), 1, - anon_sym_RPAREN, - STATE(2985), 1, + anon_sym_RBRACK, + STATE(2983), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282388,7 +278444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282413,16 +278470,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96426] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96772] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5656), 1, - anon_sym_RPAREN, - STATE(2986), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5632), 1, + anon_sym_RBRACK, + STATE(2984), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282434,8 +278494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282460,18 +278519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96479] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96828] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5660), 1, + ACTIONS(5644), 1, anon_sym_RBRACK, - STATE(2987), 1, + STATE(2985), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282483,7 +278543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282508,16 +278568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96534] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96884] = 6, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5654), 1, anon_sym_RBRACK, - STATE(2988), 1, + STATE(2986), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282529,7 +278590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282555,18 +278616,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96587] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96938] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_RPAREN, - STATE(2989), 1, + ACTIONS(5656), 1, + anon_sym_RBRACK, + STATE(2987), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282578,7 +278640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282603,16 +278665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96642] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [96994] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5662), 1, - anon_sym_RPAREN, - STATE(2990), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5632), 1, + anon_sym_RBRACK, + STATE(2988), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282624,7 +278687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282650,18 +278713,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96695] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97048] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5664), 1, + ACTIONS(5654), 1, anon_sym_RBRACK, - STATE(2991), 1, + STATE(2989), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282673,7 +278737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282698,18 +278762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96750] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97104] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5638), 1, + ACTIONS(5658), 1, anon_sym_RPAREN, - STATE(2992), 1, + STATE(2990), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282721,7 +278786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282746,16 +278811,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96805] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97160] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5666), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5658), 1, anon_sym_RPAREN, - STATE(2993), 1, + STATE(2991), 2, sym_line_comment, - ACTIONS(3427), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282767,7 +278833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3425), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282793,18 +278859,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96858] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97214] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5668), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5656), 1, anon_sym_RBRACK, - STATE(2994), 1, + STATE(2992), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282816,7 +278881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -282841,16 +278907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96913] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97268] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5670), 1, - anon_sym_RPAREN, - STATE(2995), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5656), 1, + anon_sym_RBRACK, + STATE(2993), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282862,7 +278929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282888,16 +278955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [96966] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97322] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5672), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5654), 1, anon_sym_RBRACK, - STATE(2996), 1, + STATE(2994), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282909,7 +278977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282935,16 +279003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97019] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97376] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5672), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 1, anon_sym_RBRACK, - STATE(2997), 1, + STATE(2995), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -282956,7 +279025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -282982,18 +279051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97072] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97430] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5640), 1, - anon_sym_RBRACK, - STATE(2998), 1, + ACTIONS(5662), 1, + anon_sym_RPAREN, + STATE(2996), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283005,7 +279075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283030,16 +279100,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97127] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97486] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5640), 1, - anon_sym_RBRACK, - STATE(2999), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5662), 1, + anon_sym_RPAREN, + STATE(2997), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283051,7 +279122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283077,18 +279148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97180] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97540] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5632), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5652), 1, anon_sym_RBRACK, - STATE(3000), 1, + STATE(2998), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283100,7 +279170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3360), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283125,18 +279196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97235] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97594] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5670), 1, + ACTIONS(5664), 1, anon_sym_RPAREN, - STATE(3001), 1, + STATE(2999), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283148,7 +279220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283173,18 +279245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97290] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97650] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5674), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5660), 1, anon_sym_RBRACK, - STATE(3002), 1, + STATE(3000), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283196,7 +279267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283221,16 +279293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97345] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97704] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5674), 1, - anon_sym_RBRACK, - STATE(3003), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5664), 1, + anon_sym_RPAREN, + STATE(3001), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283242,7 +279315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283268,16 +279341,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97398] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97758] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5666), 1, + anon_sym_RPAREN, + STATE(3002), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5674), 1, + ACTIONS(3013), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3011), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [97814] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5660), 1, anon_sym_RBRACK, - STATE(3004), 1, + STATE(3003), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283289,8 +279414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283315,18 +279439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97451] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97870] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5672), 1, + ACTIONS(5668), 1, anon_sym_RBRACK, - STATE(3005), 1, + STATE(3004), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283338,7 +279463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283363,16 +279488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97506] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97926] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5676), 1, - anon_sym_RBRACK, - STATE(3006), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5666), 1, + anon_sym_RPAREN, + STATE(3005), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283384,7 +279510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283410,16 +279536,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97559] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [97980] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5678), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5670), 1, anon_sym_RBRACK, - STATE(3007), 1, + STATE(3006), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283431,8 +279560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283457,16 +279585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97612] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98036] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5676), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5670), 1, anon_sym_RBRACK, - STATE(3008), 1, + STATE(3007), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283478,7 +279607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283504,18 +279633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97665] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98090] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5654), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5670), 1, anon_sym_RBRACK, - STATE(3009), 1, + STATE(3008), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283527,7 +279655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3360), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283552,18 +279681,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97720] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98144] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5668), 1, + anon_sym_RBRACK, + STATE(3009), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4871), 1, + ACTIONS(3013), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3011), 25, anon_sym_DOT, - ACTIONS(5676), 1, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [98198] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5668), 1, anon_sym_RBRACK, - STATE(3010), 1, + STATE(3010), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283575,7 +279751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3360), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283600,16 +279777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97775] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98252] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5660), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5672), 1, anon_sym_RBRACK, - STATE(3011), 1, + STATE(3011), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283621,7 +279799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283647,16 +279825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97828] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98306] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5632), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5672), 1, anon_sym_RBRACK, - STATE(3012), 1, + STATE(3012), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283668,7 +279847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283694,16 +279873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97881] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98360] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5668), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5672), 1, anon_sym_RBRACK, - STATE(3013), 1, + STATE(3013), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283715,8 +279897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283741,18 +279922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97934] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98416] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5680), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5674), 1, anon_sym_RPAREN, - STATE(3014), 1, + STATE(3014), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283764,7 +279944,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283789,16 +279970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [97989] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98470] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5668), 1, - anon_sym_RBRACK, - STATE(3015), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5674), 1, + anon_sym_RPAREN, + STATE(3015), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283810,8 +279994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283836,16 +280019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98042] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98526] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5636), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5634), 1, anon_sym_RBRACK, - STATE(3016), 1, + STATE(3016), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283857,8 +280043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283883,16 +280068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98095] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98582] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5678), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5634), 1, anon_sym_RBRACK, - STATE(3017), 1, + STATE(3017), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283904,7 +280090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -283930,16 +280116,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98148] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98636] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5634), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5676), 1, anon_sym_RPAREN, - STATE(3018), 1, + STATE(3018), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283951,8 +280140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -283977,16 +280165,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98201] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98692] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5682), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5676), 1, anon_sym_RPAREN, - STATE(3019), 1, + STATE(3019), 2, sym_line_comment, - ACTIONS(3427), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -283998,7 +280187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3425), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284024,16 +280213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98254] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98746] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5684), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5678), 1, anon_sym_RPAREN, - STATE(3020), 1, + STATE(3020), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284045,7 +280235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284071,18 +280261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98307] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98800] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5684), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5680), 1, anon_sym_RPAREN, - STATE(3021), 1, + STATE(3021), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284094,7 +280283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3440), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284119,16 +280309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98362] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98854] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5664), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5682), 1, anon_sym_RBRACK, - STATE(3022), 1, + STATE(3022), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284140,8 +280333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284166,16 +280358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98415] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98910] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5686), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5684), 1, anon_sym_RPAREN, - STATE(3023), 1, + STATE(3023), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284187,7 +280380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284213,16 +280406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98468] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [98964] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5664), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5686), 1, anon_sym_RBRACK, - STATE(3024), 1, + STATE(3024), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284234,7 +280428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284260,18 +280454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98521] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99018] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5688), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5686), 1, anon_sym_RBRACK, - STATE(3025), 1, + STATE(3025), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284283,7 +280476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284308,18 +280502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98576] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99072] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, anon_sym_DOT, - ACTIONS(5678), 1, + ACTIONS(5686), 1, anon_sym_RBRACK, - STATE(3026), 1, + STATE(3026), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284331,7 +280526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284356,16 +280551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98631] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99128] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5680), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5684), 1, anon_sym_RPAREN, - STATE(3027), 1, + STATE(3027), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284377,8 +280575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284403,16 +280600,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98684] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99184] = 7, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, ACTIONS(5688), 1, - anon_sym_RBRACK, - STATE(3028), 1, + anon_sym_RPAREN, + STATE(3028), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284424,8 +280624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284450,16 +280649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98737] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99240] = 6, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5688), 1, - anon_sym_RBRACK, - STATE(3029), 1, + anon_sym_RPAREN, + STATE(3029), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284471,7 +280671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, + ACTIONS(3011), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284497,18 +280697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98790] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99294] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(5686), 1, - anon_sym_RPAREN, - STATE(3030), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(3030), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284520,7 +280719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284545,16 +280745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98845] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99348] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5690), 1, - anon_sym_RPAREN, - STATE(3031), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5682), 1, + anon_sym_RBRACK, + STATE(3031), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3362), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284566,7 +280767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 25, + ACTIONS(3360), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284592,16 +280793,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98898] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99402] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5660), 1, - anon_sym_RBRACK, - STATE(3032), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4879), 1, + anon_sym_DOT, + ACTIONS(5690), 1, + anon_sym_RPAREN, + STATE(3032), 2, sym_line_comment, - ACTIONS(3287), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284613,8 +280817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 25, - anon_sym_DOT, + ACTIONS(3011), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284639,18 +280842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [98951] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99458] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4871), 1, - anon_sym_DOT, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5690), 1, anon_sym_RPAREN, - STATE(3033), 1, + STATE(3033), 2, sym_line_comment, - ACTIONS(3431), 11, + sym_block_comment, + ACTIONS(3013), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284662,7 +280864,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3429), 24, + ACTIONS(3011), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -284687,16 +280890,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [99006] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99512] = 6, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5692), 1, anon_sym_RPAREN, - STATE(3034), 1, + STATE(3034), 2, sym_line_comment, - ACTIONS(3427), 11, + sym_block_comment, + ACTIONS(3442), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -284708,7 +280912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3425), 25, + ACTIONS(3440), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -284734,14 +280938,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [99059] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99566] = 24, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3444), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3664), 1, anon_sym_struct, ACTIONS(5610), 1, anon_sym_fn, @@ -284769,23 +280973,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(3035), 1, - sym_line_comment, - STATE(3753), 1, - sym__global_var_value, - STATE(3755), 1, + STATE(3781), 1, sym_plain_type, - STATE(4434), 1, + STATE(3783), 1, + sym__global_var_value, + STATE(4460), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3035), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284798,11 +281003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99147] = 24, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99655] = 24, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3628), 1, sym_identifier, ACTIONS(3632), 1, @@ -284833,23 +281038,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1551), 1, + STATE(1540), 1, sym__global_var_value, - STATE(1562), 1, + STATE(1541), 1, sym_plain_type, - STATE(3036), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3036), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284862,56 +281068,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99235] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99744] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, ACTIONS(5726), 1, anon_sym_RPAREN, - STATE(3037), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3037), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284924,56 +281131,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99320] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99830] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, ACTIONS(5728), 1, - anon_sym_RPAREN, - STATE(3038), 1, - sym_line_comment, - STATE(4047), 1, + anon_sym_DOT_DOT_DOT, + STATE(4328), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3038), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284986,105 +281194,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99405] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [99916] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5730), 1, - anon_sym_RPAREN, - STATE(3039), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5558), 1, + anon_sym_DOT_DOT_DOT, + STATE(4163), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99490] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2364), 1, - sym_plain_type, - STATE(3040), 1, + STATE(3039), 2, sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4601), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4603), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285097,118 +281257,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99549] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100002] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5730), 1, anon_sym_RPAREN, - STATE(3041), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99634] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, - sym_identifier, - ACTIONS(3632), 1, - anon_sym_fn, - ACTIONS(3636), 1, - anon_sym_struct, - ACTIONS(3646), 1, - anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5714), 1, - anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, - anon_sym_BANG, - ACTIONS(5720), 1, - anon_sym_LBRACK2, - ACTIONS(5722), 1, - anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1454), 1, - sym_plain_type, - STATE(1545), 1, - sym__type_union_list, - STATE(3042), 1, + STATE(3040), 2, sym_line_comment, - STATE(4518), 1, - sym_reference_expression, - STATE(1443), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285221,56 +281320,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99719] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100088] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5734), 1, + ACTIONS(5732), 1, anon_sym_RPAREN, - STATE(3043), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3041), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285283,56 +281383,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99804] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100174] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5596), 1, - anon_sym_DOT_DOT_DOT, - STATE(3044), 1, - sym_line_comment, - STATE(4185), 1, + ACTIONS(5734), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3042), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285345,56 +281446,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99889] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100260] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, ACTIONS(5736), 1, anon_sym_RPAREN, - STATE(3045), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3043), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285407,180 +281509,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99974] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100346] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, ACTIONS(5738), 1, anon_sym_RPAREN, - STATE(3046), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100059] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5740), 1, - anon_sym_RPAREN, - STATE(3047), 1, + STATE(3044), 2, sym_line_comment, - STATE(4047), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100144] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_RPAREN, - STATE(3048), 1, - sym_line_comment, - STATE(4047), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285593,118 +281572,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100229] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100432] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - ACTIONS(5744), 1, - anon_sym_RPAREN, - STATE(3049), 1, - sym_line_comment, - STATE(4047), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100314] = 23, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5746), 1, - anon_sym_RPAREN, - STATE(3050), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5740), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3045), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285717,56 +281635,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100399] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100518] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5748), 1, - anon_sym_RPAREN, - STATE(3051), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5592), 1, + anon_sym_DOT_DOT_DOT, + STATE(4336), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3046), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285779,56 +281698,107 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100484] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100604] = 10, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2469), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(3047), 2, + sym_line_comment, sym_block_comment, - ACTIONS(47), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(4597), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4599), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, anon_sym_map_LBRACK, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [100664] = 23, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5750), 1, + ACTIONS(5742), 1, anon_sym_RPAREN, - STATE(3052), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3048), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285841,56 +281811,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100569] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100750] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5752), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(3053), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3049), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285903,56 +281874,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100654] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100836] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5754), 1, - anon_sym_RPAREN, - STATE(3054), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5728), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5746), 1, + sym_identifier, + STATE(4328), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3050), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285965,56 +281937,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100739] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [100922] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5748), 1, anon_sym_RPAREN, - STATE(3055), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3051), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286027,56 +282000,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100824] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101008] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3650), 1, + anon_sym_chan, + ACTIONS(3652), 1, + anon_sym_thread, + ACTIONS(3654), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5588), 1, - anon_sym_DOT_DOT_DOT, - STATE(3056), 1, - sym_line_comment, - STATE(4309), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1446), 1, sym_plain_type, - STATE(4616), 1, + STATE(1558), 1, + sym__type_union_list, + STATE(4534), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3052), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286089,56 +282063,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100909] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101094] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5758), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(3057), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3053), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286151,56 +282126,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100994] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101180] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5760), 1, + ACTIONS(5752), 1, anon_sym_RPAREN, - STATE(3058), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3054), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286213,56 +282189,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101079] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101266] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5762), 1, + ACTIONS(5754), 1, anon_sym_RPAREN, - STATE(3059), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3055), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286275,11 +282252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101164] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101352] = 23, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3628), 1, sym_identifier, ACTIONS(3632), 1, @@ -286308,23 +282285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1454), 1, + STATE(1446), 1, sym_plain_type, - STATE(1521), 1, + STATE(1599), 1, sym__type_union_list, - STATE(3060), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3056), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286337,56 +282315,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101249] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101438] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1454), 1, + ACTIONS(5756), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(1594), 1, - sym__type_union_list, - STATE(3061), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1443), 2, + STATE(3057), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286399,56 +282378,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101334] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101524] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5758), 1, anon_sym_RPAREN, - STATE(3062), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3058), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286461,56 +282441,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101419] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101610] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5766), 1, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(3063), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3059), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286523,56 +282504,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101504] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101696] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5768), 1, + ACTIONS(5762), 1, anon_sym_RPAREN, - STATE(3064), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3060), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286585,56 +282567,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101589] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101782] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5770), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, - STATE(3065), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3061), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286647,56 +282630,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101674] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101868] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5772), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, - STATE(3066), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3062), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286709,56 +282693,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101759] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [101954] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5774), 1, - sym_identifier, - ACTIONS(5776), 1, - anon_sym_DOT_DOT_DOT, - STATE(3067), 1, - sym_line_comment, - STATE(4173), 1, + ACTIONS(5768), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3063), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286771,56 +282756,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101844] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102040] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(571), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5778), 1, - sym_identifier, - STATE(3068), 1, - sym_line_comment, - STATE(4173), 1, + ACTIONS(5770), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3064), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286833,11 +282819,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101929] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102126] = 23, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3628), 1, sym_identifier, ACTIONS(3632), 1, @@ -286866,23 +282852,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1454), 1, + STATE(1446), 1, sym_plain_type, - STATE(1593), 1, + STATE(1582), 1, sym__type_union_list, - STATE(3069), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3065), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286895,56 +282882,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102014] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102212] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5780), 1, + ACTIONS(5772), 1, anon_sym_RPAREN, - STATE(3070), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3066), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286957,56 +282945,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102099] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102298] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5774), 1, anon_sym_RPAREN, - STATE(3071), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3067), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287019,56 +283008,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102184] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102384] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5784), 1, + ACTIONS(5776), 1, anon_sym_RPAREN, - STATE(3072), 1, - sym_line_comment, - STATE(4047), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3068), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287081,56 +283071,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102269] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102470] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5786), 1, - anon_sym_RPAREN, - STATE(3073), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5728), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5778), 1, + sym_identifier, + STATE(4328), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3069), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287143,56 +283134,120 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102354] = 23, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102556] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, + sym_identifier, + ACTIONS(3632), 1, + anon_sym_fn, + ACTIONS(3636), 1, + anon_sym_struct, + ACTIONS(3646), 1, + anon_sym_shared, + ACTIONS(3650), 1, + anon_sym_chan, + ACTIONS(3652), 1, + anon_sym_thread, + ACTIONS(3654), 1, + anon_sym_atomic, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, + anon_sym_STAR, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(85), 1, + ACTIONS(5718), 1, + anon_sym_BANG, + ACTIONS(5720), 1, + anon_sym_LBRACK2, + ACTIONS(5722), 1, + anon_sym_AMP, + ACTIONS(5724), 1, anon_sym_map_LBRACK, + STATE(1446), 1, + sym_plain_type, + STATE(1575), 1, + sym__type_union_list, + STATE(4534), 1, + sym_reference_expression, + STATE(1442), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3070), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1496), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [102642] = 23, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5776), 1, - anon_sym_DOT_DOT_DOT, - STATE(3074), 1, - sym_line_comment, - STATE(4173), 1, + ACTIONS(5780), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3071), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287205,54 +283260,120 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102439] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102728] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + ACTIONS(5782), 1, + anon_sym_RPAREN, + STATE(3927), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(3072), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [102814] = 23, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5788), 1, - anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(1345), 1, + ACTIONS(5784), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(3075), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1310), 2, + STATE(3073), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287265,54 +283386,57 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102521] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102900] = 23, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3076), 1, - sym_line_comment, - STATE(4599), 1, + ACTIONS(5786), 1, + anon_sym_RPAREN, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3074), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287325,54 +283449,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102603] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [102986] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(2272), 1, + STATE(819), 1, sym_plain_type, - STATE(3077), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2188), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3075), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287385,54 +283510,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102685] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103069] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(2312), 1, + STATE(1500), 1, sym_plain_type, - STATE(3078), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4534), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3076), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287445,54 +283571,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102767] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103152] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3963), 1, - anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5796), 1, - anon_sym_LPAREN, - ACTIONS(5798), 1, - anon_sym_STAR, - ACTIONS(5800), 1, - anon_sym_QMARK, ACTIONS(5802), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5804), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5806), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5808), 1, - anon_sym_map_LBRACK, - STATE(2305), 1, + anon_sym_AMP, + STATE(2394), 1, sym_plain_type, - STATE(3079), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2188), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3077), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287505,54 +283632,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102849] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103235] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3746), 1, - anon_sym_chan, - ACTIONS(3748), 1, - anon_sym_thread, - ACTIONS(3750), 1, - anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1928), 1, + STATE(4654), 1, + sym_reference_expression, + STATE(4664), 1, sym_plain_type, - STATE(3080), 1, + STATE(3078), 2, sym_line_comment, - STATE(4546), 1, - sym_reference_expression, - STATE(1816), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287565,54 +283693,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102931] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103318] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3496), 1, - anon_sym_chan, - ACTIONS(3498), 1, - anon_sym_thread, - ACTIONS(3500), 1, - anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5828), 1, - anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1280), 1, + STATE(4637), 1, sym_plain_type, - STATE(3081), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3079), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287625,54 +283754,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103013] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103401] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3082), 1, - sym_line_comment, - STATE(3922), 1, + STATE(4026), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3080), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287685,54 +283815,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103095] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103484] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4082), 1, - anon_sym_chan, - ACTIONS(4084), 1, - anon_sym_thread, - ACTIONS(4086), 1, - anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2523), 1, + STATE(2471), 1, sym_plain_type, - STATE(3083), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3081), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287745,54 +283876,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103177] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103567] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(4068), 1, - anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(5840), 1, - anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2648), 1, + STATE(2432), 1, sym_plain_type, - STATE(3084), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3082), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287805,54 +283937,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103259] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103650] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3085), 1, - sym_line_comment, - STATE(4556), 1, + STATE(4526), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3083), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287865,54 +283998,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103341] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103733] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, + anon_sym_shared, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5802), 1, + anon_sym_QMARK, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(3086), 1, - sym_line_comment, - STATE(4559), 1, + STATE(2906), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3084), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287925,54 +284059,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103423] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103816] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3087), 1, - sym_line_comment, - STATE(3903), 1, + STATE(4193), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3085), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287985,54 +284120,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103505] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103899] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, + anon_sym_shared, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5802), 1, + anon_sym_QMARK, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(3088), 1, - sym_line_comment, - STATE(4564), 1, + STATE(2909), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3086), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288045,54 +284181,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103587] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [103982] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(4583), 1, anon_sym_atomic, ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_STAR, - ACTIONS(5814), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1930), 1, + STATE(2795), 1, sym_plain_type, - STATE(3089), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1816), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3087), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288105,54 +284242,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103669] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104065] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, + anon_sym_chan, + ACTIONS(4581), 1, + anon_sym_thread, + ACTIONS(4583), 1, + anon_sym_atomic, + ACTIONS(5810), 1, + anon_sym_QMARK, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5816), 1, anon_sym_AMP, - STATE(3090), 1, - sym_line_comment, - STATE(4592), 1, + STATE(2793), 1, sym_plain_type, - STATE(4616), 1, + STATE(4579), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3088), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288165,54 +284303,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103751] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104148] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(5840), 1, - anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2534), 1, + STATE(2782), 1, sym_plain_type, - STATE(3091), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4579), 1, sym_reference_expression, - STATE(2493), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3089), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288225,14 +284364,14 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103833] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104231] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, ACTIONS(3983), 1, sym_identifier, @@ -288250,29 +284389,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2891), 1, + STATE(2471), 1, sym_plain_type, - STATE(3092), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3090), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288285,54 +284425,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103915] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104314] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3093), 1, - sym_line_comment, - STATE(3914), 1, + STATE(4167), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3091), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288345,54 +284486,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103997] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104397] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4082), 1, - anon_sym_chan, - ACTIONS(4084), 1, - anon_sym_thread, - ACTIONS(4086), 1, - anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2581), 1, + STATE(3904), 1, sym_plain_type, - STATE(3094), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3092), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288405,54 +284547,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104079] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104480] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(4064), 1, - anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(2535), 1, + STATE(1674), 1, sym_plain_type, - STATE(3095), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4460), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3093), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288465,54 +284608,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104161] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104563] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4082), 1, - anon_sym_chan, - ACTIONS(4084), 1, - anon_sym_thread, - ACTIONS(4086), 1, - anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2542), 1, + STATE(3960), 1, sym_plain_type, - STATE(3096), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3094), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288525,54 +284669,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104243] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104646] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, - anon_sym_struct, - ACTIONS(3808), 1, - anon_sym_shared, - ACTIONS(3810), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2141), 1, + STATE(4436), 1, sym_plain_type, - STATE(3097), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3095), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288585,54 +284730,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104325] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104729] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3810), 1, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + STATE(2472), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(3096), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [104812] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2149), 1, + STATE(2473), 1, sym_plain_type, - STATE(3098), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3097), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288645,54 +284852,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104407] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104895] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2150), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1675), 1, sym_plain_type, - STATE(3099), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3098), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288705,54 +284913,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104489] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [104978] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1504), 1, + STATE(1930), 1, sym_plain_type, - STATE(3100), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3099), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288765,54 +284974,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104571] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105061] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(5610), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, + anon_sym_STAR, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2892), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1677), 1, sym_plain_type, - STATE(3101), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4460), 1, sym_reference_expression, - STATE(2345), 2, + STATE(3100), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288825,54 +285035,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104653] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105144] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, - anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1173), 1, + STATE(2765), 1, sym_plain_type, - STATE(3102), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3101), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288885,54 +285096,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104735] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105227] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, - anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1175), 1, + STATE(2780), 1, sym_plain_type, - STATE(3103), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3102), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -288945,14 +285157,14 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104817] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105310] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, ACTIONS(3983), 1, sym_identifier, @@ -288970,29 +285182,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2364), 1, + STATE(2469), 1, sym_plain_type, - STATE(3104), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3103), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289005,14 +285218,136 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104899] = 22, - ACTIONS(3), 1, + [105393] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, + sym_identifier, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, + anon_sym_fn, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, + anon_sym_struct, + ACTIONS(4575), 1, + anon_sym_shared, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, + anon_sym_chan, + ACTIONS(4581), 1, + anon_sym_thread, + ACTIONS(4583), 1, + anon_sym_atomic, + ACTIONS(5810), 1, + anon_sym_QMARK, + ACTIONS(5812), 1, + anon_sym_BANG, + ACTIONS(5814), 1, + anon_sym_LBRACK2, + ACTIONS(5816), 1, + anon_sym_AMP, + STATE(2777), 1, + sym_plain_type, + STATE(4579), 1, + sym_reference_expression, + STATE(2680), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3104), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2752), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [105476] = 22, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, + anon_sym_BANG, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + STATE(3963), 1, + sym_plain_type, + STATE(4654), 1, + sym_reference_expression, + STATE(3105), 2, + sym_line_comment, sym_block_comment, - ACTIONS(575), 1, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2386), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [105559] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, ACTIONS(3983), 1, sym_identifier, @@ -289030,29 +285365,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2457), 1, + STATE(2349), 1, sym_plain_type, - STATE(3105), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3106), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289065,54 +285401,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104981] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105642] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1279), 1, + STATE(1977), 1, sym_plain_type, - STATE(3106), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3107), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289125,54 +285462,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105063] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105725] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4082), 1, - anon_sym_chan, - ACTIONS(4084), 1, - anon_sym_thread, - ACTIONS(4086), 1, - anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2573), 1, + STATE(4513), 1, sym_plain_type, - STATE(3107), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3108), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289185,54 +285523,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105145] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105808] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, + anon_sym_chan, + ACTIONS(3802), 1, + anon_sym_thread, + ACTIONS(3804), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(3108), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4623), 1, + STATE(1978), 1, sym_plain_type, - STATE(3558), 2, + STATE(4470), 1, + sym_reference_expression, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3109), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289245,54 +285584,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105227] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105891] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(4072), 1, + anon_sym_struct, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_STAR, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2449), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2524), 1, sym_plain_type, - STATE(3109), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4491), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3110), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289305,54 +285645,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105309] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [105974] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1493), 1, + STATE(1858), 1, sym_plain_type, - STATE(3110), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3111), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289365,54 +285706,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105391] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106057] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(2579), 1, + STATE(1859), 1, sym_plain_type, - STATE(3111), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2493), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3112), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289425,14 +285767,14 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105473] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106140] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, ACTIONS(3983), 1, sym_identifier, @@ -289450,29 +285792,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2446), 1, + STATE(2414), 1, sym_plain_type, - STATE(3112), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3113), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289485,54 +285828,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105555] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106223] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(3987), 1, + ACTIONS(4563), 1, anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(4565), 1, + anon_sym_struct, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3999), 1, + ACTIONS(4577), 1, anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5816), 1, anon_sym_AMP, - STATE(2445), 1, + STATE(2768), 1, sym_plain_type, - STATE(3113), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4579), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3114), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289545,54 +285889,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105637] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106306] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, - anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(454), 1, + STATE(2767), 1, sym_plain_type, - STATE(3114), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4579), 1, sym_reference_expression, - STATE(417), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3115), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289605,54 +285950,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105719] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106389] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5710), 1, - anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1458), 1, + STATE(2056), 1, sym_plain_type, - STATE(3115), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3116), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289665,54 +286011,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105801] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106472] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(597), 1, - anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, - anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(478), 1, + STATE(2440), 1, sym_plain_type, - STATE(3116), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4654), 1, sym_reference_expression, - STATE(417), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3117), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289725,14 +286072,14 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105883] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106555] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3618), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, ACTIONS(3983), 1, sym_identifier, @@ -289750,29 +286097,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2465), 1, + STATE(2461), 1, sym_plain_type, - STATE(3117), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3118), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289785,54 +286133,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105965] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106638] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5884), 1, - anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_map_LBRACK, - STATE(3118), 1, - sym_line_comment, - STATE(3454), 1, + STATE(2058), 1, sym_plain_type, - STATE(4434), 1, + STATE(4470), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3119), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289845,54 +286194,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106047] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106721] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(5840), 1, - anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2652), 1, + STATE(2527), 1, sym_plain_type, - STATE(3119), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4579), 1, sym_reference_expression, - STATE(2493), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3120), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289905,54 +286255,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106129] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106804] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(5840), 1, - anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2651), 1, + STATE(2766), 1, sym_plain_type, - STATE(3120), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4579), 1, sym_reference_expression, - STATE(2493), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3121), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -289965,54 +286316,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106211] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106887] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1023), 1, + STATE(1922), 1, sym_plain_type, - STATE(3121), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3122), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290025,54 +286377,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106293] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [106970] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1022), 1, + STATE(1923), 1, sym_plain_type, - STATE(3122), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3123), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290085,54 +286438,116 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106375] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107053] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, + sym_identifier, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, + anon_sym_fn, + ACTIONS(3826), 1, + anon_sym_struct, + ACTIONS(3836), 1, + anon_sym_shared, + ACTIONS(3838), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(3844), 1, anon_sym_atomic, + ACTIONS(5856), 1, + anon_sym_STAR, + ACTIONS(5858), 1, + anon_sym_QMARK, + ACTIONS(5860), 1, + anon_sym_BANG, + ACTIONS(5862), 1, + anon_sym_LBRACK2, + ACTIONS(5864), 1, + anon_sym_AMP, + STATE(2139), 1, + sym_plain_type, + STATE(4533), 1, + sym_reference_expression, + STATE(1949), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3124), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2160), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [107136] = 22, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5792), 1, + anon_sym_QMARK, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(3123), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4671), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(702), 1, sym_plain_type, - STATE(3558), 2, + STATE(4487), 1, + sym_reference_expression, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3125), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290145,54 +286560,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106457] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107219] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, + anon_sym_chan, + ACTIONS(4581), 1, + anon_sym_thread, + ACTIONS(4583), 1, + anon_sym_atomic, + ACTIONS(5810), 1, + anon_sym_QMARK, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5816), 1, anon_sym_AMP, - STATE(3124), 1, - sym_line_comment, - STATE(3999), 1, + STATE(2526), 1, sym_plain_type, - STATE(4616), 1, + STATE(4579), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3126), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290205,54 +286621,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106539] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107302] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3125), 1, - sym_line_comment, - STATE(3913), 1, + STATE(3927), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3127), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290265,54 +286682,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106621] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107385] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2113), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2310), 1, sym_plain_type, - STATE(3126), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3128), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290325,11 +286743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106703] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107468] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3955), 1, sym_identifier, ACTIONS(3959), 1, @@ -290344,35 +286762,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(2270), 1, + STATE(2307), 1, sym_plain_type, - STATE(3127), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4571), 1, sym_reference_expression, - STATE(2188), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3129), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290385,54 +286804,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106785] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107551] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(2287), 1, + STATE(701), 1, sym_plain_type, - STATE(3128), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2188), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3130), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290445,54 +286865,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106867] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107634] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5818), 1, + anon_sym_LPAREN, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5828), 1, anon_sym_AMP, - STATE(2112), 1, + ACTIONS(5830), 1, + anon_sym_map_LBRACK, + STATE(1872), 1, sym_plain_type, - STATE(3129), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3131), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290505,54 +286926,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106949] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107717] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(2240), 1, + STATE(1873), 1, sym_plain_type, - STATE(3130), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3132), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290565,54 +286987,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107031] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107800] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5796), 1, - anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5808), 1, - anon_sym_map_LBRACK, - STATE(2239), 1, + STATE(1981), 1, sym_plain_type, - STATE(3131), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4470), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3133), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290625,54 +287048,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107113] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107883] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3482), 1, - anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, - anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1237), 1, + STATE(2438), 1, sym_plain_type, - STATE(3132), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3134), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290685,54 +287109,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107195] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [107966] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(2238), 1, + STATE(2538), 1, sym_plain_type, - STATE(3133), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4491), 1, sym_reference_expression, - STATE(2188), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290745,54 +287170,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107277] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108049] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(771), 1, + STATE(2539), 1, sym_plain_type, - STATE(3134), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4491), 1, sym_reference_expression, - STATE(417), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3136), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290805,54 +287231,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107359] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108132] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(4082), 1, - anon_sym_chan, - ACTIONS(4084), 1, - anon_sym_thread, - ACTIONS(4086), 1, - anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2637), 1, + STATE(4614), 1, sym_plain_type, - STATE(3135), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2493), 2, + STATE(3137), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290865,54 +287292,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107441] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108215] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2105), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1709), 1, sym_plain_type, - STATE(3136), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1960), 2, + STATE(3138), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290925,54 +287353,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107523] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108298] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1462), 1, + STATE(1944), 1, sym_plain_type, - STATE(3137), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3139), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -290985,54 +287414,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107605] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108381] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(593), 1, - anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(765), 1, + STATE(1671), 1, sym_plain_type, - STATE(3138), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4460), 1, sym_reference_expression, - STATE(417), 2, + STATE(3140), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291045,54 +287475,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107687] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108464] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3748), 1, + anon_sym_chan, + ACTIONS(3750), 1, + anon_sym_thread, + ACTIONS(3752), 1, + anon_sym_atomic, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5822), 1, + anon_sym_QMARK, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5828), 1, anon_sym_AMP, - STATE(3139), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4657), 1, + ACTIONS(5830), 1, + anon_sym_map_LBRACK, + STATE(1931), 1, sym_plain_type, - STATE(3558), 2, + STATE(4554), 1, + sym_reference_expression, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3141), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291105,54 +287536,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107769] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108547] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(477), 1, + STATE(1933), 1, sym_plain_type, - STATE(3140), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4554), 1, sym_reference_expression, - STATE(417), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3142), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291165,54 +287597,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107851] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108630] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3480), 1, + anon_sym_struct, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2413), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1290), 1, sym_plain_type, - STATE(3141), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4512), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3143), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291225,54 +287658,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107933] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108713] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3480), 1, + anon_sym_struct, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2400), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1288), 1, sym_plain_type, - STATE(3142), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4512), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3144), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291285,54 +287719,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108015] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108796] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(2582), 1, + STATE(1941), 1, sym_plain_type, - STATE(3143), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2493), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3145), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291345,54 +287780,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108097] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108879] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3734), 1, + anon_sym_struct, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5818), 1, + anon_sym_LPAREN, + ACTIONS(5820), 1, + anon_sym_STAR, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5828), 1, anon_sym_AMP, - STATE(2353), 1, + ACTIONS(5830), 1, + anon_sym_map_LBRACK, + STATE(1942), 1, sym_plain_type, - STATE(3144), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4554), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3146), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291405,54 +287841,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108179] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [108962] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5706), 1, anon_sym_AMP, - STATE(2042), 1, + ACTIONS(5708), 1, + anon_sym_map_LBRACK, + STATE(1673), 1, sym_plain_type, - STATE(3145), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1960), 2, + STATE(3147), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291465,54 +287902,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108261] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109045] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(2636), 1, + STATE(523), 1, sym_plain_type, - STATE(3146), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2493), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3148), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291525,54 +287963,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108343] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109128] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, - sym_identifier, - ACTIONS(3820), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3826), 1, - anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3838), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5912), 1, - anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2034), 1, + STATE(2402), 1, sym_plain_type, - STATE(3147), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3149), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291585,54 +288024,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108425] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109211] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3452), 1, - anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5884), 1, - anon_sym_LPAREN, - ACTIONS(5886), 1, - anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_map_LBRACK, - STATE(3148), 1, - sym_line_comment, - STATE(3450), 1, + STATE(2403), 1, sym_plain_type, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3150), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291645,54 +288085,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108507] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109294] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5788), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, + anon_sym_STAR, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(2456), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(521), 1, sym_plain_type, - STATE(3149), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2345), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3151), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291705,11 +288146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108589] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109377] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3818), 1, sym_identifier, ACTIONS(3820), 1, @@ -291728,31 +288169,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2035), 1, + STATE(2131), 1, sym_plain_type, - STATE(3150), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3152), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291765,54 +288207,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108671] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109460] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2104), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2306), 1, sym_plain_type, - STATE(3151), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3153), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291825,11 +288268,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108753] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109543] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3818), 1, sym_identifier, ACTIONS(3820), 1, @@ -291848,31 +288291,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2032), 1, + STATE(2132), 1, sym_plain_type, - STATE(3152), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3154), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291885,54 +288329,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108835] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109626] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, + anon_sym_shared, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5802), 1, + anon_sym_QMARK, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(3153), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4753), 1, + STATE(2473), 1, sym_plain_type, - STATE(3558), 2, + STATE(4654), 1, + sym_reference_expression, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3155), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -291945,54 +288390,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108917] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109709] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3482), 1, - anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, - anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1248), 1, + STATE(2527), 1, sym_plain_type, - STATE(3154), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3156), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292005,54 +288451,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108999] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109792] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, - sym_identifier, - ACTIONS(3820), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3826), 1, - anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3838), 1, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5912), 1, - anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(2068), 1, + STATE(2526), 1, sym_plain_type, - STATE(3155), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3157), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292065,54 +288512,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109081] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109875] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(3156), 1, - sym_line_comment, - STATE(3463), 1, + STATE(1479), 1, sym_plain_type, - STATE(4434), 1, + STATE(4534), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3158), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292125,54 +288573,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109163] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [109958] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3985), 1, anon_sym_fn, - ACTIONS(3452), 1, - anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3999), 1, + anon_sym_map_LBRACK, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(5884), 1, - anon_sym_LPAREN, - ACTIONS(5886), 1, - anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5802), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_map_LBRACK, - STATE(3157), 1, - sym_line_comment, - STATE(3455), 1, + STATE(2472), 1, sym_plain_type, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3159), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292185,54 +288634,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109245] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110041] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2041), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2314), 1, sym_plain_type, - STATE(3158), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3160), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292245,54 +288695,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109327] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110124] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1496), 1, + STATE(1704), 1, sym_plain_type, - STATE(3159), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3161), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292305,54 +288756,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109409] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110207] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3748), 1, + anon_sym_chan, + ACTIONS(3750), 1, + anon_sym_thread, + ACTIONS(3752), 1, + anon_sym_atomic, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5822), 1, + anon_sym_QMARK, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5828), 1, anon_sym_AMP, - STATE(2364), 1, + ACTIONS(5830), 1, + anon_sym_map_LBRACK, + STATE(1943), 1, sym_plain_type, - STATE(3160), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4554), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3162), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292365,54 +288817,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109491] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110290] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3977), 1, + anon_sym_chan, + ACTIONS(3979), 1, + anon_sym_thread, + ACTIONS(3981), 1, + anon_sym_atomic, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5870), 1, + anon_sym_QMARK, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2457), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2280), 1, sym_plain_type, - STATE(3161), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4571), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3163), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292425,54 +288878,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109573] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110373] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(688), 1, + STATE(2155), 1, sym_plain_type, - STATE(3162), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4533), 1, sym_reference_expression, - STATE(417), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3164), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292485,54 +288939,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109655] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110456] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(675), 1, + STATE(1701), 1, sym_plain_type, - STATE(3163), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4451), 1, sym_reference_expression, - STATE(417), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3165), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292545,54 +289000,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109737] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110539] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5836), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(1170), 1, + STATE(2242), 1, sym_plain_type, - STATE(3164), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3166), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292605,54 +289061,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109819] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110622] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3963), 1, + anon_sym_struct, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, + anon_sym_STAR, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2358), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2278), 1, sym_plain_type, - STATE(3165), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4571), 1, sym_reference_expression, - STATE(2345), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3167), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292665,54 +289122,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109901] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110705] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(2065), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1096), 1, sym_plain_type, - STATE(3166), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3168), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292725,54 +289183,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109983] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110788] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5836), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1177), 1, + STATE(1191), 1, sym_plain_type, - STATE(3167), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3169), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292785,54 +289244,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110065] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110871] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, + anon_sym_chan, + ACTIONS(3842), 1, + anon_sym_thread, + ACTIONS(3844), 1, + anon_sym_atomic, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5858), 1, + anon_sym_QMARK, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(3168), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4712), 1, + STATE(2164), 1, sym_plain_type, - STATE(3558), 2, + STATE(4533), 1, + sym_reference_expression, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3170), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292845,54 +289305,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110147] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [110954] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(3169), 1, - sym_line_comment, - STATE(3468), 1, + STATE(1181), 1, sym_plain_type, - STATE(4434), 1, + STATE(4512), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3171), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292905,54 +289366,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110229] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111037] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(3170), 1, - sym_line_comment, - STATE(3451), 1, + STATE(1220), 1, sym_plain_type, - STATE(4434), 1, + STATE(4512), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3172), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -292965,54 +289427,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110311] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111120] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3466), 1, - anon_sym_chan, - ACTIONS(3468), 1, - anon_sym_thread, - ACTIONS(3470), 1, - anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5888), 1, - anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5896), 1, - anon_sym_map_LBRACK, - STATE(3171), 1, - sym_line_comment, - STATE(3460), 1, + STATE(3938), 1, sym_plain_type, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3173), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293025,54 +289488,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110393] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111203] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(3172), 1, - sym_line_comment, - STATE(3459), 1, + STATE(2203), 1, sym_plain_type, - STATE(4434), 1, + STATE(4571), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3174), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293085,54 +289549,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110475] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111286] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2465), 1, + STATE(4560), 1, sym_plain_type, - STATE(3173), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3175), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293145,54 +289610,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110557] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111369] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3462), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3468), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3470), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5884), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5886), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5888), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5890), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5892), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5894), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5896), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(3174), 1, - sym_line_comment, - STATE(3452), 1, + STATE(2245), 1, sym_plain_type, - STATE(4434), 1, + STATE(4571), 1, sym_reference_expression, - STATE(3424), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3465), 4, + STATE(3176), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3467), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293205,54 +289671,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110639] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111452] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(772), 1, + STATE(2120), 1, sym_plain_type, - STATE(3175), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4533), 1, sym_reference_expression, - STATE(417), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3177), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293265,11 +289732,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110721] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111535] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3818), 1, sym_identifier, ACTIONS(3820), 1, @@ -293288,31 +289755,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2063), 1, + STATE(2138), 1, sym_plain_type, - STATE(3176), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3178), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293325,54 +289793,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110803] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111618] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(4563), 1, + ACTIONS(3820), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(4581), 1, + ACTIONS(3838), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5856), 1, + anon_sym_STAR, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2758), 1, + STATE(2129), 1, sym_plain_type, - STATE(3177), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3179), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293385,54 +289854,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110885] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111701] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5836), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(1213), 1, + STATE(2244), 1, sym_plain_type, - STATE(3178), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1162), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3180), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293445,54 +289915,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110967] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111784] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, - sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, - anon_sym_fn, - ACTIONS(3826), 1, - anon_sym_struct, - ACTIONS(3836), 1, - anon_sym_shared, - ACTIONS(3838), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5914), 1, - anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2044), 1, + STATE(4276), 1, sym_plain_type, - STATE(3179), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1960), 2, + STATE(3181), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293505,54 +289976,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111049] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111867] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1195), 1, + STATE(2033), 1, sym_plain_type, - STATE(3180), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3182), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293565,54 +290037,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111131] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [111950] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1194), 1, + STATE(2081), 1, sym_plain_type, - STATE(3181), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3183), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293625,54 +290098,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111213] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112033] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3496), 1, - anon_sym_chan, - ACTIONS(3498), 1, - anon_sym_thread, - ACTIONS(3500), 1, - anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5828), 1, - anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1189), 1, + STATE(3964), 1, sym_plain_type, - STATE(3182), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3184), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293685,54 +290159,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111295] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112116] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5866), 1, + anon_sym_LPAREN, + ACTIONS(5868), 1, + anon_sym_STAR, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(2759), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2243), 1, sym_plain_type, - STATE(3183), 1, - sym_line_comment, STATE(4571), 1, sym_reference_expression, - STATE(2659), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3185), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293745,54 +290220,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111377] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112199] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2043), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2657), 1, sym_plain_type, - STATE(3184), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3186), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293805,54 +290281,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111459] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112282] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_STAR, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2760), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2658), 1, sym_plain_type, - STATE(3185), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4491), 1, sym_reference_expression, - STATE(2659), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3187), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293865,114 +290342,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111541] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112365] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - STATE(3186), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4630), 1, - sym_plain_type, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111623] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5910), 1, + anon_sym_QMARK, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(3187), 1, - sym_line_comment, - STATE(3931), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1095), 1, sym_plain_type, - STATE(4616), 1, + STATE(4449), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3188), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -293985,54 +290403,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111705] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112448] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3678), 1, + anon_sym_chan, + ACTIONS(3680), 1, + anon_sym_thread, + ACTIONS(3682), 1, + anon_sym_atomic, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5896), 1, + anon_sym_QMARK, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(3188), 1, - sym_line_comment, - STATE(3926), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1678), 1, sym_plain_type, - STATE(4616), 1, + STATE(4451), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3189), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294045,54 +290464,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111787] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112531] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3478), 1, - anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(5630), 1, anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5836), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1224), 1, + STATE(1678), 1, sym_plain_type, - STATE(3189), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3190), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294105,54 +290525,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111869] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112614] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1475), 1, + STATE(1782), 1, sym_plain_type, - STATE(3190), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3191), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294165,54 +290586,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111951] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112697] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5898), 1, - anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1108), 1, + STATE(2105), 1, sym_plain_type, - STATE(3191), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3192), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294225,54 +290647,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112033] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112780] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3662), 1, - anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(5630), 1, anon_sym_atomic, ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1690), 1, + STATE(1701), 1, sym_plain_type, - STATE(3192), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3193), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294285,54 +290708,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112115] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112863] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3678), 1, + anon_sym_chan, + ACTIONS(3680), 1, + anon_sym_thread, + ACTIONS(3682), 1, + anon_sym_atomic, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5896), 1, + anon_sym_QMARK, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(3193), 1, - sym_line_comment, - STATE(4190), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1781), 1, sym_plain_type, - STATE(4616), 1, + STATE(4451), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3194), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294345,54 +290769,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112197] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [112946] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3494), 1, + anon_sym_chan, + ACTIONS(3496), 1, + anon_sym_thread, + ACTIONS(3498), 1, + anon_sym_atomic, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5884), 1, + anon_sym_QMARK, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(3194), 1, - sym_line_comment, - STATE(3915), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1270), 1, sym_plain_type, - STATE(4616), 1, + STATE(4512), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3195), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294405,54 +290830,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112279] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113029] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3195), 1, - sym_line_comment, - STATE(4401), 1, + STATE(3924), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3196), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294465,54 +290891,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112361] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113112] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1039), 1, + STATE(1198), 1, sym_plain_type, - STATE(3196), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3197), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294525,54 +290952,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112443] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113195] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3650), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3652), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3654), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5716), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5724), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1487), 1, + STATE(1249), 1, sym_plain_type, - STATE(3197), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1443), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(3198), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294585,114 +291013,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112525] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113278] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, - sym_identifier, - ACTIONS(1621), 1, - anon_sym_fn, - ACTIONS(1625), 1, - anon_sym_struct, - ACTIONS(1635), 1, - anon_sym_shared, - ACTIONS(1639), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5898), 1, - anon_sym_LPAREN, - ACTIONS(5900), 1, - anon_sym_STAR, - ACTIONS(5902), 1, - anon_sym_QMARK, - ACTIONS(5904), 1, - anon_sym_BANG, - ACTIONS(5906), 1, - anon_sym_LBRACK2, - ACTIONS(5908), 1, - anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1122), 1, - sym_plain_type, - STATE(3198), 1, - sym_line_comment, - STATE(4441), 1, - sym_reference_expression, - STATE(1016), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1068), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1067), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112607] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1490), 1, + STATE(2433), 1, sym_plain_type, - STATE(3199), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1443), 2, + STATE(3199), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294705,54 +291074,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112689] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113361] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3662), 1, - anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(5610), 1, + anon_sym_fn, + ACTIONS(5622), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(5626), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(5628), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(5630), 1, anon_sym_atomic, ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5698), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5700), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5702), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5704), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5706), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5708), 1, anon_sym_map_LBRACK, - STATE(1692), 1, + STATE(1704), 1, sym_plain_type, - STATE(3200), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3200), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294765,54 +291135,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112771] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113444] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5932), 1, - anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1742), 1, + STATE(4619), 1, sym_plain_type, - STATE(3201), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3201), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294825,54 +291196,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112853] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113527] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5932), 1, - anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1748), 1, + STATE(3942), 1, sym_plain_type, - STATE(3202), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3202), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294885,54 +291257,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112935] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113610] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(611), 1, - anon_sym_chan, - ACTIONS(613), 1, - anon_sym_thread, - ACTIONS(615), 1, - anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5874), 1, - anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(761), 1, + STATE(3915), 1, sym_plain_type, - STATE(3203), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4654), 1, sym_reference_expression, - STATE(417), 2, + STATE(3203), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -294945,54 +291318,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113017] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113693] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3204), 1, - sym_line_comment, - STATE(3866), 1, + STATE(2438), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3204), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295005,54 +291379,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113099] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113776] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1054), 1, + STATE(1673), 1, sym_plain_type, - STATE(3205), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3205), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295065,54 +291440,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113181] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113859] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4086), 1, + anon_sym_chan, + ACTIONS(4088), 1, + anon_sym_thread, + ACTIONS(4090), 1, + anon_sym_atomic, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5846), 1, + anon_sym_QMARK, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(3206), 1, - sym_line_comment, - STATE(4275), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2544), 1, sym_plain_type, - STATE(4616), 1, + STATE(4491), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3206), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295125,54 +291501,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113263] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [113942] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1861), 1, + STATE(1671), 1, sym_plain_type, - STATE(3207), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3207), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295185,54 +291562,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113345] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114025] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4086), 1, + anon_sym_chan, + ACTIONS(4088), 1, + anon_sym_thread, + ACTIONS(4090), 1, + anon_sym_atomic, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5846), 1, + anon_sym_QMARK, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(3208), 1, - sym_line_comment, - STATE(4561), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2520), 1, sym_plain_type, - STATE(4616), 1, + STATE(4491), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3208), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295245,54 +291623,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113427] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114108] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3494), 1, + anon_sym_chan, + ACTIONS(3496), 1, + anon_sym_thread, + ACTIONS(3498), 1, + anon_sym_atomic, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5884), 1, + anon_sym_QMARK, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(3209), 1, - sym_line_comment, - STATE(4048), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1279), 1, sym_plain_type, - STATE(4616), 1, + STATE(4512), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3209), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295305,54 +291684,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113509] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114191] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5930), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5932), 1, anon_sym_map_LBRACK, - STATE(1871), 1, + STATE(3455), 1, sym_plain_type, - STATE(3210), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1816), 2, + STATE(3210), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295365,54 +291745,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113591] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114274] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1872), 1, + STATE(1252), 1, sym_plain_type, - STATE(3211), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3211), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295425,54 +291806,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113673] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114357] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1121), 1, + STATE(1258), 1, sym_plain_type, - STATE(3212), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3212), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295485,54 +291867,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113755] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114440] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5930), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5932), 1, anon_sym_map_LBRACK, - STATE(1704), 1, + STATE(3456), 1, sym_plain_type, - STATE(3213), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3213), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295545,54 +291928,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113837] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114523] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3480), 1, + anon_sym_struct, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2597), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1237), 1, sym_plain_type, - STATE(3214), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4512), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3214), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295605,54 +291989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113919] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114606] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5920), 1, + anon_sym_LPAREN, + ACTIONS(5922), 1, + anon_sym_STAR, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5930), 1, anon_sym_AMP, - STATE(1404), 1, + ACTIONS(5932), 1, + anon_sym_map_LBRACK, + STATE(3471), 1, sym_plain_type, - STATE(3215), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1310), 2, + STATE(3215), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295665,54 +292050,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114001] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114689] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1026), 1, + STATE(1709), 1, sym_plain_type, - STATE(3216), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3216), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295725,54 +292111,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114083] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114772] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3999), 1, - anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, + anon_sym_STAR, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(2592), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1677), 1, sym_plain_type, - STATE(3217), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4451), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3217), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295785,54 +292172,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114165] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114855] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, + anon_sym_STAR, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(1412), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1675), 1, sym_plain_type, - STATE(3218), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3218), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295845,54 +292233,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114247] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [114938] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, + anon_sym_STAR, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(1413), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1674), 1, sym_plain_type, - STATE(3219), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3219), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295905,54 +292294,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114329] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115021] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(4563), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(4567), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(4581), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2769), 1, + STATE(1408), 1, sym_plain_type, - STATE(3220), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3220), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -295965,54 +292355,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114411] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115104] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5898), 1, - anon_sym_LPAREN, - ACTIONS(5900), 1, - anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1048), 1, + STATE(2783), 1, sym_plain_type, - STATE(3221), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1016), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3221), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296025,54 +292416,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114493] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115187] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5898), 1, - anon_sym_LPAREN, - ACTIONS(5900), 1, - anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1050), 1, + STATE(2785), 1, sym_plain_type, - STATE(3222), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1016), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3222), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296085,54 +292477,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114575] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115270] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(4563), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(4567), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(4581), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2772), 1, + STATE(1412), 1, sym_plain_type, - STATE(3223), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3223), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296145,54 +292538,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114657] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115353] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2757), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1275), 1, sym_plain_type, - STATE(3224), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4512), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3224), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296205,54 +292599,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114739] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115436] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4557), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(4559), 1, + anon_sym_LPAREN, + ACTIONS(4561), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(4563), 1, + anon_sym_STAR, + ACTIONS(4565), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(4575), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(4577), 1, + anon_sym_map_LBRACK, + ACTIONS(4579), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(4581), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(4583), 1, anon_sym_atomic, - ACTIONS(5898), 1, - anon_sym_LPAREN, - ACTIONS(5900), 1, - anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5810), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5812), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5814), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5816), 1, anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1052), 1, + STATE(2791), 1, sym_plain_type, - STATE(3225), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4579), 1, sym_reference_expression, - STATE(1016), 2, + STATE(2680), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3225), 2, + sym_line_comment, + sym_block_comment, + STATE(2751), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(2752), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296265,54 +292660,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114821] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115519] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3810), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5860), 1, - anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(1965), 1, + STATE(1420), 1, sym_plain_type, - STATE(3226), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1957), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3226), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296325,54 +292721,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114903] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115602] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, + anon_sym_chan, + ACTIONS(3612), 1, + anon_sym_thread, + ACTIONS(3614), 1, + anon_sym_atomic, + ACTIONS(5934), 1, + anon_sym_QMARK, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(3227), 1, - sym_line_comment, - STATE(4473), 1, + STATE(1421), 1, sym_plain_type, - STATE(4616), 1, + STATE(4462), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3227), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296385,54 +292782,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114985] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115685] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3987), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3596), 1, + anon_sym_struct, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3999), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2350), 1, + STATE(1407), 1, sym_plain_type, - STATE(3228), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3228), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296445,54 +292843,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115067] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115768] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3496), 1, - anon_sym_chan, - ACTIONS(3498), 1, - anon_sym_thread, - ACTIONS(3500), 1, - anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5828), 1, - anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1282), 1, + STATE(3910), 1, sym_plain_type, - STATE(3229), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1162), 2, + STATE(3229), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296505,54 +292904,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115149] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115851] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(1765), 1, + STATE(2581), 1, sym_plain_type, - STATE(3230), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1691), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3230), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296565,54 +292965,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115231] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [115934] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(1763), 1, + STATE(2610), 1, sym_plain_type, - STATE(3231), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1691), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3231), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296625,54 +293026,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115313] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116017] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2131), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2584), 1, sym_plain_type, - STATE(3232), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3232), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296685,54 +293087,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115395] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116100] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2130), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2557), 1, sym_plain_type, - STATE(3233), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1960), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3233), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296745,54 +293148,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115477] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116183] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3987), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3596), 1, + anon_sym_struct, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3999), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2416), 1, + STATE(1405), 1, sym_plain_type, - STATE(3234), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3234), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296805,54 +293209,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115559] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116266] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, + anon_sym_STAR, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2855), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1488), 1, sym_plain_type, - STATE(3235), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4534), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3235), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296865,54 +293270,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115641] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116349] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5932), 1, - anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1743), 1, + STATE(4077), 1, sym_plain_type, - STATE(3236), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3236), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296925,54 +293331,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115723] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116432] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(4563), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(4567), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(4581), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2858), 1, + STATE(1389), 1, sym_plain_type, - STATE(3237), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4462), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3237), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -296985,54 +293392,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115805] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116515] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, - anon_sym_struct, - ACTIONS(3808), 1, - anon_sym_shared, - ACTIONS(3810), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(1996), 1, + STATE(3875), 1, sym_plain_type, - STATE(3238), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3238), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297045,54 +293453,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115887] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116598] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, - anon_sym_struct, - ACTIONS(3808), 1, - anon_sym_shared, - ACTIONS(3810), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2039), 1, + STATE(2394), 1, sym_plain_type, - STATE(3239), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3239), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297105,54 +293514,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [115969] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116681] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1470), 1, + STATE(2432), 1, sym_plain_type, - STATE(3240), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1443), 2, + STATE(3240), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297165,54 +293575,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116051] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116764] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(1989), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1794), 1, sym_plain_type, - STATE(3241), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4451), 1, sym_reference_expression, - STATE(1957), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3241), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297225,54 +293636,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116133] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116847] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1472), 1, + STATE(2349), 1, sym_plain_type, - STATE(3242), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1443), 2, + STATE(3242), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297285,54 +293697,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116215] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [116930] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3628), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3632), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3636), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3646), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3650), 1, - anon_sym_chan, - ACTIONS(3652), 1, - anon_sym_thread, - ACTIONS(3654), 1, - anon_sym_atomic, - ACTIONS(5710), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5714), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5716), 1, - anon_sym_QMARK, - ACTIONS(5718), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5720), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5722), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_map_LBRACK, - STATE(1473), 1, + STATE(2469), 1, sym_plain_type, - STATE(3243), 1, - sym_line_comment, - STATE(4518), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1443), 2, + STATE(3243), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1506), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1507), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297345,54 +293758,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116297] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117013] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, - anon_sym_struct, - ACTIONS(3808), 1, - anon_sym_shared, - ACTIONS(3810), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(1964), 1, + STATE(4521), 1, sym_plain_type, - STATE(3244), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3244), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297405,54 +293819,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116379] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117096] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3682), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5694), 1, + anon_sym_LPAREN, + ACTIONS(5894), 1, + anon_sym_STAR, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(2774), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1763), 1, sym_plain_type, - STATE(3245), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4451), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3245), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297465,54 +293880,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116461] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117179] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, - sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, - anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, - anon_sym_struct, - ACTIONS(4579), 1, - anon_sym_shared, - ACTIONS(4581), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5922), 1, - anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2785), 1, + STATE(4572), 1, sym_plain_type, - STATE(3246), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2659), 2, + STATE(3246), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297525,54 +293941,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116543] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117262] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3470), 1, anon_sym_atomic, + ACTIONS(5920), 1, + anon_sym_LPAREN, ACTIONS(5922), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5924), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5926), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5928), 1, + anon_sym_LBRACK2, + ACTIONS(5930), 1, anon_sym_AMP, - STATE(2871), 1, + ACTIONS(5932), 1, + anon_sym_map_LBRACK, + STATE(3451), 1, sym_plain_type, - STATE(3247), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4460), 1, sym_reference_expression, - STATE(2659), 2, + STATE(3247), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297585,54 +294002,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116625] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117345] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(4086), 1, + anon_sym_chan, + ACTIONS(4088), 1, + anon_sym_thread, + ACTIONS(4090), 1, + anon_sym_atomic, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5846), 1, + anon_sym_QMARK, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(3248), 1, - sym_line_comment, - STATE(4438), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2594), 1, sym_plain_type, - STATE(4616), 1, + STATE(4491), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3248), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297645,54 +294063,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116707] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117428] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3792), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3810), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5860), 1, - anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(1987), 1, + STATE(1386), 1, sym_plain_type, - STATE(3249), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1957), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3249), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297705,54 +294124,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116789] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117511] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(574), 1, + STATE(2563), 1, sym_plain_type, - STATE(3250), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4491), 1, sym_reference_expression, - STATE(417), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3250), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297765,54 +294185,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116871] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117594] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5842), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5844), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5854), 1, anon_sym_map_LBRACK, - STATE(596), 1, + STATE(2567), 1, sym_plain_type, - STATE(3251), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4491), 1, sym_reference_expression, - STATE(417), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3251), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297825,54 +294246,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [116953] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117677] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5788), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(2001), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(573), 1, sym_plain_type, - STATE(3252), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1957), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3252), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297885,54 +294307,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117035] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117760] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3596), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(1392), 1, + STATE(1418), 1, sym_plain_type, - STATE(3253), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3253), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -297945,54 +294368,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117117] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117843] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_STAR, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(1420), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2649), 1, sym_plain_type, - STATE(3254), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1310), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3254), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298005,54 +294429,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117199] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [117926] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4064), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(4068), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(4072), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(4082), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(4086), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(4088), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(4090), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_STAR, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(1366), 1, + ACTIONS(5854), 1, + anon_sym_map_LBRACK, + STATE(2574), 1, sym_plain_type, - STATE(3255), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4491), 1, sym_reference_expression, - STATE(1310), 2, + STATE(2487), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3255), 2, + sym_line_comment, + sym_block_comment, + STATE(2603), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2647), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298065,54 +294490,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117281] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118009] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3466), 1, + anon_sym_chan, + ACTIONS(3468), 1, + anon_sym_thread, + ACTIONS(3470), 1, + anon_sym_atomic, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5924), 1, + anon_sym_QMARK, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5930), 1, anon_sym_AMP, - STATE(3256), 1, - sym_line_comment, - STATE(4047), 1, + ACTIONS(5932), 1, + anon_sym_map_LBRACK, + STATE(3469), 1, sym_plain_type, - STATE(4616), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3256), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298125,11 +294551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117363] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118092] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3955), 1, sym_identifier, ACTIONS(3959), 1, @@ -298144,35 +294570,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(2237), 1, + STATE(2275), 1, sym_plain_type, - STATE(3257), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4571), 1, sym_reference_expression, - STATE(2188), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3257), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298185,54 +294612,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117445] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118175] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5788), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(1984), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(530), 1, sym_plain_type, - STATE(3258), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1957), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3258), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298245,114 +294673,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117527] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118258] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, - anon_sym_BANG, - ACTIONS(5438), 1, - anon_sym_LBRACK2, - ACTIONS(5440), 1, - anon_sym_AMP, - STATE(3259), 1, - sym_line_comment, - STATE(4032), 1, - sym_plain_type, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2467), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2469), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [117609] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5792), 1, + anon_sym_QMARK, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(3260), 1, - sym_line_comment, - STATE(3888), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(541), 1, sym_plain_type, - STATE(4616), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3558), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3259), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298365,54 +294734,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117691] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118341] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3977), 1, + anon_sym_chan, + ACTIONS(3979), 1, + anon_sym_thread, + ACTIONS(3981), 1, + anon_sym_atomic, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5870), 1, + anon_sym_QMARK, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5876), 1, anon_sym_AMP, - STATE(3261), 1, - sym_line_comment, - STATE(3870), 1, + ACTIONS(5878), 1, + anon_sym_map_LBRACK, + STATE(2204), 1, sym_plain_type, - STATE(4616), 1, + STATE(4571), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3260), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298425,54 +294795,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117773] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118424] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3955), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3959), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3963), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3973), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3977), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3979), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3981), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5866), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5868), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5870), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5872), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5874), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5876), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5878), 1, anon_sym_map_LBRACK, - STATE(1895), 1, + STATE(2210), 1, sym_plain_type, - STATE(3262), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4571), 1, sym_reference_expression, - STATE(1816), 2, + STATE(2195), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3261), 2, + sym_line_comment, + sym_block_comment, + STATE(2218), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2219), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298485,54 +294856,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117855] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118507] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2787), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1224), 1, sym_plain_type, - STATE(3263), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4512), 1, sym_reference_expression, - STATE(2659), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3262), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298545,54 +294917,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [117937] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118590] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5930), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5932), 1, anon_sym_map_LBRACK, - STATE(665), 1, + STATE(3465), 1, sym_plain_type, - STATE(3264), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4460), 1, sym_reference_expression, - STATE(417), 2, + STATE(3263), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298605,54 +294978,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118019] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118673] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, - sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, - anon_sym_fn, - ACTIONS(3798), 1, - anon_sym_struct, - ACTIONS(3808), 1, - anon_sym_shared, - ACTIONS(3810), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5862), 1, - anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(1979), 1, + STATE(3895), 1, sym_plain_type, - STATE(3265), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3264), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298665,54 +295039,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118101] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118756] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(1681), 1, + STATE(620), 1, sym_plain_type, - STATE(3266), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1691), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3265), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298725,54 +295100,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118183] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118839] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5920), 1, + anon_sym_LPAREN, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5930), 1, anon_sym_AMP, - STATE(1976), 1, + ACTIONS(5932), 1, + anon_sym_map_LBRACK, + STATE(3452), 1, sym_plain_type, - STATE(3267), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1957), 2, + STATE(3266), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298785,54 +295161,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118265] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [118922] = 22, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3444), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(5622), 1, + ACTIONS(3452), 1, + anon_sym_struct, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(5626), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5930), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5932), 1, anon_sym_map_LBRACK, - STATE(1667), 1, + STATE(3467), 1, sym_plain_type, - STATE(3268), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3267), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298845,54 +295222,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118347] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119005] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3448), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3452), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3462), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3466), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3468), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3470), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5920), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5922), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5924), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5926), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5928), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5930), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5932), 1, anon_sym_map_LBRACK, - STATE(541), 1, + STATE(3459), 1, sym_plain_type, - STATE(3269), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4460), 1, sym_reference_expression, - STATE(417), 2, + STATE(3268), 2, + sym_line_comment, + sym_block_comment, + STATE(3433), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3464), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(3462), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298905,54 +295283,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118429] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119088] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3780), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3798), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(1339), 1, + STATE(2074), 1, sym_plain_type, - STATE(3270), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3269), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -298965,54 +295344,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118511] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119171] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(467), 1, + STATE(2079), 1, sym_plain_type, - STATE(3271), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4470), 1, sym_reference_expression, - STATE(417), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3270), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299025,54 +295405,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118593] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119254] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, + anon_sym_chan, + ACTIONS(3802), 1, + anon_sym_thread, + ACTIONS(3804), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(3272), 1, - sym_line_comment, - STATE(4547), 1, + STATE(2086), 1, sym_plain_type, - STATE(4616), 1, + STATE(4470), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3271), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299085,54 +295466,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118675] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119337] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5880), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(468), 1, + STATE(1170), 1, sym_plain_type, - STATE(3273), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4512), 1, sym_reference_expression, - STATE(417), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3272), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299145,54 +295527,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118757] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119420] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(5622), 1, + ACTIONS(3786), 1, + anon_sym_struct, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(5626), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5694), 1, - anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(1693), 1, + STATE(2007), 1, sym_plain_type, - STATE(3274), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4470), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3273), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299205,54 +295588,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118839] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119503] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3790), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3472), 1, sym_identifier, - ACTIONS(3792), 1, - anon_sym_LPAREN, - ACTIONS(3794), 1, + ACTIONS(3476), 1, anon_sym_fn, - ACTIONS(3798), 1, + ACTIONS(3480), 1, anon_sym_struct, - ACTIONS(3808), 1, + ACTIONS(3490), 1, anon_sym_shared, - ACTIONS(3810), 1, - anon_sym_map_LBRACK, - ACTIONS(3812), 1, + ACTIONS(3494), 1, anon_sym_chan, - ACTIONS(3814), 1, + ACTIONS(3496), 1, anon_sym_thread, - ACTIONS(3816), 1, + ACTIONS(3498), 1, anon_sym_atomic, - ACTIONS(5860), 1, + ACTIONS(5880), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5862), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5864), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5866), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5868), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2000), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1218), 1, sym_plain_type, - STATE(3275), 1, - sym_line_comment, - STATE(4525), 1, + STATE(4512), 1, sym_reference_expression, - STATE(1957), 2, + STATE(1169), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2010), 4, + STATE(3274), 2, + sym_line_comment, + sym_block_comment, + STATE(1235), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2009), 12, + STATE(1241), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299265,54 +295649,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [118921] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119586] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(5622), 1, + ACTIONS(575), 1, + anon_sym_struct, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(5626), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(1694), 1, + STATE(814), 1, sym_plain_type, - STATE(3276), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3424), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3275), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299325,54 +295710,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119003] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119669] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5824), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5836), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(1293), 1, + STATE(462), 1, sym_plain_type, - STATE(3277), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1162), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3276), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299385,54 +295771,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119085] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119752] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3977), 1, - anon_sym_chan, - ACTIONS(3979), 1, - anon_sym_thread, - ACTIONS(3981), 1, - anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5800), 1, - anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5808), 1, - anon_sym_map_LBRACK, - STATE(2292), 1, + STATE(4654), 1, + sym_reference_expression, + STATE(4677), 1, sym_plain_type, - STATE(3278), 1, + STATE(3277), 2, sym_line_comment, - STATE(4563), 1, - sym_reference_expression, - STATE(2188), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299445,54 +295832,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119167] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119835] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1060), 1, + STATE(1456), 1, sym_plain_type, - STATE(3279), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3278), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299505,54 +295893,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119249] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [119918] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1075), 1, + STATE(1517), 1, sym_plain_type, - STATE(3280), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3279), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299565,54 +295954,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119331] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120001] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(2299), 1, + STATE(485), 1, sym_plain_type, - STATE(3281), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2188), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3280), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299625,54 +296015,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119413] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120084] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5796), 1, - anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5808), 1, - anon_sym_map_LBRACK, - STATE(2297), 1, + STATE(2022), 1, sym_plain_type, - STATE(3282), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4470), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3281), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299685,54 +296076,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119495] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120167] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, + anon_sym_chan, + ACTIONS(3802), 1, + anon_sym_thread, + ACTIONS(3804), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(3283), 1, - sym_line_comment, - STATE(4015), 1, + STATE(2059), 1, sym_plain_type, - STATE(4616), 1, + STATE(4470), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3282), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299745,54 +296137,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119577] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120250] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, + anon_sym_chan, + ACTIONS(3612), 1, + anon_sym_thread, + ACTIONS(3614), 1, + anon_sym_atomic, + ACTIONS(5934), 1, + anon_sym_QMARK, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(2350), 1, + STATE(1391), 1, sym_plain_type, - STATE(3284), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4462), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3283), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299805,54 +296198,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119659] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120333] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3596), 1, + ACTIONS(3594), 1, anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3608), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5940), 1, anon_sym_AMP, - STATE(1363), 1, + STATE(1392), 1, sym_plain_type, - STATE(3285), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3284), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299865,54 +296259,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119741] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120416] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, - anon_sym_struct, - ACTIONS(3608), 1, - anon_sym_shared, - ACTIONS(3610), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5788), 1, - anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(1365), 1, + STATE(4654), 1, + sym_reference_expression, + STATE(4717), 1, sym_plain_type, - STATE(3286), 1, + STATE(3285), 2, sym_line_comment, - STATE(4443), 1, - sym_reference_expression, - STATE(1310), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299925,54 +296320,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119823] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120499] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3780), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3798), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(1342), 1, + STATE(1962), 1, sym_plain_type, - STATE(3287), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3286), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -299985,54 +296381,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119905] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120582] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + anon_sym_STAR, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(1340), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1029), 1, sym_plain_type, - STATE(3288), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3287), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300045,54 +296442,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [119987] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120665] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3474), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3482), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3492), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3496), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3498), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3500), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5824), 1, - anon_sym_LPAREN, - ACTIONS(5826), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5828), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5830), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5832), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5834), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5836), 1, - anon_sym_map_LBRACK, - STATE(1288), 1, + STATE(2061), 1, sym_plain_type, - STATE(3289), 1, - sym_line_comment, - STATE(4504), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1162), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1192), 4, + STATE(3288), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1193), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300105,54 +296503,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120069] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120748] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5694), 1, - anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(2065), 1, sym_plain_type, - STATE(3290), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1691), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3289), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300165,54 +296564,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120151] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120831] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5694), 1, - anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1707), 1, + STATE(2083), 1, sym_plain_type, - STATE(3291), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1691), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3290), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300225,54 +296625,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120233] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120914] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1854), 1, + STATE(1059), 1, sym_plain_type, - STATE(3292), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3291), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300285,54 +296686,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120315] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [120997] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3746), 1, - anon_sym_chan, ACTIONS(3748), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(3750), 1, + anon_sym_thread, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(1827), 1, + STATE(1871), 1, sym_plain_type, - STATE(3293), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3292), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300345,54 +296747,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120397] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121080] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5818), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5820), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5828), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5830), 1, anon_sym_map_LBRACK, - STATE(539), 1, + STATE(1874), 1, sym_plain_type, - STATE(3294), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4554), 1, sym_reference_expression, - STATE(417), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3293), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300405,54 +296808,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120479] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121163] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3730), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3734), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3744), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3748), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3750), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3752), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5818), 1, + anon_sym_LPAREN, + ACTIONS(5820), 1, + anon_sym_STAR, + ACTIONS(5822), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5824), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5826), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5828), 1, anon_sym_AMP, - STATE(1338), 1, + ACTIONS(5830), 1, + anon_sym_map_LBRACK, + STATE(1877), 1, sym_plain_type, - STATE(3295), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4554), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1812), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3294), 2, + sym_line_comment, + sym_block_comment, + STATE(1940), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1948), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300465,54 +296869,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120561] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121246] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(1694), 1, + STATE(486), 1, sym_plain_type, - STATE(3296), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1691), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3295), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300525,54 +296930,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120643] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121329] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3746), 1, - anon_sym_chan, - ACTIONS(3748), 1, - anon_sym_thread, - ACTIONS(3750), 1, - anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5814), 1, - anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1922), 1, + STATE(3897), 1, sym_plain_type, - STATE(3297), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1816), 2, + STATE(3296), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300585,54 +296991,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120725] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121412] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1921), 1, + STATE(1506), 1, sym_plain_type, - STATE(3298), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3297), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300645,54 +297052,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120807] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121495] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3650), 1, + anon_sym_chan, + ACTIONS(3652), 1, + anon_sym_thread, + ACTIONS(3654), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(2416), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1504), 1, sym_plain_type, - STATE(3299), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4534), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3298), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300705,54 +297113,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120889] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121578] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, + anon_sym_chan, + ACTIONS(3802), 1, + anon_sym_thread, + ACTIONS(3804), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5834), 1, + anon_sym_QMARK, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(3300), 1, - sym_line_comment, - STATE(3917), 1, + STATE(2084), 1, sym_plain_type, - STATE(4616), 1, + STATE(4470), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3299), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300765,54 +297174,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [120971] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121661] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3650), 1, + anon_sym_chan, + ACTIONS(3652), 1, + anon_sym_thread, + ACTIONS(3654), 1, + anon_sym_atomic, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5716), 1, + anon_sym_QMARK, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(3301), 1, - sym_line_comment, - STATE(4593), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1457), 1, sym_plain_type, - STATE(4616), 1, + STATE(4534), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3300), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300825,54 +297235,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121053] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121744] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(1705), 1, + anon_sym_chan, + ACTIONS(1707), 1, + anon_sym_thread, + ACTIONS(1709), 1, + anon_sym_atomic, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5910), 1, + anon_sym_QMARK, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(3302), 1, - sym_line_comment, - STATE(4063), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1073), 1, sym_plain_type, - STATE(4616), 1, + STATE(4449), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3301), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300885,54 +297296,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121135] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121827] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5932), 1, - anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1737), 1, + STATE(3899), 1, sym_plain_type, - STATE(3303), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1691), 2, + STATE(3302), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -300945,54 +297357,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121217] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121910] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2259), 1, + STATE(1106), 1, sym_plain_type, - STATE(3304), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3303), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301005,54 +297418,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121299] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [121993] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3955), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3959), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3963), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3973), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3977), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3979), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3981), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5796), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5798), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5800), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5802), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5804), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5806), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5808), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2274), 1, + STATE(1123), 1, sym_plain_type, - STATE(3305), 1, - sym_line_comment, - STATE(4563), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2188), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2220), 4, + STATE(3304), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2221), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301065,54 +297479,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121381] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122076] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1735), 1, + STATE(1021), 1, sym_plain_type, - STATE(3306), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1691), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3305), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301125,54 +297540,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121463] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122159] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, - sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, - anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, - anon_sym_struct, - ACTIONS(4579), 1, - anon_sym_shared, - ACTIONS(4581), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5922), 1, - anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2597), 1, + STATE(4338), 1, sym_plain_type, - STATE(3307), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4654), 1, sym_reference_expression, - STATE(2659), 2, + STATE(3306), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301185,54 +297601,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121545] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122242] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4561), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4563), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_STAR, - ACTIONS(4569), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4581), 1, - anon_sym_map_LBRACK, - ACTIONS(4583), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4585), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4587), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5922), 1, + ACTIONS(5788), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, + anon_sym_STAR, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5924), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5926), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5928), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(2592), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(929), 1, sym_plain_type, - STATE(3308), 1, - sym_line_comment, - STATE(4571), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2659), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2743), 4, + STATE(3307), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2744), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301245,54 +297662,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121627] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122325] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2353), 1, + STATE(3966), 1, sym_plain_type, - STATE(3309), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3308), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301305,54 +297723,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121709] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122408] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(2456), 1, + STATE(4654), 1, + sym_reference_expression, + STATE(4672), 1, sym_plain_type, - STATE(3310), 1, + STATE(3309), 2, sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(3558), 2, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301365,54 +297784,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121791] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122491] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5870), 1, - anon_sym_LPAREN, - ACTIONS(5872), 1, - anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(5882), 1, - anon_sym_map_LBRACK, - STATE(694), 1, + STATE(1385), 1, sym_plain_type, - STATE(3311), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4462), 1, sym_reference_expression, - STATE(417), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3310), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301425,54 +297845,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121873] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122574] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(5622), 1, + ACTIONS(3664), 1, + anon_sym_struct, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(5626), 1, + ACTIONS(3678), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(3680), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(3682), 1, anon_sym_atomic, ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5896), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5902), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5904), 1, anon_sym_map_LBRACK, - STATE(1690), 1, + STATE(1758), 1, sym_plain_type, - STATE(3312), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4451), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3311), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301485,54 +297906,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [121955] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122657] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3678), 1, + anon_sym_chan, + ACTIONS(3680), 1, + anon_sym_thread, + ACTIONS(3682), 1, + anon_sym_atomic, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5896), 1, + anon_sym_QMARK, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(2357), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1788), 1, sym_plain_type, - STATE(3313), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4451), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3312), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301545,54 +297967,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122037] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122740] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, - ACTIONS(565), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3656), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(3660), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(3664), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(3674), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(3678), 1, + anon_sym_chan, + ACTIONS(3680), 1, + anon_sym_thread, + ACTIONS(3682), 1, + anon_sym_atomic, + ACTIONS(5694), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5894), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5896), 1, + anon_sym_QMARK, + ACTIONS(5898), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5900), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5902), 1, anon_sym_AMP, - STATE(2358), 1, + ACTIONS(5904), 1, + anon_sym_map_LBRACK, + STATE(1790), 1, sym_plain_type, - STATE(3314), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4451), 1, sym_reference_expression, - STATE(3558), 2, + STATE(1703), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3313), 2, + sym_line_comment, + sym_block_comment, + STATE(1667), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(1710), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301605,54 +298028,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122119] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122823] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5626), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(1692), 1, + STATE(4629), 1, sym_plain_type, - STATE(3315), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3314), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301665,54 +298089,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122201] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122906] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5626), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(1704), 1, + STATE(4606), 1, sym_plain_type, - STATE(3316), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3315), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301725,54 +298150,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122283] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [122989] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3786), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3798), 1, + anon_sym_map_LBRACK, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5694), 1, - anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_AMP, - ACTIONS(5940), 1, - anon_sym_map_LBRACK, - STATE(1693), 1, + STATE(2043), 1, sym_plain_type, - STATE(3317), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4470), 1, sym_reference_expression, - STATE(1691), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3316), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301785,54 +298211,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122365] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123072] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1855), 1, + STATE(1062), 1, sym_plain_type, - STATE(3318), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3317), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301845,54 +298272,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122447] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123155] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(1968), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1080), 1, sym_plain_type, - STATE(3319), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3318), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301905,54 +298333,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122529] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123238] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3983), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3778), 1, sym_identifier, - ACTIONS(3985), 1, + ACTIONS(3780), 1, + anon_sym_LPAREN, + ACTIONS(3782), 1, anon_sym_fn, - ACTIONS(3987), 1, - anon_sym_STAR, - ACTIONS(3997), 1, + ACTIONS(3786), 1, + anon_sym_struct, + ACTIONS(3796), 1, anon_sym_shared, - ACTIONS(3999), 1, + ACTIONS(3798), 1, anon_sym_map_LBRACK, - ACTIONS(4001), 1, + ACTIONS(3800), 1, anon_sym_chan, - ACTIONS(4003), 1, + ACTIONS(3802), 1, anon_sym_thread, - ACTIONS(4005), 1, + ACTIONS(3804), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5832), 1, + anon_sym_STAR, + ACTIONS(5834), 1, anon_sym_QMARK, - ACTIONS(5854), 1, + ACTIONS(5836), 1, anon_sym_BANG, - ACTIONS(5856), 1, + ACTIONS(5838), 1, anon_sym_LBRACK2, - ACTIONS(5858), 1, + ACTIONS(5840), 1, anon_sym_AMP, - STATE(2357), 1, + STATE(2042), 1, sym_plain_type, - STATE(3320), 1, - sym_line_comment, - STATE(4616), 1, + STATE(4470), 1, sym_reference_expression, - STATE(2345), 2, + STATE(1950), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3319), 2, + sym_line_comment, + sym_block_comment, + STATE(2111), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2110), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -301965,54 +298394,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122611] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123321] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(1639), 1, - anon_sym_chan, - ACTIONS(1641), 1, - anon_sym_thread, - ACTIONS(1643), 1, - anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5902), 1, - anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5910), 1, - anon_sym_map_LBRACK, - STATE(1125), 1, + STATE(4585), 1, sym_plain_type, - STATE(3321), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4654), 1, sym_reference_expression, - STATE(1016), 2, + STATE(3320), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302025,54 +298455,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122693] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123404] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, + STATE(1372), 1, sym_plain_type, - STATE(3322), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3321), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302085,54 +298516,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122775] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123487] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3588), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3590), 1, + anon_sym_LPAREN, + ACTIONS(3592), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3594), 1, + anon_sym_STAR, + ACTIONS(3596), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3606), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3608), 1, + anon_sym_map_LBRACK, + ACTIONS(3610), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3612), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3614), 1, anon_sym_atomic, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, - anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5934), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5936), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5938), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1863), 1, + STATE(1388), 1, sym_plain_type, - STATE(3323), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4462), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1308), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3322), 2, + sym_line_comment, + sym_block_comment, + STATE(1415), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1416), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302145,54 +298577,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122857] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123570] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1113), 1, + STATE(1502), 1, sym_plain_type, - STATE(3324), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3323), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302205,54 +298638,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [122939] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123653] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1617), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5898), 1, + ACTIONS(5710), 1, anon_sym_LPAREN, - ACTIONS(5900), 1, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5902), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5904), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5906), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5908), 1, + ACTIONS(5722), 1, anon_sym_AMP, - ACTIONS(5910), 1, + ACTIONS(5724), 1, anon_sym_map_LBRACK, - STATE(1112), 1, + STATE(1501), 1, sym_plain_type, - STATE(3325), 1, - sym_line_comment, - STATE(4441), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1016), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1068), 4, + STATE(3324), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1067), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302265,54 +298699,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123021] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123736] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3818), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3820), 1, - anon_sym_LPAREN, - ACTIONS(3822), 1, + ACTIONS(3632), 1, anon_sym_fn, - ACTIONS(3826), 1, + ACTIONS(3636), 1, anon_sym_struct, - ACTIONS(3836), 1, + ACTIONS(3646), 1, anon_sym_shared, - ACTIONS(3838), 1, - anon_sym_map_LBRACK, - ACTIONS(3840), 1, + ACTIONS(3650), 1, anon_sym_chan, - ACTIONS(3842), 1, + ACTIONS(3652), 1, anon_sym_thread, - ACTIONS(3844), 1, + ACTIONS(3654), 1, anon_sym_atomic, - ACTIONS(5912), 1, + ACTIONS(5710), 1, + anon_sym_LPAREN, + ACTIONS(5714), 1, anon_sym_STAR, - ACTIONS(5914), 1, + ACTIONS(5716), 1, anon_sym_QMARK, - ACTIONS(5916), 1, + ACTIONS(5718), 1, anon_sym_BANG, - ACTIONS(5918), 1, + ACTIONS(5720), 1, anon_sym_LBRACK2, - ACTIONS(5920), 1, + ACTIONS(5722), 1, anon_sym_AMP, - STATE(1969), 1, + ACTIONS(5724), 1, + anon_sym_map_LBRACK, + STATE(1490), 1, sym_plain_type, - STATE(3326), 1, - sym_line_comment, - STATE(4462), 1, + STATE(4534), 1, sym_reference_expression, - STATE(1960), 2, + STATE(1442), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2028), 4, + STATE(3325), 2, + sym_line_comment, + sym_block_comment, + STATE(1495), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2029), 12, + STATE(1496), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302325,54 +298760,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123103] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123819] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(3620), 1, + anon_sym_LPAREN, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + anon_sym_fn, + ACTIONS(3987), 1, + anon_sym_STAR, + ACTIONS(3997), 1, + anon_sym_shared, + ACTIONS(3999), 1, anon_sym_map_LBRACK, - ACTIONS(87), 1, + ACTIONS(4001), 1, anon_sym_chan, - ACTIONS(89), 1, + ACTIONS(4003), 1, anon_sym_thread, - ACTIONS(91), 1, + ACTIONS(4005), 1, anon_sym_atomic, - ACTIONS(565), 1, - sym_identifier, - ACTIONS(571), 1, - anon_sym_fn, - ACTIONS(575), 1, - anon_sym_struct, - ACTIONS(583), 1, - anon_sym_shared, - ACTIONS(3618), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5802), 1, + anon_sym_QMARK, + ACTIONS(5804), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5806), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5808), 1, anon_sym_AMP, - STATE(3327), 1, - sym_line_comment, - STATE(3954), 1, + STATE(2433), 1, sym_plain_type, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(2343), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3326), 2, + sym_line_comment, + sym_block_comment, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302385,54 +298821,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123185] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123902] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5792), 1, + anon_sym_QMARK, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(3328), 1, - sym_line_comment, - STATE(4177), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(832), 1, sym_plain_type, - STATE(4616), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3558), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3327), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302445,54 +298882,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123267] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [123985] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5626), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(1681), 1, + STATE(4577), 1, sym_plain_type, - STATE(3329), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3328), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302505,54 +298943,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123349] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124068] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3590), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5788), 1, + ACTIONS(5906), 1, + anon_sym_LPAREN, + ACTIONS(5908), 1, + anon_sym_STAR, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5790), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5792), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5794), 1, + ACTIONS(5916), 1, anon_sym_AMP, - STATE(1346), 1, + ACTIONS(5918), 1, + anon_sym_map_LBRACK, + STATE(1037), 1, sym_plain_type, - STATE(3330), 1, - sym_line_comment, - STATE(4443), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1310), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1373), 4, + STATE(3329), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1343), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302565,54 +299004,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123431] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124151] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(587), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(593), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(597), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(607), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(611), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(613), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(615), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5870), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5872), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5874), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5876), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5878), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5880), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5882), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(693), 1, + STATE(1065), 1, sym_plain_type, - STATE(3331), 1, - sym_line_comment, - STATE(4471), 1, + STATE(4449), 1, sym_reference_expression, - STATE(417), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(824), 4, + STATE(3330), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(823), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302625,54 +299065,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123513] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124234] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5838), 1, - anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5850), 1, - anon_sym_map_LBRACK, - STATE(2599), 1, + STATE(2158), 1, sym_plain_type, - STATE(3332), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2493), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3331), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302685,54 +299126,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123595] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124317] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(2600), 1, + STATE(1078), 1, sym_plain_type, - STATE(3333), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4449), 1, sym_reference_expression, - STATE(2493), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3332), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302745,54 +299187,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123677] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124400] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3658), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5930), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5932), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5934), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5936), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5938), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5940), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1667), 1, + STATE(1083), 1, sym_plain_type, - STATE(3334), 1, - sym_line_comment, - STATE(4447), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1691), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3333), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302805,54 +299248,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123759] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124483] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1897), 1, + STATE(2157), 1, sym_plain_type, - STATE(3335), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3334), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302865,54 +299309,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123841] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124566] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3818), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(3820), 1, + anon_sym_LPAREN, + ACTIONS(3822), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(3826), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(3836), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(3838), 1, + anon_sym_map_LBRACK, + ACTIONS(3840), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(3842), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(3844), 1, anon_sym_atomic, - ACTIONS(5810), 1, - anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5822), 1, - anon_sym_map_LBRACK, - STATE(1896), 1, + STATE(2149), 1, sym_plain_type, - STATE(3336), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1949), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3335), 2, + sym_line_comment, + sym_block_comment, + STATE(2134), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(2160), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302925,54 +299370,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [123923] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124649] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3724), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3728), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(3732), 1, + ACTIONS(1691), 1, anon_sym_struct, - ACTIONS(3742), 1, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(3746), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(3748), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(3750), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5810), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5812), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5814), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5816), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5818), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5820), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5822), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1878), 1, + STATE(1064), 1, sym_plain_type, - STATE(3337), 1, - sym_line_comment, - STATE(4546), 1, + STATE(4449), 1, sym_reference_expression, - STATE(1816), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1832), 4, + STATE(3336), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1838), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -302985,54 +299431,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124005] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124732] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1683), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, + ACTIONS(1687), 1, anon_sym_fn, - ACTIONS(5622), 1, + ACTIONS(1691), 1, + anon_sym_struct, + ACTIONS(1701), 1, anon_sym_shared, - ACTIONS(5626), 1, + ACTIONS(1705), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(1707), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(1709), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(5906), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(5908), 1, anon_sym_STAR, - ACTIONS(5700), 1, + ACTIONS(5910), 1, anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5912), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5914), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5918), 1, anon_sym_map_LBRACK, - STATE(1707), 1, + STATE(1063), 1, sym_plain_type, - STATE(3338), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4449), 1, sym_reference_expression, - STATE(3424), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(3337), 2, + sym_line_comment, + sym_block_comment, + STATE(1051), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(1052), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303045,54 +299492,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124087] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124815] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(47), 1, - anon_sym_QMARK, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3618), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(3620), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5436), 1, + ACTIONS(5792), 1, + anon_sym_QMARK, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5438), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(3339), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4682), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(926), 1, sym_plain_type, - STATE(3558), 2, + STATE(4487), 1, + sym_reference_expression, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2467), 4, + STATE(3338), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2469), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303105,54 +299553,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124169] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124898] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4060), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(565), 1, sym_identifier, - ACTIONS(4064), 1, + ACTIONS(571), 1, anon_sym_fn, - ACTIONS(4068), 1, + ACTIONS(575), 1, anon_sym_struct, - ACTIONS(4078), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(4082), 1, + ACTIONS(589), 1, anon_sym_chan, - ACTIONS(4084), 1, + ACTIONS(591), 1, anon_sym_thread, - ACTIONS(4086), 1, + ACTIONS(593), 1, anon_sym_atomic, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_LPAREN, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_QMARK, - ACTIONS(5844), 1, + ACTIONS(5794), 1, anon_sym_BANG, - ACTIONS(5846), 1, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5848), 1, + ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5850), 1, + ACTIONS(5800), 1, anon_sym_map_LBRACK, - STATE(2622), 1, + STATE(927), 1, sym_plain_type, - STATE(3340), 1, - sym_line_comment, - STATE(4483), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2493), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2608), 4, + STATE(3339), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2607), 12, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303165,54 +299614,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124251] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [124981] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3444), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5610), 1, - anon_sym_fn, - ACTIONS(5622), 1, - anon_sym_shared, - ACTIONS(5626), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + anon_sym_QMARK, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, anon_sym_chan, - ACTIONS(5628), 1, + ACTIONS(91), 1, anon_sym_thread, - ACTIONS(5630), 1, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(5694), 1, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3620), 1, anon_sym_LPAREN, - ACTIONS(5698), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5700), 1, - anon_sym_QMARK, - ACTIONS(5702), 1, + ACTIONS(5402), 1, anon_sym_BANG, - ACTIONS(5704), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5706), 1, + ACTIONS(5406), 1, anon_sym_AMP, - ACTIONS(5708), 1, - anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(4060), 1, sym_plain_type, - STATE(3341), 1, - sym_line_comment, - STATE(4434), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3424), 2, + STATE(3340), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1669), 4, + STATE(2386), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1672), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303225,95 +299675,55 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124333] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125064] = 22, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1388), 1, - sym___double_quote, - ACTIONS(1390), 1, - sym___single_quote, - ACTIONS(1392), 1, - sym___c_double_quote, - ACTIONS(1394), 1, - sym___c_single_quote, - ACTIONS(1396), 1, - sym___r_double_quote, - ACTIONS(1398), 1, - sym___r_single_quote, - ACTIONS(5942), 1, - sym_identifier, - ACTIONS(5944), 1, - anon_sym_if, - ACTIONS(5946), 1, - anon_sym_unsafe, - STATE(3342), 1, - sym_line_comment, - STATE(4061), 1, - sym_attribute_expression, - STATE(4070), 1, - sym_value_attribute, - STATE(4088), 1, - sym_reference_expression, - STATE(4140), 1, - sym_literal, - ACTIONS(1382), 2, - sym_float_literal, - sym_rune_literal, - STATE(4162), 2, - sym_literal_attribute, - sym_key_value_attribute, - STATE(4166), 2, - sym_if_attribute, - sym__plain_attribute, - STATE(2374), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1366), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [124406] = 18, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, - ACTIONS(87), 1, - anon_sym_chan, - ACTIONS(89), 1, - anon_sym_thread, - ACTIONS(91), 1, - anon_sym_atomic, ACTIONS(565), 1, sym_identifier, ACTIONS(571), 1, anon_sym_fn, ACTIONS(575), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(585), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(589), 1, + anon_sym_chan, + ACTIONS(591), 1, + anon_sym_thread, + ACTIONS(593), 1, + anon_sym_atomic, + ACTIONS(5788), 1, + anon_sym_LPAREN, + ACTIONS(5790), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5792), 1, + anon_sym_QMARK, + ACTIONS(5794), 1, + anon_sym_BANG, + ACTIONS(5796), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5798), 1, anon_sym_AMP, - STATE(3343), 1, - sym_line_comment, - STATE(4491), 1, - sym__plain_type_without_special, - STATE(4616), 1, + ACTIONS(5800), 1, + anon_sym_map_LBRACK, + STATE(928), 1, + sym_plain_type, + STATE(4487), 1, sym_reference_expression, - STATE(3558), 2, + STATE(395), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(3341), 2, + sym_line_comment, + sym_block_comment, + STATE(453), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(448), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303326,43 +299736,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124473] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125147] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3344), 1, - sym_line_comment, - STATE(4119), 1, + STATE(4421), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3342), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303375,43 +299786,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124540] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125215] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3345), 1, - sym_line_comment, - STATE(4374), 1, + STATE(4155), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3343), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303424,43 +299836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124607] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125283] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3346), 1, - sym_line_comment, - STATE(4616), 1, - sym_reference_expression, - STATE(4618), 1, + STATE(4239), 1, sym__plain_type_without_special, - STATE(3558), 2, + STATE(4654), 1, + sym_reference_expression, + STATE(3344), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303473,43 +299886,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124674] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125351] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3347), 1, - sym_line_comment, - STATE(4306), 1, - sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(4670), 1, + sym__plain_type_without_special, + STATE(3345), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303522,43 +299936,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124741] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125419] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3348), 1, - sym_line_comment, - STATE(4316), 1, + STATE(4370), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3346), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303571,43 +299986,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124808] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125487] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3349), 1, - sym_line_comment, - STATE(4224), 1, + STATE(4394), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3347), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303620,43 +300036,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124875] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125555] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3350), 1, - sym_line_comment, - STATE(4360), 1, + STATE(4311), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3348), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303669,43 +300086,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [124942] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125623] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3351), 1, - sym_line_comment, - STATE(4196), 1, + STATE(4366), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3349), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303718,43 +300136,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125009] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125691] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3352), 1, - sym_line_comment, - STATE(4300), 1, + STATE(4238), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3350), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303767,43 +300186,44 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125076] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125759] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3353), 1, - sym_line_comment, - STATE(4330), 1, + STATE(4181), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3351), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303816,22 +300236,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125143] = 21, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125827] = 21, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1388), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1245), 1, sym___double_quote, - ACTIONS(1390), 1, + ACTIONS(1247), 1, sym___single_quote, - ACTIONS(1392), 1, + ACTIONS(1249), 1, sym___c_double_quote, - ACTIONS(1394), 1, + ACTIONS(1251), 1, sym___c_single_quote, - ACTIONS(1396), 1, + ACTIONS(1253), 1, sym___r_double_quote, - ACTIONS(1398), 1, + ACTIONS(1255), 1, sym___r_single_quote, ACTIONS(5942), 1, sym_identifier, @@ -303839,72 +300259,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(5946), 1, anon_sym_unsafe, - STATE(3354), 1, - sym_line_comment, - STATE(4070), 1, + STATE(4087), 1, + sym_attribute_expression, + STATE(4091), 1, sym_value_attribute, - STATE(4088), 1, + STATE(4103), 1, sym_reference_expression, - STATE(4140), 1, + STATE(4126), 1, sym_literal, - STATE(4147), 1, - sym_attribute_expression, - ACTIONS(1382), 2, + ACTIONS(1239), 2, sym_float_literal, sym_rune_literal, - STATE(4162), 2, + STATE(3352), 2, + sym_line_comment, + sym_block_comment, + STATE(4144), 2, sym_literal_attribute, sym_key_value_attribute, - STATE(4166), 2, + STATE(4145), 2, sym_if_attribute, sym__plain_attribute, - STATE(2374), 3, + STATE(2351), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - ACTIONS(1366), 5, + ACTIONS(1223), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [125216] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125901] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3355), 1, - sym_line_comment, - STATE(4424), 1, + STATE(4283), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3353), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303917,43 +300339,94 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125283] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [125969] = 18, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3356), 1, + STATE(4654), 1, + sym_reference_expression, + STATE(4725), 1, + sym__plain_type_without_special, + STATE(3354), 2, sym_line_comment, - STATE(4106), 1, + sym_block_comment, + STATE(3627), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2387), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [126037] = 18, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(87), 1, + anon_sym_map_LBRACK, + ACTIONS(89), 1, + anon_sym_chan, + ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, + anon_sym_atomic, + ACTIONS(609), 1, + sym_identifier, + ACTIONS(615), 1, + anon_sym_fn, + ACTIONS(619), 1, + anon_sym_struct, + ACTIONS(627), 1, + anon_sym_shared, + ACTIONS(3622), 1, + anon_sym_STAR, + ACTIONS(5404), 1, + anon_sym_LBRACK2, + ACTIONS(5406), 1, + anon_sym_AMP, + STATE(4324), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3355), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -303966,43 +300439,97 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125350] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126105] = 21, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1245), 1, + sym___double_quote, + ACTIONS(1247), 1, + sym___single_quote, + ACTIONS(1249), 1, + sym___c_double_quote, + ACTIONS(1251), 1, + sym___c_single_quote, + ACTIONS(1253), 1, + sym___r_double_quote, + ACTIONS(1255), 1, + sym___r_single_quote, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(5944), 1, + anon_sym_if, + ACTIONS(5946), 1, + anon_sym_unsafe, + STATE(4091), 1, + sym_value_attribute, + STATE(4103), 1, + sym_reference_expression, + STATE(4126), 1, + sym_literal, + STATE(4299), 1, + sym_attribute_expression, + ACTIONS(1239), 2, + sym_float_literal, + sym_rune_literal, + STATE(3356), 2, + sym_line_comment, sym_block_comment, - ACTIONS(85), 1, - anon_sym_map_LBRACK, + STATE(4144), 2, + sym_literal_attribute, + sym_key_value_attribute, + STATE(4145), 2, + sym_if_attribute, + sym__plain_attribute, + STATE(2351), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1223), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [126179] = 18, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(87), 1, - anon_sym_chan, + anon_sym_map_LBRACK, ACTIONS(89), 1, - anon_sym_thread, + anon_sym_chan, ACTIONS(91), 1, + anon_sym_thread, + ACTIONS(93), 1, anon_sym_atomic, - ACTIONS(565), 1, + ACTIONS(609), 1, sym_identifier, - ACTIONS(571), 1, + ACTIONS(615), 1, anon_sym_fn, - ACTIONS(575), 1, + ACTIONS(619), 1, anon_sym_struct, - ACTIONS(583), 1, + ACTIONS(627), 1, anon_sym_shared, - ACTIONS(3620), 1, + ACTIONS(3622), 1, anon_sym_STAR, - ACTIONS(5438), 1, + ACTIONS(5404), 1, anon_sym_LBRACK2, - ACTIONS(5440), 1, + ACTIONS(5406), 1, anon_sym_AMP, - STATE(3357), 1, - sym_line_comment, - STATE(4315), 1, + STATE(4415), 1, sym__plain_type_without_special, - STATE(4616), 1, + STATE(4654), 1, sym_reference_expression, - STATE(3558), 2, + STATE(3357), 2, + sym_line_comment, + sym_block_comment, + STATE(3627), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2469), 12, + STATE(2387), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -304015,12 +300542,12 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [125417] = 19, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126247] = 19, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4970), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4986), 1, anon_sym_LBRACK, ACTIONS(5948), 1, sym_identifier, @@ -304030,27 +300557,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(5958), 1, anon_sym_LBRACK2, - STATE(3358), 1, - sym_line_comment, - STATE(3406), 1, + STATE(3405), 1, sym_receiver, - STATE(3523), 1, - sym__function_name, - STATE(3524), 1, + STATE(3513), 1, sym_capture_list, - STATE(3840), 1, + STATE(3534), 1, + sym__function_name, + STATE(3847), 1, sym_generic_parameters, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, - STATE(4293), 1, + STATE(4197), 1, sym_signature, STATE(4635), 1, - sym_reference_expression, - STATE(4643), 1, sym_static_receiver, - STATE(2954), 2, + STATE(4665), 1, + sym_reference_expression, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, + STATE(3358), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -304064,14 +300592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125485] = 4, - ACTIONS(497), 1, + [126316] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3359), 1, + anon_sym_SLASH_STAR, + STATE(3359), 2, sym_line_comment, - ACTIONS(3087), 24, + sym_block_comment, + ACTIONS(3374), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304096,14 +300625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [125521] = 4, - ACTIONS(497), 1, + [126353] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3360), 1, + anon_sym_SLASH_STAR, + STATE(3360), 2, sym_line_comment, - ACTIONS(3143), 24, + sym_block_comment, + ACTIONS(3202), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304128,14 +300658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [125557] = 4, - ACTIONS(497), 1, + [126390] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3361), 1, + anon_sym_SLASH_STAR, + STATE(3361), 2, sym_line_comment, - ACTIONS(3109), 24, + sym_block_comment, + ACTIONS(2997), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304160,14 +300691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [125593] = 4, - ACTIONS(497), 1, + [126427] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3362), 1, + anon_sym_SLASH_STAR, + STATE(3362), 2, sym_line_comment, - ACTIONS(3315), 24, + sym_block_comment, + ACTIONS(3001), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304192,14 +300724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [125629] = 4, - ACTIONS(497), 1, + [126464] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3363), 1, + anon_sym_SLASH_STAR, + STATE(3363), 2, sym_line_comment, - ACTIONS(3147), 24, + sym_block_comment, + ACTIONS(3198), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304224,21 +300757,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [125665] = 6, - ACTIONS(497), 1, + [126501] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3364), 1, - sym_line_comment, - STATE(3609), 1, + anon_sym_SLASH_STAR, + STATE(3594), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1713), 4, + STATE(3364), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1763), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1719), 15, + ACTIONS(1765), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -304254,68 +300788,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [125701] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126538] = 14, ACTIONS(5), 1, - sym_block_comment, - STATE(3365), 1, - sym_line_comment, - ACTIONS(3109), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3107), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [125733] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3366), 1, - sym_line_comment, - ACTIONS(3087), 7, - anon_sym_fn, - anon_sym_struct, + ACTIONS(1245), 1, + sym___double_quote, + ACTIONS(1247), 1, + sym___single_quote, + ACTIONS(1249), 1, + sym___c_double_quote, + ACTIONS(1251), 1, + sym___c_single_quote, + ACTIONS(1253), 1, + sym___r_double_quote, + ACTIONS(1255), 1, + sym___r_single_quote, + ACTIONS(5960), 1, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3085), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [125765] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4296), 1, + sym_literal, + ACTIONS(1239), 2, + sym_float_literal, + sym_rune_literal, + STATE(3365), 2, + sym_line_comment, sym_block_comment, - STATE(3367), 1, + STATE(2351), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + ACTIONS(1223), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [126589] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3366), 2, sym_line_comment, - ACTIONS(3147), 7, + sym_block_comment, + ACTIONS(3001), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -304323,7 +300841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3145), 11, + ACTIONS(2999), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -304335,14 +300853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [125797] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126622] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(3368), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3367), 2, sym_line_comment, - ACTIONS(3143), 7, + sym_block_comment, + ACTIONS(3202), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -304350,7 +300869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3141), 11, + ACTIONS(3200), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -304362,27 +300881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [125829] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126655] = 12, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5948), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(5962), 1, anon_sym_LPAREN, - STATE(3369), 1, - sym_line_comment, - STATE(3416), 1, + STATE(3419), 1, sym_receiver, - STATE(3517), 1, + STATE(3520), 1, sym__function_name, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, - STATE(4524), 1, + STATE(4578), 1, sym_static_receiver, - STATE(4635), 1, + STATE(4665), 1, sym_reference_expression, + STATE(3368), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -304396,63 +300916,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125875] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126702] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3369), 2, + sym_line_comment, sym_block_comment, - ACTIONS(1388), 1, - sym___double_quote, - ACTIONS(1390), 1, - sym___single_quote, - ACTIONS(1392), 1, - sym___c_double_quote, - ACTIONS(1394), 1, - sym___c_single_quote, - ACTIONS(1396), 1, - sym___r_double_quote, - ACTIONS(1398), 1, - sym___r_single_quote, - ACTIONS(5962), 1, + ACTIONS(3198), 7, + anon_sym_fn, + anon_sym_struct, sym_identifier, - STATE(3370), 1, - sym_line_comment, - STATE(4160), 1, - sym_literal, - ACTIONS(1382), 2, - sym_float_literal, - sym_rune_literal, - STATE(2374), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1366), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [125925] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3196), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [126735] = 12, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5948), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(5962), 1, anon_sym_LPAREN, - STATE(3371), 1, - sym_line_comment, - STATE(3395), 1, + STATE(3434), 1, sym_receiver, - STATE(3514), 1, + STATE(3523), 1, sym__function_name, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, - STATE(4538), 1, + STATE(4469), 1, sym_static_receiver, - STATE(4635), 1, + STATE(4665), 1, sym_reference_expression, + STATE(3370), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -304466,14 +300979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125971] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126782] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(3372), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3371), 2, sym_line_comment, - ACTIONS(3315), 7, + sym_block_comment, + ACTIONS(3374), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -304481,7 +300995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3313), 11, + ACTIONS(3372), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -304493,27 +301007,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [126003] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126815] = 12, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5948), 1, sym_identifier, - ACTIONS(5960), 1, + ACTIONS(5962), 1, anon_sym_LPAREN, - STATE(3373), 1, - sym_line_comment, - STATE(3411), 1, + STATE(3430), 1, sym_receiver, - STATE(3526), 1, + STATE(3512), 1, sym__function_name, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, - STATE(4635), 1, - sym_reference_expression, - STATE(4713), 1, + STATE(4463), 1, sym_static_receiver, + STATE(4665), 1, + sym_reference_expression, + STATE(3372), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -304527,66 +301042,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [126049] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126862] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1711), 1, - anon_sym_LBRACE, - STATE(3374), 1, - sym_line_comment, - STATE(4031), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3544), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [126082] = 4, - ACTIONS(497), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3375), 1, + STATE(3373), 2, sym_line_comment, - ACTIONS(5964), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, + sym_block_comment, + ACTIONS(2997), 7, anon_sym_fn, anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_mut, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, - [126111] = 4, - ACTIONS(497), 1, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2995), 11, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [126895] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3376), 1, + anon_sym_SLASH_STAR, + STATE(3374), 2, sym_line_comment, - ACTIONS(5966), 17, + sym_block_comment, + ACTIONS(5964), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -304604,18 +301096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [126140] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126925] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1711), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1761), 1, anon_sym_SEMI, - STATE(3377), 1, - sym_line_comment, - STATE(3920), 1, + STATE(3887), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3544), 15, + STATE(3375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -304631,14 +301124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126173] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126959] = 4, ACTIONS(5), 1, - sym_block_comment, - STATE(3378), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3376), 2, sym_line_comment, - ACTIONS(3544), 17, + sym_block_comment, + ACTIONS(3550), 17, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -304656,18 +301150,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126202] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [126989] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5968), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5966), 1, anon_sym_static, - ACTIONS(5970), 1, + ACTIONS(5968), 1, anon_sym_volatile, - STATE(3379), 1, + STATE(3377), 2, sym_line_comment, - ACTIONS(4601), 7, + sym_block_comment, + ACTIONS(4597), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -304675,7 +301170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4603), 8, + ACTIONS(4599), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -304684,19 +301179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [126237] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127025] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1761), 1, + anon_sym_LBRACE, + STATE(3951), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3378), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4849), 1, + ACTIONS(3550), 15, anon_sym_COMMA, - STATE(3380), 1, - sym_line_comment, - STATE(3384), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5972), 14, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304710,17 +301206,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [126269] = 5, + anon_sym_COLON_EQ, + [127059] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5970), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_module, + anon_sym_RBRACE, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_mut, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [127089] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5972), 1, + anon_sym_volatile, + STATE(3380), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4968), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4970), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [127122] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5974), 1, anon_sym_COMMA, + STATE(3382), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3381), 2, sym_line_comment, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3544), 14, + sym_block_comment, + ACTIONS(4039), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304735,18 +301287,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126299] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127155] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5976), 1, + anon_sym_COMMA, + STATE(3382), 3, + sym_line_comment, sym_block_comment, - ACTIONS(5977), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3550), 14, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [127186] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4807), 1, anon_sym_COMMA, STATE(3381), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3382), 1, + STATE(3383), 2, sym_line_comment, - ACTIONS(4042), 14, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304761,18 +301340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126331] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127219] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4809), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4859), 1, anon_sym_COMMA, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3383), 1, + STATE(3386), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(3384), 2, sym_line_comment, - ACTIONS(3502), 14, + sym_block_comment, + ACTIONS(5979), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304786,19 +301367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [126363] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127252] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5979), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5981), 1, anon_sym_COMMA, - STATE(3384), 2, + STATE(3381), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3385), 2, sym_line_comment, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4896), 14, - anon_sym_LBRACE, + sym_block_comment, + ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304812,18 +301393,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [126393] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_EQ, + [127285] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4709), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5983), 1, anon_sym_COMMA, - STATE(3382), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3385), 1, + STATE(3386), 3, sym_line_comment, - ACTIONS(3502), 14, + sym_block_comment, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4896), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -304837,18 +301420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [126425] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127316] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5982), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5986), 1, anon_sym_COMMA, - STATE(3382), 1, + STATE(3381), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3386), 1, + STATE(3387), 2, sym_line_comment, + sym_block_comment, ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, @@ -304864,17 +301447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126457] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127349] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5984), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4709), 1, anon_sym_COMMA, - STATE(3382), 1, + STATE(3381), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3387), 1, + STATE(3388), 2, sym_line_comment, + sym_block_comment, ACTIONS(3502), 14, anon_sym_EQ, anon_sym_STAR_EQ, @@ -304890,40 +301474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [126489] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127382] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5986), 1, - anon_sym_volatile, - STATE(3388), 1, - sym_line_comment, - ACTIONS(4972), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4974), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [126521] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3389), 1, + STATE(3389), 2, sym_line_comment, - ACTIONS(5018), 7, + sym_block_comment, + ACTIONS(4968), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -304931,7 +301490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(5020), 8, + ACTIONS(4970), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -304940,112 +301499,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [126550] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127412] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(4548), 1, + sym__select_arm_assignment_statement, + STATE(3390), 2, + sym_line_comment, sym_block_comment, + ACTIONS(5990), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [127444] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5988), 1, + ACTIONS(5992), 1, sym_identifier, - ACTIONS(5990), 1, + ACTIONS(5994), 1, anon_sym_RBRACE, - STATE(3390), 1, - sym_line_comment, STATE(3392), 1, aux_sym__interface_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, - sym_reference_expression, - ACTIONS(639), 2, - anon_sym___global, - anon_sym_mut, - STATE(3474), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3499), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [126597] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5992), 1, - sym_identifier, - ACTIONS(5995), 1, - anon_sym_RBRACE, - ACTIONS(6000), 1, - anon_sym_pub, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, + STATE(3500), 1, sym_embedded_definition, - STATE(3510), 1, - sym__struct_field_definition, - STATE(4434), 1, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, - ACTIONS(5997), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, STATE(3391), 2, sym_line_comment, - aux_sym__interface_body_repeat1, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3499), 3, + STATE(3501), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [126642] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127492] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(5988), 1, + ACTIONS(5992), 1, sym_identifier, - ACTIONS(6003), 1, + ACTIONS(5996), 1, anon_sym_RBRACE, - STATE(3391), 1, + STATE(3394), 1, aux_sym__interface_body_repeat1, - STATE(3392), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3392), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3499), 3, + STATE(3501), 3, sym_struct_field_scope, sym_struct_field_declaration, sym_interface_method_definition, - [126689] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127540] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(3393), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3393), 2, sym_line_comment, - ACTIONS(4972), 7, + sym_block_comment, + ACTIONS(5018), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -305053,7 +301609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4974), 8, + ACTIONS(5020), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -305062,360 +301618,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [126718] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6005), 1, - anon_sym_LBRACE, - STATE(3394), 1, - sym_line_comment, - STATE(4633), 1, - sym__select_arm_assignment_statement, - ACTIONS(6007), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [126749] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3395), 1, - sym_line_comment, - STATE(3516), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [126783] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3396), 1, - sym_line_comment, - ACTIONS(6011), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6013), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [126811] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3397), 1, - sym_line_comment, - STATE(3535), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [126845] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127570] = 13, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6017), 1, - anon_sym_COLON_EQ, - STATE(3398), 1, - sym_line_comment, - ACTIONS(6015), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [126873] = 14, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(5998), 1, sym_identifier, - ACTIONS(6021), 1, + ACTIONS(6001), 1, anon_sym_RBRACE, - STATE(3399), 1, - sym_line_comment, - STATE(3431), 1, - aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + ACTIONS(6006), 1, + anon_sym_pub, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, - ACTIONS(639), 2, + ACTIONS(6003), 2, anon_sym___global, anon_sym_mut, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3394), 3, + sym_line_comment, + sym_block_comment, + aux_sym__interface_body_repeat1, + STATE(3501), 3, sym_struct_field_scope, sym_struct_field_declaration, - [126919] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_interface_method_definition, + [127616] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6023), 1, + ACTIONS(6011), 1, anon_sym_RBRACE, - STATE(3400), 1, - sym_line_comment, - STATE(3429), 1, + STATE(3403), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3395), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [126965] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127663] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6025), 1, + ACTIONS(6013), 1, anon_sym_RBRACE, - STATE(3401), 1, - sym_line_comment, - STATE(3425), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3396), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127011] = 14, + [127710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3022), 1, + anon_sym_LBRACK, + STATE(3397), 2, + sym_line_comment, sym_block_comment, - ACTIONS(651), 1, - anon_sym_pub, - ACTIONS(6019), 1, - sym_identifier, - ACTIONS(6027), 1, + ACTIONS(3024), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(3402), 1, - sym_line_comment, - STATE(3439), 1, - aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, - sym__struct_field_definition, - STATE(4434), 1, - sym_reference_expression, - ACTIONS(639), 2, + anon_sym_EQ, anon_sym___global, + anon_sym_pub, anon_sym_mut, - STATE(3474), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3507), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [127057] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [127739] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6029), 1, + ACTIONS(6015), 1, anon_sym_RBRACE, - STATE(3403), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3425), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3398), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127103] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127786] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3404), 1, - sym_line_comment, - STATE(3542), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [127137] = 14, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(6019), 1, + anon_sym_COLON_EQ, + STATE(3399), 2, + sym_line_comment, sym_block_comment, + ACTIONS(6017), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [127815] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6031), 1, + ACTIONS(6021), 1, anon_sym_RBRACE, - STATE(3405), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3400), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127183] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127862] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6023), 1, sym_identifier, - STATE(3406), 1, - sym_line_comment, STATE(3521), 1, sym__function_name, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, + STATE(3401), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -305429,164 +301858,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [127217] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127897] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6033), 1, + ACTIONS(6025), 1, anon_sym_RBRACE, - STATE(3407), 1, - sym_line_comment, - STATE(3410), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3402), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127263] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127944] = 14, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6037), 1, - anon_sym_COLON_EQ, - STATE(3408), 1, - sym_line_comment, - ACTIONS(6035), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [127291] = 14, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6039), 1, + ACTIONS(6027), 1, anon_sym_RBRACE, - STATE(3409), 1, - sym_line_comment, - STATE(3434), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3403), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127337] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [127991] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6041), 1, + ACTIONS(6029), 1, anon_sym_RBRACE, - STATE(3410), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3407), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3404), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127383] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128038] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3411), 1, - sym_line_comment, - STATE(3520), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [127417] = 8, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, + ACTIONS(6023), 1, sym_identifier, - STATE(3412), 1, - sym_line_comment, STATE(3537), 1, sym__function_name, - STATE(3963), 1, + STATE(4029), 1, sym_overridable_operator, + STATE(3405), 2, + sym_line_comment, + sym_block_comment, ACTIONS(5954), 3, anon_sym_SLASH, anon_sym_LT, @@ -305600,208 +301984,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [127451] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128073] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6043), 1, + ACTIONS(6031), 1, anon_sym_RBRACE, - STATE(3413), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3439), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3406), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127497] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128120] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6045), 1, + ACTIONS(6033), 1, anon_sym_RBRACE, - STATE(3414), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3407), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [128167] = 13, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6035), 1, + sym_identifier, + ACTIONS(6038), 1, + anon_sym_RBRACE, + ACTIONS(6043), 1, + anon_sym_pub, + STATE(3499), 1, + sym__struct_field_definition, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, + sym_reference_expression, + ACTIONS(6040), 2, + anon_sym___global, + anon_sym_mut, + STATE(3474), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127543] = 14, + STATE(3408), 3, + sym_line_comment, + sym_block_comment, + aux_sym__struct_body_repeat1, + [128212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2867), 1, + anon_sym_DOT, + ACTIONS(3018), 1, + anon_sym_LBRACK, + STATE(3409), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3020), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [128243] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6047), 1, + ACTIONS(6046), 1, anon_sym_RBRACE, - STATE(3415), 1, - sym_line_comment, - STATE(3440), 1, + STATE(3411), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3410), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127589] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128290] = 14, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3416), 1, - sym_line_comment, - STATE(3527), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [127623] = 14, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6049), 1, + ACTIONS(6048), 1, anon_sym_RBRACE, - STATE(3417), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3411), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127669] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128337] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6051), 1, + ACTIONS(6050), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3417), 1, aux_sym__struct_body_repeat1, - STATE(3418), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3412), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127715] = 6, - ACTIONS(497), 1, + [128384] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(3018), 1, anon_sym_LBRACK, - STATE(3419), 1, + STATE(3413), 2, sym_line_comment, - ACTIONS(3135), 12, + sym_block_comment, + ACTIONS(3020), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym___global, @@ -305810,42 +302230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [127745] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128413] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6009), 1, - sym_identifier, - STATE(3420), 1, - sym_line_comment, - STATE(3519), 1, - sym__function_name, - STATE(3963), 1, - sym_overridable_operator, - ACTIONS(5954), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5952), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [127779] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6055), 1, + ACTIONS(6054), 1, anon_sym_COLON_EQ, - STATE(3421), 1, + STATE(3414), 2, sym_line_comment, - ACTIONS(6053), 13, + sym_block_comment, + ACTIONS(6052), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305859,48 +302254,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [127807] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128442] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6057), 1, + ACTIONS(6056), 1, anon_sym_RBRACE, - STATE(3422), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3415), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127853] = 5, + [128489] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6058), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6060), 11, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + [128518] = 14, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(651), 1, + anon_sym_pub, + ACTIONS(6009), 1, + sym_identifier, + ACTIONS(6062), 1, + anon_sym_RBRACE, + STATE(3408), 1, + aux_sym__struct_body_repeat1, + STATE(3499), 1, + sym__struct_field_definition, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, + sym_reference_expression, + ACTIONS(639), 2, + anon_sym___global, + anon_sym_mut, + STATE(3417), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6061), 1, + STATE(3474), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3496), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [128565] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6066), 1, anon_sym_COLON_EQ, - STATE(3423), 1, + STATE(3418), 2, sym_line_comment, - ACTIONS(6059), 13, + sym_block_comment, + ACTIONS(6064), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -305914,387 +302368,461 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [127881] = 6, - ACTIONS(497), 1, + [128594] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6063), 1, - anon_sym_LBRACK, - STATE(3424), 1, - sym_line_comment, - STATE(3445), 1, - sym_type_parameters, - ACTIONS(2741), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, + ACTIONS(6023), 1, sym_identifier, - anon_sym_AT_LBRACK, - [127911] = 14, - ACTIONS(3), 1, + STATE(3518), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128629] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6023), 1, + sym_identifier, + STATE(3535), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3420), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128664] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6023), 1, + sym_identifier, + STATE(3526), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3421), 2, + sym_line_comment, sym_block_comment, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128699] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6065), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, - STATE(3425), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3400), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3422), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [127957] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128746] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6067), 1, + ACTIONS(6070), 1, anon_sym_RBRACE, - STATE(3403), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3426), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3423), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128003] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128793] = 14, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(635), 1, - anon_sym_RBRACE, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - STATE(3414), 1, + ACTIONS(6072), 1, + anon_sym_RBRACE, + STATE(3435), 1, aux_sym__struct_body_repeat1, - STATE(3427), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3424), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128049] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128840] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6069), 1, + ACTIONS(6074), 1, anon_sym_RBRACE, - STATE(3405), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3428), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3425), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128095] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128887] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6071), 1, + ACTIONS(6076), 1, anon_sym_RBRACE, - STATE(3429), 1, - sym_line_comment, - STATE(3431), 1, + STATE(3415), 1, aux_sym__struct_body_repeat1, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3426), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128141] = 5, - ACTIONS(497), 1, + [128934] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3137), 1, - anon_sym_LBRACK, - STATE(3430), 1, - sym_line_comment, - ACTIONS(3139), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(635), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, + ACTIONS(651), 1, anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [128169] = 13, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6073), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6076), 1, - anon_sym_RBRACE, - ACTIONS(6081), 1, - anon_sym_pub, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3429), 1, + aux_sym__struct_body_repeat1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, - ACTIONS(6078), 2, + ACTIONS(639), 2, anon_sym___global, anon_sym_mut, - STATE(3431), 2, + STATE(3427), 2, sym_line_comment, - aux_sym__struct_body_repeat1, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128213] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [128981] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6084), 1, + ACTIONS(6078), 1, anon_sym_RBRACE, - STATE(3413), 1, + STATE(3396), 1, aux_sym__struct_body_repeat1, - STATE(3432), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3428), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128259] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129028] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6086), 1, + ACTIONS(6080), 1, anon_sym_RBRACE, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3433), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3429), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128305] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129075] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6023), 1, + sym_identifier, + STATE(3540), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3430), 2, + sym_line_comment, sym_block_comment, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129110] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6088), 1, + ACTIONS(6082), 1, anon_sym_RBRACE, - STATE(3431), 1, + STATE(3432), 1, aux_sym__struct_body_repeat1, - STATE(3434), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3431), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128351] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129157] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6090), 1, + ACTIONS(6084), 1, anon_sym_RBRACE, - STATE(3433), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3435), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3432), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128397] = 5, - ACTIONS(497), 1, + [129204] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(3133), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, anon_sym_LBRACK, - STATE(3436), 1, + STATE(3441), 1, + sym_type_parameters, + STATE(3433), 2, sym_line_comment, - ACTIONS(3135), 13, + sym_block_comment, + ACTIONS(2695), 12, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym___global, @@ -306303,142 +302831,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128425] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129235] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6023), 1, + sym_identifier, + STATE(3529), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3434), 2, + sym_line_comment, sym_block_comment, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129270] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, - ACTIONS(6092), 1, + ACTIONS(6088), 1, anon_sym_RBRACE, - STATE(3422), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3437), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3435), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128471] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129317] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6092), 1, + anon_sym_COLON_EQ, + STATE(3436), 2, + sym_line_comment, sym_block_comment, + ACTIONS(6090), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [129346] = 14, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, ACTIONS(6094), 1, anon_sym_RBRACE, - STATE(3417), 1, + STATE(3402), 1, aux_sym__struct_body_repeat1, - STATE(3438), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3437), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128517] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129393] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3431), 1, + STATE(3423), 1, aux_sym__struct_body_repeat1, - STATE(3439), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3438), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128563] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129440] = 14, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(651), 1, anon_sym_pub, - ACTIONS(6019), 1, + ACTIONS(6009), 1, sym_identifier, ACTIONS(6098), 1, anon_sym_RBRACE, - STATE(3431), 1, + STATE(3408), 1, aux_sym__struct_body_repeat1, - STATE(3440), 1, - sym_line_comment, - STATE(3498), 1, - sym_generic_type, - STATE(3502), 1, - sym_embedded_definition, - STATE(3510), 1, + STATE(3499), 1, sym__struct_field_definition, - STATE(4434), 1, + STATE(3500), 1, + sym_embedded_definition, + STATE(3507), 1, + sym_generic_type, + STATE(4460), 1, sym_reference_expression, ACTIONS(639), 2, anon_sym___global, anon_sym_mut, + STATE(3439), 2, + sym_line_comment, + sym_block_comment, STATE(3474), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3507), 2, + STATE(3496), 2, sym_struct_field_scope, sym_struct_field_declaration, - [128609] = 4, - ACTIONS(497), 1, + [129487] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6023), 1, + sym_identifier, + STATE(3543), 1, + sym__function_name, + STATE(4029), 1, + sym_overridable_operator, + STATE(3440), 2, + sym_line_comment, sym_block_comment, - STATE(3441), 1, + ACTIONS(5954), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5952), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129522] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3441), 2, sym_line_comment, - ACTIONS(3187), 13, + sym_block_comment, + ACTIONS(3338), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306452,20 +303063,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128634] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129548] = 7, ACTIONS(5), 1, - sym_block_comment, - STATE(3396), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3416), 1, sym_attribute, - STATE(3442), 1, - sym_line_comment, - STATE(3444), 1, + STATE(3443), 1, aux_sym_attributes_repeat1, - ACTIONS(113), 2, + ACTIONS(115), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, + STATE(3442), 2, + sym_line_comment, + sym_block_comment, ACTIONS(6100), 9, anon_sym_module, anon_sym_const, @@ -306476,39 +303088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [128665] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3443), 1, - sym_line_comment, - ACTIONS(3155), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [128690] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129580] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(3396), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3416), 1, sym_attribute, ACTIONS(6104), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - STATE(3444), 2, + STATE(3443), 3, sym_line_comment, + sym_block_comment, aux_sym_attributes_repeat1, ACTIONS(6102), 9, anon_sym_module, @@ -306520,14 +303112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [128719] = 4, - ACTIONS(497), 1, + [129610] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3445), 1, + anon_sym_SLASH_STAR, + STATE(3444), 2, sym_line_comment, - ACTIONS(3077), 13, + sym_block_comment, + ACTIONS(3120), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306541,20 +303134,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128744] = 7, - ACTIONS(497), 1, + [129636] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3445), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3040), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [129662] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(6109), 1, anon_sym_EQ, - STATE(3446), 1, - sym_line_comment, - STATE(3500), 1, + STATE(3504), 1, sym_attribute, - ACTIONS(4944), 2, + ACTIONS(4962), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, + STATE(3446), 2, + sym_line_comment, + sym_block_comment, ACTIONS(6107), 8, anon_sym_LF, anon_sym_CR, @@ -306564,13 +303180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [128774] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129693] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(3447), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3447), 2, sym_line_comment, + sym_block_comment, ACTIONS(6113), 3, anon_sym_SLASH, anon_sym_LT, @@ -306585,13 +303202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [128800] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [129720] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(3448), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3448), 2, sym_line_comment, + sym_block_comment, ACTIONS(6117), 3, anon_sym_SLASH, anon_sym_LT, @@ -306606,35 +303224,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [128826] = 6, - ACTIONS(497), 1, + [129747] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3449), 1, + anon_sym_SLASH_STAR, + STATE(3449), 2, sym_line_comment, - STATE(3496), 1, - sym_attribute, - ACTIONS(4944), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6119), 8, + sym_block_comment, + ACTIONS(3190), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, - [128853] = 4, - ACTIONS(497), 1, + anon_sym_AT_LBRACK, + [129771] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3450), 1, + anon_sym_SLASH_STAR, + STATE(3450), 2, sym_line_comment, - ACTIONS(3123), 11, + sym_block_comment, + ACTIONS(3366), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306646,14 +303264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128876] = 4, - ACTIONS(497), 1, + [129795] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3451), 1, + anon_sym_SLASH_STAR, + STATE(3451), 2, sym_line_comment, - ACTIONS(3259), 11, + sym_block_comment, + ACTIONS(3430), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306665,14 +303284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128899] = 4, - ACTIONS(497), 1, + [129819] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3452), 1, + anon_sym_SLASH_STAR, + STATE(3452), 2, sym_line_comment, - ACTIONS(3363), 11, + sym_block_comment, + ACTIONS(3418), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306684,20 +303304,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128922] = 7, - ACTIONS(497), 1, + [129843] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2741), 1, + anon_sym_SLASH_STAR, + ACTIONS(2695), 1, anon_sym_LBRACE, - ACTIONS(6063), 1, + ACTIONS(6086), 1, anon_sym_LBRACK, - STATE(3445), 1, + STATE(3441), 1, sym_type_parameters, - STATE(3453), 1, + STATE(3453), 2, sym_line_comment, - ACTIONS(6121), 8, + sym_block_comment, + ACTIONS(6119), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306706,14 +303327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [128951] = 4, - ACTIONS(497), 1, + [129873] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3454), 1, + anon_sym_SLASH_STAR, + STATE(3454), 2, sym_line_comment, - ACTIONS(3355), 11, + sym_block_comment, + ACTIONS(3005), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306725,14 +303347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128974] = 4, - ACTIONS(497), 1, + [129897] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3455), 1, + anon_sym_SLASH_STAR, + STATE(3455), 2, sym_line_comment, - ACTIONS(3239), 11, + sym_block_comment, + ACTIONS(3142), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306744,14 +303367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [128997] = 4, - ACTIONS(497), 1, + [129921] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3456), 1, + anon_sym_SLASH_STAR, + STATE(3456), 2, sym_line_comment, - ACTIONS(3403), 11, + sym_block_comment, + ACTIONS(3174), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306763,14 +303387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129020] = 4, - ACTIONS(497), 1, + [129945] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3457), 1, + anon_sym_SLASH_STAR, + STATE(3457), 2, sym_line_comment, - ACTIONS(3267), 11, + sym_block_comment, + ACTIONS(3378), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306782,35 +303407,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129043] = 6, - ACTIONS(497), 1, + [129969] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3458), 1, + anon_sym_SLASH_STAR, + STATE(3458), 2, sym_line_comment, - STATE(3505), 1, - sym_attribute, - ACTIONS(4944), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6123), 8, + sym_block_comment, + ACTIONS(3370), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, + anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, + anon_sym_LBRACK2, sym_identifier, - [129070] = 4, - ACTIONS(497), 1, + anon_sym_AT_LBRACK, + [129993] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3459), 1, + anon_sym_SLASH_STAR, + STATE(3459), 2, sym_line_comment, - ACTIONS(3347), 11, + sym_block_comment, + ACTIONS(3426), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306822,14 +303447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129093] = 4, - ACTIONS(497), 1, + [130017] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3460), 1, + anon_sym_SLASH_STAR, + STATE(3460), 2, sym_line_comment, - ACTIONS(3271), 11, + sym_block_comment, + ACTIONS(3214), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306841,14 +303467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129116] = 4, - ACTIONS(497), 1, + [130041] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3461), 1, + anon_sym_SLASH_STAR, + STATE(3461), 2, sym_line_comment, - ACTIONS(3119), 11, + sym_block_comment, + ACTIONS(3438), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306860,14 +303487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129139] = 4, - ACTIONS(497), 1, + [130065] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3462), 1, + anon_sym_SLASH_STAR, + STATE(3462), 2, sym_line_comment, - ACTIONS(3151), 11, + sym_block_comment, + ACTIONS(2695), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306879,14 +303507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129162] = 4, - ACTIONS(497), 1, + [130089] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3463), 1, + anon_sym_SLASH_STAR, + STATE(3463), 2, sym_line_comment, - ACTIONS(3127), 11, + sym_block_comment, + ACTIONS(3434), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306898,14 +303527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129185] = 4, - ACTIONS(497), 1, + [130113] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3464), 1, + anon_sym_SLASH_STAR, + STATE(3464), 2, sym_line_comment, - ACTIONS(3131), 11, + sym_block_comment, + ACTIONS(2909), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306917,14 +303547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129208] = 4, - ACTIONS(497), 1, + [130137] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3465), 1, + anon_sym_SLASH_STAR, + STATE(3465), 2, sym_line_comment, - ACTIONS(3407), 11, + sym_block_comment, + ACTIONS(3354), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306936,33 +303567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129231] = 4, + [130161] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3466), 1, - sym_line_comment, - ACTIONS(6102), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [129254] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3467), 1, + anon_sym_SLASH_STAR, + STATE(3466), 2, sym_line_comment, - ACTIONS(2741), 11, + sym_block_comment, + ACTIONS(3350), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306974,14 +303587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129277] = 4, - ACTIONS(497), 1, + [130185] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3468), 1, + anon_sym_SLASH_STAR, + STATE(3467), 2, sym_line_comment, - ACTIONS(3367), 11, + sym_block_comment, + ACTIONS(3422), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -306993,33 +303607,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129300] = 4, - ACTIONS(497), 1, + [130209] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3469), 1, + anon_sym_SLASH_STAR, + STATE(3510), 1, + sym_attribute, + ACTIONS(4962), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3468), 2, sym_line_comment, - ACTIONS(3319), 11, + sym_block_comment, + ACTIONS(6121), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, - [129323] = 4, - ACTIONS(497), 1, + [130237] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3470), 1, + anon_sym_SLASH_STAR, + STATE(3469), 2, sym_line_comment, - ACTIONS(3307), 11, + sym_block_comment, + ACTIONS(3342), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307031,14 +303649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129346] = 4, - ACTIONS(497), 1, + [130261] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3471), 1, + anon_sym_SLASH_STAR, + STATE(3470), 2, sym_line_comment, - ACTIONS(3395), 11, + sym_block_comment, + ACTIONS(3358), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307050,14 +303669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129369] = 4, - ACTIONS(497), 1, + [130285] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3472), 1, + anon_sym_SLASH_STAR, + STATE(3471), 2, sym_line_comment, - ACTIONS(3295), 11, + sym_block_comment, + ACTIONS(3334), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307069,37 +303689,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [129392] = 4, - ACTIONS(497), 1, + [130309] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3473), 1, + anon_sym_SLASH_STAR, + STATE(3506), 1, + sym_attribute, + ACTIONS(4962), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3472), 2, sym_line_comment, - ACTIONS(3275), 11, + sym_block_comment, + ACTIONS(6123), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, sym_identifier, + [130337] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3473), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6102), 11, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, anon_sym_AT_LBRACK, - [129415] = 6, - ACTIONS(497), 1, + [130361] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6063), 1, + anon_sym_SLASH_STAR, + ACTIONS(6086), 1, anon_sym_LBRACK, - STATE(3445), 1, + STATE(3441), 1, sym_type_parameters, - STATE(3474), 1, + STATE(3474), 2, sym_line_comment, - ACTIONS(6121), 8, + sym_block_comment, + ACTIONS(6119), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307108,19 +303752,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [129441] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [130388] = 7, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6125), 1, sym_identifier, ACTIONS(6129), 1, anon_sym_LPAREN, - STATE(1584), 1, + STATE(1525), 1, sym_global_var_definition, - STATE(3475), 1, + STATE(3475), 2, sym_line_comment, + sym_block_comment, ACTIONS(6127), 7, anon_sym_const, anon_sym_type, @@ -307129,11 +303774,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [129469] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [130417] = 12, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6131), 1, anon_sym_module, ACTIONS(6133), 1, @@ -307148,289 +303793,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, ACTIONS(6145), 1, anon_sym_interface, - STATE(3476), 1, + STATE(3550), 1, + sym_visibility_modifiers, + ACTIONS(6139), 2, + anon_sym_struct, + anon_sym_union, + STATE(3476), 2, sym_line_comment, - STATE(3546), 1, + sym_block_comment, + [130456] = 11, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6133), 1, + anon_sym_const, + ACTIONS(6135), 1, + anon_sym___global, + ACTIONS(6137), 1, + anon_sym_fn, + ACTIONS(6141), 1, + anon_sym_pub, + ACTIONS(6143), 1, + anon_sym_enum, + ACTIONS(6145), 1, + anon_sym_interface, + STATE(3550), 1, sym_visibility_modifiers, ACTIONS(6139), 2, anon_sym_struct, anon_sym_union, - [129507] = 10, + STATE(3477), 2, + sym_line_comment, + sym_block_comment, + [130492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(2695), 1, + anon_sym_LBRACE, + STATE(3478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6119), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [130516] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(3814), 1, + anon_sym_COLON, + STATE(3479), 2, + sym_line_comment, sym_block_comment, + ACTIONS(3812), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6147), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [130542] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3477), 1, - sym_line_comment, - STATE(3533), 1, + STATE(3541), 1, sym_capture_list, - STATE(3721), 1, + STATE(3807), 1, sym_generic_parameters, - STATE(4280), 1, + STATE(4232), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129540] = 7, - ACTIONS(497), 1, + STATE(3480), 2, + sym_line_comment, + sym_block_comment, + [130576] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6151), 1, - anon_sym_EQ, - STATE(3478), 1, + anon_sym_SLASH_STAR, + STATE(3481), 2, sym_line_comment, - STATE(3664), 1, - sym_attribute, - ACTIONS(4944), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6149), 5, + sym_block_comment, + ACTIONS(2867), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, sym_identifier, - [129567] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [130598] = 10, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3479), 1, - sym_line_comment, - STATE(3530), 1, + STATE(3515), 1, sym_capture_list, - STATE(3778), 1, + STATE(3747), 1, sym_generic_parameters, - STATE(4005), 1, + STATE(4237), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129600] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3482), 2, + sym_line_comment, sym_block_comment, + [130632] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3480), 1, - sym_line_comment, - STATE(3518), 1, + STATE(3522), 1, sym_capture_list, - STATE(3704), 1, + STATE(3733), 1, sym_generic_parameters, - STATE(4320), 1, + STATE(4258), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129633] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3481), 1, + STATE(3483), 2, sym_line_comment, - ACTIONS(2671), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [129654] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6133), 1, - anon_sym_const, - ACTIONS(6135), 1, - anon_sym___global, - ACTIONS(6137), 1, - anon_sym_fn, - ACTIONS(6141), 1, - anon_sym_pub, - ACTIONS(6143), 1, - anon_sym_enum, - ACTIONS(6145), 1, - anon_sym_interface, - STATE(3482), 1, - sym_line_comment, - STATE(3546), 1, - sym_visibility_modifiers, - ACTIONS(6139), 2, - anon_sym_struct, - anon_sym_union, - [129689] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [130666] = 10, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3483), 1, - sym_line_comment, - STATE(3544), 1, + STATE(3539), 1, sym_capture_list, - STATE(3756), 1, + STATE(3719), 1, sym_generic_parameters, - STATE(4420), 1, + STATE(4375), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129722] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3484), 2, + sym_line_comment, sym_block_comment, + [130700] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3484), 1, - sym_line_comment, - STATE(3543), 1, + STATE(3524), 1, sym_capture_list, - STATE(3757), 1, + STATE(3775), 1, sym_generic_parameters, - STATE(4363), 1, + STATE(4412), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129755] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3485), 2, + sym_line_comment, sym_block_comment, + [130734] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3485), 1, - sym_line_comment, - STATE(3524), 1, + STATE(3525), 1, sym_capture_list, - STATE(3840), 1, + STATE(3697), 1, sym_generic_parameters, - STATE(4293), 1, + STATE(4114), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129788] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(2741), 1, - anon_sym_LBRACE, - STATE(3486), 1, + STATE(3486), 2, sym_line_comment, - ACTIONS(6121), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [129811] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [130768] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3487), 1, - sym_line_comment, STATE(3528), 1, sym_capture_list, - STATE(3696), 1, + STATE(3800), 1, sym_generic_parameters, - STATE(4226), 1, + STATE(4270), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129844] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3487), 2, + sym_line_comment, sym_block_comment, + [130802] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3488), 1, + STATE(3533), 1, + sym_capture_list, + STATE(3675), 1, + sym_signature, + STATE(3703), 1, + sym_generic_parameters, + ACTIONS(4986), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3488), 2, sym_line_comment, - STATE(3541), 1, + sym_block_comment, + [130836] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5958), 1, + anon_sym_LBRACK2, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(3536), 1, sym_capture_list, - STATE(3751), 1, + STATE(3824), 1, sym_generic_parameters, - STATE(4352), 1, + STATE(4013), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129877] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3489), 2, + sym_line_comment, sym_block_comment, + [130870] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6125), 1, sym_identifier, - ACTIONS(6153), 1, + ACTIONS(6151), 1, anon_sym_LPAREN, - STATE(1538), 1, + STATE(1555), 1, sym_global_var_definition, - STATE(3489), 1, + STATE(3490), 2, sym_line_comment, + sym_block_comment, ACTIONS(6127), 6, anon_sym_const, anon_sym_fn, @@ -307438,212 +304120,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [129904] = 10, + [130898] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6155), 1, + anon_sym_EQ, + STATE(3681), 1, + sym_attribute, + ACTIONS(4962), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + STATE(3491), 2, + sym_line_comment, sym_block_comment, + ACTIONS(6153), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + [130926] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3490), 1, - sym_line_comment, STATE(3513), 1, sym_capture_list, - STATE(3700), 1, + STATE(3847), 1, sym_generic_parameters, - STATE(4188), 1, + STATE(4197), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129937] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3492), 2, + sym_line_comment, sym_block_comment, + [130960] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3491), 1, - sym_line_comment, - STATE(3534), 1, + STATE(3530), 1, sym_capture_list, - STATE(3741), 1, + STATE(3821), 1, sym_generic_parameters, - STATE(4386), 1, + STATE(4371), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [129970] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3493), 2, + sym_line_comment, sym_block_comment, + [130994] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5958), 1, anon_sym_LBRACK2, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3492), 1, - sym_line_comment, - STATE(3525), 1, + STATE(3517), 1, sym_capture_list, - STATE(3711), 1, + STATE(3764), 1, sym_generic_parameters, - STATE(4413), 1, + STATE(4327), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130003] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5958), 1, - anon_sym_LBRACK2, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3493), 1, + STATE(3494), 2, sym_line_comment, - STATE(3540), 1, - sym_capture_list, - STATE(3681), 1, - sym_signature, - STATE(3732), 1, - sym_generic_parameters, - ACTIONS(4970), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [130036] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(3788), 1, - anon_sym_COLON, - STATE(3494), 1, - sym_line_comment, - ACTIONS(3786), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6155), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [130061] = 8, - ACTIONS(497), 1, + [131028] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(6159), 1, - anon_sym_as, - ACTIONS(6161), 1, - anon_sym_LBRACE, - STATE(3495), 1, + anon_sym_DOT, + STATE(3495), 3, sym_line_comment, - STATE(3650), 1, - sym_import_alias, - STATE(3735), 1, - sym_selective_import_list, - ACTIONS(6157), 4, + sym_block_comment, + aux_sym_import_path_repeat1, + ACTIONS(6157), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [130089] = 4, - ACTIONS(497), 1, + anon_sym_as, + anon_sym_LBRACE, + [131051] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3496), 1, + anon_sym_SLASH_STAR, + STATE(3496), 2, sym_line_comment, - ACTIONS(6163), 8, + sym_block_comment, + ACTIONS(6164), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6162), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [130109] = 6, - ACTIONS(497), 1, + [131074] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6167), 1, - anon_sym_DOT, - STATE(3497), 1, - sym_line_comment, - STATE(3508), 1, - aux_sym_import_path_repeat1, - ACTIONS(6165), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_SLASH_STAR, + ACTIONS(6168), 1, anon_sym_as, + ACTIONS(6170), 1, anon_sym_LBRACE, - [130133] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3498), 1, + STATE(3555), 1, + sym_import_alias, + STATE(3834), 1, + sym_selective_import_list, + STATE(3497), 2, sym_line_comment, - ACTIONS(6121), 8, + sym_block_comment, + ACTIONS(6166), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [130153] = 5, - ACTIONS(497), 1, + anon_sym_SEMI, + [131103] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6174), 1, + anon_sym_DOT, + STATE(3495), 1, + aux_sym_import_path_repeat1, + STATE(3498), 2, sym_line_comment, - ACTIONS(6171), 3, + sym_block_comment, + ACTIONS(6172), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6169), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [130175] = 4, - ACTIONS(497), 1, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [131128] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3500), 1, + anon_sym_SLASH_STAR, + STATE(3499), 2, sym_line_comment, - ACTIONS(6173), 8, + sym_block_comment, + ACTIONS(6176), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307652,14 +304306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130195] = 4, - ACTIONS(497), 1, + [131149] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3501), 1, + anon_sym_SLASH_STAR, + STATE(3500), 2, sym_line_comment, - ACTIONS(6175), 8, + sym_block_comment, + ACTIONS(6178), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307668,65 +304323,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130215] = 4, - ACTIONS(497), 1, + [131170] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3502), 1, + anon_sym_SLASH_STAR, + STATE(3501), 2, sym_line_comment, - ACTIONS(6177), 8, + sym_block_comment, + ACTIONS(6182), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6180), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, - anon_sym_mut, - sym_identifier, - [130235] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3503), 1, - sym_line_comment, - ACTIONS(3786), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6155), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [130257] = 6, - ACTIONS(497), 1, + anon_sym_mut, + sym_identifier, + [131193] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6167), 1, + anon_sym_SLASH_STAR, + ACTIONS(6174), 1, anon_sym_DOT, - STATE(3497), 1, + STATE(3498), 1, aux_sym_import_path_repeat1, - STATE(3504), 1, + STATE(3502), 2, sym_line_comment, - ACTIONS(6179), 6, + sym_block_comment, + ACTIONS(6184), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [130281] = 4, - ACTIONS(497), 1, + [131218] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3503), 2, + sym_line_comment, sym_block_comment, - STATE(3505), 1, + ACTIONS(3812), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6147), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [131241] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3504), 2, sym_line_comment, - ACTIONS(6181), 8, + sym_block_comment, + ACTIONS(6186), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307735,14 +304395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130301] = 4, - ACTIONS(497), 1, + [131262] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3506), 1, + anon_sym_SLASH_STAR, + STATE(3505), 2, sym_line_comment, - ACTIONS(6183), 8, + sym_block_comment, + ACTIONS(6188), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307751,48 +304412,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130321] = 5, - ACTIONS(497), 1, + [131283] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3507), 1, + anon_sym_SLASH_STAR, + STATE(3506), 2, sym_line_comment, - ACTIONS(6187), 3, + sym_block_comment, + ACTIONS(6190), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6185), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [130343] = 5, - ACTIONS(497), 1, + [131304] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6191), 1, - anon_sym_DOT, - STATE(3508), 2, + anon_sym_SLASH_STAR, + STATE(3507), 2, sym_line_comment, - aux_sym_import_path_repeat1, - ACTIONS(6189), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [130365] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - STATE(3509), 1, - sym_line_comment, - ACTIONS(6194), 8, + ACTIONS(6119), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307801,14 +304446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130385] = 4, - ACTIONS(497), 1, + [131325] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3510), 1, + anon_sym_SLASH_STAR, + STATE(3508), 2, sym_line_comment, - ACTIONS(6196), 8, + sym_block_comment, + ACTIONS(6192), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -307817,22105 +304463,23371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [130405] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [131346] = 11, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5942), 1, sym_identifier, - ACTIONS(6198), 1, + ACTIONS(6194), 1, anon_sym_COMMA, - ACTIONS(6200), 1, + ACTIONS(6196), 1, anon_sym_RBRACK, - ACTIONS(6202), 1, + ACTIONS(6198), 1, anon_sym_mut, - ACTIONS(6204), 1, + ACTIONS(6200), 1, anon_sym_shared, - STATE(3511), 1, - sym_line_comment, - STATE(3892), 1, + STATE(3980), 1, sym_capture, - STATE(4391), 1, - sym_mutability_modifiers, - STATE(4392), 1, + STATE(4284), 1, sym_reference_expression, - [130439] = 4, - ACTIONS(497), 1, + STATE(4288), 1, + sym_mutability_modifiers, + STATE(3509), 2, + sym_line_comment, + sym_block_comment, + [131381] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3512), 1, + anon_sym_SLASH_STAR, + STATE(3510), 2, sym_line_comment, - ACTIONS(6189), 7, + sym_block_comment, + ACTIONS(6202), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [130458] = 8, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [131402] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3511), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + ACTIONS(6204), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [131423] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3513), 1, - sym_line_comment, - STATE(3699), 1, - sym_generic_parameters, - STATE(4116), 1, + STATE(1469), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3726), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130485] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3512), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [131451] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1514), 1, - sym_signature, - STATE(3514), 1, - sym_line_comment, - STATE(3836), 1, + STATE(3808), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4307), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130512] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3513), 2, + sym_line_comment, sym_block_comment, + [131479] = 10, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5942), 1, sym_identifier, - ACTIONS(6202), 1, + ACTIONS(6198), 1, anon_sym_mut, - ACTIONS(6204), 1, + ACTIONS(6200), 1, anon_sym_shared, ACTIONS(6208), 1, anon_sym_RBRACK, - STATE(3515), 1, - sym_line_comment, - STATE(4367), 1, + STATE(4152), 1, sym_capture, - STATE(4391), 1, - sym_mutability_modifiers, - STATE(4392), 1, + STATE(4284), 1, sym_reference_expression, - [130543] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4288), 1, + sym_mutability_modifiers, + STATE(3514), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [131511] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1501), 1, - sym_signature, - STATE(3516), 1, - sym_line_comment, - STATE(3822), 1, + STATE(3760), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4294), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130570] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3515), 2, + sym_line_comment, + sym_block_comment, + [131539] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6210), 1, + sym_identifier, + ACTIONS(6213), 1, + anon_sym_RBRACE, + ACTIONS(6215), 1, + anon_sym_DOT_DOT_DOT, + STATE(3479), 1, + sym_reference_expression, + STATE(3503), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3516), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + aux_sym_element_list_repeat1, + [131567] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1510), 1, - sym_signature, - STATE(3517), 1, - sym_line_comment, - STATE(3859), 1, + STATE(3769), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4177), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130597] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3517), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [131595] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3518), 1, - sym_line_comment, - STATE(3702), 1, - sym_generic_parameters, - STATE(4272), 1, + STATE(1487), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3857), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130624] = 8, + STATE(3518), 2, + sym_line_comment, + sym_block_comment, + [131623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6218), 1, + sym_identifier, + STATE(3686), 1, + sym_reference_expression, + STATE(3519), 2, + sym_line_comment, sym_block_comment, + ACTIONS(6220), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [131647] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1471), 1, + STATE(1478), 1, sym_signature, - STATE(3519), 1, - sym_line_comment, - STATE(3734), 1, + STATE(3816), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130651] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3520), 2, + sym_line_comment, sym_block_comment, + [131675] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1508), 1, + STATE(1492), 1, sym_signature, - STATE(3520), 1, - sym_line_comment, - STATE(3739), 1, + STATE(3862), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130678] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3521), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [131703] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1477), 1, - sym_signature, - STATE(3521), 1, - sym_line_comment, - STATE(3800), 1, + STATE(3773), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4231), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130705] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6210), 1, - sym_identifier, - ACTIONS(6213), 1, - anon_sym_RBRACE, - ACTIONS(6215), 1, - anon_sym_DOT_DOT_DOT, - STATE(3494), 1, - sym_reference_expression, - STATE(3503), 2, - sym_keyed_element, - sym_spread_expression, STATE(3522), 2, sym_line_comment, - aux_sym_element_list_repeat1, - [130732] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [131731] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1481), 1, + STATE(1466), 1, sym_signature, - STATE(3523), 1, - sym_line_comment, - STATE(3706), 1, + STATE(3732), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130759] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3523), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [131759] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3524), 1, - sym_line_comment, - STATE(3707), 1, + STATE(3791), 1, sym_generic_parameters, - STATE(4379), 1, + STATE(4376), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130786] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3524), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [131787] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3525), 1, - sym_line_comment, - STATE(3710), 1, + STATE(3742), 1, sym_generic_parameters, - STATE(4377), 1, + STATE(4425), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130813] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3525), 2, + sym_line_comment, sym_block_comment, + [131815] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1469), 1, + STATE(1481), 1, sym_signature, - STATE(3526), 1, - sym_line_comment, - STATE(3758), 1, + STATE(3850), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130840] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3526), 2, + sym_line_comment, + sym_block_comment, + [131843] = 9, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(647), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6222), 1, + sym_identifier, + ACTIONS(6224), 1, + anon_sym_RBRACE, + STATE(3479), 1, + sym_reference_expression, + STATE(3516), 1, + aux_sym_element_list_repeat1, + STATE(3503), 2, + sym_keyed_element, + sym_spread_expression, + STATE(3527), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [131873] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1459), 1, - sym_signature, - STATE(3527), 1, - sym_line_comment, - STATE(3823), 1, + STATE(3804), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4191), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130867] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3528), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [131901] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3528), 1, - sym_line_comment, - STATE(3693), 1, - sym_generic_parameters, - STATE(4289), 1, + STATE(1474), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3814), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [130894] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6218), 1, - anon_sym_const, - ACTIONS(6220), 1, - anon_sym_type, - ACTIONS(6222), 1, - anon_sym_fn, - ACTIONS(6226), 1, - anon_sym_enum, - ACTIONS(6228), 1, - anon_sym_interface, - STATE(3529), 1, + STATE(3529), 2, sym_line_comment, - ACTIONS(6224), 2, - anon_sym_struct, - anon_sym_union, - [130923] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6147), 1, + [131929] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3530), 1, - sym_line_comment, - STATE(3782), 1, + STATE(3823), 1, sym_generic_parameters, - STATE(4208), 1, + STATE(4326), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [130950] = 6, - ACTIONS(497), 1, + STATE(3530), 2, + sym_line_comment, + sym_block_comment, + [131957] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6230), 1, - sym_identifier, - STATE(3531), 1, + anon_sym_SLASH_STAR, + STATE(3531), 2, sym_line_comment, - STATE(3687), 1, - sym_reference_expression, - ACTIONS(6232), 5, + sym_block_comment, + ACTIONS(6157), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [130973] = 4, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [131977] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3532), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3532), 2, sym_line_comment, - ACTIONS(6234), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [130992] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6147), 1, + ACTIONS(6226), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [131997] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3533), 1, - sym_line_comment, - STATE(3733), 1, + STATE(3699), 1, sym_generic_parameters, - STATE(4199), 1, + STATE(4125), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [131019] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3533), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [132025] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3534), 1, - sym_line_comment, - STATE(3749), 1, - sym_generic_parameters, - STATE(4312), 1, + STATE(1461), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3820), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [131046] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3534), 2, + sym_line_comment, sym_block_comment, + [132053] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1486), 1, + STATE(1484), 1, sym_signature, - STATE(3535), 1, - sym_line_comment, - STATE(3775), 1, + STATE(3806), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [131073] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5942), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_mut, - ACTIONS(6204), 1, - anon_sym_shared, - ACTIONS(6236), 1, - anon_sym_RBRACK, - STATE(3536), 1, + STATE(3535), 2, sym_line_comment, - STATE(4367), 1, - sym_capture, - STATE(4391), 1, - sym_mutability_modifiers, - STATE(4392), 1, - sym_reference_expression, - [131104] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6206), 1, + [132081] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1479), 1, - sym_signature, - STATE(3537), 1, - sym_line_comment, - STATE(3763), 1, + STATE(3831), 1, sym_generic_parameters, - ACTIONS(4970), 2, + STATE(4192), 1, + sym_signature, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [131131] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(647), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6238), 1, - sym_identifier, - ACTIONS(6240), 1, - anon_sym_RBRACE, - STATE(3494), 1, - sym_reference_expression, - STATE(3522), 1, - aux_sym_element_list_repeat1, - STATE(3538), 1, + STATE(3536), 2, sym_line_comment, - STATE(3503), 2, - sym_keyed_element, - sym_spread_expression, - [131160] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - STATE(3539), 1, - sym_line_comment, - ACTIONS(6242), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [131179] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [132109] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3540), 1, - sym_line_comment, - STATE(3719), 1, - sym_generic_parameters, - STATE(4255), 1, + STATE(1464), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3712), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [131206] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3537), 2, + sym_line_comment, + sym_block_comment, + [132137] = 9, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6228), 1, + anon_sym_const, + ACTIONS(6230), 1, + anon_sym_type, + ACTIONS(6232), 1, + anon_sym_fn, + ACTIONS(6236), 1, + anon_sym_enum, + ACTIONS(6238), 1, + anon_sym_interface, + ACTIONS(6234), 2, + anon_sym_struct, + anon_sym_union, + STATE(3538), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [132167] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3541), 1, - sym_line_comment, - STATE(3754), 1, + STATE(3718), 1, sym_generic_parameters, - STATE(4295), 1, + STATE(4148), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [131233] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3539), 2, + sym_line_comment, sym_block_comment, + [132195] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1495), 1, + STATE(1472), 1, sym_signature, - STATE(3542), 1, - sym_line_comment, - STATE(3746), 1, + STATE(3810), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [131260] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3540), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [132223] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3543), 1, - sym_line_comment, - STATE(3766), 1, + STATE(3813), 1, sym_generic_parameters, - STATE(4322), 1, + STATE(4379), 1, sym_signature, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [131287] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3541), 2, + sym_line_comment, + sym_block_comment, + [132251] = 10, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_mut, + ACTIONS(6200), 1, + anon_sym_shared, + ACTIONS(6240), 1, + anon_sym_RBRACK, + STATE(4152), 1, + sym_capture, + STATE(4284), 1, + sym_reference_expression, + STATE(4288), 1, + sym_mutability_modifiers, + STATE(3542), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [132283] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3544), 1, - sym_line_comment, - STATE(3750), 1, - sym_generic_parameters, - STATE(4317), 1, + STATE(1467), 1, sym_signature, - ACTIONS(4970), 2, + STATE(3761), 1, + sym_generic_parameters, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [131314] = 6, - ACTIONS(497), 1, + STATE(3543), 2, + sym_line_comment, + sym_block_comment, + [132311] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3544), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6242), 7, + anon_sym_const, + anon_sym_type, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [132331] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6248), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3545), 2, + sym_line_comment, sym_block_comment, + [132358] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(6246), 1, - anon_sym_RBRACE, - STATE(3545), 1, + sym___dolcbr, + ACTIONS(6250), 1, + sym___double_quote, + STATE(3572), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3546), 2, sym_line_comment, - STATE(3641), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6244), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [131336] = 8, + sym_block_comment, + [132385] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6252), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3547), 2, + sym_line_comment, sym_block_comment, + [132412] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(6248), 1, + sym___single_quote, + ACTIONS(6256), 1, + sym___dolcbr, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3548), 2, + sym_line_comment, + sym_block_comment, + [132439] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6258), 1, + sym___double_quote, + STATE(3625), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3549), 2, + sym_line_comment, + sym_block_comment, + [132466] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6260), 1, anon_sym_const, - ACTIONS(6250), 1, + ACTIONS(6262), 1, anon_sym_fn, - ACTIONS(6254), 1, + ACTIONS(6266), 1, anon_sym_enum, - ACTIONS(6256), 1, + ACTIONS(6268), 1, anon_sym_interface, - STATE(3546), 1, - sym_line_comment, - ACTIONS(6252), 2, + ACTIONS(6264), 2, anon_sym_struct, anon_sym_union, - [131362] = 9, - ACTIONS(497), 1, + STATE(3550), 2, + sym_line_comment, + sym_block_comment, + [132493] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5942), 1, + sym_identifier, + ACTIONS(6198), 1, + anon_sym_mut, + ACTIONS(6200), 1, + anon_sym_shared, + STATE(4152), 1, + sym_capture, + STATE(4284), 1, + sym_reference_expression, + STATE(4288), 1, + sym_mutability_modifiers, + STATE(3551), 2, + sym_line_comment, + sym_block_comment, + [132522] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2865), 1, + anon_sym_DOT, + STATE(3552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3018), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [132543] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6273), 1, + anon_sym_STAR_SLASH, + STATE(3667), 1, + aux_sym_block_comment_repeat1, + ACTIONS(6270), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + STATE(3553), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + aux_sym_block_comment_repeat2, + [132566] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6264), 1, + ACTIONS(6275), 1, sym___single_quote, - STATE(3547), 1, - sym_line_comment, - STATE(3572), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131390] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3554), 2, + sym_line_comment, + sym_block_comment, + [132593] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6170), 1, + anon_sym_LBRACE, + STATE(3700), 1, + sym_selective_import_list, + STATE(3555), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + ACTIONS(6277), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [132616] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6272), 1, + ACTIONS(6275), 1, sym___double_quote, - STATE(3548), 1, - sym_line_comment, - STATE(3575), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131418] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3556), 2, + sym_line_comment, + sym_block_comment, + [132643] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6272), 1, + ACTIONS(6279), 1, sym___single_quote, - STATE(3549), 1, - sym_line_comment, - STATE(3582), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131446] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3557), 2, + sym_line_comment, + sym_block_comment, + [132670] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6279), 1, sym___double_quote, - STATE(3550), 1, - sym_line_comment, - STATE(3587), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131474] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3558), 2, + sym_line_comment, + sym_block_comment, + [132697] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6281), 1, + sym___single_quote, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + aux_sym_c_string_literal_token1, + STATE(3559), 2, + sym_line_comment, + sym_block_comment, + [132724] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6283), 1, sym___double_quote, - STATE(3551), 1, - sym_line_comment, - STATE(3598), 1, + STATE(3636), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131502] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3560), 2, + sym_line_comment, + sym_block_comment, + [132751] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6285), 1, + sym___single_quote, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + aux_sym_c_string_literal_token1, + STATE(3561), 2, + sym_line_comment, + sym_block_comment, + [132778] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6278), 1, + ACTIONS(6285), 1, sym___double_quote, - STATE(3552), 1, - sym_line_comment, - STATE(3602), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131530] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3562), 2, + sym_line_comment, + sym_block_comment, + [132805] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6287), 1, + sym___single_quote, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3563), 2, + sym_line_comment, + sym_block_comment, + [132832] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6280), 1, + ACTIONS(6258), 1, sym___single_quote, - STATE(3553), 1, - sym_line_comment, - STATE(3580), 1, + STATE(3626), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131558] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3564), 2, + sym_line_comment, + sym_block_comment, + [132859] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6289), 1, + sym___double_quote, + STATE(3605), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3565), 2, + sym_line_comment, + sym_block_comment, + [132886] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6280), 1, + ACTIONS(6281), 1, sym___double_quote, - STATE(3554), 1, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3566), 2, sym_line_comment, + sym_block_comment, + [132913] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6291), 1, + sym___double_quote, STATE(3576), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131586] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3567), 2, + sym_line_comment, + sym_block_comment, + [132940] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6282), 1, + ACTIONS(6293), 1, sym___single_quote, - STATE(3555), 1, - sym_line_comment, - STATE(3573), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131614] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3568), 2, + sym_line_comment, + sym_block_comment, + [132967] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6282), 1, + ACTIONS(6293), 1, sym___double_quote, - STATE(3556), 1, - sym_line_comment, - STATE(3571), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131642] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3569), 2, + sym_line_comment, + sym_block_comment, + [132994] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6295), 1, + sym___single_quote, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3570), 2, + sym_line_comment, + sym_block_comment, + [133021] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6276), 1, + ACTIONS(6289), 1, sym___single_quote, - STATE(3557), 1, - sym_line_comment, - STATE(3617), 1, + STATE(3598), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131670] = 6, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3571), 2, + sym_line_comment, + sym_block_comment, + [133048] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6284), 1, - anon_sym_LBRACK, - STATE(2370), 1, - sym_type_parameters, - STATE(3558), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6295), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3572), 2, sym_line_comment, - ACTIONS(2739), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [131692] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133075] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6291), 1, + sym___single_quote, + STATE(3577), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + aux_sym_c_string_literal_token1, + STATE(3573), 2, + sym_line_comment, + sym_block_comment, + [133102] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6286), 1, + ACTIONS(6297), 1, sym___double_quote, - STATE(3559), 1, - sym_line_comment, - STATE(3568), 1, + STATE(3578), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131720] = 9, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3574), 2, + sym_line_comment, + sym_block_comment, + [133129] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6297), 1, + sym___single_quote, + STATE(3583), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3575), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6288), 1, - anon_sym_DOT, - ACTIONS(6290), 1, - anon_sym_RBRACE, - ACTIONS(6292), 1, - sym_int_literal, - ACTIONS(6294), 1, - aux_sym_format_specifier_token1, - ACTIONS(6296), 1, - aux_sym_format_specifier_token2, - ACTIONS(6298), 1, - anon_sym_0, - STATE(3560), 1, + [133156] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6299), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3576), 2, sym_line_comment, - [131748] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133183] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6278), 1, + ACTIONS(6299), 1, sym___single_quote, - STATE(3561), 1, - sym_line_comment, - STATE(3612), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131776] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6300), 1, - sym___single_quote, - STATE(3562), 1, + STATE(3577), 2, sym_line_comment, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3792), 1, - sym_string_interpolation, - [131804] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133210] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6300), 1, + ACTIONS(6301), 1, sym___double_quote, - STATE(3563), 1, - sym_line_comment, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131832] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3578), 2, + sym_line_comment, + sym_block_comment, + [133237] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6302), 1, + ACTIONS(6303), 1, sym___single_quote, - STATE(3564), 1, - sym_line_comment, - STATE(3569), 1, + STATE(3554), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131860] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3579), 2, + sym_line_comment, + sym_block_comment, + [133264] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6302), 1, + ACTIONS(6303), 1, sym___double_quote, - STATE(3565), 1, - sym_line_comment, - STATE(3568), 1, + STATE(3556), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [131888] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6304), 1, - sym___double_quote, - STATE(3566), 1, + STATE(3580), 2, sym_line_comment, - STATE(3614), 1, - aux_sym_c_string_literal_repeat2, - STATE(3795), 1, - sym_string_interpolation, - [131916] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133291] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6304), 1, + ACTIONS(6305), 1, sym___single_quote, - STATE(3567), 1, - sym_line_comment, - STATE(3616), 1, + STATE(3561), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [131944] = 8, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3581), 2, + sym_line_comment, + sym_block_comment, + [133318] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6306), 1, - sym_escape_sequence, - ACTIONS(6309), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6312), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6315), 1, + ACTIONS(6305), 1, sym___double_quote, - STATE(3795), 1, + STATE(3562), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, sym_string_interpolation, - STATE(3568), 2, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3582), 2, sym_line_comment, - aux_sym_c_string_literal_repeat2, - [131970] = 8, - ACTIONS(497), 1, + sym_block_comment, + [133345] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6317), 1, - sym_escape_sequence, - ACTIONS(6320), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6323), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6326), 1, + ACTIONS(6301), 1, sym___single_quote, - STATE(3792), 1, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, sym_string_interpolation, - STATE(3569), 2, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3583), 2, sym_line_comment, - aux_sym_c_string_literal_repeat1, - [131996] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133372] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6309), 1, + anon_sym_STAR_SLASH, + STATE(3645), 1, + aux_sym_block_comment_repeat2, + STATE(3667), 1, + aux_sym_block_comment_repeat1, + STATE(3584), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + ACTIONS(6307), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + [133397] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6328), 1, + ACTIONS(6311), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3570), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132024] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6330), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3571), 1, + STATE(3585), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [132052] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133424] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6328), 1, + ACTIONS(6313), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3572), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132080] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3586), 2, + sym_line_comment, + sym_block_comment, + [133451] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6330), 1, + ACTIONS(6315), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3573), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132108] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3587), 2, + sym_line_comment, + sym_block_comment, + [133478] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6332), 1, + ACTIONS(6317), 1, sym___single_quote, - STATE(3562), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3574), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132136] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3588), 2, + sym_line_comment, + sym_block_comment, + [133505] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6334), 1, + ACTIONS(6313), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3575), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132164] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6336), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3576), 1, + STATE(3589), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [132192] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133532] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6332), 1, + ACTIONS(6287), 1, sym___double_quote, - STATE(3563), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3577), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132220] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3590), 2, + sym_line_comment, + sym_block_comment, + [133559] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6338), 1, + ACTIONS(6319), 1, sym___single_quote, - STATE(3564), 1, + STATE(3557), 1, aux_sym_c_string_literal_repeat1, - STATE(3578), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132248] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3591), 2, + sym_line_comment, + sym_block_comment, + [133586] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6338), 1, + ACTIONS(6319), 1, sym___double_quote, - STATE(3565), 1, + STATE(3558), 1, aux_sym_c_string_literal_repeat2, - STATE(3579), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132276] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3592), 2, + sym_line_comment, + sym_block_comment, + [133613] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6336), 1, + ACTIONS(6321), 1, sym___single_quote, - STATE(3569), 1, + STATE(3559), 1, aux_sym_c_string_literal_repeat1, - STATE(3580), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132304] = 5, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3593), 2, + sym_line_comment, + sym_block_comment, + [133640] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6340), 1, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, anon_sym_COMMA, - STATE(3581), 2, - sym_line_comment, + STATE(3624), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1719), 4, + STATE(3594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4011), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [132324] = 9, - ACTIONS(497), 1, + [133663] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6334), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3582), 1, - sym_line_comment, - STATE(3792), 1, + ACTIONS(6321), 1, + sym___double_quote, + STATE(3566), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, sym_string_interpolation, - [132352] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3595), 2, + sym_line_comment, + sym_block_comment, + [133690] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6343), 1, + ACTIONS(6315), 1, sym___double_quote, - STATE(3583), 1, - sym_line_comment, - STATE(3618), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132380] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3596), 2, + sym_line_comment, + sym_block_comment, + [133717] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6343), 1, + ACTIONS(6323), 1, sym___single_quote, - STATE(3584), 1, - sym_line_comment, - STATE(3620), 1, + STATE(3586), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132408] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6345), 1, - sym___double_quote, - STATE(3585), 1, + aux_sym_c_string_literal_token1, + STATE(3597), 2, sym_line_comment, - STATE(3621), 1, - aux_sym_c_string_literal_repeat2, - STATE(3795), 1, - sym_string_interpolation, - [132436] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133744] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6325), 1, + sym___single_quote, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3598), 2, + sym_line_comment, + sym_block_comment, + [133771] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6345), 1, + ACTIONS(6283), 1, sym___single_quote, - STATE(3586), 1, - sym_line_comment, STATE(3635), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132464] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3599), 2, + sym_line_comment, + sym_block_comment, + [133798] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6347), 1, + ACTIONS(6327), 1, sym___double_quote, - STATE(3568), 1, + STATE(3630), 1, aux_sym_c_string_literal_repeat2, - STATE(3587), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132492] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6349), 1, - sym___double_quote, - STATE(3588), 1, + STATE(3600), 2, sym_line_comment, - STATE(3619), 1, - aux_sym_c_string_literal_repeat2, - STATE(3795), 1, - sym_string_interpolation, - [132520] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6351), 1, - sym_identifier, - STATE(3589), 1, - sym_line_comment, - STATE(3715), 1, - sym_label_reference, - ACTIONS(4166), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132542] = 9, - ACTIONS(497), 1, + [133825] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6349), 1, + ACTIONS(6327), 1, sym___single_quote, - STATE(3590), 1, - sym_line_comment, - STATE(3626), 1, + STATE(3631), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132570] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6353), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3591), 1, + STATE(3601), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [132598] = 9, - ACTIONS(497), 1, + sym_block_comment, + [133852] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6355), 1, + ACTIONS(6329), 1, sym___double_quote, - STATE(3592), 1, - sym_line_comment, - STATE(3622), 1, + STATE(3632), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132626] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3602), 2, + sym_line_comment, + sym_block_comment, + [133879] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6329), 1, + sym___single_quote, + STATE(3633), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + STATE(3603), 2, + sym_line_comment, + sym_block_comment, + [133906] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6355), 1, + ACTIONS(6331), 1, sym___single_quote, - STATE(3593), 1, - sym_line_comment, - STATE(3623), 1, + STATE(3622), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132654] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3604), 2, + sym_line_comment, + sym_block_comment, + [133933] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6325), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3605), 2, + sym_line_comment, + sym_block_comment, + [133960] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6357), 1, + ACTIONS(6331), 1, sym___double_quote, - STATE(3594), 1, - sym_line_comment, - STATE(3624), 1, + STATE(3616), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132682] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3606), 2, + sym_line_comment, + sym_block_comment, + [133987] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6357), 1, + ACTIONS(6333), 1, sym___single_quote, - STATE(3595), 1, - sym_line_comment, - STATE(3625), 1, + STATE(3568), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132710] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6347), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3596), 1, + STATE(3607), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [132738] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134014] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6353), 1, + ACTIONS(6335), 1, sym___double_quote, - STATE(3568), 1, + STATE(3596), 1, aux_sym_c_string_literal_repeat2, - STATE(3597), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132766] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3608), 2, + sym_line_comment, + sym_block_comment, + [134041] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6359), 1, + ACTIONS(6333), 1, sym___double_quote, - STATE(3568), 1, + STATE(3569), 1, aux_sym_c_string_literal_repeat2, - STATE(3598), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132794] = 6, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3609), 2, + sym_line_comment, + sym_block_comment, + [134068] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6351), 1, - sym_identifier, - STATE(3599), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6323), 1, + sym___double_quote, + STATE(3589), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3610), 2, sym_line_comment, - STATE(3716), 1, - sym_label_reference, - ACTIONS(4170), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132816] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134095] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6361), 1, + ACTIONS(6337), 1, sym___single_quote, - STATE(3569), 1, + STATE(3563), 1, aux_sym_c_string_literal_repeat1, - STATE(3600), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132844] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3611), 2, + sym_line_comment, + sym_block_comment, + [134122] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6361), 1, + ACTIONS(6337), 1, sym___double_quote, - STATE(3568), 1, + STATE(3590), 1, aux_sym_c_string_literal_repeat2, - STATE(3601), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [132872] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6363), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3602), 1, + STATE(3612), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [132900] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134149] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6342), 1, sym___dolcbr, - ACTIONS(6365), 1, + ACTIONS(6345), 1, sym___double_quote, - STATE(3603), 1, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6339), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3613), 3, sym_line_comment, - STATE(3628), 1, + sym_block_comment, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, - sym_string_interpolation, - [132928] = 6, - ACTIONS(497), 1, + [134174] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5042), 1, - anon_sym_COMMA, - STATE(3581), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3604), 1, + anon_sym_SLASH_STAR, + ACTIONS(6350), 1, + sym___dolcbr, + ACTIONS(6353), 1, + sym___single_quote, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6347), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3614), 3, sym_line_comment, - ACTIONS(4044), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [132950] = 9, - ACTIONS(497), 1, + sym_block_comment, + aux_sym_c_string_literal_repeat1, + [134199] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6367), 1, + anon_sym_SLASH_STAR, + ACTIONS(6250), 1, sym___single_quote, - STATE(3569), 1, + ACTIONS(6256), 1, + sym___dolcbr, + STATE(3570), 1, aux_sym_c_string_literal_repeat1, - STATE(3605), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [132978] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3615), 2, + sym_line_comment, + sym_block_comment, + [134226] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6367), 1, + ACTIONS(6355), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3606), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133006] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3616), 2, + sym_line_comment, + sym_block_comment, + [134253] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6286), 1, + ACTIONS(6357), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3607), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133034] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6365), 1, - sym___single_quote, - STATE(3608), 1, + STATE(3617), 2, sym_line_comment, - STATE(3631), 1, - aux_sym_c_string_literal_repeat1, - STATE(3792), 1, - sym_string_interpolation, - [133062] = 6, - ACTIONS(497), 1, + sym_block_comment, + [134280] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, + sym___dolcbr, + ACTIONS(6317), 1, + sym___double_quote, + STATE(3613), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, + sym_string_interpolation, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3618), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5042), 1, - anon_sym_COMMA, - STATE(3581), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3609), 1, + [134307] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6359), 1, + sym_identifier, + STATE(3797), 1, + sym_label_reference, + STATE(3619), 2, sym_line_comment, - ACTIONS(4020), 4, + sym_block_comment, + ACTIONS(4054), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [133084] = 9, - ACTIONS(497), 1, + [134330] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6369), 1, + ACTIONS(6311), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3610), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133112] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6369), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3611), 1, + aux_sym_c_string_literal_token1, + STATE(3620), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [133140] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134357] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6363), 1, + ACTIONS(6361), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3612), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133168] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6371), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3613), 1, + STATE(3621), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133196] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134384] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6373), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, + ACTIONS(6355), 1, + sym___single_quote, STATE(3614), 1, - sym_line_comment, - STATE(3795), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, sym_string_interpolation, - [133224] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6371), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3615), 1, + aux_sym_c_string_literal_token1, + STATE(3622), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [133252] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134411] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6373), 1, + ACTIONS(6335), 1, sym___single_quote, - STATE(3569), 1, + STATE(3587), 1, aux_sym_c_string_literal_repeat1, - STATE(3616), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133280] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6359), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3617), 1, + STATE(3623), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133308] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134438] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6363), 1, + anon_sym_COMMA, + STATE(3624), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1765), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [134459] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6375), 1, + ACTIONS(6366), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3618), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133336] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6377), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3619), 1, + STATE(3625), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [133364] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134486] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6375), 1, + ACTIONS(6366), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3620), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133392] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6379), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3621), 1, + aux_sym_c_string_literal_token1, + STATE(3626), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [133420] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6381), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3622), 1, + [134513] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6368), 1, + anon_sym_LBRACK, + STATE(2480), 1, + sym_type_parameters, + STATE(3627), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [133448] = 9, - ACTIONS(497), 1, + sym_block_comment, + ACTIONS(2693), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [134536] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6381), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3623), 1, + anon_sym_SLASH_STAR, + ACTIONS(6372), 1, + anon_sym_RBRACE, + STATE(3641), 1, + aux_sym_selective_import_list_repeat1, + STATE(3628), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133476] = 9, - ACTIONS(497), 1, + sym_block_comment, + ACTIONS(6370), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [134559] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6359), 1, + sym_identifier, + STATE(3798), 1, + sym_label_reference, + STATE(3629), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + ACTIONS(4050), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [134582] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6383), 1, + ACTIONS(6374), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3624), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133504] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6383), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3625), 1, + aux_sym_c_string_literal_token2, + STATE(3630), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133532] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6377), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3626), 1, - sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133560] = 9, - ACTIONS(497), 1, + [134609] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6374), 1, sym___single_quote, - STATE(3596), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3627), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133588] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3631), 2, + sym_line_comment, + sym_block_comment, + [134636] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6385), 1, + ACTIONS(6376), 1, sym___double_quote, - STATE(3568), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3628), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133616] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3632), 2, + sym_line_comment, + sym_block_comment, + [134663] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6387), 1, + ACTIONS(6376), 1, sym___single_quote, - STATE(3610), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3629), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133644] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + [134690] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6387), 1, + ACTIONS(6357), 1, sym___double_quote, - STATE(3611), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3630), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133672] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3634), 2, + sym_line_comment, + sym_block_comment, + [134717] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6385), 1, + ACTIONS(6378), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3631), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133700] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6260), 1, aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6389), 1, - sym___single_quote, - STATE(3605), 1, - aux_sym_c_string_literal_repeat1, - STATE(3632), 1, + STATE(3635), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [133728] = 9, - ACTIONS(497), 1, + sym_block_comment, + [134744] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6391), 1, - sym___single_quote, + ACTIONS(6378), 1, + sym___double_quote, STATE(3613), 1, - aux_sym_c_string_literal_repeat1, - STATE(3633), 1, - sym_line_comment, - STATE(3792), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, sym_string_interpolation, - [133756] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3636), 2, + sym_line_comment, + sym_block_comment, + [134771] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6391), 1, + ACTIONS(6380), 1, sym___double_quote, - STATE(3615), 1, - aux_sym_c_string_literal_repeat2, STATE(3634), 1, - sym_line_comment, - STATE(3795), 1, + aux_sym_c_string_literal_repeat2, + STATE(3842), 1, sym_string_interpolation, - [133784] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3637), 2, + sym_line_comment, + sym_block_comment, + [134798] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6379), 1, + ACTIONS(6382), 1, sym___single_quote, - STATE(3569), 1, + STATE(3642), 1, aux_sym_c_string_literal_repeat1, - STATE(3635), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133812] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3638), 2, + sym_line_comment, + sym_block_comment, + [134825] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6389), 1, + ACTIONS(6382), 1, sym___double_quote, - STATE(3606), 1, + STATE(3643), 1, aux_sym_c_string_literal_repeat2, - STATE(3636), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133840] = 9, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3639), 2, + sym_line_comment, + sym_block_comment, + [134852] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6393), 1, + ACTIONS(6384), 1, sym___single_quote, - STATE(3607), 1, + STATE(3647), 1, aux_sym_c_string_literal_repeat1, - STATE(3637), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133868] = 5, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3640), 2, + sym_line_comment, + sym_block_comment, + [134879] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6398), 1, + anon_sym_SLASH_STAR, + ACTIONS(6389), 1, anon_sym_RBRACE, - STATE(3638), 2, + STATE(3641), 3, sym_line_comment, + sym_block_comment, aux_sym_selective_import_list_repeat1, - ACTIONS(6395), 4, + ACTIONS(6386), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [133888] = 9, - ACTIONS(497), 1, + [134900] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6400), 1, + ACTIONS(6391), 1, sym___single_quote, - STATE(3569), 1, + STATE(3614), 1, aux_sym_c_string_literal_repeat1, - STATE(3639), 1, - sym_line_comment, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [133916] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3642), 2, + sym_line_comment, + sym_block_comment, + [134927] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6402), 1, + ACTIONS(6391), 1, sym___double_quote, - STATE(3640), 1, - sym_line_comment, - STATE(3656), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133944] = 6, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3643), 2, + sym_line_comment, + sym_block_comment, + [134954] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6393), 1, + sym___single_quote, + STATE(3588), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3644), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6404), 1, - anon_sym_RBRACE, - STATE(3638), 1, - aux_sym_selective_import_list_repeat1, - STATE(3641), 1, + [134981] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6395), 1, + anon_sym_STAR_SLASH, + STATE(3553), 1, + aux_sym_block_comment_repeat2, + STATE(3667), 1, + aux_sym_block_comment_repeat1, + STATE(3645), 2, sym_line_comment, - ACTIONS(6244), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [133966] = 9, - ACTIONS(497), 1, + sym_block_comment, + ACTIONS(6307), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + [135006] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6397), 1, + sym___single_quote, + STATE(3548), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3646), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6266), 1, + [135033] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6252), 1, + sym___single_quote, + ACTIONS(6256), 1, + sym___dolcbr, + STATE(3614), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + aux_sym_c_string_literal_token1, + STATE(3647), 2, + sym_line_comment, + sym_block_comment, + [135060] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6393), 1, + ACTIONS(6397), 1, sym___double_quote, - STATE(3559), 1, + STATE(3545), 1, aux_sym_c_string_literal_repeat2, - STATE(3642), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [133994] = 6, - ACTIONS(497), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3648), 2, + sym_line_comment, + sym_block_comment, + [135087] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(5042), 1, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, anon_sym_COMMA, - STATE(3604), 1, + STATE(3660), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3643), 1, + STATE(3649), 2, sym_line_comment, - ACTIONS(1761), 4, + sym_block_comment, + ACTIONS(1723), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [134016] = 9, - ACTIONS(497), 1, + [135110] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, sym___dolcbr, - ACTIONS(6402), 1, + ACTIONS(6399), 1, sym___single_quote, - STATE(3644), 1, - sym_line_comment, - STATE(3654), 1, + STATE(3620), 1, aux_sym_c_string_literal_repeat1, - STATE(3792), 1, + STATE(3841), 1, sym_string_interpolation, - [134044] = 9, - ACTIONS(497), 1, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3650), 2, + sym_line_comment, + sym_block_comment, + [135137] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6406), 1, + ACTIONS(6393), 1, sym___double_quote, - STATE(3645), 1, - sym_line_comment, - STATE(3646), 1, + STATE(3618), 1, aux_sym_c_string_literal_repeat2, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [134072] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + STATE(3651), 2, + sym_line_comment, + sym_block_comment, + [135164] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6400), 1, + ACTIONS(6384), 1, sym___double_quote, - STATE(3568), 1, + STATE(3547), 1, aux_sym_c_string_literal_repeat2, - STATE(3646), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [134100] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(6244), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + STATE(3652), 2, + sym_line_comment, sym_block_comment, - ACTIONS(2669), 1, + [135191] = 9, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6401), 1, anon_sym_DOT, - STATE(3647), 1, + ACTIONS(6403), 1, + anon_sym_RBRACE, + ACTIONS(6405), 1, + sym_int_literal, + ACTIONS(6407), 1, + aux_sym_format_specifier_token1, + ACTIONS(6409), 1, + aux_sym_format_specifier_token2, + ACTIONS(6411), 1, + anon_sym_0, + STATE(3653), 2, sym_line_comment, - ACTIONS(3133), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [134120] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6406), 1, - sym___single_quote, - STATE(3639), 1, - aux_sym_c_string_literal_repeat1, - STATE(3648), 1, - sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [134148] = 9, - ACTIONS(497), 1, + [135220] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, - sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6408), 1, - sym___single_quote, - STATE(3591), 1, - aux_sym_c_string_literal_repeat1, - STATE(3649), 1, + anon_sym_SLASH_STAR, + ACTIONS(6413), 1, + anon_sym_RBRACE, + STATE(3628), 1, + aux_sym_selective_import_list_repeat1, + STATE(3654), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [134176] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6161), 1, - anon_sym_LBRACE, - STATE(3650), 1, - sym_line_comment, - STATE(3779), 1, - sym_selective_import_list, - ACTIONS(6410), 4, + ACTIONS(6370), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [134198] = 9, - ACTIONS(497), 1, + anon_sym_COMMA, + [135243] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6408), 1, + ACTIONS(6361), 1, sym___double_quote, - STATE(3597), 1, + STATE(3613), 1, aux_sym_c_string_literal_repeat2, - STATE(3651), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [134226] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6412), 1, - sym___single_quote, - STATE(3600), 1, - aux_sym_c_string_literal_repeat1, - STATE(3652), 1, + aux_sym_c_string_literal_token2, + STATE(3655), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [134254] = 9, - ACTIONS(497), 1, + sym_block_comment, + [135270] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - ACTIONS(6412), 1, + ACTIONS(6415), 1, sym___double_quote, - STATE(3601), 1, + STATE(3655), 1, aux_sym_c_string_literal_repeat2, - STATE(3653), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [134282] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6258), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6260), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6262), 1, - sym___dolcbr, - ACTIONS(6414), 1, - sym___single_quote, - STATE(3569), 1, - aux_sym_c_string_literal_repeat1, - STATE(3654), 1, + aux_sym_c_string_literal_token2, + STATE(3656), 2, sym_line_comment, - STATE(3792), 1, - sym_string_interpolation, - [134310] = 9, - ACTIONS(497), 1, + sym_block_comment, + [135297] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6264), 1, - sym___double_quote, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, + anon_sym_SLASH_STAR, + ACTIONS(6246), 1, sym___dolcbr, - STATE(3570), 1, + ACTIONS(6399), 1, + sym___double_quote, + STATE(3585), 1, aux_sym_c_string_literal_repeat2, - STATE(3655), 1, - sym_line_comment, - STATE(3795), 1, + STATE(3842), 1, sym_string_interpolation, - [134338] = 9, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6266), 1, + ACTIONS(6244), 2, sym_escape_sequence, - ACTIONS(6268), 1, aux_sym_c_string_literal_token2, - ACTIONS(6270), 1, - sym___dolcbr, - ACTIONS(6414), 1, - sym___double_quote, - STATE(3568), 1, - aux_sym_c_string_literal_repeat2, - STATE(3656), 1, + STATE(3657), 2, sym_line_comment, - STATE(3795), 1, - sym_string_interpolation, - [134366] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5942), 1, - sym_identifier, - ACTIONS(6202), 1, - anon_sym_mut, - ACTIONS(6204), 1, - anon_sym_shared, - STATE(3657), 1, - sym_line_comment, - STATE(4367), 1, - sym_capture, - STATE(4391), 1, - sym_mutability_modifiers, - STATE(4392), 1, - sym_reference_expression, - [134394] = 6, + [135324] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6416), 1, - anon_sym_LBRACE, - STATE(2444), 1, - sym_type_initializer_body, - STATE(3658), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6380), 1, + sym___single_quote, + STATE(3617), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3658), 2, sym_line_comment, - ACTIONS(3265), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [134415] = 7, + sym_block_comment, + [135351] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6418), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym__struct_body, - STATE(3659), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6256), 1, + sym___dolcbr, + ACTIONS(6415), 1, + sym___single_quote, + STATE(3621), 1, + aux_sym_c_string_literal_repeat1, + STATE(3841), 1, + sym_string_interpolation, + ACTIONS(6254), 2, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + STATE(3659), 2, sym_line_comment, - STATE(4394), 1, - sym_generic_parameters, - ACTIONS(4970), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [134438] = 5, - ACTIONS(497), 1, + sym_block_comment, + [135378] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6423), 1, - anon_sym_RBRACE, + anon_sym_SLASH_STAR, + ACTIONS(5044), 1, + anon_sym_COMMA, + STATE(3624), 1, + aux_sym_strictly_expression_list_repeat1, STATE(3660), 2, sym_line_comment, - aux_sym__statement_list_repeat1, - ACTIONS(6420), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [134457] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6427), 1, - anon_sym_RBRACE, - STATE(3660), 1, - aux_sym__statement_list_repeat1, - STATE(3661), 1, - sym_line_comment, - ACTIONS(6425), 3, + ACTIONS(4041), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [134478] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + [135401] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - STATE(1519), 1, - sym__interface_body, - STATE(3662), 1, - sym_line_comment, - STATE(4117), 1, - sym_generic_parameters, - ACTIONS(4970), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [134501] = 7, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6418), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1559), 1, + STATE(1542), 1, sym__struct_body, - STATE(3663), 1, - sym_line_comment, - STATE(4108), 1, + STATE(4356), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134524] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3664), 1, + STATE(3661), 2, sym_line_comment, - ACTIONS(6431), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [134541] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [135425] = 8, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6419), 1, + anon_sym_LBRACE, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(6423), 1, + anon_sym_RBRACK, + STATE(2380), 1, + sym_type_initializer_body, + STATE(4018), 1, + aux_sym_type_parameters_repeat1, + STATE(3662), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6429), 1, + [135451] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(1571), 1, + STATE(1574), 1, sym__interface_body, - STATE(3665), 1, - sym_line_comment, - STATE(4338), 1, + STATE(4215), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134564] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6202), 1, - anon_sym_mut, - ACTIONS(6204), 1, - anon_sym_shared, - ACTIONS(6433), 1, - sym_identifier, - STATE(3666), 1, + STATE(3663), 2, sym_line_comment, - STATE(4333), 1, - sym_parameter_declaration, - STATE(4709), 1, - sym_mutability_modifiers, - [134589] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - STATE(3667), 1, - sym_line_comment, - ACTIONS(6435), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [134606] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135475] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6076), 1, - anon_sym_RBRACE, - STATE(3668), 1, - sym_line_comment, - ACTIONS(6437), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [134625] = 7, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6429), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1524), 1, - sym__interface_body, - STATE(3669), 1, - sym_line_comment, - STATE(4138), 1, + STATE(1572), 1, + sym__struct_body, + STATE(4217), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134648] = 5, + STATE(3664), 2, + sym_line_comment, + sym_block_comment, + [135499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(2444), 1, - sym_type_initializer_body, - STATE(3670), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6429), 1, + anon_sym_RBRACE, + STATE(3689), 1, + aux_sym__statement_list_repeat1, + STATE(3665), 2, sym_line_comment, - ACTIONS(3257), 4, + sym_block_comment, + ACTIONS(6427), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [135521] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6419), 1, anon_sym_LBRACE, + ACTIONS(6431), 1, anon_sym_COMMA, + ACTIONS(6433), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [134667] = 7, + STATE(2380), 1, + sym_type_initializer_body, + STATE(4023), 1, + aux_sym_type_parameters_repeat1, + STATE(3666), 2, + sym_line_comment, + sym_block_comment, + [135547] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6435), 1, + anon_sym_STAR_SLASH, + STATE(3694), 1, + aux_sym_block_comment_repeat1, + STATE(3667), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6418), 1, + ACTIONS(6307), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + [135569] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(1526), 1, + STATE(1593), 1, sym__struct_body, - STATE(3671), 1, - sym_line_comment, - STATE(4192), 1, + STATE(4251), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134690] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5138), 1, - anon_sym_LBRACE, - STATE(1351), 1, - sym_block, - STATE(3672), 1, + STATE(3668), 2, sym_line_comment, - ACTIONS(6439), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [134711] = 5, - ACTIONS(497), 1, + sym_block_comment, + [135593] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3673), 1, - sym_line_comment, - ACTIONS(6441), 2, + anon_sym_SLASH_STAR, + ACTIONS(6440), 1, anon_sym_RBRACE, - sym_identifier, - ACTIONS(6443), 3, + ACTIONS(6437), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [134730] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3669), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6418), 1, + aux_sym__statement_list_repeat1, + [135613] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(1612), 1, - sym__struct_body, - STATE(3674), 1, - sym_line_comment, - STATE(4354), 1, + STATE(1519), 1, + sym__interface_body, + STATE(4226), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134753] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3670), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6429), 1, + [135637] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(1530), 1, + STATE(1544), 1, sym__interface_body, - STATE(3675), 1, - sym_line_comment, - STATE(4417), 1, + STATE(4361), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [134776] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5995), 1, - anon_sym_RBRACE, - STATE(3676), 1, + STATE(3671), 2, sym_line_comment, - ACTIONS(6445), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [134795] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6416), 1, + [135661] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6449), 1, - anon_sym_RPAREN, - STATE(2444), 1, - sym_type_initializer_body, - STATE(3677), 1, + STATE(1567), 1, + sym__struct_body, + STATE(4229), 1, + sym_generic_parameters, + ACTIONS(4986), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3672), 2, sym_line_comment, - STATE(3868), 1, - aux_sym_type_parameters_repeat1, - [134820] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6453), 1, - anon_sym_RBRACE, - STATE(3661), 1, - aux_sym__statement_list_repeat1, - STATE(3678), 1, - sym_line_comment, - ACTIONS(6451), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [134841] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135685] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6198), 1, anon_sym_mut, - STATE(3679), 1, + ACTIONS(6200), 1, + anon_sym_shared, + ACTIONS(6442), 1, + sym_identifier, + STATE(4188), 1, + sym_parameter_declaration, + STATE(4594), 1, + sym_mutability_modifiers, + STATE(3673), 2, sym_line_comment, - STATE(4099), 1, - sym_var_definition, - STATE(4382), 1, - sym_range_clause, - STATE(4583), 1, - sym_var_definition_list, - [134866] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2444), 1, + [135711] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2380), 1, sym_type_initializer_body, - STATE(3680), 1, + STATE(3674), 2, sym_line_comment, - ACTIONS(3269), 4, + sym_block_comment, + ACTIONS(3352), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [134885] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135731] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5086), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2477), 1, + STATE(2393), 1, sym_block, - STATE(3681), 1, + STATE(3675), 2, sym_line_comment, - ACTIONS(3273), 3, + sym_block_comment, + ACTIONS(3356), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [134906] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135753] = 4, ACTIONS(5), 1, - sym_block_comment, - STATE(3682), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3676), 2, sym_line_comment, - ACTIONS(2669), 5, + sym_block_comment, + ACTIONS(2865), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [134923] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135771] = 8, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6202), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6198), 1, anon_sym_mut, - ACTIONS(6204), 1, + ACTIONS(6200), 1, anon_sym_shared, - ACTIONS(6459), 1, + ACTIONS(6444), 1, sym_identifier, - STATE(3683), 1, - sym_line_comment, - STATE(4397), 1, + STATE(4271), 1, sym_mutable_identifier, - STATE(4687), 1, + STATE(4640), 1, sym_mutability_modifiers, - [134948] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3684), 1, + STATE(3677), 2, sym_line_comment, - ACTIONS(1719), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [134965] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6416), 1, - anon_sym_LBRACE, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_RBRACK, - STATE(2444), 1, - sym_type_initializer_body, - STATE(3685), 1, - sym_line_comment, - STATE(3907), 1, - aux_sym_type_parameters_repeat1, - [134990] = 8, + [135797] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_mut, - STATE(3686), 1, - sym_line_comment, - STATE(4099), 1, - sym_var_definition, - STATE(4122), 1, - sym_range_clause, - STATE(4583), 1, - sym_var_definition_list, - [135015] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3687), 1, + anon_sym_SLASH_STAR, + STATE(3678), 2, sym_line_comment, - ACTIONS(6398), 5, + sym_block_comment, + ACTIONS(6446), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [135032] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_SEMI, + anon_sym_LBRACE, + [135815] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1595), 1, + sym__interface_body, + STATE(4259), 1, + sym_generic_parameters, + ACTIONS(4986), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(3679), 2, + sym_line_comment, sym_block_comment, + [135839] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2348), 1, + STATE(1355), 1, sym_block, - STATE(3688), 1, + STATE(3680), 2, sym_line_comment, - ACTIONS(6439), 3, + sym_block_comment, + ACTIONS(6448), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, - [135053] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3689), 1, - sym_line_comment, - ACTIONS(6465), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [135070] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6467), 1, - anon_sym_LPAREN, - STATE(1875), 1, - sym_signature, - STATE(3690), 1, - sym_line_comment, - STATE(1152), 2, - sym_parameter_list, - sym_type_parameter_list, - [135090] = 6, + [135861] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5140), 1, - anon_sym_LBRACE, - ACTIONS(6469), 1, - anon_sym_DOLLARif, - STATE(3691), 1, - sym_line_comment, - STATE(1923), 2, - sym_compile_time_if_expression, - sym_block, - [135110] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3692), 1, + anon_sym_SLASH_STAR, + STATE(3681), 2, sym_line_comment, - ACTIONS(4403), 4, + sym_block_comment, + ACTIONS(6450), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [135126] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + [135879] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3693), 1, - sym_line_comment, - STATE(4343), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135146] = 4, - ACTIONS(497), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3694), 1, - sym_line_comment, - ACTIONS(4427), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(6001), 1, anon_sym_RBRACE, - [135162] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3695), 1, - sym_line_comment, - ACTIONS(6471), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [135178] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3696), 1, + STATE(3682), 2, sym_line_comment, - STATE(4288), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135198] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6473), 1, + ACTIONS(6452), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, - ACTIONS(6475), 1, - anon_sym_RPAREN, - STATE(3695), 1, - sym_global_var_definition, - STATE(3697), 1, - sym_line_comment, - STATE(3788), 1, - aux_sym_global_var_declaration_repeat1, - [135220] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6477), 1, - anon_sym_LPAREN, - STATE(1698), 1, - sym_signature, - STATE(3698), 1, - sym_line_comment, - STATE(1136), 2, - sym_parameter_list, - sym_type_parameter_list, - [135240] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [135899] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3699), 1, - sym_line_comment, - STATE(4128), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135260] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3700), 1, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2355), 1, + sym_block, + STATE(3683), 2, sym_line_comment, - STATE(4129), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135280] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6479), 1, - anon_sym_COMMA, - STATE(3701), 1, - sym_line_comment, - STATE(3797), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6481), 2, - anon_sym_GT, + ACTIONS(6448), 3, + anon_sym_SEMI, anon_sym_RBRACK, - [135300] = 6, + anon_sym_COLON, + [135921] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3702), 1, - sym_line_comment, - STATE(4126), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135320] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3703), 1, + anon_sym_SLASH_STAR, + STATE(3684), 2, sym_line_comment, - ACTIONS(1757), 4, + sym_block_comment, + ACTIONS(1765), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [135336] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3704), 1, - sym_line_comment, - STATE(4274), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135356] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6483), 1, - sym_identifier, - STATE(3705), 1, - sym_line_comment, - STATE(3894), 1, - sym_generic_parameter, - ACTIONS(6485), 2, - anon_sym_GT, - anon_sym_RBRACK, - [135376] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6206), 1, - anon_sym_LPAREN, - STATE(1476), 1, - sym_signature, - STATE(3706), 1, - sym_line_comment, - STATE(1129), 2, - sym_parameter_list, - sym_type_parameter_list, - [135396] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3707), 1, - sym_line_comment, - STATE(4143), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135416] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6487), 1, anon_sym_COMMA, - ACTIONS(6490), 2, - anon_sym_GT, - anon_sym_RBRACK, - STATE(3708), 2, - sym_line_comment, - aux_sym_generic_parameters_repeat1, - [135434] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + [135939] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6492), 1, - anon_sym_LPAREN, - STATE(1027), 1, - sym_signature, - STATE(3709), 1, - sym_line_comment, - STATE(207), 2, - sym_parameter_list, - sym_type_parameter_list, - [135454] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3710), 1, + ACTIONS(6038), 1, + anon_sym_RBRACE, + STATE(3685), 2, sym_line_comment, - STATE(4362), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135474] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3711), 1, - sym_line_comment, - STATE(4381), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135494] = 4, - ACTIONS(497), 1, + ACTIONS(6454), 4, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [135959] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3712), 1, + anon_sym_SLASH_STAR, + STATE(3686), 2, sym_line_comment, - ACTIONS(4395), 4, + sym_block_comment, + ACTIONS(6389), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, - [135510] = 7, - ACTIONS(3), 1, + [135977] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6456), 1, + sym_identifier, + ACTIONS(6458), 1, + anon_sym_mut, + STATE(4104), 1, + sym_var_definition, + STATE(4289), 1, + sym_range_clause, + STATE(4634), 1, + sym_var_definition_list, + STATE(3687), 2, + sym_line_comment, + sym_block_comment, + [136003] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6419), 1, + anon_sym_LBRACE, + STATE(2380), 1, + sym_type_initializer_body, + STATE(3688), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6494), 1, - sym_identifier, - ACTIONS(6496), 1, + ACTIONS(3348), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3713), 1, - sym_line_comment, - STATE(3714), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - [135532] = 4, - ACTIONS(497), 1, + anon_sym_RBRACK, + [136025] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3714), 1, + anon_sym_SLASH_STAR, + ACTIONS(6462), 1, + anon_sym_RBRACE, + STATE(3669), 1, + aux_sym__statement_list_repeat1, + STATE(3689), 2, sym_line_comment, - ACTIONS(6498), 4, + sym_block_comment, + ACTIONS(6460), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [135548] = 4, - ACTIONS(497), 1, + [136047] = 8, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6456), 1, + sym_identifier, + ACTIONS(6458), 1, + anon_sym_mut, + STATE(4104), 1, + sym_var_definition, + STATE(4117), 1, + sym_range_clause, + STATE(4634), 1, + sym_var_definition_list, + STATE(3690), 2, + sym_line_comment, sym_block_comment, - STATE(3715), 1, + [136073] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2380), 1, + sym_type_initializer_body, + STATE(3691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3340), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [136093] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3692), 2, sym_line_comment, - ACTIONS(4387), 4, + sym_block_comment, + ACTIONS(6464), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [135564] = 4, - ACTIONS(497), 1, + sym_identifier, + [136111] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3716), 1, + anon_sym_SLASH_STAR, + ACTIONS(6466), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(3693), 2, sym_line_comment, - ACTIONS(4190), 4, + sym_block_comment, + ACTIONS(6468), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [135580] = 7, + [136131] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6473), 1, + anon_sym_STAR_SLASH, + ACTIONS(6470), 3, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + STATE(3694), 3, + sym_line_comment, sym_block_comment, + aux_sym_block_comment_repeat1, + [136151] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5138), 1, anon_sym_LBRACE, - ACTIONS(6500), 1, + ACTIONS(6475), 1, anon_sym_if, - STATE(1395), 1, + STATE(2571), 1, sym_block, - STATE(1400), 1, + STATE(2634), 1, sym_if_expression, - STATE(3717), 1, + STATE(3695), 2, sym_line_comment, - [135602] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5138), 1, + [136174] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, - anon_sym_DOLLARif, - STATE(3718), 1, - sym_line_comment, - STATE(1393), 2, - sym_compile_time_if_expression, + ACTIONS(6477), 1, + anon_sym_if, + STATE(1031), 1, + sym_if_expression, + STATE(1032), 1, sym_block, - [135622] = 6, - ACTIONS(3), 1, + STATE(3696), 2, + sym_line_comment, + sym_block_comment, + [136197] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4277), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3697), 2, + sym_line_comment, + sym_block_comment, + [136218] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6479), 1, + anon_sym_as, + ACTIONS(6481), 1, + anon_sym_LBRACE, + STATE(1573), 1, + sym__enum_body, + STATE(4216), 1, + sym_enum_backed_type, + STATE(3698), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [136241] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3719), 1, - sym_line_comment, - STATE(4297), 1, + STATE(4208), 1, sym_signature, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [135642] = 4, - ACTIONS(497), 1, + STATE(3699), 2, + sym_line_comment, + sym_block_comment, + [136262] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3720), 1, + anon_sym_SLASH_STAR, + STATE(3700), 2, sym_line_comment, - ACTIONS(4379), 4, + sym_block_comment, + ACTIONS(6483), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [135658] = 6, + anon_sym_SEMI, + [136279] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3721), 1, - sym_line_comment, - STATE(4198), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135678] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3722), 1, + anon_sym_SLASH_STAR, + STATE(3701), 2, sym_line_comment, - ACTIONS(4371), 4, + sym_block_comment, + ACTIONS(6440), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [135694] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [136296] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6504), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6485), 1, sym_identifier, - ACTIONS(6506), 1, + ACTIONS(6487), 1, anon_sym_DOLLAR, - STATE(3723), 1, - sym_line_comment, - STATE(1860), 2, + STATE(2413), 2, sym_reference_expression, sym_compile_time_selector_expression, - [135714] = 4, - ACTIONS(497), 1, + STATE(3702), 2, + sym_line_comment, + sym_block_comment, + [136317] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4246), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3703), 2, + sym_line_comment, sym_block_comment, - STATE(3724), 1, + [136338] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6489), 1, + sym_identifier, + ACTIONS(6492), 1, + anon_sym_RPAREN, + STATE(3833), 1, + sym_const_definition, + STATE(3704), 3, sym_line_comment, - ACTIONS(4327), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [135730] = 6, - ACTIONS(3), 1, + sym_block_comment, + aux_sym_const_declaration_repeat1, + [136359] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6494), 1, + anon_sym_COMMA, + ACTIONS(6497), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(3705), 3, + sym_line_comment, + sym_block_comment, + aux_sym_type_parameters_repeat1, + [136378] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6499), 1, + sym_identifier, + ACTIONS(6502), 1, + anon_sym_RPAREN, + STATE(3829), 1, + sym_global_var_definition, + STATE(3706), 3, + sym_line_comment, sym_block_comment, - ACTIONS(5142), 1, + aux_sym_global_var_declaration_repeat1, + [136399] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_DOLLARif, - STATE(3725), 1, - sym_line_comment, - STATE(1253), 2, - sym_compile_time_if_expression, + ACTIONS(6504), 1, + anon_sym_if, + STATE(1247), 1, sym_block, - [135750] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(1269), 1, + sym_if_expression, + STATE(3707), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5138), 1, + [136422] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, + ACTIONS(6506), 1, anon_sym_DOLLARif, - STATE(3726), 1, - sym_line_comment, - STATE(1406), 2, + STATE(1246), 2, sym_compile_time_if_expression, sym_block, - [135770] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3708), 2, + sym_line_comment, + sym_block_comment, + [136443] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6508), 1, + anon_sym_LPAREN, + STATE(833), 1, + sym_signature, + STATE(70), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3709), 2, + sym_line_comment, sym_block_comment, + [136464] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6510), 1, sym_identifier, - ACTIONS(6512), 1, - anon_sym_DOLLAR, - STATE(3727), 1, + STATE(4075), 1, + sym_generic_parameter, + ACTIONS(6512), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3710), 2, sym_line_comment, - STATE(1741), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [135790] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [136485] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6514), 1, - sym_identifier, - ACTIONS(6516), 1, - anon_sym_DOLLAR, - STATE(3728), 1, + anon_sym_COMMA, + STATE(3756), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6512), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3711), 2, sym_line_comment, - STATE(1126), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [135810] = 7, - ACTIONS(3), 1, + sym_block_comment, + [136506] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1468), 1, + sym_signature, + STATE(1130), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3712), 2, + sym_line_comment, + sym_block_comment, + [136527] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, + anon_sym_LBRACE, + ACTIONS(6506), 1, + anon_sym_DOLLARif, + STATE(1216), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3713), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6518), 1, + [136548] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6516), 1, sym_identifier, - STATE(3495), 1, - sym_import_path, - STATE(3504), 1, - sym_import_name, - STATE(3729), 1, + ACTIONS(6518), 1, + anon_sym_DOLLAR, + STATE(1878), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3714), 2, sym_line_comment, - STATE(3847), 1, - sym_import_spec, - [135832] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [136569] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6520), 1, sym_identifier, ACTIONS(6522), 1, anon_sym_RBRACE, - STATE(3673), 1, + STATE(3693), 1, sym_enum_field_definition, - STATE(3730), 1, - sym_line_comment, - STATE(3812), 1, + STATE(3827), 1, aux_sym__enum_body_repeat1, - [135854] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3715), 2, + sym_line_comment, sym_block_comment, + [136592] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, + anon_sym_LBRACE, ACTIONS(6524), 1, - sym_identifier, - ACTIONS(6526), 1, - anon_sym_DOLLAR, - STATE(3731), 1, + anon_sym_if, + STATE(782), 1, + sym_if_expression, + STATE(783), 1, + sym_block, + STATE(3716), 2, sym_line_comment, - STATE(2103), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [135874] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3732), 1, - sym_line_comment, - STATE(4254), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [135894] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [136615] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(6526), 1, + anon_sym_DOLLARif, + STATE(785), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3717), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [136636] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3733), 1, - sym_line_comment, - STATE(4305), 1, + STATE(4165), 1, sym_signature, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [135914] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3718), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [136657] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1468), 1, + STATE(4312), 1, sym_signature, - STATE(3734), 1, - sym_line_comment, - STATE(1129), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [135934] = 4, - ACTIONS(497), 1, + STATE(3719), 2, + sym_line_comment, + sym_block_comment, + [136678] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3735), 1, + anon_sym_SLASH_STAR, + STATE(3720), 2, sym_line_comment, - ACTIONS(6410), 4, + sym_block_comment, + ACTIONS(4305), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [135950] = 6, + anon_sym_RBRACE, + [136695] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5086), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - anon_sym_DOLLARif, - STATE(3736), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3721), 2, sym_line_comment, - STATE(2369), 2, - sym_compile_time_if_expression, - sym_block, - [135970] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(6508), 1, - anon_sym_DOLLARif, - STATE(3737), 1, - sym_line_comment, - STATE(1244), 2, - sym_compile_time_if_expression, - sym_block, - [135990] = 7, + ACTIONS(6528), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + sym___dolcbr, + sym___single_quote, + [136712] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6530), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + sym___dolcbr, + sym___single_quote, + [136729] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6532), 1, + anon_sym_LPAREN, + STATE(1072), 1, + sym_signature, + STATE(212), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3723), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5142), 1, - anon_sym_LBRACE, - ACTIONS(6530), 1, - anon_sym_if, - STATE(1241), 1, - sym_if_expression, - STATE(1242), 1, - sym_block, - STATE(3738), 1, + [136750] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6536), 1, + anon_sym_RPAREN, + STATE(3704), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3724), 2, sym_line_comment, - [136012] = 6, + sym_block_comment, + [136773] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3725), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4321), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [136790] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1499), 1, + STATE(1471), 1, sym_signature, - STATE(3739), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [136032] = 4, - ACTIONS(497), 1, + STATE(3726), 2, + sym_line_comment, + sym_block_comment, + [136811] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3740), 1, + anon_sym_SLASH_STAR, + STATE(3727), 2, sym_line_comment, - ACTIONS(4260), 4, + sym_block_comment, + ACTIONS(4317), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [136048] = 6, + [136828] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6538), 1, + anon_sym_RPAREN, + STATE(3704), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3728), 2, + sym_line_comment, + sym_block_comment, + [136851] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6540), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + sym___dolcbr, + sym___single_quote, + [136868] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6544), 1, + anon_sym_RPAREN, + STATE(3706), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3829), 1, + sym_global_var_definition, + STATE(3730), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3741), 1, + [136891] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3731), 2, sym_line_comment, - STATE(4313), 1, + sym_block_comment, + ACTIONS(6546), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + sym___dolcbr, + sym___single_quote, + [136908] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1473), 1, sym_signature, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [136068] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3732), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6532), 1, + [136929] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(2470), 1, + STATE(4230), 1, sym_signature, - STATE(3742), 1, - sym_line_comment, - STATE(1441), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [136088] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6536), 1, - aux_sym_c_string_literal_token2, - STATE(3743), 1, + STATE(3733), 2, sym_line_comment, - ACTIONS(6534), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [136106] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5086), 1, + [136950] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6548), 1, anon_sym_DOLLARif, - STATE(3744), 1, - sym_line_comment, - STATE(2387), 2, + STATE(1033), 2, sym_compile_time_if_expression, sym_block, - [136126] = 6, - ACTIONS(3), 1, + STATE(3734), 2, + sym_line_comment, + sym_block_comment, + [136971] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6538), 1, + anon_sym_RPAREN, + STATE(3815), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3735), 2, + sym_line_comment, + sym_block_comment, + [136994] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6550), 1, + anon_sym_RPAREN, + STATE(3730), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3829), 1, + sym_global_var_definition, + STATE(3736), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6538), 1, + [137017] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6552), 1, sym_identifier, - ACTIONS(6540), 1, + ACTIONS(6554), 1, anon_sym_DOLLAR, - STATE(3745), 1, - sym_line_comment, - STATE(2451), 2, + STATE(1982), 2, sym_reference_expression, sym_compile_time_selector_expression, - [136146] = 6, + STATE(3737), 2, + sym_line_comment, + sym_block_comment, + [137038] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3738), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + ACTIONS(4309), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [137055] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6556), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(2776), 1, sym_signature, - STATE(3746), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1617), 2, sym_parameter_list, sym_type_parameter_list, - [136166] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3739), 2, + sym_line_comment, + sym_block_comment, + [137076] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6558), 1, + anon_sym_RPAREN, + STATE(3728), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3740), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5086), 1, + [137099] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6479), 1, + anon_sym_as, + ACTIONS(6481), 1, anon_sym_LBRACE, - ACTIONS(6542), 1, - anon_sym_if, - STATE(2388), 1, - sym_block, - STATE(2389), 1, - sym_if_expression, - STATE(3747), 1, + STATE(1594), 1, + sym__enum_body, + STATE(4112), 1, + sym_enum_backed_type, + STATE(3741), 2, sym_line_comment, - [136188] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6546), 1, - aux_sym_c_string_literal_token2, - STATE(3748), 1, - sym_line_comment, - ACTIONS(6544), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [136206] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [137122] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3749), 1, - sym_line_comment, - STATE(4240), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [136226] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3750), 1, - sym_line_comment, - STATE(4292), 1, + STATE(4365), 1, sym_signature, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [136246] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3742), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3751), 1, + [137143] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6479), 1, + anon_sym_as, + ACTIONS(6481), 1, + anon_sym_LBRACE, + STATE(1568), 1, + sym__enum_body, + STATE(4228), 1, + sym_enum_backed_type, + STATE(3743), 2, sym_line_comment, - STATE(4294), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [136266] = 4, - ACTIONS(497), 1, + sym_block_comment, + [137166] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3752), 1, + anon_sym_SLASH_STAR, + STATE(3744), 2, sym_line_comment, - ACTIONS(4461), 4, + sym_block_comment, + ACTIONS(4256), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [136282] = 4, - ACTIONS(497), 1, + [137183] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3753), 1, + anon_sym_SLASH_STAR, + STATE(3745), 2, sym_line_comment, - ACTIONS(4315), 4, + sym_block_comment, + ACTIONS(4345), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [136298] = 6, + anon_sym_RBRACE, + [137200] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3754), 1, - sym_line_comment, - STATE(4411), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [136318] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3755), 1, + anon_sym_SLASH_STAR, + STATE(3746), 2, sym_line_comment, - ACTIONS(4359), 4, + sym_block_comment, + ACTIONS(6560), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [136334] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [137217] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3756), 1, - sym_line_comment, - STATE(4326), 1, + STATE(4293), 1, sym_signature, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [136354] = 6, - ACTIONS(3), 1, + STATE(3747), 2, + sym_line_comment, + sym_block_comment, + [137238] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(6562), 1, + anon_sym_if, + STATE(2447), 1, + sym_if_expression, + STATE(2464), 1, + sym_block, + STATE(3748), 2, + sym_line_comment, + sym_block_comment, + [137261] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(6564), 1, + anon_sym_DOLLARif, + STATE(2462), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3749), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [137282] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6566), 1, anon_sym_LPAREN, - STATE(3757), 1, - sym_line_comment, - STATE(4324), 1, + STATE(2274), 1, sym_signature, - STATE(2954), 2, + STATE(1436), 2, sym_parameter_list, sym_type_parameter_list, - [136374] = 6, - ACTIONS(3), 1, + STATE(3750), 2, + sym_line_comment, + sym_block_comment, + [137303] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(6564), 1, + anon_sym_DOLLARif, + STATE(2448), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3751), 2, + sym_line_comment, + sym_block_comment, + [137324] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6568), 1, + sym_identifier, + ACTIONS(6570), 1, + anon_sym_DOLLAR, + STATE(1039), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3752), 2, + sym_line_comment, + sym_block_comment, + [137345] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6198), 1, + anon_sym_mut, + ACTIONS(6200), 1, + anon_sym_shared, + ACTIONS(6572), 1, + sym_identifier, + STATE(4564), 1, + sym_mutability_modifiers, + STATE(3753), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [137368] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6574), 1, anon_sym_LPAREN, - STATE(1515), 1, + STATE(1934), 1, sym_signature, - STATE(3758), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1152), 2, sym_parameter_list, sym_type_parameter_list, - [136394] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3754), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6494), 1, + [137389] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6510), 1, sym_identifier, - ACTIONS(6496), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3759), 1, + STATE(4075), 1, + sym_generic_parameter, + ACTIONS(6576), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3755), 2, sym_line_comment, - STATE(3856), 1, - aux_sym_const_declaration_repeat1, - [136416] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [137410] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6578), 1, + anon_sym_COMMA, + ACTIONS(6581), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3756), 3, + sym_line_comment, sym_block_comment, + aux_sym_generic_parameters_repeat1, + [137429] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, + anon_sym_LBRACE, ACTIONS(6548), 1, - anon_sym_EQ, - STATE(3760), 1, + anon_sym_DOLLARif, + STATE(1044), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3757), 2, sym_line_comment, - STATE(4683), 1, + sym_block_comment, + [137450] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6583), 1, + anon_sym_EQ, + STATE(4555), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [136436] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3758), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6202), 1, - anon_sym_mut, - ACTIONS(6204), 1, - anon_sym_shared, - ACTIONS(6550), 1, + [137471] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, sym_identifier, - STATE(3761), 1, + ACTIONS(6585), 1, + anon_sym_RPAREN, + STATE(3724), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3759), 2, sym_line_comment, - STATE(4686), 1, - sym_mutability_modifiers, - [136458] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6552), 1, - anon_sym_as, - ACTIONS(6554), 1, - anon_sym_LBRACE, - STATE(1533), 1, - sym__enum_body, - STATE(3762), 1, - sym_line_comment, - STATE(4347), 1, - sym_enum_backed_type, - [136480] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [137494] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4368), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3760), 2, + sym_line_comment, sym_block_comment, + [137515] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1456), 1, + STATE(1480), 1, sym_signature, - STATE(3763), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [136500] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3761), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5144), 1, + [137536] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - ACTIONS(6556), 1, - anon_sym_if, - STATE(1079), 1, + ACTIONS(6587), 1, + anon_sym_DOLLARif, + STATE(2126), 2, + sym_compile_time_if_expression, sym_block, - STATE(1081), 1, - sym_if_expression, - STATE(3764), 1, + STATE(3762), 2, sym_line_comment, - [136522] = 6, - ACTIONS(3), 1, + sym_block_comment, + [137557] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6589), 1, + sym_identifier, + ACTIONS(6591), 1, + anon_sym_DOLLAR, + STATE(2525), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3763), 2, + sym_line_comment, + sym_block_comment, + [137578] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4174), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3764), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5144), 1, + [137599] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - ACTIONS(6558), 1, + ACTIONS(6587), 1, anon_sym_DOLLARif, - STATE(3765), 1, - sym_line_comment, - STATE(1078), 2, + STATE(2099), 2, sym_compile_time_if_expression, sym_block, - [136542] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3765), 2, + sym_line_comment, + sym_block_comment, + [137620] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, + anon_sym_LBRACE, + ACTIONS(6593), 1, + anon_sym_if, + STATE(1972), 1, + sym_if_expression, + STATE(2098), 1, + sym_block, + STATE(3766), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [137643] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6595), 1, anon_sym_LPAREN, - STATE(3766), 1, - sym_line_comment, - STATE(4303), 1, + STATE(1390), 1, sym_signature, - STATE(2954), 2, + STATE(1008), 2, sym_parameter_list, sym_type_parameter_list, - [136562] = 7, + STATE(3767), 2, + sym_line_comment, + sym_block_comment, + [137664] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6540), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + sym___dolcbr, + sym___double_quote, + [137681] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4342), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3769), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6494), 1, - sym_identifier, - ACTIONS(6560), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3767), 1, + [137702] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3770), 2, sym_line_comment, - STATE(3853), 1, - aux_sym_const_declaration_repeat1, - [136584] = 7, + sym_block_comment, + ACTIONS(6546), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + sym___dolcbr, + sym___double_quote, + [137719] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6530), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + sym___dolcbr, + sym___double_quote, + [137736] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6597), 1, + sym_identifier, + STATE(3497), 1, + sym_import_path, + STATE(3502), 1, + sym_import_name, + STATE(3854), 1, + sym_import_spec, + STATE(3772), 2, + sym_line_comment, + sym_block_comment, + [137759] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4319), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3773), 2, + sym_line_comment, + sym_block_comment, + [137780] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6599), 1, + anon_sym_LPAREN, + STATE(3468), 1, + sym_signature, + STATE(2485), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3774), 2, + sym_line_comment, + sym_block_comment, + [137801] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4255), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3775), 2, + sym_line_comment, sym_block_comment, + [137822] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(6562), 1, + ACTIONS(6601), 1, anon_sym_if, - STATE(2925), 1, - sym_block, STATE(2926), 1, + sym_block, + STATE(2927), 1, sym_if_expression, - STATE(3768), 1, + STATE(3776), 2, sym_line_comment, - [136606] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [137845] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, + ACTIONS(6603), 1, anon_sym_DOLLARif, - STATE(3769), 1, - sym_line_comment, - STATE(2910), 2, + STATE(2923), 2, sym_compile_time_if_expression, sym_block, - [136626] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6552), 1, - anon_sym_as, - ACTIONS(6554), 1, - anon_sym_LBRACE, - STATE(1613), 1, - sym__enum_body, - STATE(3770), 1, + STATE(3777), 2, sym_line_comment, - STATE(4340), 1, - sym_enum_backed_type, - [136648] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6473), 1, - sym_identifier, - ACTIONS(6566), 1, - anon_sym_RPAREN, - STATE(3695), 1, - sym_global_var_definition, - STATE(3771), 1, - sym_line_comment, - STATE(3852), 1, - aux_sym_global_var_declaration_repeat1, - [136670] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [137866] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6568), 1, - sym_identifier, - ACTIONS(6570), 1, - anon_sym_DOLLAR, - STATE(3772), 1, - sym_line_comment, - STATE(453), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [136690] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(6558), 1, + ACTIONS(6526), 1, anon_sym_DOLLARif, - STATE(3773), 1, - sym_line_comment, - STATE(1072), 2, + STATE(876), 2, sym_compile_time_if_expression, sym_block, - [136710] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6552), 1, - anon_sym_as, - ACTIONS(6554), 1, - anon_sym_LBRACE, - STATE(1525), 1, - sym__enum_body, - STATE(3774), 1, + STATE(3778), 2, sym_line_comment, - STATE(4154), 1, - sym_enum_backed_type, - [136732] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6206), 1, + [137887] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6605), 1, anon_sym_LPAREN, - STATE(1483), 1, + STATE(2121), 1, sym_signature, - STATE(3775), 1, + STATE(1251), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3779), 2, sym_line_comment, - STATE(1129), 2, + sym_block_comment, + [137908] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6607), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym_signature, + STATE(1133), 2, sym_parameter_list, sym_type_parameter_list, - [136752] = 6, + STATE(3780), 2, + sym_line_comment, + sym_block_comment, + [137929] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4274), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [137946] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_DOLLARif, + STATE(2744), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3782), 2, + sym_line_comment, + sym_block_comment, + [137967] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3783), 2, + sym_line_comment, sym_block_comment, + ACTIONS(4270), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [137984] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, + ACTIONS(6603), 1, anon_sym_DOLLARif, - STATE(3776), 1, - sym_line_comment, - STATE(2920), 2, + STATE(2914), 2, sym_compile_time_if_expression, sym_block, - [136772] = 6, + STATE(3784), 2, + sym_line_comment, + sym_block_comment, + [138005] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6611), 1, + anon_sym_DOT, + ACTIONS(6613), 1, + anon_sym_RBRACE, + ACTIONS(6615), 1, + sym_int_literal, + ACTIONS(6617), 1, + aux_sym_format_specifier_token1, + STATE(3785), 2, + sym_line_comment, + sym_block_comment, + [138028] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6528), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + sym___dolcbr, + sym___double_quote, + [138045] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(6609), 1, + anon_sym_DOLLARif, + STATE(2739), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3787), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6572), 1, + [138066] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6619), 1, sym_identifier, - ACTIONS(6574), 1, + ACTIONS(6621), 1, anon_sym_DOLLAR, - STATE(3777), 1, - sym_line_comment, - STATE(2616), 2, + STATE(2211), 2, sym_reference_expression, sym_compile_time_selector_expression, - [136792] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3788), 2, + sym_line_comment, + sym_block_comment, + [138087] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(6623), 1, + anon_sym_if, + STATE(2737), 1, + sym_if_expression, + STATE(2738), 1, + sym_block, + STATE(3789), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [138110] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(3778), 1, - sym_line_comment, - STATE(4211), 1, + STATE(1507), 1, sym_signature, - STATE(2954), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [136812] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - STATE(3779), 1, + STATE(3790), 2, sym_line_comment, - ACTIONS(6576), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [136828] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [138131] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4334), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3791), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6578), 1, + [138152] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6580), 1, + ACTIONS(6627), 1, anon_sym_DOLLAR, - STATE(3780), 1, - sym_line_comment, - STATE(2251), 2, + STATE(1757), 2, sym_reference_expression, sym_compile_time_selector_expression, - [136848] = 4, - ACTIONS(497), 1, + STATE(3792), 2, + sym_line_comment, + sym_block_comment, + [138173] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3781), 1, + anon_sym_SLASH_STAR, + STATE(3793), 2, sym_line_comment, - ACTIONS(6423), 4, + sym_block_comment, + ACTIONS(4252), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [136864] = 6, + [138190] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(3782), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3794), 2, sym_line_comment, - STATE(4164), 1, - sym_signature, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [136884] = 6, + sym_block_comment, + ACTIONS(4248), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138207] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3795), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6582), 1, + ACTIONS(4244), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138224] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6520), 1, sym_identifier, - ACTIONS(6585), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3783), 2, + ACTIONS(6629), 1, + anon_sym_RBRACE, + STATE(3693), 1, + sym_enum_field_definition, + STATE(3715), 1, + aux_sym__enum_body_repeat1, + STATE(3796), 2, sym_line_comment, - aux_sym_const_declaration_repeat1, - [136904] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6587), 1, - anon_sym_LPAREN, - STATE(2768), 1, - sym_signature, - STATE(3784), 1, - sym_line_comment, - STATE(1616), 2, - sym_parameter_list, - sym_type_parameter_list, - [136924] = 4, - ACTIONS(497), 1, + [138247] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3785), 1, + anon_sym_SLASH_STAR, + STATE(3797), 2, sym_line_comment, - ACTIONS(4501), 4, + sym_block_comment, + ACTIONS(4240), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [136940] = 4, - ACTIONS(497), 1, + [138264] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3786), 1, + anon_sym_SLASH_STAR, + STATE(3798), 2, sym_line_comment, - ACTIONS(6589), 4, + sym_block_comment, + ACTIONS(4236), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [136956] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6591), 1, - anon_sym_COMMA, - ACTIONS(6594), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(3787), 2, - sym_line_comment, - aux_sym_type_parameters_repeat1, - [136974] = 6, + anon_sym_RBRACE, + [138281] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6599), 1, - anon_sym_RPAREN, - STATE(3695), 1, - sym_global_var_definition, - STATE(3788), 2, - sym_line_comment, - aux_sym_global_var_declaration_repeat1, - [136994] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3789), 1, + anon_sym_SLASH_STAR, + STATE(3799), 2, sym_line_comment, - ACTIONS(4525), 4, + sym_block_comment, + ACTIONS(4228), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [137010] = 7, - ACTIONS(3), 1, + [138298] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4196), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3800), 2, + sym_line_comment, + sym_block_comment, + [138319] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6631), 1, + sym_identifier, + ACTIONS(6633), 1, + anon_sym_DOLLAR, + STATE(2148), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3801), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6552), 1, - anon_sym_as, - ACTIONS(6554), 1, + [138340] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(1557), 1, - sym__enum_body, - STATE(3790), 1, + ACTIONS(6635), 1, + anon_sym_DOLLARif, + STATE(2553), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3802), 2, sym_line_comment, - STATE(4277), 1, - sym_enum_backed_type, - [137032] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [138361] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(6637), 1, + anon_sym_DOLLARif, + STATE(1711), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3803), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6601), 1, + [138382] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(2209), 1, + STATE(4124), 1, sym_signature, - STATE(3791), 1, - sym_line_comment, - STATE(1436), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [137052] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6605), 1, - aux_sym_c_string_literal_token1, - STATE(3792), 1, + STATE(3804), 2, sym_line_comment, - ACTIONS(6603), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [137070] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [138403] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, + anon_sym_LBRACE, + ACTIONS(6635), 1, + anon_sym_DOLLARif, + STATE(2575), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3805), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6607), 1, + [138424] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1698), 1, + STATE(1491), 1, sym_signature, - STATE(3793), 1, - sym_line_comment, - STATE(2931), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [137090] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3806), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6609), 1, + [138445] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(690), 1, + STATE(4364), 1, sym_signature, - STATE(3794), 1, - sym_line_comment, - STATE(69), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [137110] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6613), 1, - aux_sym_c_string_literal_token2, - STATE(3795), 1, + STATE(3807), 2, sym_line_comment, - ACTIONS(6611), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [137128] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6483), 1, - sym_identifier, - STATE(3796), 1, - sym_line_comment, - STATE(3894), 1, - sym_generic_parameter, - ACTIONS(6615), 2, - anon_sym_GT, - anon_sym_RBRACK, - [137148] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [138466] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6617), 1, - anon_sym_COMMA, - STATE(3708), 1, - aux_sym_generic_parameters_repeat1, - STATE(3797), 1, - sym_line_comment, - ACTIONS(6615), 2, - anon_sym_GT, - anon_sym_RBRACK, - [137168] = 5, - ACTIONS(497), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6536), 1, - aux_sym_c_string_literal_token1, - STATE(3798), 1, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4318), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3808), 2, sym_line_comment, - ACTIONS(6534), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [137186] = 4, - ACTIONS(497), 1, + sym_block_comment, + [138487] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3799), 1, + anon_sym_SLASH_STAR, + STATE(3809), 2, sym_line_comment, - ACTIONS(6619), 4, + sym_block_comment, + ACTIONS(4224), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [137202] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_RBRACE, + [138504] = 6, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1482), 1, sym_signature, - STATE(3800), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [137222] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6546), 1, - aux_sym_c_string_literal_token1, - STATE(3801), 1, - sym_line_comment, - ACTIONS(6544), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [137240] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - ACTIONS(6621), 1, - anon_sym_DOLLARif, - STATE(3802), 1, + STATE(3810), 2, sym_line_comment, - STATE(2047), 2, - sym_compile_time_if_expression, - sym_block, - [137260] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - ACTIONS(6621), 1, - anon_sym_DOLLARif, - STATE(3803), 1, - sym_line_comment, - STATE(2072), 2, - sym_compile_time_if_expression, - sym_block, - [137280] = 7, + [138525] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - ACTIONS(6623), 1, - anon_sym_if, - STATE(2075), 1, - sym_block, - STATE(2146), 1, - sym_if_expression, - STATE(3804), 1, - sym_line_comment, - [137302] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3805), 1, + anon_sym_SLASH_STAR, + STATE(3811), 2, sym_line_comment, - ACTIONS(4343), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [137318] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - STATE(3806), 1, - sym_line_comment, - ACTIONS(4513), 4, + ACTIONS(4220), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [137334] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [138542] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6625), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6639), 1, anon_sym_LPAREN, - STATE(1990), 1, + STATE(2439), 1, sym_signature, - STATE(3807), 1, - sym_line_comment, - STATE(1238), 2, + STATE(1443), 2, sym_parameter_list, sym_type_parameter_list, - [137354] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6627), 1, - anon_sym_if, - STATE(2127), 1, - sym_block, - STATE(2133), 1, - sym_if_expression, - STATE(3808), 1, + STATE(3812), 2, sym_line_comment, - [137376] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6629), 1, + [138563] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(2062), 1, + STATE(4431), 1, sym_signature, - STATE(3809), 1, - sym_line_comment, - STATE(1257), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [137396] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLARif, - STATE(3810), 1, + STATE(3813), 2, sym_line_comment, - STATE(2126), 2, - sym_compile_time_if_expression, - sym_block, - [137416] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [138584] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1485), 1, + sym_signature, + STATE(1130), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3814), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6494), 1, + [138605] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, sym_identifier, - ACTIONS(6633), 1, + ACTIONS(6641), 1, anon_sym_RPAREN, - STATE(3714), 1, + STATE(3704), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, sym_const_definition, - STATE(3811), 1, + STATE(3815), 2, sym_line_comment, - STATE(3821), 1, - aux_sym_const_declaration_repeat1, - [137438] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6520), 1, - sym_identifier, - ACTIONS(6635), 1, - anon_sym_RBRACE, - STATE(3673), 1, - sym_enum_field_definition, - STATE(3812), 1, - sym_line_comment, - STATE(3817), 1, - aux_sym__enum_body_repeat1, - [137460] = 5, - ACTIONS(497), 1, + [138628] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6639), 1, - aux_sym_c_string_literal_token1, - STATE(3813), 1, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1486), 1, + sym_signature, + STATE(1130), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3816), 2, sym_line_comment, - ACTIONS(6637), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [137478] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6631), 1, - anon_sym_DOLLARif, - STATE(3814), 1, - sym_line_comment, - STATE(2120), 2, - sym_compile_time_if_expression, - sym_block, - [137498] = 5, - ACTIONS(497), 1, + [138649] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, ACTIONS(6643), 1, - aux_sym_c_string_literal_token1, - STATE(3815), 1, + anon_sym_LPAREN, + STATE(2066), 1, + sym_signature, + STATE(1194), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3817), 2, sym_line_comment, - ACTIONS(6641), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [137516] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, + [138670] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6645), 1, - anon_sym_DOLLARif, - STATE(3816), 1, + anon_sym_LPAREN, + STATE(1259), 1, + sym_signature, + STATE(975), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3818), 2, sym_line_comment, - STATE(2736), 2, - sym_compile_time_if_expression, - sym_block, - [137536] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6647), 1, - sym_identifier, - ACTIONS(6650), 1, - anon_sym_RBRACE, - STATE(3673), 1, - sym_enum_field_definition, - STATE(3817), 2, - sym_line_comment, - aux_sym__enum_body_repeat1, - [137556] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [138691] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6652), 1, - sym_identifier, - ACTIONS(6654), 1, - anon_sym_DOLLAR, - STATE(3818), 1, - sym_line_comment, - STATE(1186), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [137576] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(6645), 1, - anon_sym_DOLLARif, - STATE(3819), 1, + ACTIONS(6599), 1, + anon_sym_LPAREN, + STATE(1708), 1, + sym_signature, + STATE(2946), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3819), 2, sym_line_comment, - STATE(2731), 2, - sym_compile_time_if_expression, - sym_block, - [137596] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(6656), 1, - anon_sym_if, - STATE(2729), 1, - sym_if_expression, - STATE(2730), 1, - sym_block, - STATE(3820), 1, - sym_line_comment, - [137618] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [138712] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6494), 1, - sym_identifier, - ACTIONS(6658), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - STATE(3821), 1, - sym_line_comment, - [137640] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1500), 1, + STATE(1463), 1, sym_signature, - STATE(3822), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [137660] = 6, - ACTIONS(3), 1, + STATE(3820), 2, + sym_line_comment, + sym_block_comment, + [138733] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4329), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3821), 2, + sym_line_comment, + sym_block_comment, + [138754] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6647), 1, + anon_sym_COMMA, + STATE(3711), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6649), 2, + anon_sym_GT, + anon_sym_RBRACK, + STATE(3822), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6206), 1, + [138775] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(1491), 1, + STATE(4267), 1, sym_signature, - STATE(3823), 1, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3823), 2, sym_line_comment, - STATE(1129), 2, + sym_block_comment, + [138796] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4194), 1, + sym_signature, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [137680] = 4, - ACTIONS(497), 1, + STATE(3824), 2, + sym_line_comment, + sym_block_comment, + [138817] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3824), 1, + anon_sym_SLASH_STAR, + STATE(3825), 2, sym_line_comment, - ACTIONS(4505), 4, + sym_block_comment, + ACTIONS(6651), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [137696] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [138834] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6542), 1, + sym_identifier, + ACTIONS(6653), 1, + anon_sym_RPAREN, + STATE(3706), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3829), 1, + sym_global_var_definition, + STATE(3826), 2, + sym_line_comment, + sym_block_comment, + [138857] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6655), 1, + sym_identifier, + ACTIONS(6658), 1, + anon_sym_RBRACE, + STATE(3693), 1, + sym_enum_field_definition, + STATE(3827), 3, + sym_line_comment, sym_block_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_if, - STATE(774), 1, - sym_if_expression, - STATE(775), 1, - sym_block, - STATE(3825), 1, + aux_sym__enum_body_repeat1, + [138878] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3828), 2, sym_line_comment, - [137718] = 6, + sym_block_comment, + ACTIONS(4204), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [138895] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3829), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5130), 1, + ACTIONS(6660), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [138912] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, ACTIONS(6662), 1, anon_sym_DOLLARif, - STATE(3826), 1, - sym_line_comment, - STATE(777), 2, + STATE(2304), 2, sym_compile_time_if_expression, sym_block, - [137738] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3830), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6607), 1, + [138933] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3473), 1, + STATE(4159), 1, sym_signature, - STATE(3827), 1, - sym_line_comment, - STATE(2497), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [137758] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3831), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(2470), 1, - sym_signature, - STATE(3828), 1, + [138954] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6585), 1, + anon_sym_RPAREN, + STATE(3704), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3832), 2, sym_line_comment, - STATE(2954), 2, - sym_parameter_list, - sym_type_parameter_list, - [137778] = 6, + sym_block_comment, + [138977] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6607), 1, - anon_sym_LPAREN, - STATE(3449), 1, - sym_signature, - STATE(3829), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3833), 2, sym_line_comment, - STATE(2497), 2, - sym_parameter_list, - sym_type_parameter_list, - [137798] = 6, + sym_block_comment, + ACTIONS(6664), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [138994] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3834), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6664), 1, - sym_identifier, + ACTIONS(6277), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [139011] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6666), 1, + sym_identifier, + ACTIONS(6668), 1, anon_sym_DOLLAR, - STATE(3830), 1, - sym_line_comment, - STATE(1403), 2, + STATE(1411), 2, sym_reference_expression, sym_compile_time_selector_expression, - [137818] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6668), 1, - anon_sym_LPAREN, - STATE(1172), 1, - sym_signature, - STATE(3831), 1, + STATE(3835), 2, sym_line_comment, - STATE(976), 2, - sym_parameter_list, - sym_type_parameter_list, - [137838] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6670), 1, - anon_sym_LPAREN, - STATE(1358), 1, - sym_signature, - STATE(3832), 1, - sym_line_comment, - STATE(1019), 2, - sym_parameter_list, - sym_type_parameter_list, - [137858] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [139032] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4757), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6662), 1, anon_sym_DOLLARif, - STATE(3833), 1, - sym_line_comment, - STATE(1779), 2, + STATE(2284), 2, sym_compile_time_if_expression, sym_block, - [137878] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6643), 1, - aux_sym_c_string_literal_token2, - STATE(3834), 1, + STATE(3836), 2, sym_line_comment, - ACTIONS(6641), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [137896] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6674), 1, - anon_sym_DOT, - ACTIONS(6676), 1, - anon_sym_RBRACE, - ACTIONS(6678), 1, - sym_int_literal, - ACTIONS(6680), 1, - aux_sym_format_specifier_token1, - STATE(3835), 1, - sym_line_comment, - [137918] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [139053] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6206), 1, - anon_sym_LPAREN, - STATE(1484), 1, - sym_signature, - STATE(3836), 1, - sym_line_comment, - STATE(1129), 2, - sym_parameter_list, - sym_type_parameter_list, - [137938] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4757), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6637), 1, anon_sym_DOLLARif, - STATE(3837), 1, - sym_line_comment, - STATE(1722), 2, + STATE(1775), 2, sym_compile_time_if_expression, sym_block, - [137958] = 7, + STATE(3837), 2, + sym_line_comment, + sym_block_comment, + [139074] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3838), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4757), 1, + ACTIONS(1713), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [139091] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(6682), 1, + ACTIONS(6670), 1, anon_sym_if, - STATE(1725), 1, - sym_block, - STATE(1726), 1, + STATE(2271), 1, sym_if_expression, - STATE(3838), 1, + STATE(2277), 1, + sym_block, + STATE(3839), 2, sym_line_comment, - [137980] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [139114] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6672), 1, + sym_identifier, + ACTIONS(6674), 1, + anon_sym_DOLLAR, + STATE(461), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3840), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5146), 1, - anon_sym_LBRACE, - ACTIONS(6684), 1, - anon_sym_DOLLARif, - STATE(3839), 1, + [139135] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3841), 2, sym_line_comment, - STATE(2230), 2, - sym_compile_time_if_expression, - sym_block, - [138000] = 6, + sym_block_comment, + ACTIONS(6676), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token1, + sym___dolcbr, + sym___single_quote, + [139152] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6678), 4, + sym_escape_sequence, + aux_sym_c_string_literal_token2, + sym___dolcbr, + sym___double_quote, + [139169] = 7, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(6680), 1, + anon_sym_if, + STATE(1753), 1, + sym_block, + STATE(1759), 1, + sym_if_expression, + STATE(3843), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6147), 1, + [139192] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, anon_sym_LPAREN, - STATE(3840), 1, - sym_line_comment, - STATE(4380), 1, + STATE(2439), 1, sym_signature, - STATE(2954), 2, + STATE(2919), 2, sym_parameter_list, sym_type_parameter_list, - [138020] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5146), 1, - anon_sym_LBRACE, - ACTIONS(6684), 1, - anon_sym_DOLLARif, - STATE(3841), 1, + STATE(3844), 2, sym_line_comment, - STATE(2236), 2, - sym_compile_time_if_expression, - sym_block, - [138040] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5146), 1, + [139213] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6479), 1, + anon_sym_as, + ACTIONS(6481), 1, anon_sym_LBRACE, - ACTIONS(6686), 1, - anon_sym_if, - STATE(2241), 1, - sym_block, - STATE(2242), 1, - sym_if_expression, - STATE(3842), 1, + STATE(1543), 1, + sym__enum_body, + STATE(4359), 1, + sym_enum_backed_type, + STATE(3845), 2, sym_line_comment, - [138062] = 5, - ACTIONS(3), 1, + sym_block_comment, + [139236] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6599), 1, + anon_sym_LPAREN, + STATE(3470), 1, + sym_signature, + STATE(2485), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3846), 2, + sym_line_comment, + sym_block_comment, + [139257] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6149), 1, + anon_sym_LPAREN, + STATE(4306), 1, + sym_signature, + STATE(2919), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3847), 2, + sym_line_comment, sym_block_comment, - ACTIONS(2669), 1, + [139278] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2865), 1, anon_sym_DOT, - STATE(3843), 1, + STATE(3848), 2, sym_line_comment, - ACTIONS(6688), 3, + sym_block_comment, + ACTIONS(6682), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [138080] = 6, - ACTIONS(3), 1, + [139297] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6566), 1, + anon_sym_LPAREN, + STATE(2569), 1, + sym_signature, + STATE(1465), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3849), 2, + sym_line_comment, + sym_block_comment, + [139318] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1489), 1, + sym_signature, + STATE(1130), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3850), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6690), 1, + [139339] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6684), 1, anon_sym_EQ, - STATE(3844), 1, - sym_line_comment, - STATE(4433), 1, + STATE(4553), 1, sym_generic_parameters, - ACTIONS(4970), 2, + ACTIONS(4986), 2, anon_sym_LBRACK, anon_sym_LT2, - [138100] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3851), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6473), 1, + [139360] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6542), 1, sym_identifier, - ACTIONS(6692), 1, + ACTIONS(6686), 1, anon_sym_RPAREN, - STATE(3695), 1, - sym_global_var_definition, - STATE(3697), 1, + STATE(3826), 1, aux_sym_global_var_declaration_repeat1, - STATE(3845), 1, + STATE(3829), 1, + sym_global_var_definition, + STATE(3852), 2, sym_line_comment, - [138122] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6639), 1, - aux_sym_c_string_literal_token2, - STATE(3846), 1, + [139383] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6534), 1, + sym_identifier, + ACTIONS(6688), 1, + anon_sym_RPAREN, + STATE(3832), 1, + aux_sym_const_declaration_repeat1, + STATE(3833), 1, + sym_const_definition, + STATE(3853), 2, sym_line_comment, - ACTIONS(6637), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [138140] = 4, - ACTIONS(497), 1, + sym_block_comment, + [139406] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - STATE(3847), 1, + anon_sym_SLASH_STAR, + STATE(3854), 2, sym_line_comment, - ACTIONS(6694), 4, + sym_block_comment, + ACTIONS(6690), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [138156] = 6, + [139423] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6696), 1, - sym_identifier, - ACTIONS(6698), 1, - anon_sym_DOLLAR, - STATE(3848), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + STATE(3855), 2, sym_line_comment, - STATE(2140), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [138176] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6662), 1, - anon_sym_DOLLARif, - STATE(3849), 1, - sym_line_comment, - STATE(868), 2, - sym_compile_time_if_expression, - sym_block, - [138196] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6692), 4, + aux_sym_block_comment_token1, + aux_sym_block_comment_token2, + aux_sym_block_comment_token3, + anon_sym_STAR_SLASH, + [139440] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6700), 1, - sym_identifier, - ACTIONS(6702), 1, - anon_sym_DOLLAR, - STATE(3850), 1, - sym_line_comment, - STATE(2872), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [138216] = 7, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5140), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(6704), 1, + ACTIONS(6694), 1, anon_sym_if, - STATE(1925), 1, + STATE(2060), 1, sym_if_expression, - STATE(1935), 1, + STATE(2070), 1, sym_block, - STATE(3851), 1, + STATE(3856), 2, sym_line_comment, - [138238] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6473), 1, - sym_identifier, - ACTIONS(6706), 1, - anon_sym_RPAREN, - STATE(3695), 1, - sym_global_var_definition, - STATE(3788), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3852), 1, - sym_line_comment, - [138260] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [139463] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6206), 1, + anon_sym_LPAREN, + STATE(1493), 1, + sym_signature, + STATE(1130), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3857), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6494), 1, + [139484] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6696), 1, sym_identifier, - ACTIONS(6633), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - STATE(3853), 1, + ACTIONS(6698), 1, + anon_sym_DOLLAR, + STATE(1226), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3858), 2, sym_line_comment, - [138282] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5140), 1, + [139505] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(6469), 1, + ACTIONS(6700), 1, anon_sym_DOLLARif, - STATE(3854), 1, - sym_line_comment, - STATE(1937), 2, + STATE(2071), 2, sym_compile_time_if_expression, sym_block, - [138302] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3859), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5134), 1, + [139526] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - ACTIONS(6708), 1, + ACTIONS(6700), 1, anon_sym_DOLLARif, - STATE(3855), 1, - sym_line_comment, - STATE(2580), 2, + STATE(2087), 2, sym_compile_time_if_expression, sym_block, - [138322] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6494), 1, - sym_identifier, - ACTIONS(6710), 1, - anon_sym_RPAREN, - STATE(3714), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - STATE(3856), 1, + STATE(3860), 2, sym_line_comment, - [138344] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6601), 1, - anon_sym_LPAREN, - STATE(2543), 1, - sym_signature, - STATE(3857), 1, - sym_line_comment, - STATE(1463), 2, - sym_parameter_list, - sym_type_parameter_list, - [138364] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [139547] = 7, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6206), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_signature, - STATE(3858), 1, - sym_line_comment, - STATE(1129), 2, - sym_parameter_list, - sym_type_parameter_list, - [138384] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6702), 1, + anon_sym_if, + STATE(1343), 1, + sym_if_expression, + STATE(1344), 1, + sym_block, + STATE(3861), 2, + sym_line_comment, sym_block_comment, + [139570] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6206), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(1494), 1, sym_signature, - STATE(3859), 1, - sym_line_comment, - STATE(1129), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [138404] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3862), 2, + sym_line_comment, + sym_block_comment, + [139591] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6704), 1, + sym_identifier, + ACTIONS(6706), 1, + anon_sym_DOLLAR, + STATE(2797), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + STATE(3863), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5134), 1, + [139612] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, anon_sym_LBRACE, ACTIONS(6708), 1, anon_sym_DOLLARif, - STATE(3860), 1, - sym_line_comment, - STATE(2546), 2, + STATE(1402), 2, sym_compile_time_if_expression, sym_block, - [138424] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6494), 1, - sym_identifier, - ACTIONS(6712), 1, - anon_sym_RPAREN, - STATE(3713), 1, - aux_sym_const_declaration_repeat1, - STATE(3714), 1, - sym_const_definition, - STATE(3861), 1, + STATE(3864), 2, sym_line_comment, - [138446] = 7, - ACTIONS(3), 1, + sym_block_comment, + [139633] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, + anon_sym_LBRACE, + ACTIONS(6708), 1, + anon_sym_DOLLARif, + STATE(1346), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3865), 2, + sym_line_comment, + sym_block_comment, + [139654] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, + anon_sym_LBRACE, + ACTIONS(6710), 1, + anon_sym_DOLLARif, + STATE(1893), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3866), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5134), 1, + [139675] = 7, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - ACTIONS(6714), 1, + ACTIONS(6712), 1, anon_sym_if, - STATE(2539), 1, - sym_if_expression, - STATE(2540), 1, + STATE(1834), 1, sym_block, - STATE(3862), 1, + STATE(1835), 1, + sym_if_expression, + STATE(3867), 2, sym_line_comment, - [138468] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5320), 1, - anon_sym_COMMA, - ACTIONS(6716), 1, + [139698] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(3863), 1, + ACTIONS(6710), 1, + anon_sym_DOLLARif, + STATE(1833), 2, + sym_compile_time_if_expression, + sym_block, + STATE(3868), 2, sym_line_comment, - STATE(4035), 1, - aux_sym_match_expression_list_repeat1, - [138487] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3544), 1, - anon_sym_LBRACE, - ACTIONS(6718), 1, + [139719] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5738), 1, + anon_sym_RPAREN, + ACTIONS(6714), 1, anon_sym_COMMA, - STATE(3864), 2, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3869), 2, sym_line_comment, - aux_sym_strictly_expression_list_repeat1, - [138504] = 6, - ACTIONS(3), 1, + sym_block_comment, + [139739] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(6718), 1, + anon_sym_RPAREN, + STATE(4096), 1, + aux_sym_parameter_list_repeat1, + STATE(3870), 2, + sym_line_comment, + sym_block_comment, + [139759] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(6720), 1, + anon_sym_RBRACK, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3871), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6721), 1, + [139779] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6722), 1, sym_identifier, - ACTIONS(6723), 1, + ACTIONS(6724), 1, anon_sym_LBRACE, - STATE(2959), 1, + STATE(1179), 1, sym__content_block, - STATE(3865), 1, + STATE(3872), 2, sym_line_comment, - [138523] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6725), 1, + [139799] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6727), 1, + ACTIONS(6726), 1, anon_sym_RPAREN, - STATE(3866), 1, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(3873), 2, sym_line_comment, - STATE(4082), 1, - aux_sym_type_parameters_repeat1, - [138542] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6731), 1, - sym___single_quote, - STATE(3867), 1, + [139819] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(6730), 1, + anon_sym_RPAREN, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3874), 2, sym_line_comment, - STATE(4085), 1, - aux_sym_raw_string_literal_repeat1, - [138561] = 6, - ACTIONS(3), 1, + sym_block_comment, + [139839] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6732), 1, + anon_sym_COMMA, + ACTIONS(6734), 1, + anon_sym_RPAREN, + STATE(3905), 1, + aux_sym_type_parameters_repeat1, + STATE(3875), 2, + sym_line_comment, + sym_block_comment, + [139859] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(6736), 1, + anon_sym_RBRACK, + STATE(3882), 1, + aux_sym_type_parameters_repeat1, + STATE(3876), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5742), 1, - anon_sym_RPAREN, - ACTIONS(6733), 1, + [139879] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(3787), 1, + ACTIONS(6738), 1, + anon_sym_RBRACK, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(3868), 1, + STATE(3877), 2, sym_line_comment, - [138580] = 6, - ACTIONS(3), 1, + sym_block_comment, + [139899] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6740), 1, + anon_sym_SEMI, + ACTIONS(6742), 1, + anon_sym_RBRACK, + STATE(3975), 1, + aux_sym_attribute_repeat1, + STATE(3878), 2, + sym_line_comment, + sym_block_comment, + [139919] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(6746), 1, + anon_sym_LPAREN, + STATE(1524), 1, + sym_const_definition, + STATE(3879), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6735), 1, + [139939] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6748), 1, sym_identifier, - ACTIONS(6737), 1, + ACTIONS(6750), 1, anon_sym_LBRACE, - STATE(1352), 1, - sym__content_block, - STATE(3869), 1, + STATE(2421), 1, + sym__struct_body, + STATE(3880), 2, sym_line_comment, - [138599] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [139959] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_SEMI, + ACTIONS(5272), 1, + anon_sym_COMMA, + STATE(3959), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3881), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [139979] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6739), 1, + ACTIONS(6752), 1, anon_sym_RBRACK, - STATE(3870), 1, - sym_line_comment, - STATE(3945), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - [138618] = 6, - ACTIONS(497), 1, + STATE(3882), 2, + sym_line_comment, + sym_block_comment, + [139999] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(4835), 1, + anon_sym_COMMA, + ACTIONS(4837), 1, + anon_sym_COLON_EQ, + STATE(4001), 1, + aux_sym_identifier_list_repeat1, + STATE(3883), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6729), 1, + [140019] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6741), 1, + ACTIONS(6756), 1, sym___single_quote, - STATE(3871), 1, - sym_line_comment, - STATE(3891), 1, + STATE(4022), 1, aux_sym_raw_string_literal_repeat1, - [138637] = 6, - ACTIONS(497), 1, + STATE(3884), 2, + sym_line_comment, + sym_block_comment, + [140039] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6731), 1, + anon_sym_SLASH_STAR, + ACTIONS(6756), 1, sym___double_quote, - ACTIONS(6743), 1, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - STATE(3872), 1, - sym_line_comment, - STATE(4091), 1, + STATE(4020), 1, aux_sym_raw_string_literal_repeat2, - [138656] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6745), 1, - anon_sym_RBRACK, - STATE(3873), 1, + STATE(3885), 2, sym_line_comment, - STATE(3885), 1, - aux_sym_type_parameters_repeat1, - [138675] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(3874), 1, - sym_line_comment, - ACTIONS(6747), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [138690] = 6, + [140059] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6760), 1, + sym___single_quote, + STATE(3900), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3886), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4042), 1, + [140079] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4009), 1, anon_sym_SEMI, - ACTIONS(5274), 1, + ACTIONS(5272), 1, anon_sym_COMMA, - STATE(3875), 1, - sym_line_comment, - STATE(3946), 1, + STATE(4052), 1, aux_sym_strictly_expression_list_repeat1, - [138709] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6749), 1, - sym___double_quote, - STATE(3876), 1, + STATE(3887), 2, sym_line_comment, - STATE(3923), 1, - aux_sym_raw_string_literal_repeat2, - [138728] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5320), 1, - anon_sym_COMMA, - ACTIONS(6751), 1, - anon_sym_LBRACE, - STATE(3877), 1, - sym_line_comment, - STATE(4035), 1, - aux_sym_match_expression_list_repeat1, - [138747] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140099] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6456), 1, + sym_identifier, + ACTIONS(6458), 1, + anon_sym_mut, + STATE(4260), 1, + sym_var_definition, + STATE(3888), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [140119] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6762), 1, anon_sym_COMMA, - ACTIONS(6755), 1, - anon_sym_RPAREN, - STATE(3878), 1, + ACTIONS(6764), 1, + anon_sym_in, + STATE(4007), 1, + aux_sym_var_definition_list_repeat1, + STATE(3889), 2, sym_line_comment, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - [138766] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(6759), 1, - anon_sym_RPAREN, - STATE(3879), 1, + [140139] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6766), 1, + sym_identifier, + ACTIONS(6768), 1, + anon_sym_LBRACE, + STATE(863), 1, + sym__content_block, + STATE(3890), 2, sym_line_comment, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - [138785] = 6, - ACTIONS(497), 1, + sym_block_comment, + [140159] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(5360), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(3891), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6749), 1, - sym___single_quote, - STATE(3880), 1, + [140177] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4597), 1, + sym_identifier, + ACTIONS(6772), 1, + anon_sym_static, + ACTIONS(6774), 1, + anon_sym_volatile, + STATE(3892), 2, sym_line_comment, - STATE(3924), 1, - aux_sym_raw_string_literal_repeat1, - [138804] = 6, - ACTIONS(497), 1, + sym_block_comment, + [140197] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6776), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6761), 1, + ACTIONS(6779), 1, sym___double_quote, - STATE(3881), 1, + STATE(3893), 3, sym_line_comment, - STATE(4034), 1, + sym_block_comment, aux_sym_raw_string_literal_repeat2, - [138823] = 6, - ACTIONS(497), 1, + [140215] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6781), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6761), 1, + ACTIONS(6784), 1, sym___single_quote, - STATE(3882), 1, + STATE(3894), 3, sym_line_comment, - STATE(4021), 1, + sym_block_comment, aux_sym_raw_string_literal_repeat1, - [138842] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140233] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(6763), 1, - anon_sym_RPAREN, - STATE(3883), 1, - sym_line_comment, - STATE(4054), 1, - aux_sym_parameter_list_repeat1, - [138861] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6757), 1, + ACTIONS(6786), 1, anon_sym_COMMA, - ACTIONS(6765), 1, + ACTIONS(6788), 1, anon_sym_RPAREN, - STATE(3884), 1, + STATE(3947), 1, + aux_sym_type_parameters_repeat1, + STATE(3895), 2, sym_line_comment, - STATE(4055), 1, - aux_sym_type_parameter_list_repeat1, - [138880] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [140253] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6790), 1, + sym_identifier, + ACTIONS(6792), 1, + anon_sym_PIPE, + STATE(4016), 1, + sym_reference_expression, + STATE(3896), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [140273] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6767), 1, + ACTIONS(6423), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(4018), 1, aux_sym_type_parameters_repeat1, - STATE(3885), 1, + STATE(3897), 2, sym_line_comment, - [138899] = 6, - ACTIONS(497), 1, + sym_block_comment, + [140293] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6769), 1, + ACTIONS(6794), 1, sym___double_quote, - STATE(3886), 1, - sym_line_comment, - STATE(3968), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - [138918] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3887), 1, + STATE(3898), 2, sym_line_comment, - ACTIONS(6771), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [138933] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6773), 1, - anon_sym_COMMA, - ACTIONS(6775), 1, - anon_sym_RPAREN, - STATE(3888), 1, - sym_line_comment, - STATE(3984), 1, - aux_sym_type_parameters_repeat1, - [138952] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140313] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(3889), 1, - sym_line_comment, - ACTIONS(6777), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [138967] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6779), 1, + ACTIONS(6796), 1, anon_sym_COMMA, - ACTIONS(6782), 1, + ACTIONS(6798), 1, anon_sym_RPAREN, - STATE(3890), 2, + STATE(3933), 1, + aux_sym_type_parameters_repeat1, + STATE(3899), 2, sym_line_comment, - aux_sym_type_parameter_list_repeat1, - [138984] = 6, - ACTIONS(497), 1, + sym_block_comment, + [140333] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6769), 1, + ACTIONS(6794), 1, sym___single_quote, - STATE(3891), 1, - sym_line_comment, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - [139003] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6784), 1, - anon_sym_COMMA, - ACTIONS(6786), 1, - anon_sym_RBRACK, - STATE(3892), 1, + STATE(3900), 2, sym_line_comment, - STATE(4081), 1, - aux_sym_capture_list_repeat1, - [139022] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6788), 1, - anon_sym_COMMA, - ACTIONS(6791), 1, - anon_sym_COLON_EQ, - STATE(3893), 2, - sym_line_comment, - aux_sym_identifier_list_repeat1, - [139039] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140353] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(3894), 1, - sym_line_comment, - ACTIONS(6490), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [139054] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5738), 1, - anon_sym_RPAREN, - ACTIONS(6793), 1, - anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3895), 1, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6802), 1, + anon_sym_LBRACE, + STATE(2259), 1, + sym__content_block, + STATE(3901), 2, sym_line_comment, - [139073] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(6795), 1, - anon_sym_RPAREN, - STATE(3896), 1, - sym_line_comment, - STATE(3906), 1, - aux_sym_parameter_list_repeat1, - [139092] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140373] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6757), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6797), 1, - anon_sym_RPAREN, - STATE(3897), 1, + ACTIONS(6804), 1, + anon_sym_RBRACK, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3902), 2, sym_line_comment, - STATE(3910), 1, - aux_sym_type_parameter_list_repeat1, - [139111] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(3898), 1, - sym_line_comment, - ACTIONS(6799), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [139126] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140393] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(6803), 1, - anon_sym_LPAREN, - STATE(1574), 1, - sym_const_definition, - STATE(3899), 1, - sym_line_comment, - [139145] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6805), 1, + ACTIONS(6806), 1, sym_identifier, - ACTIONS(6807), 1, + ACTIONS(6808), 1, anon_sym_LBRACE, - STATE(2302), 1, + STATE(1789), 1, sym__content_block, - STATE(3900), 1, + STATE(3903), 2, sym_line_comment, - [139164] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6741), 1, - sym___double_quote, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - STATE(3886), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3901), 1, - sym_line_comment, - [139183] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140413] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6809), 1, - anon_sym_RBRACK, - STATE(3902), 1, - sym_line_comment, - STATE(3919), 1, - aux_sym_type_parameters_repeat1, - [139202] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6811), 1, + ACTIONS(6810), 1, anon_sym_COMMA, - ACTIONS(6813), 1, + ACTIONS(6812), 1, anon_sym_RPAREN, - STATE(3903), 1, + STATE(4011), 1, + aux_sym_type_parameters_repeat1, + STATE(3904), 2, sym_line_comment, - STATE(4104), 1, + sym_block_comment, + [140433] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5770), 1, + anon_sym_RPAREN, + ACTIONS(6814), 1, + anon_sym_COMMA, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - [139221] = 6, - ACTIONS(497), 1, + STATE(3905), 2, + sym_line_comment, + sym_block_comment, + [140453] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6815), 1, + ACTIONS(6816), 1, sym___double_quote, - STATE(3904), 1, - sym_line_comment, - STATE(3928), 1, + STATE(3935), 1, aux_sym_raw_string_literal_repeat2, - [139240] = 6, - ACTIONS(497), 1, + STATE(3906), 2, + sym_line_comment, + sym_block_comment, + [140473] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6815), 1, + ACTIONS(6816), 1, sym___single_quote, - STATE(3905), 1, - sym_line_comment, - STATE(3929), 1, + STATE(3936), 1, aux_sym_raw_string_literal_repeat1, - [139259] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3907), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [140493] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6817), 1, + ACTIONS(6818), 1, anon_sym_RPAREN, - STATE(3906), 1, - sym_line_comment, - STATE(3911), 1, + STATE(3929), 1, aux_sym_parameter_list_repeat1, - [139278] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(3908), 2, + sym_line_comment, + sym_block_comment, + [140513] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(6820), 1, + anon_sym_RPAREN, + STATE(3930), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3909), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [140533] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6822), 1, anon_sym_COMMA, - ACTIONS(6819), 1, - anon_sym_RBRACK, - STATE(3787), 1, + ACTIONS(6824), 1, + anon_sym_RPAREN, + STATE(4046), 1, aux_sym_type_parameters_repeat1, - STATE(3907), 1, + STATE(3910), 2, sym_line_comment, - [139297] = 6, - ACTIONS(497), 1, + sym_block_comment, + [140553] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6821), 1, + ACTIONS(6760), 1, sym___double_quote, - STATE(3908), 1, - sym_line_comment, - STATE(3968), 1, + STATE(3898), 1, aux_sym_raw_string_literal_repeat2, - [139316] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6823), 1, - anon_sym_RBRACK, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3909), 1, + STATE(3911), 2, sym_line_comment, - [139335] = 6, - ACTIONS(3), 1, + sym_block_comment, + [140573] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(6826), 1, + anon_sym_LPAREN, + STATE(1570), 1, + sym_const_definition, + STATE(3912), 2, + sym_line_comment, + sym_block_comment, + [140593] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6828), 1, + sym_identifier, + ACTIONS(6830), 1, + anon_sym_LBRACE, + STATE(2015), 1, + sym__content_block, + STATE(3913), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [140613] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6825), 1, + ACTIONS(6832), 1, anon_sym_RPAREN, - STATE(3890), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - STATE(3910), 1, + STATE(3914), 2, sym_line_comment, - [139354] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6827), 1, + [140633] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6431), 1, anon_sym_COMMA, - ACTIONS(6830), 1, + ACTIONS(6433), 1, anon_sym_RPAREN, - STATE(3911), 2, + STATE(4023), 1, + aux_sym_type_parameters_repeat1, + STATE(3915), 2, sym_line_comment, - aux_sym_parameter_list_repeat1, - [139371] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6821), 1, - sym___single_quote, - STATE(3912), 1, - sym_line_comment, - STATE(3969), 1, - aux_sym_raw_string_literal_repeat1, - [139390] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140653] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6832), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, ACTIONS(6834), 1, anon_sym_RPAREN, - STATE(3913), 1, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(3916), 2, sym_line_comment, - STATE(4071), 1, - aux_sym_type_parameters_repeat1, - [139409] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6836), 1, - anon_sym_COMMA, - ACTIONS(6838), 1, - anon_sym_RPAREN, - STATE(3914), 1, - sym_line_comment, - STATE(4014), 1, - aux_sym_type_parameters_repeat1, - [139428] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140673] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6840), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4039), 1, + anon_sym_LBRACE, + ACTIONS(5274), 1, anon_sym_COMMA, - ACTIONS(6842), 1, - anon_sym_RPAREN, - STATE(3895), 1, - aux_sym_type_parameters_repeat1, - STATE(3915), 1, + STATE(3976), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3917), 2, sym_line_comment, - [139447] = 6, + sym_block_comment, + [140693] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6836), 1, + sym___double_quote, + STATE(4044), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3918), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6844), 1, + [140713] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6838), 1, anon_sym_COMMA, - ACTIONS(6846), 1, + ACTIONS(6841), 1, anon_sym_PIPE, - STATE(3916), 1, + STATE(3919), 3, sym_line_comment, - STATE(4029), 1, + sym_block_comment, aux_sym_short_lambda_repeat1, - [139466] = 6, + [140731] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6836), 1, + sym___single_quote, + STATE(4045), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3920), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6848), 1, + [140751] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6850), 1, + ACTIONS(6843), 1, anon_sym_RPAREN, - STATE(3917), 1, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3921), 2, sym_line_comment, - STATE(3985), 1, - aux_sym_type_parameters_repeat1, - [139485] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4042), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3918), 1, - sym_line_comment, - [139504] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140771] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6852), 1, + ACTIONS(6845), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3956), 1, aux_sym_type_parameters_repeat1, - STATE(3919), 1, + STATE(3922), 2, sym_line_comment, - [139523] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4018), 1, - anon_sym_SEMI, - ACTIONS(5274), 1, - anon_sym_COMMA, - STATE(3920), 1, - sym_line_comment, - STATE(3946), 1, - aux_sym_strictly_expression_list_repeat1, - [139542] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140791] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6854), 1, + ACTIONS(6847), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3902), 1, aux_sym_type_parameters_repeat1, - STATE(3921), 1, + STATE(3923), 2, sym_line_comment, - [139561] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6856), 1, + [140811] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6849), 1, anon_sym_COMMA, - ACTIONS(6858), 1, + ACTIONS(6851), 1, anon_sym_RPAREN, - STATE(3922), 1, - sym_line_comment, - STATE(3932), 1, + STATE(3869), 1, aux_sym_type_parameters_repeat1, - [139580] = 6, - ACTIONS(497), 1, + STATE(3924), 2, + sym_line_comment, + sym_block_comment, + [140831] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6853), 1, + anon_sym_DOT, + ACTIONS(6855), 1, + anon_sym_RBRACE, + ACTIONS(6857), 1, + aux_sym_format_specifier_token1, + STATE(3925), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6743), 1, + [140851] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6860), 1, + ACTIONS(6859), 1, sym___double_quote, - STATE(3923), 1, - sym_line_comment, - STATE(3968), 1, + STATE(4003), 1, aux_sym_raw_string_literal_repeat2, - [139599] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6860), 1, - sym___single_quote, - STATE(3924), 1, + STATE(3926), 2, sym_line_comment, - STATE(3969), 1, - aux_sym_raw_string_literal_repeat1, - [139618] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6862), 1, - sym_identifier, - ACTIONS(6864), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym__content_block, - STATE(3925), 1, - sym_line_comment, - [139637] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [140871] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6866), 1, - anon_sym_COMMA, - ACTIONS(6868), 1, - anon_sym_RPAREN, - STATE(3926), 1, - sym_line_comment, - STATE(3977), 1, - aux_sym_type_parameters_repeat1, - [139656] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3927), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + ACTIONS(6497), 3, anon_sym_COMMA, - ACTIONS(6870), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3927), 1, - sym_line_comment, - [139675] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6872), 1, - sym___double_quote, - STATE(3928), 1, - sym_line_comment, - STATE(3968), 1, - aux_sym_raw_string_literal_repeat2, - [139694] = 6, - ACTIONS(497), 1, + anon_sym_RBRACK, + [140887] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6872), 1, + ACTIONS(6859), 1, sym___single_quote, - STATE(3929), 1, - sym_line_comment, - STATE(3969), 1, + STATE(4008), 1, aux_sym_raw_string_literal_repeat1, - [139713] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3928), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [140907] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6874), 1, + ACTIONS(6861), 1, anon_sym_RPAREN, - STATE(3911), 1, + STATE(4053), 1, aux_sym_parameter_list_repeat1, - STATE(3930), 1, + STATE(3929), 2, sym_line_comment, - [139732] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6447), 1, + [140927] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6449), 1, + ACTIONS(6863), 1, anon_sym_RPAREN, - STATE(3868), 1, - aux_sym_type_parameters_repeat1, - STATE(3931), 1, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3930), 2, sym_line_comment, - [139751] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5762), 1, - anon_sym_RPAREN, - ACTIONS(6876), 1, + [140947] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3932), 1, + ACTIONS(6865), 1, + anon_sym_RPAREN, + STATE(3874), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3931), 2, sym_line_comment, - [139770] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5750), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, + [140967] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3933), 1, + ACTIONS(6867), 1, + anon_sym_RPAREN, + STATE(3873), 1, + aux_sym_parameter_list_repeat1, + STATE(3932), 2, sym_line_comment, - [139789] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [140987] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5748), 1, + anon_sym_RPAREN, + ACTIONS(6869), 1, anon_sym_COMMA, - ACTIONS(6880), 1, - anon_sym_RBRACK, - STATE(3909), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(3934), 1, + STATE(3933), 2, sym_line_comment, - [139808] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6882), 1, + [141007] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6871), 1, sym_identifier, - ACTIONS(6884), 1, + ACTIONS(6873), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(1103), 1, sym__content_block, - STATE(3935), 1, + STATE(3934), 2, sym_line_comment, - [139827] = 6, - ACTIONS(497), 1, + sym_block_comment, + [141027] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6886), 1, + ACTIONS(6875), 1, sym___double_quote, - STATE(3936), 1, - sym_line_comment, - STATE(3975), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - [139846] = 6, + STATE(3935), 2, + sym_line_comment, + sym_block_comment, + [141047] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6875), 1, + sym___single_quote, + STATE(3894), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3936), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [141067] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6888), 1, + ACTIONS(6877), 1, anon_sym_RPAREN, - STATE(3937), 1, - sym_line_comment, - STATE(3962), 1, + STATE(4053), 1, aux_sym_parameter_list_repeat1, - [139865] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3937), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [141087] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6879), 1, anon_sym_COMMA, - ACTIONS(6890), 1, + ACTIONS(6881), 1, anon_sym_RPAREN, - STATE(3938), 1, + STATE(4100), 1, + aux_sym_type_parameters_repeat1, + STATE(3938), 2, sym_line_comment, - STATE(3964), 1, - aux_sym_type_parameter_list_repeat1, - [139884] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6886), 1, - sym___single_quote, - STATE(3939), 1, - sym_line_comment, - STATE(3978), 1, - aux_sym_raw_string_literal_repeat1, - [139903] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141107] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6883), 1, + sym_identifier, + ACTIONS(6885), 1, + anon_sym_LBRACE, + STATE(2359), 1, + sym__content_block, + STATE(3939), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5740), 1, - anon_sym_RPAREN, - ACTIONS(6892), 1, + [141127] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3940), 1, + ACTIONS(6887), 1, + anon_sym_RPAREN, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3940), 2, sym_line_comment, - [139922] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [141147] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6894), 1, + ACTIONS(6889), 1, anon_sym_RPAREN, - STATE(3941), 1, - sym_line_comment, - STATE(3965), 1, + STATE(4053), 1, aux_sym_parameter_list_repeat1, - [139941] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3941), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [141167] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6891), 1, anon_sym_COMMA, - ACTIONS(6896), 1, + ACTIONS(6893), 1, anon_sym_RPAREN, - STATE(3942), 1, + STATE(4015), 1, + aux_sym_type_parameters_repeat1, + STATE(3942), 2, sym_line_comment, - STATE(3966), 1, - aux_sym_type_parameter_list_repeat1, - [139960] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6898), 1, - anon_sym_SEMI, - ACTIONS(6900), 1, - anon_sym_RBRACK, - STATE(3943), 1, - sym_line_comment, - STATE(4079), 1, - aux_sym_attribute_repeat1, - [139979] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141187] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6753), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6902), 1, + ACTIONS(6895), 1, anon_sym_RPAREN, - STATE(3944), 1, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3943), 2, sym_line_comment, - STATE(4018), 1, - aux_sym_parameter_list_repeat1, - [139998] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [141207] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(6897), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(3944), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [141227] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6904), 1, + ACTIONS(6899), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(3945), 1, + STATE(3945), 2, sym_line_comment, - [140017] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3544), 1, - anon_sym_SEMI, - ACTIONS(6906), 1, + [141247] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, + ACTIONS(6901), 1, + anon_sym_RBRACK, + STATE(3877), 1, + aux_sym_type_parameters_repeat1, STATE(3946), 2, sym_line_comment, - aux_sym_strictly_expression_list_repeat1, - [140034] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4835), 1, + [141267] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5734), 1, + anon_sym_RPAREN, + ACTIONS(6903), 1, anon_sym_COMMA, - ACTIONS(4837), 1, - anon_sym_COLON_EQ, - STATE(3947), 1, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3947), 2, sym_line_comment, - STATE(3989), 1, - aux_sym_identifier_list_repeat1, - [140053] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [141287] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6909), 1, + ACTIONS(6905), 1, anon_sym_RPAREN, - STATE(3948), 1, + STATE(3973), 1, + aux_sym_parameter_list_repeat1, + STATE(3948), 2, sym_line_comment, - STATE(4019), 1, - aux_sym_type_parameter_list_repeat1, - [140072] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6674), 1, - anon_sym_DOT, - ACTIONS(6676), 1, - anon_sym_RBRACE, - ACTIONS(6680), 1, - aux_sym_format_specifier_token1, - STATE(3949), 1, - sym_line_comment, - [140091] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141307] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3544), 1, - anon_sym_COLON_EQ, - ACTIONS(6911), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, + ACTIONS(6907), 1, + anon_sym_RPAREN, + STATE(3974), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3949), 2, + sym_line_comment, + sym_block_comment, + [141327] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, STATE(3950), 2, sym_line_comment, + sym_block_comment, + ACTIONS(6909), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [141343] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4009), 1, + anon_sym_LBRACE, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(3976), 1, aux_sym_strictly_expression_list_repeat1, - [140108] = 6, - ACTIONS(497), 1, + STATE(3951), 2, + sym_line_comment, + sym_block_comment, + [141363] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6914), 1, + ACTIONS(6911), 1, sym___double_quote, - STATE(3951), 1, - sym_line_comment, - STATE(3968), 1, + STATE(4092), 1, aux_sym_raw_string_literal_repeat2, - [140127] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6916), 1, - anon_sym_COMMA, - ACTIONS(6919), 1, - anon_sym_in, STATE(3952), 2, sym_line_comment, - aux_sym_var_definition_list_repeat1, - [140144] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6457), 1, - anon_sym_mut, - STATE(3953), 1, - sym_line_comment, - STATE(4310), 1, - sym_var_definition, - [140163] = 6, + [141383] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(6921), 1, - anon_sym_RBRACK, - STATE(3954), 1, - sym_line_comment, - STATE(4084), 1, - aux_sym_type_parameters_repeat1, - [140182] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6923), 1, + ACTIONS(6911), 1, sym___single_quote, - STATE(3912), 1, + STATE(4090), 1, aux_sym_raw_string_literal_repeat1, - STATE(3955), 1, + STATE(3953), 2, sym_line_comment, - [140201] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(3956), 1, + [141403] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3954), 2, sym_line_comment, - ACTIONS(6925), 3, + sym_block_comment, + ACTIONS(6913), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [140216] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141419] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6927), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3550), 1, + anon_sym_COLON_EQ, + ACTIONS(6915), 1, anon_sym_COMMA, - ACTIONS(6929), 1, - anon_sym_in, - STATE(3952), 1, - aux_sym_var_definition_list_repeat1, - STATE(3957), 1, + STATE(3955), 3, sym_line_comment, - [140235] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6931), 1, - anon_sym_QMARK, - STATE(3958), 1, - sym_line_comment, - ACTIONS(5384), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [140252] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + aux_sym_strictly_expression_list_repeat1, + [141437] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(6933), 1, + ACTIONS(6918), 1, anon_sym_RBRACK, - STATE(3959), 1, - sym_line_comment, - STATE(3974), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - [140271] = 6, - ACTIONS(497), 1, + STATE(3956), 2, + sym_line_comment, + sym_block_comment, + [141457] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(5540), 1, + anon_sym_LBRACE, + ACTIONS(6920), 1, + anon_sym_COMMA, + STATE(3957), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, + aux_sym_match_expression_list_repeat1, + [141475] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6240), 1, + anon_sym_RBRACK, ACTIONS(6923), 1, - sym___double_quote, - STATE(3908), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3960), 1, + anon_sym_COMMA, + STATE(4080), 1, + aux_sym_capture_list_repeat1, + STATE(3958), 2, sym_line_comment, - [140290] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN, - STATE(1529), 1, - sym_const_definition, - STATE(3961), 1, - sym_line_comment, - [140309] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141495] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4039), 1, + anon_sym_SEMI, + ACTIONS(5272), 1, + anon_sym_COMMA, + STATE(4052), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3959), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [141515] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6925), 1, anon_sym_COMMA, - ACTIONS(6937), 1, + ACTIONS(6927), 1, anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(3962), 1, + STATE(4028), 1, + aux_sym_type_parameters_repeat1, + STATE(3960), 2, sym_line_comment, - [140328] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(3963), 1, - sym_line_comment, - ACTIONS(6688), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [140343] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [141535] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6757), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6939), 1, + ACTIONS(6929), 1, anon_sym_RPAREN, - STATE(3890), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - STATE(3964), 1, + STATE(3961), 2, sym_line_comment, - [140362] = 6, - ACTIONS(3), 1, + sym_block_comment, + [141555] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(3962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6213), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [141571] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(6931), 1, + anon_sym_RBRACK, + STATE(4062), 1, + aux_sym_type_parameters_repeat1, + STATE(3963), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [141591] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6933), 1, anon_sym_COMMA, - ACTIONS(6941), 1, + ACTIONS(6935), 1, anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(3965), 1, + STATE(4067), 1, + aux_sym_type_parameters_repeat1, + STATE(3964), 2, sym_line_comment, - [140381] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [141611] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3969), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6937), 2, anon_sym_COMMA, - ACTIONS(6943), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3966), 1, + STATE(3965), 2, sym_line_comment, - [140400] = 6, - ACTIONS(3), 1, + sym_block_comment, + [141629] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6939), 1, + anon_sym_COMMA, + ACTIONS(6941), 1, + anon_sym_RPAREN, + STATE(3969), 1, + aux_sym_type_parameters_repeat1, + STATE(3966), 2, + sym_line_comment, + sym_block_comment, + [141649] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(6943), 1, + anon_sym_RBRACK, + STATE(3982), 1, + aux_sym_type_parameters_repeat1, + STATE(3967), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [141669] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, ACTIONS(6945), 1, - anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3967), 1, + anon_sym_RBRACK, + STATE(3871), 1, + aux_sym_type_parameters_repeat1, + STATE(3968), 2, sym_line_comment, - [140419] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [141689] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5764), 1, + anon_sym_RPAREN, ACTIONS(6947), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6950), 1, - sym___double_quote, - STATE(3968), 2, + anon_sym_COMMA, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3969), 2, sym_line_comment, - aux_sym_raw_string_literal_repeat2, - [140436] = 5, - ACTIONS(497), 1, + sym_block_comment, + [141709] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(6949), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(3970), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6952), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6955), 1, - sym___single_quote, - STATE(3969), 2, + [141729] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6951), 1, + sym_identifier, + ACTIONS(6953), 1, + anon_sym_LBRACE, + STATE(2595), 1, + sym__content_block, + STATE(3971), 2, sym_line_comment, - aux_sym_raw_string_literal_repeat1, - [140453] = 6, + sym_block_comment, + [141749] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6955), 1, + sym___double_quote, + STATE(4089), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3972), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [141769] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, ACTIONS(6957), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3970), 1, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(3973), 2, sym_line_comment, - [140472] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [141789] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, ACTIONS(6959), 1, anon_sym_RPAREN, - STATE(3879), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - STATE(3971), 1, + STATE(3974), 2, sym_line_comment, - [140491] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [141809] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6961), 1, - sym_identifier, - ACTIONS(6963), 1, - anon_sym_PIPE, - STATE(3916), 1, - sym_reference_expression, - STATE(3972), 1, + anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_RBRACK, + STATE(3975), 3, sym_line_comment, - [140510] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + aux_sym_attribute_repeat1, + [141827] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3550), 1, + anon_sym_LBRACE, + ACTIONS(6966), 1, anon_sym_COMMA, - ACTIONS(6965), 1, - anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(3973), 1, + STATE(3976), 3, sym_line_comment, - [140529] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + aux_sym_strictly_expression_list_repeat1, + [141845] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4039), 1, + anon_sym_COLON_EQ, + ACTIONS(5088), 1, anon_sym_COMMA, - ACTIONS(6967), 1, - anon_sym_RBRACK, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3974), 1, + STATE(3955), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(3977), 2, sym_line_comment, - [140548] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6969), 1, - sym___double_quote, - STATE(3968), 1, - aux_sym_raw_string_literal_repeat2, - STATE(3975), 1, - sym_line_comment, - [140567] = 6, + [141865] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6955), 1, + sym___single_quote, + STATE(4085), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3978), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [141885] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5378), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_COMMA, - ACTIONS(6971), 1, - anon_sym_RPAREN, - STATE(3878), 1, - aux_sym_parameter_list_repeat1, - STATE(3976), 1, + STATE(4107), 1, + aux_sym_match_expression_list_repeat1, + STATE(3979), 2, sym_line_comment, - [140586] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5784), 1, - anon_sym_RPAREN, - ACTIONS(6973), 1, + [141905] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6969), 1, anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3977), 1, + ACTIONS(6971), 1, + anon_sym_RBRACK, + STATE(3958), 1, + aux_sym_capture_list_repeat1, + STATE(3980), 2, sym_line_comment, - [140605] = 6, - ACTIONS(497), 1, + sym_block_comment, + [141925] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6969), 1, + ACTIONS(6973), 1, sym___single_quote, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(3978), 1, + STATE(3981), 2, sym_line_comment, - [140624] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [141945] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, ACTIONS(6975), 1, - anon_sym_RPAREN, - STATE(3927), 1, - aux_sym_type_parameter_list_repeat1, - STATE(3979), 1, + anon_sym_RBRACK, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(3982), 2, sym_line_comment, - [140643] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6977), 1, - anon_sym_COMMA, - ACTIONS(6980), 1, - anon_sym_PIPE, - STATE(3980), 2, + [141965] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3983), 2, sym_line_comment, - aux_sym_short_lambda_repeat1, - [140660] = 6, + sym_block_comment, + ACTIONS(6977), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [141981] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6973), 1, + sym___double_quote, + STATE(3893), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3984), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [142001] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2760), 1, + sym_type_initializer_body, + ACTIONS(6979), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RPAREN, - STATE(3930), 1, - aux_sym_parameter_list_repeat1, - STATE(3981), 1, + STATE(3985), 2, sym_line_comment, - [140679] = 6, - ACTIONS(3), 1, + sym_block_comment, + [142019] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(3986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6981), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [142035] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5380), 1, + anon_sym_COMMA, + ACTIONS(6983), 1, + anon_sym_LBRACE, + STATE(4106), 1, + aux_sym_match_expression_list_repeat1, + STATE(3987), 2, + sym_line_comment, sym_block_comment, + [142055] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(3502), 1, - anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(5274), 1, anon_sym_COMMA, - STATE(3875), 1, + STATE(3917), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3982), 1, + STATE(3988), 2, sym_line_comment, - [140698] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5554), 1, - anon_sym_COMMA, - ACTIONS(5972), 1, + [142075] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6985), 1, + sym_identifier, + ACTIONS(6987), 1, anon_sym_LBRACE, - STATE(3983), 1, + STATE(2945), 1, + sym__content_block, + STATE(3989), 2, sym_line_comment, - STATE(4001), 1, - aux_sym_expression_without_blocks_list_repeat1, - [140717] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5782), 1, - anon_sym_RPAREN, - ACTIONS(6984), 1, - anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(3984), 1, - sym_line_comment, - [140736] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [142095] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3990), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5744), 1, - anon_sym_RPAREN, - ACTIONS(6986), 1, + ACTIONS(6989), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [142111] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(3787), 1, + ACTIONS(6991), 1, + anon_sym_RBRACK, + STATE(3945), 1, aux_sym_type_parameters_repeat1, - STATE(3985), 1, + STATE(3991), 2, sym_line_comment, - [140755] = 6, + sym_block_comment, + [142131] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(6993), 1, + sym___double_quote, + STATE(4109), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3992), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4042), 1, - anon_sym_COLON_EQ, - ACTIONS(5088), 1, + [142151] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3950), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3986), 1, + ACTIONS(6995), 1, + anon_sym_RPAREN, + STATE(3921), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3993), 2, sym_line_comment, - [140774] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [142171] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(6988), 1, + ACTIONS(6997), 1, anon_sym_RPAREN, - STATE(3987), 1, - sym_line_comment, - STATE(4016), 1, + STATE(3937), 1, aux_sym_parameter_list_repeat1, - [140793] = 6, + STATE(3994), 2, + sym_line_comment, + sym_block_comment, + [142191] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6993), 1, + sym___single_quote, + STATE(4031), 1, + aux_sym_raw_string_literal_repeat1, + STATE(3995), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [142211] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(6990), 1, + ACTIONS(6999), 1, anon_sym_RPAREN, - STATE(3988), 1, - sym_line_comment, - STATE(4017), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - [140812] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(3996), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4835), 1, - anon_sym_COMMA, - ACTIONS(6992), 1, - anon_sym_COLON_EQ, - STATE(3893), 1, - aux_sym_identifier_list_repeat1, - STATE(3989), 1, + [142231] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(3997), 2, sym_line_comment, - [140831] = 6, + sym_block_comment, + ACTIONS(7001), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [142247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7003), 1, + sym___double_quote, + STATE(4070), 1, + aux_sym_raw_string_literal_repeat2, + STATE(3998), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3502), 1, - anon_sym_LBRACE, - ACTIONS(5276), 1, + [142267] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3918), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3990), 1, + ACTIONS(7005), 1, + anon_sym_RPAREN, + STATE(3914), 1, + aux_sym_type_parameter_list_repeat1, + STATE(3999), 2, sym_line_comment, - [140850] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6994), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(3991), 1, - sym_line_comment, - [140869] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [142287] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6998), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7007), 1, sym_identifier, - ACTIONS(7000), 1, + ACTIONS(7009), 1, anon_sym_LBRACE, - STATE(2797), 1, + STATE(2708), 1, sym__content_block, - STATE(3992), 1, + STATE(4000), 2, sym_line_comment, - [140888] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [142307] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4835), 1, anon_sym_COMMA, - ACTIONS(7002), 1, - anon_sym_RBRACK, - STATE(3921), 1, - aux_sym_type_parameters_repeat1, - STATE(3993), 1, + ACTIONS(7011), 1, + anon_sym_COLON_EQ, + STATE(4099), 1, + aux_sym_identifier_list_repeat1, + STATE(4001), 2, sym_line_comment, - [140907] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142327] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7004), 1, + ACTIONS(7003), 1, sym___single_quote, - STATE(3969), 1, + STATE(4068), 1, aux_sym_raw_string_literal_repeat1, - STATE(3994), 1, + STATE(4002), 2, sym_line_comment, - [140926] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142347] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7004), 1, + ACTIONS(7013), 1, sym___double_quote, - STATE(3968), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - STATE(3995), 1, + STATE(4003), 2, sym_line_comment, - [140945] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(7006), 1, - anon_sym_LPAREN, - STATE(1548), 1, - sym_const_definition, - STATE(3996), 1, + [142367] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(4004), 2, sym_line_comment, - [140964] = 6, - ACTIONS(497), 1, + sym_block_comment, + ACTIONS(7015), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [142383] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7008), 1, + ACTIONS(7017), 1, sym___double_quote, - STATE(3997), 1, - sym_line_comment, - STATE(4026), 1, + STATE(4034), 1, aux_sym_raw_string_literal_repeat2, - [140983] = 6, - ACTIONS(497), 1, + STATE(4005), 2, + sym_line_comment, + sym_block_comment, + [142403] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7008), 1, + ACTIONS(7017), 1, sym___single_quote, - STATE(3998), 1, - sym_line_comment, - STATE(4027), 1, + STATE(4035), 1, aux_sym_raw_string_literal_repeat1, - [141002] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4006), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [142423] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7019), 1, anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_RBRACK, - STATE(3907), 1, - aux_sym_type_parameters_repeat1, - STATE(3999), 1, + ACTIONS(7022), 1, + anon_sym_in, + STATE(4007), 3, sym_line_comment, - [141021] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7010), 1, - anon_sym_DOT, - ACTIONS(7012), 1, - anon_sym_RBRACE, - ACTIONS(7014), 1, - aux_sym_format_specifier_token1, - STATE(4000), 1, - sym_line_comment, - [141040] = 5, + aux_sym_var_definition_list_repeat1, + [142441] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7013), 1, + sym___single_quote, + STATE(3894), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4008), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4896), 1, - anon_sym_LBRACE, - ACTIONS(7016), 1, + [142461] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(4001), 2, + ACTIONS(7024), 1, + anon_sym_RPAREN, + STATE(3943), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4009), 2, sym_line_comment, - aux_sym_expression_without_blocks_list_repeat1, - [141057] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5320), 1, + [142481] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7019), 1, - anon_sym_LBRACE, - STATE(3863), 1, - aux_sym_match_expression_list_repeat1, - STATE(4002), 1, + ACTIONS(7026), 1, + anon_sym_RPAREN, + STATE(3941), 1, + aux_sym_parameter_list_repeat1, + STATE(4010), 2, sym_line_comment, - [141076] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2742), 1, - sym_type_initializer_body, - STATE(4003), 1, - sym_line_comment, - ACTIONS(7021), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [141093] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [142501] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5772), 1, + anon_sym_RPAREN, + ACTIONS(7028), 1, anon_sym_COMMA, - ACTIONS(7023), 1, - anon_sym_RBRACK, - STATE(4004), 1, - sym_line_comment, - STATE(4023), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - [141112] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(4011), 2, + sym_line_comment, + sym_block_comment, + [142521] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(7030), 1, + anon_sym_RPAREN, + STATE(4036), 1, + aux_sym_parameter_list_repeat1, + STATE(4012), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3273), 1, + [142541] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3356), 1, anon_sym_COMMA, - ACTIONS(5132), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2881), 1, + STATE(2822), 1, sym_block, - STATE(4005), 1, + STATE(4013), 2, sym_line_comment, - [141131] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(2742), 1, + [142561] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2760), 1, sym_type_initializer_body, - STATE(4006), 1, - sym_line_comment, - ACTIONS(3269), 2, + ACTIONS(3352), 2, anon_sym_LBRACE, anon_sym_COMMA, - [141148] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4014), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7025), 1, + [142579] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5754), 1, + anon_sym_RPAREN, + ACTIONS(7032), 1, anon_sym_COMMA, - ACTIONS(7028), 1, - anon_sym_RBRACK, - STATE(4007), 2, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(4015), 2, sym_line_comment, - aux_sym_capture_list_repeat1, - [141165] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [142599] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7034), 1, anon_sym_COMMA, - ACTIONS(7030), 1, - anon_sym_RPAREN, - STATE(3970), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4008), 1, + ACTIONS(7036), 1, + anon_sym_PIPE, + STATE(4057), 1, + aux_sym_short_lambda_repeat1, + STATE(4016), 2, sym_line_comment, - [141184] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [142619] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7032), 1, + ACTIONS(7038), 1, anon_sym_RPAREN, - STATE(3973), 1, - aux_sym_parameter_list_repeat1, - STATE(4009), 1, + STATE(4038), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4017), 2, sym_line_comment, - [141203] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5318), 1, - anon_sym_LBRACE, - ACTIONS(5320), 1, + [142639] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(3877), 1, - aux_sym_match_expression_list_repeat1, - STATE(4010), 1, + ACTIONS(7040), 1, + anon_sym_RBRACK, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(4018), 2, sym_line_comment, - [141222] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3265), 1, + [142659] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3348), 1, anon_sym_COMMA, - ACTIONS(7034), 1, + ACTIONS(7042), 1, anon_sym_LBRACE, - STATE(2742), 1, + STATE(2760), 1, sym_type_initializer_body, - STATE(4011), 1, + STATE(4019), 2, sym_line_comment, - [141241] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(7036), 1, - anon_sym_RBRACK, - STATE(4012), 1, - sym_line_comment, - STATE(4022), 1, - aux_sym_type_parameters_repeat1, - [141260] = 5, + [142679] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7044), 1, + sym___double_quote, + STATE(3893), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4020), 2, + sym_line_comment, sym_block_comment, - STATE(2742), 1, + [142699] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(2760), 1, sym_type_initializer_body, - STATE(4013), 1, - sym_line_comment, - ACTIONS(3257), 2, + ACTIONS(3340), 2, anon_sym_LBRACE, anon_sym_COMMA, - [141277] = 6, + STATE(4021), 2, + sym_line_comment, + sym_block_comment, + [142717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7044), 1, + sym___single_quote, + STATE(3894), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4022), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5780), 1, + [142737] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5750), 1, anon_sym_RPAREN, - ACTIONS(7038), 1, + ACTIONS(7046), 1, anon_sym_COMMA, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4014), 1, + STATE(4023), 2, sym_line_comment, - [141296] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7040), 1, - anon_sym_COMMA, - ACTIONS(7042), 1, - anon_sym_RPAREN, - STATE(3933), 1, - aux_sym_type_parameters_repeat1, - STATE(4015), 1, - sym_line_comment, - [141315] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [142757] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6753), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7044), 1, + ACTIONS(7048), 1, anon_sym_RPAREN, - STATE(3911), 1, + STATE(3916), 1, aux_sym_parameter_list_repeat1, - STATE(4016), 1, + STATE(4024), 2, sym_line_comment, - [141334] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [142777] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7046), 1, + ACTIONS(7050), 1, anon_sym_RPAREN, - STATE(3890), 1, + STATE(3961), 1, aux_sym_type_parameter_list_repeat1, - STATE(4017), 1, + STATE(4025), 2, sym_line_comment, - [141353] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [142797] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7048), 1, - anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4018), 1, + ACTIONS(7052), 1, + anon_sym_RBRACK, + STATE(4051), 1, + aux_sym_type_parameters_repeat1, + STATE(4026), 2, sym_line_comment, - [141372] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [142817] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7050), 1, + ACTIONS(7054), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4019), 1, + STATE(3970), 1, + aux_sym_parameter_list_repeat1, + STATE(4027), 2, sym_line_comment, - [141391] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7052), 1, - sym_identifier, - ACTIONS(7054), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym__content_block, - STATE(4020), 1, - sym_line_comment, - [141410] = 6, - ACTIONS(497), 1, + [142837] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, + ACTIONS(5782), 1, + anon_sym_RPAREN, ACTIONS(7056), 1, - sym___single_quote, - STATE(3969), 1, - aux_sym_raw_string_literal_repeat1, - STATE(4021), 1, - sym_line_comment, - [141429] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RBRACK, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4022), 1, + STATE(4028), 2, sym_line_comment, - [141448] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [142857] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(4029), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + ACTIONS(6682), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [142873] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7060), 1, - anon_sym_RBRACK, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(4023), 1, + ACTIONS(7058), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(4030), 2, sym_line_comment, - [141467] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142893] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6914), 1, + ACTIONS(7060), 1, sym___single_quote, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(4024), 1, + STATE(4031), 2, sym_line_comment, - [141486] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142913] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, ACTIONS(7062), 1, sym___single_quote, - STATE(3969), 1, + STATE(3981), 1, aux_sym_raw_string_literal_repeat1, - STATE(4025), 1, + STATE(4032), 2, sym_line_comment, - [141505] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142933] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7062), 1, + sym___double_quote, + STATE(3984), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4033), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6743), 1, + [142953] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, ACTIONS(7064), 1, sym___double_quote, - STATE(3968), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - STATE(4026), 1, + STATE(4034), 2, sym_line_comment, - [141524] = 6, - ACTIONS(497), 1, + sym_block_comment, + [142973] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, ACTIONS(7064), 1, sym___single_quote, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(4027), 1, + STATE(4035), 2, sym_line_comment, - [141543] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7066), 1, - sym_identifier, - ACTIONS(7068), 1, - anon_sym_LBRACE, - STATE(1754), 1, - sym__content_block, - STATE(4028), 1, - sym_line_comment, - [141562] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [142993] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6844), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7070), 1, - anon_sym_PIPE, - STATE(3980), 1, - aux_sym_short_lambda_repeat1, - STATE(4029), 1, + ACTIONS(7066), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(4036), 2, sym_line_comment, - [141581] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(7072), 1, - anon_sym_LPAREN, - STATE(1528), 1, - sym_const_definition, - STATE(4030), 1, - sym_line_comment, - [141600] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143013] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4018), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7068), 1, + sym_identifier, + ACTIONS(7070), 1, anon_sym_LBRACE, - ACTIONS(5276), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4031), 1, + STATE(1907), 1, + sym__content_block, + STATE(4037), 2, sym_line_comment, - [141619] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7074), 1, + [143033] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7076), 1, + ACTIONS(7072), 1, anon_sym_RPAREN, - STATE(3940), 1, - aux_sym_type_parameters_repeat1, - STATE(4032), 1, - sym_line_comment, - [141638] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7062), 1, - sym___double_quote, - STATE(3968), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4033), 1, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4038), 2, sym_line_comment, - [141657] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7056), 1, - sym___double_quote, - STATE(3968), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4034), 1, - sym_line_comment, - [141676] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143053] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5502), 1, - anon_sym_LBRACE, - ACTIONS(7078), 1, - anon_sym_COMMA, - STATE(4035), 2, - sym_line_comment, - aux_sym_match_expression_list_repeat1, - [141693] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7081), 1, - sym___single_quote, - STATE(3994), 1, - aux_sym_raw_string_literal_repeat1, - STATE(4036), 1, - sym_line_comment, - [141712] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7081), 1, - sym___double_quote, - STATE(3995), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4037), 1, - sym_line_comment, - [141731] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5768), 1, + ACTIONS(5762), 1, anon_sym_RPAREN, - ACTIONS(7083), 1, + ACTIONS(7074), 1, anon_sym_COMMA, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4038), 1, + STATE(4039), 2, sym_line_comment, - [141750] = 6, + sym_block_comment, + [143073] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7076), 1, + sym___single_quote, + STATE(3894), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4040), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [143093] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7085), 1, + ACTIONS(7078), 1, anon_sym_RPAREN, - STATE(4039), 1, - sym_line_comment, - STATE(4064), 1, + STATE(4105), 1, aux_sym_parameter_list_repeat1, - [141769] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4041), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [143113] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7087), 1, + ACTIONS(7080), 1, anon_sym_RPAREN, - STATE(4040), 1, - sym_line_comment, - STATE(4065), 1, + STATE(3996), 1, aux_sym_type_parameter_list_repeat1, - [141788] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(3985), 1, - aux_sym_type_parameters_repeat1, - STATE(4041), 1, + STATE(4042), 2, sym_line_comment, - ACTIONS(7089), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [141805] = 6, + sym_block_comment, + [143133] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7091), 1, - sym_identifier, - ACTIONS(7093), 1, - anon_sym_LBRACE, - STATE(2015), 1, - sym__content_block, - STATE(4042), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7076), 1, + sym___double_quote, + STATE(3893), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4043), 2, sym_line_comment, - [141824] = 6, - ACTIONS(497), 1, + sym_block_comment, + [143153] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7095), 1, + ACTIONS(7082), 1, sym___double_quote, - STATE(4043), 1, - sym_line_comment, - STATE(4066), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - [141843] = 6, - ACTIONS(497), 1, + STATE(4044), 2, + sym_line_comment, + sym_block_comment, + [143173] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7095), 1, + ACTIONS(7082), 1, sym___single_quote, - STATE(4044), 1, - sym_line_comment, - STATE(4072), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - [141862] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7097), 1, - sym_identifier, - ACTIONS(7099), 1, - anon_sym_LBRACE, - STATE(2584), 1, - sym__content_block, - STATE(4045), 1, + STATE(4045), 2, sym_line_comment, - [141881] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4046), 1, - sym_line_comment, - ACTIONS(7101), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [141896] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143193] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(4047), 1, - sym_line_comment, - ACTIONS(6594), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [141911] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7103), 1, - anon_sym_COMMA, - ACTIONS(7105), 1, + ACTIONS(5776), 1, anon_sym_RPAREN, - STATE(4048), 1, - sym_line_comment, - STATE(4068), 1, + ACTIONS(7084), 1, + anon_sym_COMMA, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - [141930] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4046), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6757), 1, + [143213] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7107), 1, + ACTIONS(7086), 1, anon_sym_RPAREN, - STATE(3967), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4049), 1, + STATE(4072), 1, + aux_sym_parameter_list_repeat1, + STATE(4047), 2, sym_line_comment, - [141949] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4050), 1, - sym_line_comment, - ACTIONS(7109), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [141964] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143233] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6753), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7111), 1, + ACTIONS(7088), 1, anon_sym_RPAREN, - STATE(4051), 1, + STATE(4073), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4048), 2, sym_line_comment, - STATE(4053), 1, - aux_sym_parameter_list_repeat1, - [141983] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7113), 1, - sym_identifier, - ACTIONS(7115), 1, + [143253] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4896), 1, anon_sym_LBRACE, - STATE(1851), 1, - sym__content_block, - STATE(4052), 1, + ACTIONS(7090), 1, + anon_sym_COMMA, + STATE(4049), 3, sym_line_comment, - [142002] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(7117), 1, + aux_sym_expression_without_blocks_list_repeat1, + [143271] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5752), 1, anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4053), 1, + ACTIONS(7093), 1, + anon_sym_COMMA, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(4050), 2, sym_line_comment, - [142021] = 6, - ACTIONS(3), 1, + sym_block_comment, + [143291] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(7095), 1, + anon_sym_RBRACK, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(4051), 2, + sym_line_comment, + sym_block_comment, + [143311] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3550), 1, + anon_sym_SEMI, + ACTIONS(7097), 1, + anon_sym_COMMA, + STATE(4052), 3, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + aux_sym_strictly_expression_list_repeat1, + [143329] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7100), 1, anon_sym_COMMA, - ACTIONS(7119), 1, + ACTIONS(7103), 1, anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4054), 1, + STATE(4053), 3, sym_line_comment, - [142040] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + aux_sym_parameter_list_repeat1, + [143347] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7105), 1, anon_sym_COMMA, - ACTIONS(7121), 1, + ACTIONS(7108), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4055), 1, + STATE(4054), 3, sym_line_comment, - [142059] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + aux_sym_type_parameter_list_repeat1, + [143365] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7123), 1, + ACTIONS(7110), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4056), 1, + STATE(4055), 2, sym_line_comment, - [142078] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(7125), 1, - anon_sym_static, - ACTIONS(7127), 1, - anon_sym_volatile, - STATE(4057), 1, - sym_line_comment, - [142097] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143385] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_RBRACK, - STATE(4058), 1, - sym_line_comment, - STATE(4073), 1, - aux_sym_type_parameters_repeat1, - [142116] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6757), 1, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7131), 1, + ACTIONS(7112), 1, anon_sym_RPAREN, - STATE(3890), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - STATE(4059), 1, + STATE(4056), 2, sym_line_comment, - [142135] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [143405] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7034), 1, + anon_sym_COMMA, + ACTIONS(7114), 1, + anon_sym_PIPE, + STATE(3919), 1, + aux_sym_short_lambda_repeat1, + STATE(4057), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [143425] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7133), 1, + ACTIONS(7116), 1, anon_sym_RPAREN, - STATE(3911), 1, + STATE(4053), 1, aux_sym_parameter_list_repeat1, - STATE(4060), 1, + STATE(4058), 2, sym_line_comment, - [142154] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6898), 1, - anon_sym_SEMI, - ACTIONS(7135), 1, - anon_sym_RBRACK, - STATE(3943), 1, - aux_sym_attribute_repeat1, - STATE(4061), 1, - sym_line_comment, - [142173] = 6, - ACTIONS(3), 1, + [143445] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(7118), 1, + anon_sym_LPAREN, + STATE(1553), 1, + sym_const_definition, + STATE(4059), 2, + sym_line_comment, + sym_block_comment, + [143465] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7120), 1, + anon_sym_COMMA, + ACTIONS(7122), 1, + anon_sym_RPAREN, + STATE(4039), 1, + aux_sym_type_parameters_repeat1, + STATE(4060), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6461), 1, + [143485] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(7124), 1, anon_sym_RBRACK, - STATE(4056), 1, + STATE(4055), 1, aux_sym_type_parameters_repeat1, - STATE(4062), 1, + STATE(4061), 2, sym_line_comment, - [142192] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7139), 1, + [143505] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7141), 1, - anon_sym_RPAREN, - STATE(4038), 1, + ACTIONS(7126), 1, + anon_sym_RBRACK, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4063), 1, + STATE(4062), 2, sym_line_comment, - [142211] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [143525] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7143), 1, + ACTIONS(7128), 1, anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4064), 1, + STATE(4056), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4063), 2, sym_line_comment, - [142230] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [143545] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7145), 1, + ACTIONS(7130), 1, anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4065), 1, + STATE(4058), 1, + aux_sym_parameter_list_repeat1, + STATE(4064), 2, sym_line_comment, - [142249] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6743), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7147), 1, - sym___double_quote, - STATE(3968), 1, - aux_sym_raw_string_literal_repeat2, - STATE(4066), 1, - sym_line_comment, - [142268] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143565] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6757), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7149), 1, + ACTIONS(7132), 1, anon_sym_RPAREN, - STATE(4059), 1, + STATE(4054), 1, aux_sym_type_parameter_list_repeat1, - STATE(4067), 1, + STATE(4065), 2, sym_line_comment, - [142287] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5772), 1, - anon_sym_RPAREN, - ACTIONS(7151), 1, + [143585] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(3787), 1, + ACTIONS(7134), 1, + anon_sym_RBRACK, + STATE(4081), 1, aux_sym_type_parameters_repeat1, - STATE(4068), 1, + STATE(4066), 2, sym_line_comment, - [142306] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_RPAREN, - STATE(4060), 1, - aux_sym_parameter_list_repeat1, - STATE(4069), 1, - sym_line_comment, - [142325] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143605] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7157), 1, - anon_sym_COLON, - STATE(4070), 1, - sym_line_comment, - ACTIONS(7155), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [142342] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5754), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - ACTIONS(7159), 1, + ACTIONS(7136), 1, anon_sym_COMMA, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4071), 1, + STATE(4067), 2, sym_line_comment, - [142361] = 6, - ACTIONS(497), 1, + sym_block_comment, + [143625] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7147), 1, + ACTIONS(7138), 1, sym___single_quote, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(4072), 1, + STATE(4068), 2, sym_line_comment, - [142380] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(7161), 1, - anon_sym_RBRACK, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(4073), 1, - sym_line_comment, - [142399] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143645] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(4074), 1, - sym_line_comment, - ACTIONS(7163), 3, - anon_sym_LBRACE, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6744), 1, + sym_identifier, + ACTIONS(7140), 1, anon_sym_LPAREN, - anon_sym_EQ, - [142414] = 6, - ACTIONS(497), 1, + STATE(1537), 1, + sym_const_definition, + STATE(4069), 2, + sym_line_comment, + sym_block_comment, + [143665] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7165), 1, + ACTIONS(7138), 1, sym___double_quote, - STATE(3951), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - STATE(4075), 1, + STATE(4070), 2, sym_line_comment, - [142433] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(6729), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7165), 1, - sym___single_quote, - STATE(4024), 1, - aux_sym_raw_string_literal_repeat1, - STATE(4076), 1, - sym_line_comment, - [142452] = 6, - ACTIONS(3), 1, + [143685] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7142), 1, + sym_identifier, + ACTIONS(7144), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym__content_block, + STATE(4071), 2, + sym_line_comment, + sym_block_comment, + [143705] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(7146), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(4072), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3502), 1, - anon_sym_COLON_EQ, - ACTIONS(5088), 1, + [143725] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3986), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4077), 1, + ACTIONS(7148), 1, + anon_sym_RPAREN, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4073), 2, sym_line_comment, - [142471] = 4, - ACTIONS(3), 1, + sym_block_comment, + [143745] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + STATE(4074), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(7150), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [143761] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(4075), 2, + sym_line_comment, sym_block_comment, - STATE(4078), 1, + ACTIONS(6581), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [143777] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(4076), 2, sym_line_comment, - ACTIONS(7167), 3, + sym_block_comment, + ACTIONS(7152), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [142486] = 5, - ACTIONS(3), 1, + [143793] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7154), 1, + anon_sym_COMMA, + ACTIONS(7156), 1, + anon_sym_RPAREN, + STATE(4050), 1, + aux_sym_type_parameters_repeat1, + STATE(4077), 2, + sym_line_comment, + sym_block_comment, + [143813] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(7158), 1, + anon_sym_RPAREN, + STATE(4030), 1, + aux_sym_parameter_list_repeat1, + STATE(4078), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7169), 1, - anon_sym_SEMI, - ACTIONS(7172), 1, - anon_sym_RBRACK, + [143833] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(7160), 1, + anon_sym_RPAREN, + STATE(3940), 1, + aux_sym_type_parameter_list_repeat1, STATE(4079), 2, sym_line_comment, - aux_sym_attribute_repeat1, - [142503] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [143853] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7162), 1, anon_sym_COMMA, - ACTIONS(7174), 1, + ACTIONS(7165), 1, anon_sym_RBRACK, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(4080), 1, + STATE(4080), 3, sym_line_comment, - [142522] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6236), 1, - anon_sym_RBRACK, - ACTIONS(7176), 1, - anon_sym_COMMA, - STATE(4007), 1, aux_sym_capture_list_repeat1, - STATE(4081), 1, - sym_line_comment, - [142541] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143871] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5758), 1, - anon_sym_RPAREN, - ACTIONS(7178), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - STATE(3787), 1, + ACTIONS(7167), 1, + anon_sym_RBRACK, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4082), 1, + STATE(4081), 2, sym_line_comment, - [142560] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [143891] = 6, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5582), 1, + anon_sym_COMMA, + ACTIONS(5979), 1, + anon_sym_LBRACE, + STATE(4049), 1, + aux_sym_expression_without_blocks_list_repeat1, + STATE(4082), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6753), 1, + [143911] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7180), 1, + ACTIONS(7169), 1, anon_sym_RPAREN, - STATE(4083), 1, + STATE(4065), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4083), 2, sym_line_comment, - STATE(4098), 1, - aux_sym_parameter_list_repeat1, - [142579] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [143931] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7182), 1, + ACTIONS(7171), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4084), 1, + STATE(4084), 2, sym_line_comment, - [142598] = 6, - ACTIONS(497), 1, + sym_block_comment, + [143951] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7184), 1, + ACTIONS(7173), 1, sym___single_quote, - STATE(3969), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(4085), 1, + STATE(4085), 2, sym_line_comment, - [142617] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [143971] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7186), 1, + ACTIONS(7175), 1, anon_sym_RBRACK, - STATE(3787), 1, + STATE(3705), 1, aux_sym_type_parameters_repeat1, - STATE(4086), 1, + STATE(4086), 2, sym_line_comment, - [142636] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(7188), 1, - anon_sym_RPAREN, - STATE(4087), 1, - sym_line_comment, - STATE(4095), 1, - aux_sym_type_parameter_list_repeat1, - [142655] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [143991] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(4088), 1, - sym_line_comment, - ACTIONS(3943), 3, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6740), 1, anon_sym_SEMI, + ACTIONS(7177), 1, anon_sym_RBRACK, - anon_sym_COLON, - [142670] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7190), 1, - sym_identifier, - ACTIONS(7192), 1, - anon_sym_LBRACE, - STATE(2040), 1, - sym__content_block, - STATE(4089), 1, + STATE(3878), 1, + aux_sym_attribute_repeat1, + STATE(4087), 2, sym_line_comment, - [142689] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4090), 1, + [144011] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6611), 1, + anon_sym_DOT, + ACTIONS(6613), 1, + anon_sym_RBRACE, + ACTIONS(6617), 1, + aux_sym_format_specifier_token1, + STATE(4088), 2, sym_line_comment, - ACTIONS(6439), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [142704] = 6, - ACTIONS(497), 1, + sym_block_comment, + [144031] = 6, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7184), 1, + ACTIONS(7173), 1, sym___double_quote, - STATE(3968), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - STATE(4091), 1, + STATE(4089), 2, sym_line_comment, - [142723] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(7194), 1, - anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4092), 1, - sym_line_comment, - [142742] = 6, + [144051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(7196), 1, - anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4093), 1, - sym_line_comment, - [142761] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6729), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7198), 1, + ACTIONS(7179), 1, sym___single_quote, - STATE(4025), 1, + STATE(3894), 1, aux_sym_raw_string_literal_repeat1, - STATE(4094), 1, + STATE(4090), 2, sym_line_comment, - [142780] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, - anon_sym_COMMA, - ACTIONS(7200), 1, - anon_sym_RPAREN, - STATE(3890), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4095), 1, - sym_line_comment, - [142799] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144071] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6461), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_RBRACK, - STATE(4086), 1, - aux_sym_type_parameters_repeat1, - STATE(4096), 1, - sym_line_comment, - [142818] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(4097), 1, + ACTIONS(7183), 1, + anon_sym_COLON, + ACTIONS(7181), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4091), 2, sym_line_comment, - ACTIONS(6213), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [142833] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, - anon_sym_COMMA, - ACTIONS(7204), 1, - anon_sym_RPAREN, - STATE(3911), 1, - aux_sym_parameter_list_repeat1, - STATE(4098), 1, - sym_line_comment, - [142852] = 6, + [144089] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6927), 1, - anon_sym_COMMA, - ACTIONS(7206), 1, - anon_sym_in, - STATE(3957), 1, - aux_sym_var_definition_list_repeat1, - STATE(4099), 1, - sym_line_comment, - [142871] = 6, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(6743), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7198), 1, + ACTIONS(7179), 1, sym___double_quote, - STATE(4033), 1, + STATE(3893), 1, aux_sym_raw_string_literal_repeat2, - STATE(4100), 1, + STATE(4092), 2, sym_line_comment, - [142890] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6757), 1, + [144109] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3502), 1, + anon_sym_COLON_EQ, + ACTIONS(5088), 1, anon_sym_COMMA, - ACTIONS(7208), 1, - anon_sym_RPAREN, - STATE(4092), 1, - aux_sym_type_parameter_list_repeat1, - STATE(4101), 1, + STATE(3977), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4093), 2, sym_line_comment, - [142909] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6461), 1, + [144129] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6421), 1, anon_sym_COMMA, - ACTIONS(7210), 1, + ACTIONS(7185), 1, anon_sym_RBRACK, - STATE(4080), 1, + STATE(4086), 1, aux_sym_type_parameters_repeat1, - STATE(4102), 1, + STATE(4094), 2, sym_line_comment, - [142928] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6753), 1, + [144149] = 6, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6728), 1, anon_sym_COMMA, - ACTIONS(7212), 1, + ACTIONS(7187), 1, anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_parameter_list_repeat1, - STATE(4103), 1, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4095), 2, sym_line_comment, - [142947] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5756), 1, - anon_sym_RPAREN, - ACTIONS(7214), 1, - anon_sym_COMMA, - STATE(3787), 1, - aux_sym_type_parameters_repeat1, - STATE(4104), 1, - sym_line_comment, - [142966] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144169] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7216), 1, - sym_identifier, - ACTIONS(7218), 1, - anon_sym_LBRACE, - STATE(2401), 1, - sym__content_block, - STATE(4105), 1, - sym_line_comment, - [142985] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7220), 1, + ACTIONS(6716), 1, anon_sym_COMMA, - ACTIONS(7222), 1, + ACTIONS(7189), 1, anon_sym_RPAREN, - STATE(4106), 1, - sym_line_comment, - [143001] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5146), 1, - anon_sym_LBRACE, - STATE(2304), 1, - sym_block, - STATE(4107), 1, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(4096), 2, sym_line_comment, - [143017] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6418), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym__struct_body, - STATE(4108), 1, - sym_line_comment, - [143033] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144189] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5086), 1, - anon_sym_LBRACE, - STATE(2348), 1, - sym_block, - STATE(4109), 1, - sym_line_comment, - [143049] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7192), 1, + ACTIONS(7191), 1, + sym_identifier, + ACTIONS(7193), 1, anon_sym_LBRACE, - STATE(2070), 1, + STATE(2089), 1, sym__content_block, - STATE(4110), 1, + STATE(4097), 2, sym_line_comment, - [143065] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, - anon_sym_LBRACE, - STATE(1902), 1, - sym_type_initializer_body, - STATE(4111), 1, - sym_line_comment, - [143081] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144209] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(2069), 1, - sym_block, - STATE(4112), 1, - sym_line_comment, - [143097] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7224), 1, - anon_sym_LPAREN, - STATE(2395), 1, - sym_special_argument_list, - STATE(4113), 1, + ACTIONS(6421), 1, + anon_sym_COMMA, + ACTIONS(7195), 1, + anon_sym_RBRACK, + STATE(4084), 1, + aux_sym_type_parameters_repeat1, + STATE(4098), 2, sym_line_comment, - [143113] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(1841), 1, - sym_block, - STATE(4114), 1, - sym_line_comment, - [143129] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144229] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7226), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4115), 1, - sym_line_comment, - [143145] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2170), 1, - sym_block, - STATE(4116), 1, + ACTIONS(7197), 1, + anon_sym_COMMA, + ACTIONS(7200), 1, + anon_sym_COLON_EQ, + STATE(4099), 3, sym_line_comment, - [143161] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - STATE(1537), 1, - sym__interface_body, - STATE(4117), 1, - sym_line_comment, - [143177] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + aux_sym_identifier_list_repeat1, + [144247] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(4118), 1, - sym_line_comment, - ACTIONS(4874), 2, - anon_sym_COMMA, - anon_sym_in, - [143191] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7228), 1, - anon_sym_COMMA, - ACTIONS(7230), 1, + ACTIONS(5784), 1, anon_sym_RPAREN, - STATE(4119), 1, - sym_line_comment, - [143207] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7054), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym__content_block, - STATE(4120), 1, + ACTIONS(7202), 1, + anon_sym_COMMA, + STATE(3705), 1, + aux_sym_type_parameters_repeat1, + STATE(4100), 2, sym_line_comment, - [143223] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7232), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym__struct_body, - STATE(4121), 1, - sym_line_comment, - [143239] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144267] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4707), 1, - anon_sym_LBRACE, - STATE(1599), 1, - sym_block, - STATE(4122), 1, - sym_line_comment, - [143255] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4707), 1, - anon_sym_LBRACE, - STATE(1600), 1, - sym_block, - STATE(4123), 1, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(7204), 1, + anon_sym_RPAREN, + STATE(3944), 1, + aux_sym_parameter_list_repeat1, + STATE(4101), 2, sym_line_comment, - [143271] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7234), 1, - sym_identifier, - STATE(1573), 1, - sym_label_reference, - STATE(4124), 1, - sym_line_comment, - [143287] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144287] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7236), 1, - anon_sym_LBRACE, - STATE(1605), 1, - sym__content_block, - STATE(4125), 1, - sym_line_comment, - [143303] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5144), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_block, - STATE(4126), 1, + ACTIONS(6728), 1, + anon_sym_COMMA, + ACTIONS(7206), 1, + anon_sym_RPAREN, + STATE(4095), 1, + aux_sym_type_parameter_list_repeat1, + STATE(4102), 2, sym_line_comment, - [143319] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6961), 1, - sym_identifier, - STATE(3958), 1, - sym_reference_expression, - STATE(4127), 1, - sym_line_comment, - [143335] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144307] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2134), 1, - sym_block, - STATE(4128), 1, - sym_line_comment, - [143351] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2163), 1, - sym_block, - STATE(4129), 1, + STATE(4103), 2, sym_line_comment, - [143367] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(485), 1, - sym_block, - STATE(4130), 1, - sym_line_comment, - [143383] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3941), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [144323] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1863), 1, - anon_sym_RBRACE, - STATE(3815), 1, - sym___rcbr, - STATE(4131), 1, - sym_line_comment, - [143399] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7238), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym__struct_body, - STATE(4132), 1, + ACTIONS(6762), 1, + anon_sym_COMMA, + ACTIONS(7208), 1, + anon_sym_in, + STATE(3889), 1, + aux_sym_var_definition_list_repeat1, + STATE(4104), 2, sym_line_comment, - [143415] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4707), 1, - anon_sym_LBRACE, - STATE(1581), 1, - sym_block, - STATE(4133), 1, - sym_line_comment, - [143431] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144343] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7034), 1, - anon_sym_LBRACE, - STATE(2742), 1, - sym_type_initializer_body, - STATE(4134), 1, - sym_line_comment, - [143447] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7240), 1, - anon_sym_LBRACE, - STATE(1371), 1, - sym_type_initializer_body, - STATE(4135), 1, + ACTIONS(6716), 1, + anon_sym_COMMA, + ACTIONS(7210), 1, + anon_sym_RPAREN, + STATE(4053), 1, + aux_sym_parameter_list_repeat1, + STATE(4105), 2, sym_line_comment, - [143463] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(1962), 1, - sym_block, - STATE(4136), 1, - sym_line_comment, - [143479] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144363] = 6, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7242), 1, - anon_sym_LBRACE, - STATE(1902), 1, - sym_type_initializer_body, - STATE(4137), 1, - sym_line_comment, - [143495] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6429), 1, + ACTIONS(5380), 1, + anon_sym_COMMA, + ACTIONS(7212), 1, anon_sym_LBRACE, - STATE(1596), 1, - sym__interface_body, - STATE(4138), 1, + STATE(3957), 1, + aux_sym_match_expression_list_repeat1, + STATE(4106), 2, sym_line_comment, - [143511] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, - anon_sym_LBRACE, - STATE(1902), 1, - sym_type_initializer_body, - STATE(4139), 1, - sym_line_comment, - [143527] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144383] = 6, ACTIONS(5), 1, - sym_block_comment, - STATE(4140), 1, - sym_line_comment, - ACTIONS(3948), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [143541] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7244), 1, + ACTIONS(5380), 1, + anon_sym_COMMA, + ACTIONS(7214), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4141), 1, + STATE(3957), 1, + aux_sym_match_expression_list_repeat1, + STATE(4107), 2, sym_line_comment, - [143557] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4142), 1, - sym_line_comment, - ACTIONS(7246), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [143571] = 5, + [144403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(757), 1, - sym_block, - STATE(4143), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7216), 1, + sym___double_quote, + STATE(4043), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4108), 2, sym_line_comment, - [143587] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4144), 1, - sym_line_comment, - ACTIONS(6650), 2, - anon_sym_RBRACE, - sym_identifier, - [143601] = 5, + [144423] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_block, - STATE(4145), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6758), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7060), 1, + sym___double_quote, + STATE(3893), 1, + aux_sym_raw_string_literal_repeat2, + STATE(4109), 2, sym_line_comment, - [143617] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4146), 1, - sym_line_comment, - ACTIONS(7248), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [143631] = 4, + [144443] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(6754), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7216), 1, + sym___single_quote, + STATE(4040), 1, + aux_sym_raw_string_literal_repeat1, + STATE(4110), 2, + sym_line_comment, sym_block_comment, - STATE(4147), 1, + [144463] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + STATE(4111), 2, sym_line_comment, - ACTIONS(7172), 2, + sym_block_comment, + ACTIONS(6448), 3, anon_sym_SEMI, anon_sym_RBRACK, - [143645] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON, + [144479] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7242), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6481), 1, anon_sym_LBRACE, - STATE(1902), 1, - sym_type_initializer_body, - STATE(4148), 1, + STATE(1569), 1, + sym__enum_body, + STATE(4112), 2, sym_line_comment, - [143661] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6864), 1, + [144496] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(1181), 1, - sym__content_block, - STATE(4149), 1, + STATE(2709), 1, + sym_block, + STATE(4113), 2, sym_line_comment, - [143677] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5140), 1, + [144513] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1753), 1, + STATE(1387), 1, sym_block, - STATE(4150), 1, + STATE(4114), 2, sym_line_comment, - [143693] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7250), 1, - sym_identifier, - STATE(1414), 1, - sym_type_reference_expression, - STATE(4151), 1, - sym_line_comment, - [143709] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144530] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4711), 1, - anon_sym_LPAREN, - STATE(2123), 1, - sym_argument_list, - STATE(4152), 1, - sym_line_comment, - [143725] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7252), 1, + ACTIONS(7218), 1, anon_sym_LBRACE, - STATE(2749), 1, + STATE(2226), 1, sym__struct_body, - STATE(4153), 1, + STATE(4115), 2, sym_line_comment, - [143741] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6554), 1, + [144547] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1547), 1, - sym__enum_body, - STATE(4154), 1, + STATE(1891), 1, + sym_block, + STATE(4116), 2, sym_line_comment, - [143757] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5140), 1, + [144564] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4707), 1, anon_sym_LBRACE, - STATE(1834), 1, + STATE(1560), 1, sym_block, - STATE(4155), 1, + STATE(4117), 2, sym_line_comment, - [143773] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, + [144581] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4707), 1, anon_sym_LBRACE, - STATE(1243), 1, + STATE(1548), 1, sym_block, - STATE(4156), 1, + STATE(4118), 2, sym_line_comment, - [143789] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [144598] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, + anon_sym_LBRACE, + STATE(2051), 1, + sym_block, + STATE(4119), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7254), 1, - anon_sym_LPAREN, - STATE(1198), 1, - sym_argument_list, - STATE(4157), 1, + [144615] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7220), 1, + anon_sym_LBRACE, + STATE(1549), 1, + sym__content_block, + STATE(4120), 2, sym_line_comment, - [143805] = 5, - ACTIONS(3), 1, + sym_block_comment, + [144632] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7193), 1, + anon_sym_LBRACE, + STATE(2050), 1, + sym__content_block, + STATE(4121), 2, + sym_line_comment, + sym_block_comment, + [144649] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6790), 1, + sym_identifier, + STATE(3891), 1, + sym_reference_expression, + STATE(4122), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7256), 1, + [144666] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7222), 1, sym_identifier, - STATE(2780), 1, + STATE(2309), 1, sym_type_reference_expression, - STATE(4158), 1, + STATE(4123), 2, sym_line_comment, - [143821] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5124), 1, + [144683] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(2111), 1, + STATE(2037), 1, sym_block, - STATE(4159), 1, + STATE(4124), 2, sym_line_comment, - [143837] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4160), 1, + [144700] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym_block, + STATE(4125), 2, sym_line_comment, - ACTIONS(7258), 2, + sym_block_comment, + [144717] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3948), 2, anon_sym_SEMI, anon_sym_RBRACK, - [143851] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + STATE(4126), 2, + sym_line_comment, + sym_block_comment, + [144732] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6658), 2, + anon_sym_RBRACE, + sym_identifier, + STATE(4127), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3257), 1, + [144747] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7224), 1, anon_sym_LBRACE, - STATE(659), 1, + STATE(2550), 1, sym_type_initializer_body, - STATE(4161), 1, + STATE(4128), 2, sym_line_comment, - [143867] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4162), 1, - sym_line_comment, - ACTIONS(7155), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [143881] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144764] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_block, + STATE(4129), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7115), 1, + [144781] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6768), 1, anon_sym_LBRACE, - STATE(1840), 1, + STATE(470), 1, sym__content_block, - STATE(4163), 1, + STATE(4130), 2, sym_line_comment, - [143897] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5132), 1, + [144798] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2827), 1, + STATE(2535), 1, sym_block, - STATE(4164), 1, + STATE(4131), 2, sym_line_comment, - [143913] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [144815] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_block, + STATE(4132), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7260), 1, + [144832] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7226), 1, sym_identifier, - STATE(2079), 1, + STATE(1377), 1, sym_type_reference_expression, - STATE(4165), 1, + STATE(4133), 2, sym_line_comment, - [143929] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4166), 1, - sym_line_comment, - ACTIONS(7262), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [143943] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144849] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7264), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(814), 1, - sym__struct_body, - STATE(4167), 1, + STATE(1050), 1, + sym_block, + STATE(4134), 2, sym_line_comment, - [143959] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7093), 1, + [144866] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6953), 1, anon_sym_LBRACE, - STATE(2074), 1, + STATE(2533), 1, sym__content_block, - STATE(4168), 1, + STATE(4135), 2, sym_line_comment, - [143975] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2073), 1, - sym_block, - STATE(4169), 1, - sym_line_comment, - [143991] = 5, + [144883] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6572), 1, - sym_identifier, - STATE(2605), 1, - sym_reference_expression, - STATE(4170), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7228), 2, + aux_sym_raw_string_literal_token2, + sym___double_quote, + STATE(4136), 2, sym_line_comment, - [144007] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7266), 1, + [144898] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6873), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4171), 1, + STATE(1049), 1, + sym__content_block, + STATE(4137), 2, sym_line_comment, - [144023] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, + [144915] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7042), 1, anon_sym_LBRACE, - STATE(1179), 1, - sym_block, - STATE(4172), 1, + STATE(2760), 1, + sym_type_initializer_body, + STATE(4138), 2, sym_line_comment, - [144039] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4173), 1, - sym_line_comment, - ACTIONS(7268), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [144053] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [144932] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5124), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1943), 1, + STATE(2090), 1, sym_block, - STATE(4174), 1, + STATE(4139), 2, sym_line_comment, - [144069] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, + [144949] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(1379), 1, sym_type_initializer_body, - STATE(4175), 1, + STATE(4140), 2, sym_line_comment, - [144085] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, + [144966] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1158), 1, + STATE(354), 1, sym_block, - STATE(4176), 1, + STATE(4141), 2, sym_line_comment, - [144101] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4177), 1, - sym_line_comment, - ACTIONS(7270), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [144115] = 5, + [144983] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7272), 1, - anon_sym_LBRACE, - STATE(2129), 1, - sym_type_initializer_body, - STATE(4178), 1, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7230), 2, + aux_sym_raw_string_literal_token1, + sym___single_quote, + STATE(4142), 2, sym_line_comment, - [144131] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, + [144998] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(682), 1, sym_type_initializer_body, - STATE(4179), 1, + STATE(4143), 2, sym_line_comment, - [144147] = 5, - ACTIONS(3), 1, + sym_block_comment, + [145015] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7181), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4144), 2, + sym_line_comment, + sym_block_comment, + [145030] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7232), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4145), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7274), 1, + [145045] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7234), 1, anon_sym_LBRACE, - STATE(1334), 1, + STATE(1686), 1, sym__struct_body, - STATE(4180), 1, + STATE(4146), 2, sym_line_comment, - [144163] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7276), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_type_initializer_body, - STATE(4181), 1, - sym_line_comment, - [144179] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145062] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7278), 1, - anon_sym_LPAREN, - STATE(2593), 1, - sym_special_argument_list, - STATE(4182), 1, - sym_line_comment, - [144195] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(4877), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4147), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5140), 1, + [145077] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1891), 1, + STATE(1721), 1, sym_block, - STATE(4183), 1, + STATE(4148), 2, sym_line_comment, - [144211] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3405), 1, - anon_sym_COMMA, - ACTIONS(7280), 1, - anon_sym_RPAREN, - STATE(4184), 1, - sym_line_comment, - [144227] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145094] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4185), 1, - sym_line_comment, - ACTIONS(7282), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [144241] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3269), 1, + ACTIONS(7236), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(682), 1, sym_type_initializer_body, - STATE(4186), 1, + STATE(4149), 2, sym_line_comment, - [144257] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7284), 1, + [145111] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1079), 1, sym_type_initializer_body, - STATE(4187), 1, + STATE(4150), 2, sym_line_comment, - [144273] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5124), 1, + [145128] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 1, anon_sym_LBRACE, - STATE(2057), 1, - sym_block, - STATE(4188), 1, + STATE(1079), 1, + sym_type_initializer_body, + STATE(4151), 2, sym_line_comment, - [144289] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4189), 1, - sym_line_comment, - ACTIONS(1755), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [144303] = 4, - ACTIONS(3), 1, + [145145] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7165), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4152), 2, + sym_line_comment, + sym_block_comment, + [145160] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7240), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4153), 2, + sym_line_comment, sym_block_comment, - STATE(4190), 1, + [145177] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7242), 1, + anon_sym_LPAREN, + STATE(489), 1, + sym_argument_list, + STATE(4154), 2, sym_line_comment, - ACTIONS(7286), 2, + sym_block_comment, + [145194] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7244), 1, anon_sym_COMMA, + ACTIONS(7246), 1, anon_sym_RPAREN, - [144317] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4155), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6483), 1, + [145211] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6516), 1, sym_identifier, - STATE(3894), 1, - sym_generic_parameter, - STATE(4191), 1, + STATE(1826), 1, + sym_reference_expression, + STATE(4156), 2, sym_line_comment, - [144333] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6418), 1, + [145228] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7248), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(3463), 1, sym__struct_body, - STATE(4192), 1, + STATE(4157), 2, sym_line_comment, - [144349] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4193), 1, - sym_line_comment, - ACTIONS(6599), 2, - anon_sym_RPAREN, - sym_identifier, - [144363] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145245] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7288), 1, - anon_sym_LPAREN, - STATE(1906), 1, - sym_special_argument_list, - STATE(4194), 1, - sym_line_comment, - [144379] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(7250), 1, + sym_identifier, + STATE(2405), 1, + sym_type_reference_expression, + STATE(4158), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5086), 1, + [145262] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2338), 1, + STATE(2728), 1, sym_block, - STATE(4195), 1, + STATE(4159), 2, sym_line_comment, - [144395] = 5, - ACTIONS(3), 1, + sym_block_comment, + [145279] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7252), 1, + anon_sym_LBRACE, + STATE(1379), 1, + sym_type_initializer_body, + STATE(4160), 2, + sym_line_comment, + sym_block_comment, + [145296] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7254), 1, + anon_sym_LBRACE, + STATE(2757), 1, + sym__struct_body, + STATE(4161), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7290), 1, + [145313] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2907), 1, anon_sym_COMMA, - ACTIONS(7292), 1, + ACTIONS(7256), 1, anon_sym_RPAREN, - STATE(4196), 1, + STATE(4162), 2, sym_line_comment, - [144411] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_block, - STATE(4197), 1, - sym_line_comment, - [144427] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145330] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7258), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4163), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5142), 1, + [145345] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1205), 1, + STATE(1104), 1, sym_block, - STATE(4198), 1, + STATE(4164), 2, sym_line_comment, - [144443] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, + [145362] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1770), 1, sym_block, - STATE(4199), 1, + STATE(4165), 2, sym_line_comment, - [144459] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7294), 1, + [145379] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7260), 1, sym_identifier, - STATE(3712), 1, - sym_label_reference, - STATE(4200), 1, + STATE(2694), 1, + sym_type_reference_expression, + STATE(4166), 2, sym_line_comment, - [144475] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4201), 1, - sym_line_comment, - ACTIONS(6585), 2, - anon_sym_RPAREN, - sym_identifier, - [144489] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145396] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7262), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4167), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7272), 1, + [145411] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(2129), 1, + STATE(2550), 1, sym_type_initializer_body, - STATE(4202), 1, + STATE(4168), 2, sym_line_comment, - [144505] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4757), 1, - anon_sym_LBRACE, - STATE(3694), 1, - sym_block, - STATE(4203), 1, - sym_line_comment, - [144521] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145428] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4972), 1, - sym_identifier, - ACTIONS(7296), 1, - anon_sym_volatile, - STATE(4204), 1, - sym_line_comment, - [144537] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7298), 1, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4205), 1, + STATE(1379), 1, + sym_type_initializer_body, + STATE(4169), 2, sym_line_comment, - [144553] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [145445] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2460), 1, + STATE(1294), 1, sym_block, - STATE(4206), 1, + STATE(4170), 2, sym_line_comment, - [144569] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7300), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4207), 1, - sym_line_comment, - [144585] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145462] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(2848), 1, - sym_block, - STATE(4208), 1, - sym_line_comment, - [144601] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5138), 1, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1351), 1, + STATE(1404), 1, sym_block, - STATE(4209), 1, + STATE(4171), 2, sym_line_comment, - [144617] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(7302), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7304), 1, - sym___double_quote, - STATE(4210), 1, - sym_line_comment, - [144633] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145479] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(2849), 1, - sym_block, - STATE(4211), 1, - sym_line_comment, - [144649] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7306), 1, + ACTIONS(7264), 1, anon_sym_LPAREN, - STATE(2011), 1, + STATE(1349), 1, sym_special_argument_list, - STATE(4212), 1, + STATE(4172), 2, sym_line_comment, - [144665] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4213), 1, - sym_line_comment, - ACTIONS(5502), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [144679] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145496] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4214), 1, - sym_line_comment, - ACTIONS(7308), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [144693] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7144), 1, + anon_sym_LBRACE, + STATE(1406), 1, + sym__content_block, + STATE(4173), 2, + sym_line_comment, + sym_block_comment, + [145513] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(1974), 1, + sym_block, + STATE(4174), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6504), 1, + [145530] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6666), 1, sym_identifier, - STATE(1942), 1, + STATE(1336), 1, sym_reference_expression, - STATE(4215), 1, + STATE(4175), 2, sym_line_comment, - [144709] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7310), 1, + [145547] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(2199), 1, + STATE(1773), 1, sym_block, - STATE(4216), 1, + STATE(4176), 2, sym_line_comment, - [144725] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4217), 1, - sym_line_comment, - ACTIONS(5590), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [144739] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145564] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(1971), 1, + sym_block, + STATE(4177), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7312), 1, + [145581] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6790), 1, sym_identifier, - STATE(1913), 1, - sym_type_reference_expression, - STATE(4218), 1, + STATE(4353), 1, + sym_reference_expression, + STATE(4178), 2, sym_line_comment, - [144755] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7218), 1, + [145598] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, - STATE(2458), 1, - sym__content_block, - STATE(4219), 1, + STATE(682), 1, + sym_type_initializer_body, + STATE(4179), 2, sym_line_comment, - [144771] = 5, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(7314), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7316), 1, - sym___single_quote, - STATE(4220), 1, - sym_line_comment, - [144787] = 5, - ACTIONS(3), 1, + [145615] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7266), 1, + anon_sym_RBRACE, + ACTIONS(7268), 1, + aux_sym_format_specifier_token1, + STATE(4180), 2, + sym_line_comment, + sym_block_comment, + [145632] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7270), 1, + anon_sym_COMMA, + ACTIONS(7272), 1, + anon_sym_RPAREN, + STATE(4181), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5154), 1, + [145649] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4711), 1, anon_sym_LPAREN, - STATE(2854), 1, + STATE(1976), 1, sym_argument_list, - STATE(4221), 1, + STATE(4182), 2, sym_line_comment, - [144803] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6524), 1, - sym_identifier, - STATE(2007), 1, - sym_reference_expression, - STATE(4222), 1, - sym_line_comment, - [144819] = 5, - ACTIONS(3), 1, + [145666] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7274), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4183), 2, + sym_line_comment, + sym_block_comment, + [145683] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7108), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4184), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7318), 1, + [145698] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6419), 1, anon_sym_LBRACE, - STATE(2558), 1, + STATE(2380), 1, sym_type_initializer_body, - STATE(4223), 1, + STATE(4185), 2, sym_line_comment, - [144835] = 5, - ACTIONS(3), 1, + sym_block_comment, + [145715] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7276), 1, + anon_sym_LPAREN, + STATE(1910), 1, + sym_special_argument_list, + STATE(4186), 2, + sym_line_comment, + sym_block_comment, + [145732] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7278), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym__struct_body, + STATE(4187), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7320), 1, + [145749] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7103), 2, anon_sym_COMMA, - ACTIONS(7322), 1, anon_sym_RPAREN, - STATE(4224), 1, + STATE(4188), 2, sym_line_comment, - [144851] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5132), 1, + [145764] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2862), 1, + STATE(1979), 1, sym_block, - STATE(4225), 1, + STATE(4189), 2, sym_line_comment, - [144867] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5134), 1, + [145781] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2550), 1, + STATE(2537), 1, sym_block, - STATE(4226), 1, + STATE(4190), 2, sym_line_comment, - [144883] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4757), 1, + [145798] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1759), 1, + STATE(2169), 1, sym_block, - STATE(4227), 1, + STATE(4191), 2, sym_line_comment, - [144899] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, + [145815] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2558), 1, - sym_type_initializer_body, - STATE(4228), 1, + STATE(2764), 1, + sym_block, + STATE(4192), 2, sym_line_comment, - [144915] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [145832] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7280), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4193), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5086), 1, + [145847] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2447), 1, + STATE(2771), 1, sym_block, - STATE(4229), 1, + STATE(4194), 2, sym_line_comment, - [144931] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [145864] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, + anon_sym_LBRACE, + STATE(1908), 1, + sym_block, + STATE(4195), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7324), 1, + [145881] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1058), 1, - sym__struct_body, - STATE(4230), 1, + STATE(2168), 1, + sym_block, + STATE(4196), 2, sym_line_comment, - [144947] = 5, - ACTIONS(3), 1, + sym_block_comment, + [145898] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_block, + STATE(4197), 2, + sym_line_comment, + sym_block_comment, + [145915] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7282), 1, + anon_sym_LPAREN, + STATE(2545), 1, + sym_argument_list, + STATE(4198), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6961), 1, + [145932] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6597), 1, sym_identifier, - STATE(4231), 1, + STATE(3678), 1, + sym_import_name, + STATE(4199), 2, sym_line_comment, - STATE(4263), 1, - sym_reference_expression, - [144963] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7326), 1, - anon_sym_LBRACE, - STATE(2002), 1, - sym__struct_body, - STATE(4232), 1, - sym_line_comment, - [144979] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [145949] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7284), 1, + sym_identifier, + STATE(1926), 1, + sym_type_reference_expression, + STATE(4200), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4994), 1, + [145966] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5156), 1, anon_sym_LPAREN, - STATE(2443), 1, + STATE(2779), 1, sym_argument_list, - STATE(4233), 1, + STATE(4201), 2, sym_line_comment, - [144995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7328), 1, + [145983] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4234), 1, + STATE(1026), 1, + sym_block, + STATE(4202), 2, sym_line_comment, - [145011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7330), 1, + [146000] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7286), 1, sym_identifier, - STATE(3430), 1, + STATE(2547), 1, sym_type_reference_expression, - STATE(4235), 1, + STATE(4203), 2, sym_line_comment, - [145027] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [146017] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4765), 1, + anon_sym_LPAREN, + STATE(2161), 1, + sym_argument_list, + STATE(4204), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7000), 1, - anon_sym_LBRACE, - STATE(2707), 1, - sym__content_block, - STATE(4236), 1, + [146034] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7288), 1, + anon_sym_LPAREN, + STATE(1107), 1, + sym_argument_list, + STATE(4205), 2, sym_line_comment, - [145043] = 5, - ACTIONS(3), 1, + sym_block_comment, + [146051] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7290), 1, + sym_identifier, + STATE(1455), 1, + sym_type_reference_expression, + STATE(4206), 2, + sym_line_comment, + sym_block_comment, + [146068] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7292), 1, + sym_identifier, + STATE(1743), 1, + sym_type_reference_expression, + STATE(4207), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5130), 1, + [146085] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(476), 1, + STATE(2426), 1, sym_block, - STATE(4237), 1, + STATE(4208), 2, sym_line_comment, - [145059] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, + [146102] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(764), 1, + STATE(2156), 1, sym_block, - STATE(4238), 1, + STATE(4209), 2, sym_line_comment, - [145075] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7332), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4239), 1, - sym_line_comment, - [145091] = 5, - ACTIONS(3), 1, + [146119] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6625), 1, + sym_identifier, + STATE(3654), 1, + sym_reference_expression, + STATE(4210), 2, + sym_line_comment, + sym_block_comment, + [146136] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7294), 1, + sym_identifier, + STATE(1115), 1, + sym_type_reference_expression, + STATE(4211), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5122), 1, + [146153] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(2110), 1, + STATE(1419), 1, sym_block, - STATE(4240), 1, + STATE(4212), 2, sym_line_comment, - [145107] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7318), 1, - anon_sym_LBRACE, - STATE(2558), 1, - sym_type_initializer_body, - STATE(4241), 1, - sym_line_comment, - [145123] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146170] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5132), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2706), 1, + STATE(2786), 1, sym_block, - STATE(4242), 1, + STATE(4213), 2, sym_line_comment, - [145139] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7334), 1, + [146187] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3855), 1, anon_sym_LPAREN, - STATE(807), 1, - sym_special_argument_list, - STATE(4243), 1, + STATE(1424), 1, + sym_argument_list, + STATE(4214), 2, sym_line_comment, - [145155] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5140), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_block, - STATE(4244), 1, - sym_line_comment, - [145171] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146204] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3257), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(2558), 1, - sym_type_initializer_body, - STATE(4245), 1, + STATE(1592), 1, + sym__interface_body, + STATE(4215), 2, sym_line_comment, - [145187] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5132), 1, + [146221] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6481), 1, anon_sym_LBRACE, - STATE(2521), 1, - sym_block, - STATE(4246), 1, + STATE(1591), 1, + sym__enum_body, + STATE(4216), 2, sym_line_comment, - [145203] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5134), 1, + [146238] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2462), 1, - sym_block, - STATE(4247), 1, + STATE(1590), 1, + sym__struct_body, + STATE(4217), 2, sym_line_comment, - [145219] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7310), 1, + [146255] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7296), 1, anon_sym_LBRACE, - STATE(2198), 1, - sym_block, - STATE(4248), 1, + STATE(1895), 1, + sym_type_initializer_body, + STATE(4218), 2, sym_line_comment, - [145235] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7336), 1, - anon_sym_LPAREN, - STATE(481), 1, - sym_argument_list, - STATE(4249), 1, - sym_line_comment, - [145251] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146272] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7012), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1927), 1, anon_sym_RBRACE, - ACTIONS(7014), 1, - aux_sym_format_specifier_token1, - STATE(4250), 1, + STATE(3721), 1, + sym___rcbr, + STATE(4219), 2, sym_line_comment, - [145267] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [146289] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6597), 1, + sym_identifier, + STATE(3531), 1, + sym_import_name, + STATE(4220), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7338), 1, + [146306] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7298), 1, anon_sym_LPAREN, - STATE(1761), 1, - sym_special_argument_list, - STATE(4251), 1, + STATE(1793), 1, + sym_argument_list, + STATE(4221), 2, sym_line_comment, - [145283] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7340), 1, + [146323] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7009), 1, anon_sym_LBRACE, - STATE(1831), 1, - sym__struct_body, - STATE(4252), 1, + STATE(2703), 1, + sym__content_block, + STATE(4222), 2, sym_line_comment, - [145299] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, + [146340] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1079), 1, sym_type_initializer_body, - STATE(4253), 1, + STATE(4223), 2, sym_line_comment, - [145315] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [146357] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6987), 1, + anon_sym_LBRACE, + STATE(2959), 1, + sym__content_block, + STATE(4224), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5086), 1, + [146374] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(2438), 1, + STATE(2921), 1, sym_block, - STATE(4254), 1, + STATE(4225), 2, sym_line_comment, - [145331] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [146391] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, + anon_sym_LBRACE, + STATE(1586), 1, + sym__interface_body, + STATE(4226), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5086), 1, + [146408] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(2434), 1, + STATE(2702), 1, sym_block, - STATE(4255), 1, + STATE(4227), 2, sym_line_comment, - [145347] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7342), 1, + [146425] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6481), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4256), 1, + STATE(1585), 1, + sym__enum_body, + STATE(4228), 2, sym_line_comment, - [145363] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7344), 1, + [146442] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2410), 1, + STATE(1584), 1, sym__struct_body, - STATE(4257), 1, + STATE(4229), 2, sym_line_comment, - [145379] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5134), 1, + [146459] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2526), 1, + STATE(2564), 1, sym_block, - STATE(4258), 1, + STATE(4230), 2, sym_line_comment, - [145395] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7099), 1, + [146476] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(2525), 1, - sym__content_block, - STATE(4259), 1, + STATE(2565), 1, + sym_block, + STATE(4231), 2, sym_line_comment, - [145411] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6510), 1, - sym_identifier, - STATE(1719), 1, - sym_reference_expression, - STATE(4260), 1, - sym_line_comment, - [145427] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146493] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7346), 1, - sym_identifier, - STATE(2372), 1, - sym_type_reference_expression, - STATE(4261), 1, - sym_line_comment, - [145443] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7348), 1, - anon_sym_LPAREN, - STATE(1876), 1, - sym_argument_list, - STATE(4262), 1, + ACTIONS(5132), 1, + anon_sym_LBRACE, + STATE(1887), 1, + sym_block, + STATE(4232), 2, sym_line_comment, - [145459] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4263), 1, - sym_line_comment, - ACTIONS(6980), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [145473] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146510] = 5, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(2945), 1, + STATE(2862), 1, sym_block, - STATE(4264), 1, + STATE(4233), 2, sym_line_comment, - [145489] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7350), 1, - sym_identifier, - STATE(2301), 1, - sym_type_reference_expression, - STATE(4265), 1, - sym_line_comment, - [145505] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146527] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5146), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2249), 1, + STATE(1787), 1, sym_block, - STATE(4266), 1, + STATE(4234), 2, sym_line_comment, - [145521] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7352), 1, + [146544] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, - STATE(2046), 1, + STATE(1895), 1, sym_type_initializer_body, - STATE(4267), 1, + STATE(4235), 2, sym_line_comment, - [145537] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4757), 1, + [146561] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(1758), 1, + STATE(2561), 1, sym_block, - STATE(4268), 1, + STATE(4236), 2, sym_line_comment, - [145553] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7354), 1, - sym_identifier, - STATE(1200), 1, - sym_type_reference_expression, - STATE(4269), 1, - sym_line_comment, - [145569] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146578] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5132), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2801), 1, + STATE(1074), 1, sym_block, - STATE(4270), 1, + STATE(4237), 2, sym_line_comment, - [145585] = 5, - ACTIONS(3), 1, + sym_block_comment, + [146595] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7300), 1, + anon_sym_COMMA, + ACTIONS(7302), 1, + anon_sym_RPAREN, + STATE(4238), 2, + sym_line_comment, + sym_block_comment, + [146612] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7304), 1, + anon_sym_COMMA, + ACTIONS(7306), 1, + anon_sym_RPAREN, + STATE(4239), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5134), 1, + [146629] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6830), 1, anon_sym_LBRACE, - STATE(2618), 1, - sym_block, - STATE(4271), 1, + STATE(1986), 1, + sym__content_block, + STATE(4240), 2, sym_line_comment, - [145601] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5144), 1, + [146646] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1106), 1, + STATE(1987), 1, sym_block, - STATE(4272), 1, + STATE(4241), 2, sym_line_comment, - [145617] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4273), 1, - sym_line_comment, - ACTIONS(4341), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [145631] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146663] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5144), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1107), 1, + STATE(1848), 1, sym_block, - STATE(4274), 1, + STATE(4242), 2, sym_line_comment, - [145647] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4275), 1, - sym_line_comment, - ACTIONS(7356), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [145661] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146680] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7358), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4276), 1, - sym_line_comment, - [145677] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6554), 1, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(1535), 1, - sym__enum_body, - STATE(4277), 1, + STATE(1963), 1, + sym_type_initializer_body, + STATE(4243), 2, sym_line_comment, - [145693] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7360), 1, - anon_sym_LPAREN, - STATE(2817), 1, - sym_special_argument_list, - STATE(4278), 1, - sym_line_comment, - [145709] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146697] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7362), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7308), 1, sym_identifier, - STATE(1051), 1, + STATE(513), 1, sym_type_reference_expression, - STATE(4279), 1, + STATE(4244), 2, sym_line_comment, - [145725] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [146714] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7310), 1, + anon_sym_LBRACE, + STATE(1963), 1, + sym_type_initializer_body, + STATE(4245), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5142), 1, + [146731] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(2454), 1, sym_block, - STATE(4280), 1, + STATE(4246), 2, sym_line_comment, - [145741] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6538), 1, - sym_identifier, - STATE(2382), 1, - sym_reference_expression, - STATE(4281), 1, - sym_line_comment, - [145757] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146748] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7364), 1, - sym_identifier, - STATE(1789), 1, - sym_type_reference_expression, - STATE(4282), 1, - sym_line_comment, - [145773] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(7312), 1, + anon_sym_LBRACE, + STATE(1266), 1, + sym__struct_body, + STATE(4247), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7366), 1, + [146765] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7314), 1, anon_sym_LBRACE, - STATE(2410), 1, + STATE(1947), 1, sym__struct_body, - STATE(4283), 1, + STATE(4248), 2, sym_line_comment, - [145789] = 5, - ACTIONS(3), 1, + sym_block_comment, + [146782] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_type_initializer_body, + STATE(4249), 2, + sym_line_comment, + sym_block_comment, + [146799] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7296), 1, + anon_sym_LBRACE, + STATE(1895), 1, + sym_type_initializer_body, + STATE(4250), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6996), 1, + [146816] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(2410), 1, + STATE(1604), 1, sym__struct_body, - STATE(4284), 1, + STATE(4251), 2, sym_line_comment, - [145805] = 5, - ACTIONS(3), 1, + sym_block_comment, + [146833] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(1809), 1, + anon_sym_RBRACE, + STATE(3786), 1, + sym___rcbr, + STATE(4252), 2, + sym_line_comment, + sym_block_comment, + [146850] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7316), 1, + sym_identifier, + STATE(3397), 1, + sym_type_reference_expression, + STATE(4253), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7368), 1, + [146867] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5004), 1, anon_sym_LPAREN, - STATE(1111), 1, + STATE(2476), 1, sym_argument_list, - STATE(4285), 1, + STATE(4254), 2, sym_line_comment, - [145821] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5144), 1, + [146884] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1114), 1, + STATE(1206), 1, sym_block, - STATE(4286), 1, + STATE(4255), 2, sym_line_comment, - [145837] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6700), 1, - sym_identifier, - STATE(2815), 1, - sym_reference_expression, - STATE(4287), 1, - sym_line_comment, - [145853] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146901] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5134), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(2628), 1, + STATE(1196), 1, sym_block, - STATE(4288), 1, + STATE(4256), 2, sym_line_comment, - [145869] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [146918] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(2453), 1, sym_block, - STATE(4289), 1, + STATE(4257), 2, sym_line_comment, - [145885] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_type_initializer_body, - STATE(4290), 1, - sym_line_comment, - [145901] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [146935] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4291), 1, - sym_line_comment, - ACTIONS(4511), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [145915] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4757), 1, + ACTIONS(5138), 1, anon_sym_LBRACE, - STATE(1729), 1, + STATE(2617), 1, sym_block, - STATE(4292), 1, + STATE(4258), 2, sym_line_comment, - [145931] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, + [146952] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(586), 1, - sym_block, - STATE(4293), 1, + STATE(1529), 1, + sym__interface_body, + STATE(4259), 2, sym_line_comment, - [145947] = 5, - ACTIONS(3), 1, + sym_block_comment, + [146969] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7022), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4260), 2, + sym_line_comment, + sym_block_comment, + [146984] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6937), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4261), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5140), 1, + [146999] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(1883), 1, - sym_block, - STATE(4294), 1, + STATE(1999), 1, + sym_type_initializer_body, + STATE(4262), 2, sym_line_comment, - [145963] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5140), 1, + [147016] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7310), 1, anon_sym_LBRACE, - STATE(1884), 1, - sym_block, - STATE(4295), 1, + STATE(1963), 1, + sym_type_initializer_body, + STATE(4263), 2, sym_line_comment, - [145979] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6884), 1, + [147033] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7238), 1, anon_sym_LBRACE, - STATE(1103), 1, - sym__content_block, - STATE(4296), 1, + STATE(1079), 1, + sym_type_initializer_body, + STATE(4264), 2, sym_line_comment, - [145995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5086), 1, + [147050] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7318), 1, anon_sym_LBRACE, - STATE(2390), 1, - sym_block, - STATE(4297), 1, + STATE(2645), 1, + sym__struct_body, + STATE(4265), 2, sym_line_comment, - [146011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5120), 1, + [147067] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(2957), 1, - sym_block, - STATE(4298), 1, + STATE(1895), 1, + sym_type_initializer_body, + STATE(4266), 2, sym_line_comment, - [146027] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5144), 1, + [147084] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(2270), 1, sym_block, - STATE(4299), 1, + STATE(4267), 2, sym_line_comment, - [146043] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7370), 1, - anon_sym_COMMA, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(4300), 1, - sym_line_comment, - [146059] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147101] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5144), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, - STATE(995), 1, - sym_block, - STATE(4301), 1, + STATE(1963), 1, + sym_type_initializer_body, + STATE(4268), 2, sym_line_comment, - [146075] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, + [147118] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7320), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(1999), 1, sym_type_initializer_body, - STATE(4302), 1, + STATE(4269), 2, sym_line_comment, - [146091] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5146), 1, + [147135] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(2243), 1, + STATE(2125), 1, sym_block, - STATE(4303), 1, + STATE(4270), 2, sym_line_comment, - [146107] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147152] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7200), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4271), 2, + sym_line_comment, + sym_block_comment, + [147167] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6808), 1, + anon_sym_LBRACE, + STATE(3738), 1, + sym__content_block, + STATE(4272), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7374), 1, + [147184] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7322), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(2925), 1, sym_type_initializer_body, - STATE(4304), 1, + STATE(4273), 2, sym_line_comment, - [146123] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5142), 1, + [147201] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(1883), 1, sym_block, - STATE(4305), 1, + STATE(4274), 2, sym_line_comment, - [146139] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147218] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7324), 1, + anon_sym_LPAREN, + STATE(2842), 1, + sym_special_argument_list, + STATE(4275), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7376), 1, + [147235] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7326), 2, anon_sym_COMMA, - ACTIONS(7378), 1, anon_sym_RPAREN, - STATE(4306), 1, + STATE(4276), 2, sym_line_comment, - [146155] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6483), 1, - sym_identifier, - STATE(3701), 1, - sym_generic_parameter, - STATE(4307), 1, - sym_line_comment, - [146171] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147250] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(1414), 1, + sym_block, + STATE(4277), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7380), 1, + [147267] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7328), 1, anon_sym_LBRACE, - STATE(3456), 1, + STATE(1422), 1, sym__struct_body, - STATE(4308), 1, + STATE(4278), 2, sym_line_comment, - [146187] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4309), 1, - sym_line_comment, - ACTIONS(7382), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [146201] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147284] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4310), 1, - sym_line_comment, - ACTIONS(6919), 2, - anon_sym_COMMA, - anon_sym_in, - [146215] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - STATE(4311), 1, + ACTIONS(6510), 1, + sym_identifier, + STATE(4075), 1, + sym_generic_parameter, + STATE(4279), 2, sym_line_comment, - ACTIONS(7384), 2, - anon_sym_COMMA, - anon_sym_in, - [146229] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5122), 1, - anon_sym_LBRACE, - STATE(2161), 1, - sym_block, - STATE(4312), 1, - sym_line_comment, - [146245] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147301] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6704), 1, + sym_identifier, + STATE(2844), 1, + sym_reference_expression, + STATE(4280), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5122), 1, + [147318] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2160), 1, + STATE(3720), 1, sym_block, - STATE(4313), 1, + STATE(4281), 2, sym_line_comment, - [146261] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_type_initializer_body, - STATE(4314), 1, - sym_line_comment, - [146277] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147335] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6510), 1, + sym_identifier, + STATE(3822), 1, + sym_generic_parameter, + STATE(4282), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7386), 1, + [147352] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7330), 1, anon_sym_COMMA, - ACTIONS(7388), 1, + ACTIONS(7332), 1, anon_sym_RPAREN, - STATE(4315), 1, + STATE(4283), 2, sym_line_comment, - [146293] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7390), 1, + [147369] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7334), 2, anon_sym_COMMA, - ACTIONS(7392), 1, - anon_sym_RPAREN, - STATE(4316), 1, + anon_sym_RBRACK, + STATE(4284), 2, sym_line_comment, - [146309] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147384] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7224), 1, + anon_sym_LBRACE, + STATE(2550), 1, + sym_type_initializer_body, + STATE(4285), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4757), 1, + [147401] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7336), 1, anon_sym_LBRACE, - STATE(1778), 1, + STATE(2199), 1, sym_block, - STATE(4317), 1, + STATE(4286), 2, sym_line_comment, - [146325] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147418] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7338), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4287), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6518), 1, + [147435] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6485), 1, sym_identifier, - STATE(3667), 1, - sym_import_name, - STATE(4318), 1, + STATE(4321), 1, + sym_reference_expression, + STATE(4288), 2, sym_line_comment, - [146341] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147452] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(3745), 1, + sym_block, + STATE(4289), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7310), 1, + [147469] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7336), 1, anon_sym_LBRACE, STATE(2196), 1, sym_block, - STATE(4319), 1, + STATE(4290), 2, sym_line_comment, - [146357] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5144), 1, + [147486] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(1088), 1, + STATE(2931), 1, sym_block, - STATE(4320), 1, + STATE(4291), 2, sym_line_comment, - [146373] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5086), 1, + [147503] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(4321), 1, - sym_line_comment, - STATE(4605), 1, + STATE(1875), 1, sym_block, - [146389] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + STATE(4292), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5146), 1, + [147520] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2283), 1, + STATE(1070), 1, sym_block, - STATE(4322), 1, + STATE(4293), 2, sym_line_comment, - [146405] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6510), 1, - sym_identifier, - STATE(3545), 1, - sym_reference_expression, - STATE(4323), 1, - sym_line_comment, - [146421] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147537] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5146), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2288), 1, + STATE(1028), 1, sym_block, - STATE(4324), 1, + STATE(4294), 2, sym_line_comment, - [146437] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7374), 1, + [147554] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6885), 1, anon_sym_LBRACE, - STATE(1063), 1, - sym_type_initializer_body, - STATE(4325), 1, + STATE(2406), 1, + sym__content_block, + STATE(4295), 2, sym_line_comment, - [146453] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147571] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7340), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4296), 2, + sym_line_comment, + sym_block_comment, + [147586] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(1868), 1, + sym_argument_list, + STATE(4297), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4757), 1, + [147603] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1776), 1, + STATE(2401), 1, sym_block, - STATE(4326), 1, + STATE(4298), 2, sym_line_comment, - [146469] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147620] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6964), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4299), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7394), 1, - sym_identifier, - STATE(1982), 1, - sym_type_reference_expression, - STATE(4327), 1, + [147635] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7344), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(4300), 2, sym_line_comment, - [146485] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147650] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2336), 1, + sym_block, + STATE(4301), 2, + sym_line_comment, + sym_block_comment, + [147667] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, + anon_sym_LBRACE, + STATE(1999), 1, + sym_type_initializer_body, + STATE(4302), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7396), 1, + [147684] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7346), 1, anon_sym_LPAREN, - STATE(2291), 1, - sym_argument_list, - STATE(4328), 1, + STATE(2088), 1, + sym_special_argument_list, + STATE(4303), 2, sym_line_comment, - [146501] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147701] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(1711), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(4304), 2, + sym_line_comment, + sym_block_comment, + [147716] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4968), 1, + sym_identifier, + ACTIONS(7348), 1, + anon_sym_volatile, + STATE(4305), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5124), 1, + [147733] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2014), 1, + STATE(578), 1, sym_block, - STATE(4329), 1, + STATE(4306), 2, sym_line_comment, - [146517] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7398), 1, - anon_sym_COMMA, - ACTIONS(7400), 1, - anon_sym_RPAREN, - STATE(4330), 1, - sym_line_comment, - [146533] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147750] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7402), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4331), 1, + STATE(579), 1, + sym_block, + STATE(4307), 2, sym_line_comment, - [146549] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7404), 1, - anon_sym_RBRACE, - ACTIONS(7406), 1, - aux_sym_format_specifier_token1, - STATE(4332), 1, - sym_line_comment, - [146565] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147767] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4333), 1, - sym_line_comment, - ACTIONS(6830), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [146579] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7408), 1, + ACTIONS(7350), 1, anon_sym_LPAREN, - STATE(1065), 1, + STATE(2018), 1, sym_special_argument_list, - STATE(4334), 1, + STATE(4308), 2, sym_line_comment, - [146595] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7410), 1, - sym_identifier, - STATE(2545), 1, - sym_type_reference_expression, - STATE(4335), 1, - sym_line_comment, - [146611] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147784] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(2599), 1, + sym_block, + STATE(4309), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6518), 1, + [147801] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6631), 1, sym_identifier, - STATE(3512), 1, - sym_import_name, - STATE(4336), 1, + STATE(2075), 1, + sym_reference_expression, + STATE(4310), 2, sym_line_comment, - [146627] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147818] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7352), 1, + anon_sym_COMMA, + ACTIONS(7354), 1, + anon_sym_RPAREN, + STATE(4311), 2, + sym_line_comment, + sym_block_comment, + [147835] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(1723), 1, + sym_block, + STATE(4312), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7412), 1, + [147852] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7356), 1, sym_identifier, - STATE(1450), 1, + STATE(1209), 1, sym_type_reference_expression, - STATE(4337), 1, + STATE(4313), 2, sym_line_comment, - [146643] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6429), 1, + [147869] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1564), 1, - sym__interface_body, - STATE(4338), 1, + STATE(484), 1, + sym_block, + STATE(4314), 2, sym_line_comment, - [146659] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7414), 1, - anon_sym_RBRACE, - ACTIONS(7416), 1, - aux_sym_format_specifier_token1, - STATE(4339), 1, - sym_line_comment, - [146675] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147886] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6554), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7358), 1, anon_sym_LBRACE, - STATE(1582), 1, - sym__enum_body, - STATE(4340), 1, + STATE(938), 1, + sym__struct_body, + STATE(4315), 2, sym_line_comment, - [146691] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4767), 1, + [147903] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7360), 1, anon_sym_LPAREN, - STATE(2153), 1, - sym_argument_list, - STATE(4341), 1, + STATE(2629), 1, + sym_special_argument_list, + STATE(4316), 2, sym_line_comment, - [146707] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6514), 1, - sym_identifier, - STATE(1021), 1, - sym_reference_expression, - STATE(4342), 1, - sym_line_comment, - [146723] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [147920] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7236), 1, + anon_sym_LBRACE, + STATE(682), 1, + sym_type_initializer_body, + STATE(4317), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5134), 1, + [147937] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(2518), 1, + STATE(765), 1, sym_block, - STATE(4343), 1, + STATE(4318), 2, sym_line_comment, - [146739] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [147954] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(2626), 1, + sym_block, + STATE(4319), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6568), 1, - sym_identifier, - STATE(962), 1, - sym_reference_expression, - STATE(4344), 1, + [147971] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5138), 1, + anon_sym_LBRACE, + STATE(2466), 1, + sym_block, + STATE(4320), 2, sym_line_comment, - [146755] = 5, - ACTIONS(3), 1, + sym_block_comment, + [147988] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7362), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4321), 2, + sym_line_comment, + sym_block_comment, + [148003] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5540), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(4322), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7418), 1, - anon_sym_LPAREN, - STATE(2576), 1, - sym_argument_list, - STATE(4345), 1, + [148018] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7364), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + STATE(4323), 2, sym_line_comment, - [146771] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148033] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7366), 1, + anon_sym_COMMA, + ACTIONS(7368), 1, + anon_sym_RPAREN, + STATE(4324), 2, + sym_line_comment, + sym_block_comment, + [148050] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6750), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4325), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5122), 1, + [148067] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2148), 1, + STATE(2240), 1, sym_block, - STATE(4346), 1, + STATE(4326), 2, sym_line_comment, - [146787] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148084] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(1993), 1, + sym_block, + STATE(4327), 2, + sym_line_comment, + sym_block_comment, + [148101] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7370), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4328), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6554), 1, + [148116] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(1553), 1, - sym__enum_body, - STATE(4347), 1, + STATE(2239), 1, + sym_block, + STATE(4329), 2, sym_line_comment, - [146803] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148133] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5546), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + STATE(4330), 2, + sym_line_comment, + sym_block_comment, + [148148] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7372), 1, + sym_identifier, + STATE(2170), 1, + sym_type_reference_expression, + STATE(4331), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7420), 1, + [148165] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7374), 1, anon_sym_LPAREN, - STATE(1712), 1, + STATE(2222), 1, sym_argument_list, - STATE(4348), 1, + STATE(4332), 2, sym_line_comment, - [146819] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6807), 1, + [148182] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7376), 1, anon_sym_LBRACE, - STATE(2253), 1, - sym__content_block, - STATE(4349), 1, + STATE(2421), 1, + sym__struct_body, + STATE(4333), 2, sym_line_comment, - [146835] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1811), 1, - anon_sym_RBRACE, - STATE(3834), 1, - sym___rcbr, - STATE(4350), 1, - sym_line_comment, - [146851] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148199] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(6664), 1, - sym_identifier, - STATE(1341), 1, - sym_reference_expression, - STATE(4351), 1, - sym_line_comment, - [146867] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5140), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1846), 1, + STATE(1280), 1, sym_block, - STATE(4352), 1, + STATE(4334), 2, sym_line_comment, - [146883] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148216] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(2907), 1, + anon_sym_COMMA, + ACTIONS(7378), 1, + anon_sym_RPAREN, + STATE(4335), 2, + sym_line_comment, + sym_block_comment, + [148233] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7380), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4336), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5146), 1, + [148248] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(2205), 1, sym_block, - STATE(4353), 1, + STATE(4337), 2, sym_line_comment, - [146899] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6418), 1, - anon_sym_LBRACE, - STATE(1590), 1, - sym__struct_body, - STATE(4354), 1, - sym_line_comment, - [146915] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148265] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7422), 1, - anon_sym_LBRACE, - STATE(2410), 1, - sym__struct_body, - STATE(4355), 1, - sym_line_comment, - [146931] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(7382), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4338), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3257), 1, + [148280] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7252), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(1379), 1, sym_type_initializer_body, - STATE(4356), 1, + STATE(4339), 2, sym_line_comment, - [146947] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148297] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6855), 1, + anon_sym_RBRACE, + ACTIONS(6857), 1, + aux_sym_format_specifier_token1, + STATE(4340), 2, + sym_line_comment, + sym_block_comment, + [148314] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6502), 2, + anon_sym_RPAREN, + sym_identifier, + STATE(4341), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7424), 1, + [148329] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2226), 1, - sym_type_initializer_body, - STATE(4357), 1, + STATE(2057), 1, + sym_block, + STATE(4342), 2, sym_line_comment, - [146963] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6723), 1, + [148346] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6802), 1, anon_sym_LBRACE, - STATE(2944), 1, + STATE(2216), 1, sym__content_block, - STATE(4358), 1, + STATE(4343), 2, sym_line_comment, - [146979] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7426), 1, + [148363] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7384), 1, anon_sym_LBRACE, - STATE(2006), 1, + STATE(2421), 1, sym__struct_body, - STATE(4359), 1, + STATE(4344), 2, sym_line_comment, - [146995] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [148380] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(1737), 1, + sym_block, + STATE(4345), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7428), 1, - anon_sym_COMMA, - ACTIONS(7430), 1, + [148397] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6492), 2, anon_sym_RPAREN, - STATE(4360), 1, + sym_identifier, + STATE(4346), 2, sym_line_comment, - [147011] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [148412] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(1664), 1, + sym_block, + STATE(4347), 2, + sym_line_comment, sym_block_comment, - ACTIONS(3269), 1, + [148429] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(1730), 1, sym_type_initializer_body, - STATE(4361), 1, + STATE(4348), 2, sym_line_comment, - [147027] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5138), 1, + [148446] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(1422), 1, + STATE(2217), 1, sym_block, - STATE(4362), 1, + STATE(4349), 2, sym_line_comment, - [147043] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [148463] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6589), 1, + sym_identifier, + STATE(2646), 1, + sym_reference_expression, + STATE(4350), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5146), 1, + [148480] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2206), 1, + STATE(2182), 1, sym_block, - STATE(4363), 1, + STATE(4351), 2, sym_line_comment, - [147059] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7424), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_type_initializer_body, - STATE(4364), 1, - sym_line_comment, - [147075] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148497] = 5, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(6696), 1, sym_identifier, - STATE(2067), 1, + STATE(1242), 1, sym_reference_expression, - STATE(4365), 1, + STATE(4352), 2, sym_line_comment, - [147091] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [148514] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6841), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(4353), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5120), 1, + [148529] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7320), 1, anon_sym_LBRACE, - STATE(2740), 1, - sym_block, - STATE(4366), 1, + STATE(1999), 1, + sym_type_initializer_body, + STATE(4354), 2, sym_line_comment, - [147107] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4367), 1, - sym_line_comment, - ACTIONS(7028), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [147121] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148546] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3257), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(2046), 1, + STATE(2230), 1, sym_type_initializer_body, - STATE(4368), 1, + STATE(4355), 2, sym_line_comment, - [147137] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6652), 1, - sym_identifier, - STATE(1197), 1, - sym_reference_expression, - STATE(4369), 1, - sym_line_comment, - [147153] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148563] = 5, ACTIONS(5), 1, - sym_block_comment, - STATE(4370), 1, - sym_line_comment, - ACTIONS(6782), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [147167] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7068), 1, + ACTIONS(6417), 1, anon_sym_LBRACE, - STATE(3789), 1, - sym__content_block, - STATE(4371), 1, + STATE(1561), 1, + sym__struct_body, + STATE(4356), 2, sym_line_comment, - [147183] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7352), 1, + [148580] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7386), 1, anon_sym_LBRACE, - STATE(2046), 1, + STATE(1730), 1, sym_type_initializer_body, - STATE(4372), 1, + STATE(4357), 2, sym_line_comment, - [147199] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5146), 1, + [148597] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7388), 1, anon_sym_LBRACE, - STATE(2289), 1, - sym_block, - STATE(4373), 1, + STATE(2230), 1, + sym_type_initializer_body, + STATE(4358), 2, sym_line_comment, - [147215] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7432), 1, - anon_sym_COMMA, - ACTIONS(7434), 1, - anon_sym_RPAREN, - STATE(4374), 1, - sym_line_comment, - [147231] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148614] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6481), 1, + anon_sym_LBRACE, + STATE(1563), 1, + sym__enum_body, + STATE(4359), 2, + sym_line_comment, sym_block_comment, + [148631] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(4902), 1, anon_sym_COLON, - ACTIONS(7436), 1, + ACTIONS(7390), 1, anon_sym_mut, - STATE(4375), 1, + STATE(4360), 2, sym_line_comment, - [147247] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4757), 1, - anon_sym_LBRACE, - STATE(3824), 1, - sym_block, - STATE(4376), 1, - sym_line_comment, - [147263] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148648] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5138), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6425), 1, anon_sym_LBRACE, - STATE(1424), 1, - sym_block, - STATE(4377), 1, + STATE(1565), 1, + sym__interface_body, + STATE(4361), 2, sym_line_comment, - [147279] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [148665] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7392), 1, + anon_sym_LPAREN, + STATE(1283), 1, + sym_special_argument_list, + STATE(4362), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7438), 1, + [148682] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7394), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(2163), 1, sym__struct_body, - STATE(4378), 1, + STATE(4363), 2, sym_line_comment, - [147295] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, + [148699] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(571), 1, + STATE(1864), 1, sym_block, - STATE(4379), 1, + STATE(4364), 2, sym_line_comment, - [147311] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5130), 1, + [148716] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(570), 1, + STATE(1394), 1, sym_block, - STATE(4380), 1, + STATE(4365), 2, sym_line_comment, - [147327] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148733] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7396), 1, + anon_sym_COMMA, + ACTIONS(7398), 1, + anon_sym_RPAREN, + STATE(4366), 2, + sym_line_comment, + sym_block_comment, + [148750] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym_type_initializer_body, + STATE(4367), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5138), 1, + [148767] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1423), 1, + STATE(1030), 1, sym_block, - STATE(4381), 1, + STATE(4368), 2, sym_line_comment, - [147343] = 5, - ACTIONS(3), 1, + sym_block_comment, + [148784] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6417), 1, + anon_sym_LBRACE, + STATE(1497), 1, + sym__struct_body, + STATE(4369), 2, + sym_line_comment, + sym_block_comment, + [148801] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7400), 1, + anon_sym_COMMA, + ACTIONS(7402), 1, + anon_sym_RPAREN, + STATE(4370), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4757), 1, + [148818] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(3785), 1, + STATE(2224), 1, sym_block, - STATE(4382), 1, + STATE(4371), 2, sym_line_comment, - [147359] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, + [148835] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6808), 1, anon_sym_LBRACE, - STATE(2046), 1, - sym_type_initializer_body, - STATE(4383), 1, + STATE(1750), 1, + sym__content_block, + STATE(4372), 2, sym_line_comment, - [147375] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7440), 1, - anon_sym_LPAREN, - STATE(2207), 1, - sym_special_argument_list, - STATE(4384), 1, - sym_line_comment, - [147391] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148852] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7404), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4373), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7068), 1, + [148869] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, anon_sym_LBRACE, STATE(1730), 1, - sym__content_block, - STATE(4385), 1, + sym_type_initializer_body, + STATE(4374), 2, sym_line_comment, - [147407] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5122), 1, + [148886] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2117), 1, + STATE(1734), 1, sym_block, - STATE(4386), 1, + STATE(4375), 2, sym_line_comment, - [147423] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7276), 1, + [148903] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(659), 1, - sym_type_initializer_body, - STATE(4387), 1, + STATE(1205), 1, + sym_block, + STATE(4376), 2, sym_line_comment, - [147439] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7442), 1, - sym_identifier, - STATE(545), 1, - sym_type_reference_expression, - STATE(4388), 1, - sym_line_comment, - [147455] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148920] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(3857), 1, - anon_sym_LPAREN, - STATE(1416), 1, - sym_argument_list, - STATE(4389), 1, - sym_line_comment, - [147471] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5138), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1411), 1, + STATE(2355), 1, sym_block, - STATE(4390), 1, + STATE(4377), 2, sym_line_comment, - [147487] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6538), 1, + [148937] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6625), 1, sym_identifier, - STATE(4146), 1, + STATE(1779), 1, sym_reference_expression, - STATE(4391), 1, + STATE(4378), 2, sym_line_comment, - [147503] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4392), 1, - sym_line_comment, - ACTIONS(7444), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [147517] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [148954] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4757), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(1728), 1, + STATE(1863), 1, sym_block, - STATE(4393), 1, + STATE(4379), 2, sym_line_comment, - [147533] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6418), 1, + [148971] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7406), 1, anon_sym_LBRACE, - STATE(1604), 1, + STATE(2421), 1, sym__struct_body, - STATE(4394), 1, + STATE(4380), 2, sym_line_comment, - [147549] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6578), 1, + [148988] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7408), 1, sym_identifier, - STATE(2233), 1, - sym_reference_expression, - STATE(4395), 1, + STATE(1528), 1, + sym_label_reference, + STATE(4381), 2, sym_line_comment, - [147565] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [149005] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_block, + STATE(4382), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7446), 1, + [149022] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7410), 1, anon_sym_LPAREN, - STATE(1236), 1, + STATE(2353), 1, sym_special_argument_list, - STATE(4396), 1, + STATE(4383), 2, sym_line_comment, - [147581] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4397), 1, - sym_line_comment, - ACTIONS(6791), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [147595] = 5, - ACTIONS(3), 1, + [149039] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7388), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym_type_initializer_body, + STATE(4384), 2, + sym_line_comment, + sym_block_comment, + [149056] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7412), 1, + anon_sym_LPAREN, + STATE(1760), 1, + sym_special_argument_list, + STATE(4385), 2, + sym_line_comment, sym_block_comment, - ACTIONS(4757), 1, + [149073] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1663), 1, + STATE(2016), 1, sym_block, - STATE(4398), 1, + STATE(4386), 2, sym_line_comment, - [147611] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - STATE(4399), 1, + [149090] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7414), 1, + sym_identifier, + STATE(2036), 1, + sym_type_reference_expression, + STATE(4387), 2, sym_line_comment, - ACTIONS(7089), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [147625] = 5, - ACTIONS(3), 1, + sym_block_comment, + [149107] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7416), 1, + anon_sym_LPAREN, + STATE(1217), 1, + sym_argument_list, + STATE(4388), 2, + sym_line_comment, + sym_block_comment, + [149124] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(1748), 1, + sym_block, + STATE(4389), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7448), 1, + [149141] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7418), 1, anon_sym_LPAREN, - STATE(1347), 1, + STATE(1111), 1, sym_special_argument_list, - STATE(4400), 1, + STATE(4390), 2, sym_line_comment, - [147641] = 4, - ACTIONS(3), 1, + sym_block_comment, + [149158] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, + anon_sym_LBRACE, + STATE(1222), 1, + sym_block, + STATE(4391), 2, + sym_line_comment, + sym_block_comment, + [149175] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(3811), 1, + sym_block, + STATE(4392), 2, + sym_line_comment, sym_block_comment, - STATE(4401), 1, + [149192] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7420), 1, + sym_identifier, + STATE(3799), 1, + sym_label_reference, + STATE(4393), 2, sym_line_comment, - ACTIONS(7450), 2, + sym_block_comment, + [149209] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7422), 1, anon_sym_COMMA, + ACTIONS(7424), 1, anon_sym_RPAREN, - [147655] = 5, - ACTIONS(3), 1, + STATE(4394), 2, + sym_line_comment, + sym_block_comment, + [149226] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6568), 1, + sym_identifier, + STATE(1120), 1, + sym_reference_expression, + STATE(4395), 2, + sym_line_comment, + sym_block_comment, + [149243] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(2264), 1, + sym_block, + STATE(4396), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6737), 1, + [149260] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6724), 1, anon_sym_LBRACE, - STATE(1398), 1, + STATE(1234), 1, sym__content_block, - STATE(4402), 1, + STATE(4397), 2, sym_line_comment, - [147671] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5138), 1, + [149277] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1396), 1, + STATE(1204), 1, sym_block, - STATE(4403), 1, + STATE(4398), 2, sym_line_comment, - [147687] = 5, - ACTIONS(3), 1, + sym_block_comment, + [149294] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7426), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4399), 2, + sym_line_comment, + sym_block_comment, + [149311] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6485), 1, + sym_identifier, + STATE(2364), 1, + sym_reference_expression, + STATE(4400), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5138), 1, + [149328] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1297), 1, + STATE(1157), 1, sym_block, - STATE(4404), 1, + STATE(4401), 2, sym_line_comment, - [147703] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, + [149345] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7070), 1, anon_sym_LBRACE, - STATE(1371), 1, - sym_type_initializer_body, - STATE(4405), 1, + STATE(1882), 1, + sym__content_block, + STATE(4402), 2, sym_line_comment, - [147719] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3257), 1, + [149362] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3340), 1, anon_sym_LBRACE, - STATE(1756), 1, + STATE(1274), 1, sym_type_initializer_body, - STATE(4406), 1, + STATE(4403), 2, sym_line_comment, - [147735] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [149379] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7428), 1, + anon_sym_LPAREN, + STATE(2279), 1, + sym_special_argument_list, + STATE(4404), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7452), 1, + [149396] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7430), 1, anon_sym_LBRACE, - STATE(1756), 1, + STATE(1274), 1, sym_type_initializer_body, - STATE(4407), 1, + STATE(4405), 2, sym_line_comment, - [147751] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7240), 1, + [149413] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4315), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1371), 1, - sym_type_initializer_body, - STATE(4408), 1, + STATE(4406), 2, sym_line_comment, - [147767] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7454), 1, + [149428] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4707), 1, anon_sym_LBRACE, - STATE(2950), 1, - sym_type_initializer_body, - STATE(4409), 1, + STATE(1526), 1, + sym_block, + STATE(4407), 2, sym_line_comment, - [147783] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [149445] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7432), 1, + anon_sym_LBRACE, + STATE(2094), 1, + sym__struct_body, + STATE(4408), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7456), 1, + [149462] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7434), 1, anon_sym_LBRACE, - STATE(1675), 1, + STATE(2421), 1, sym__struct_body, - STATE(4410), 1, + STATE(4409), 2, sym_line_comment, - [147799] = 5, - ACTIONS(3), 1, + sym_block_comment, + [149479] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6552), 1, + sym_identifier, + STATE(2024), 1, + sym_reference_expression, + STATE(4410), 2, + sym_line_comment, + sym_block_comment, + [149496] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3352), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_type_initializer_body, + STATE(4411), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5140), 1, + [149513] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(1919), 1, + STATE(1262), 1, sym_block, - STATE(4411), 1, + STATE(4412), 2, sym_line_comment, - [147815] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, + [149530] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4319), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1371), 1, - sym_type_initializer_body, - STATE(4412), 1, + STATE(4413), 2, sym_line_comment, - [147831] = 5, - ACTIONS(3), 1, + sym_block_comment, + [149545] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7436), 1, + anon_sym_RBRACE, + ACTIONS(7438), 1, + aux_sym_format_specifier_token1, + STATE(4414), 2, + sym_line_comment, + sym_block_comment, + [149562] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7440), 1, + anon_sym_COMMA, + ACTIONS(7442), 1, + anon_sym_RPAREN, + STATE(4415), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5138), 1, + [149579] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7444), 1, anon_sym_LBRACE, - STATE(1379), 1, - sym_block, - STATE(4413), 1, + STATE(2421), 1, + sym__struct_body, + STATE(4416), 2, sym_line_comment, - [147847] = 5, - ACTIONS(3), 1, + sym_block_comment, + [149596] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6619), 1, + sym_identifier, + STATE(2286), 1, + sym_reference_expression, + STATE(4417), 2, + sym_line_comment, + sym_block_comment, + [149613] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7446), 2, + anon_sym_COMMA, + anon_sym_in, + STATE(4418), 2, + sym_line_comment, sym_block_comment, - ACTIONS(6418), 1, + [149628] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7448), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(2421), 1, sym__struct_body, - STATE(4414), 1, + STATE(4419), 2, sym_line_comment, - [147863] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6416), 1, + [149645] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7430), 1, anon_sym_LBRACE, - STATE(2444), 1, + STATE(1274), 1, sym_type_initializer_body, - STATE(4415), 1, + STATE(4420), 2, sym_line_comment, - [147879] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [149662] = 5, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7450), 1, + anon_sym_COMMA, + ACTIONS(7452), 1, + anon_sym_RPAREN, + STATE(4421), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5142), 1, + [149679] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(1275), 1, + STATE(865), 1, sym_block, - STATE(4416), 1, + STATE(4422), 2, sym_line_comment, - [147895] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - STATE(1552), 1, - sym__interface_body, - STATE(4417), 1, - sym_line_comment, - [147911] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [149696] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7458), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7454), 1, anon_sym_LPAREN, - STATE(2080), 1, + STATE(907), 1, sym_special_argument_list, - STATE(4418), 1, + STATE(4423), 2, sym_line_comment, - [147927] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3269), 1, + [149713] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7456), 1, anon_sym_LBRACE, - STATE(1756), 1, - sym_type_initializer_body, - STATE(4419), 1, + STATE(2421), 1, + sym__struct_body, + STATE(4424), 2, sym_line_comment, - [147943] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4757), 1, + [149730] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5086), 1, anon_sym_LBRACE, - STATE(1783), 1, + STATE(1410), 1, sym_block, - STATE(4420), 1, + STATE(4425), 2, sym_line_comment, - [147959] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7452), 1, + [149747] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7336), 1, anon_sym_LBRACE, - STATE(1756), 1, - sym_type_initializer_body, - STATE(4421), 1, + STATE(2186), 1, + sym_block, + STATE(4426), 2, sym_line_comment, - [147975] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5144), 1, + [149764] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1047), 1, + STATE(4530), 1, sym_block, - STATE(4422), 1, + STATE(4427), 2, sym_line_comment, - [147991] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(3405), 1, - anon_sym_COMMA, - ACTIONS(7460), 1, - anon_sym_RPAREN, - STATE(4423), 1, - sym_line_comment, - [148007] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [149781] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7462), 1, - anon_sym_COMMA, - ACTIONS(7464), 1, - anon_sym_RPAREN, - STATE(4424), 1, - sym_line_comment, - [148023] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7284), 1, + ACTIONS(7386), 1, anon_sym_LBRACE, - STATE(1263), 1, + STATE(1730), 1, sym_type_initializer_body, - STATE(4425), 1, + STATE(4428), 2, sym_line_comment, - [148039] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(937), 1, - anon_sym_RBRACE, - STATE(4426), 1, - sym_line_comment, - [148052] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [149798] = 5, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(1595), 1, - anon_sym_RPAREN, - STATE(4427), 1, - sym_line_comment, - [148065] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7466), 1, - anon_sym_RBRACE, - STATE(4428), 1, + ACTIONS(7458), 1, + anon_sym_LBRACE, + STATE(2421), 1, + sym__struct_body, + STATE(4429), 2, sym_line_comment, - [148078] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4603), 1, + [149815] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6672), 1, sym_identifier, - STATE(4429), 1, + STATE(820), 1, + sym_reference_expression, + STATE(4430), 2, sym_line_comment, - [148091] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5516), 1, + [149832] = 5, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(4430), 1, + STATE(1836), 1, + sym_block, + STATE(4431), 2, sym_line_comment, - [148104] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6786), 1, - anon_sym_RBRACK, - STATE(4431), 1, - sym_line_comment, - [148117] = 4, - ACTIONS(3), 1, + [149849] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(7460), 1, + anon_sym_LBRACE, + STATE(4432), 2, + sym_line_comment, + sym_block_comment, + [149863] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7462), 1, + anon_sym_LPAREN, + STATE(4433), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7468), 1, + [149877] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7464), 1, anon_sym_LBRACE, - STATE(4432), 1, + STATE(4434), 2, sym_line_comment, - [148130] = 4, + sym_block_comment, + [149891] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, + ACTIONS(7466), 1, + aux_sym__content_block_token1, + STATE(4435), 2, + sym_line_comment, + sym_block_comment, + [149905] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7468), 1, + anon_sym_RBRACK, + STATE(4436), 2, + sym_line_comment, sym_block_comment, + [149919] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7470), 1, - anon_sym_EQ, - STATE(4433), 1, + anon_sym_RBRACE, + STATE(4437), 2, sym_line_comment, - [148143] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [149933] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7472), 1, - anon_sym_DOT, - STATE(4434), 1, + anon_sym_RBRACE, + STATE(4438), 2, sym_line_comment, - [148156] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [149947] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7474), 1, - aux_sym__content_block_token1, - STATE(4435), 1, + anon_sym_LBRACE, + STATE(4439), 2, sym_line_comment, - [148169] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [149961] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7476), 1, anon_sym_RBRACE, - STATE(4436), 1, + STATE(4440), 2, sym_line_comment, - [148182] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [149975] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7478), 1, anon_sym_RBRACE, - STATE(4437), 1, + STATE(4441), 2, sym_line_comment, - [148195] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [149989] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7480), 1, anon_sym_RBRACK, - STATE(4438), 1, + STATE(4442), 2, sym_line_comment, - [148208] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4439), 1, - sym_line_comment, - [148221] = 4, + [150003] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7482), 1, - anon_sym_LBRACE, - STATE(4440), 1, + aux_sym__content_block_token1, + STATE(4443), 2, sym_line_comment, - [148234] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150017] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7484), 1, - anon_sym_DOT, - STATE(4441), 1, + anon_sym_RBRACE, + STATE(4444), 2, sym_line_comment, - [148247] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(7486), 1, - aux_sym__content_block_token1, - STATE(4442), 1, + [150031] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1472), 1, + anon_sym_RPAREN, + STATE(4445), 2, sym_line_comment, - [148260] = 4, - ACTIONS(3), 1, + sym_block_comment, + [150045] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(911), 1, + anon_sym_RBRACE, + STATE(4446), 2, + sym_line_comment, + sym_block_comment, + [150059] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7486), 1, + anon_sym_LPAREN, + STATE(4447), 2, + sym_line_comment, sym_block_comment, + [150073] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7488), 1, - anon_sym_DOT, - STATE(4443), 1, + anon_sym_RBRACE, + STATE(4448), 2, sym_line_comment, - [148273] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5472), 1, - anon_sym_LBRACE, - STATE(4444), 1, - sym_line_comment, - [148286] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150087] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7490), 1, - anon_sym_LBRACE, - STATE(4445), 1, + anon_sym_DOT, + STATE(4449), 2, sym_line_comment, - [148299] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [150101] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7492), 1, - aux_sym__content_block_token1, - STATE(4446), 1, + anon_sym_RBRACE, + STATE(4450), 2, sym_line_comment, - [148312] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150115] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7494), 1, anon_sym_DOT, - STATE(4447), 1, + STATE(4451), 2, sym_line_comment, - [148325] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(4902), 1, - anon_sym_COLON, - STATE(4448), 1, - sym_line_comment, - [148338] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150129] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5480), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5460), 1, anon_sym_LBRACE, - STATE(4449), 1, + STATE(4452), 2, sym_line_comment, - [148351] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150143] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7496), 1, anon_sym_LBRACE, - STATE(4450), 1, + STATE(4453), 2, sym_line_comment, - [148364] = 4, - ACTIONS(497), 1, + sym_block_comment, + [150157] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, + anon_sym_SLASH_STAR, ACTIONS(7498), 1, aux_sym__content_block_token1, - STATE(4451), 1, + STATE(4454), 2, sym_line_comment, - [148377] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150171] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7500), 1, - anon_sym_RBRACE, - STATE(4452), 1, + anon_sym_COLON_EQ, + STATE(4455), 2, sym_line_comment, - [148390] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [150185] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4456), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7414), 1, + [150199] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(897), 1, anon_sym_RBRACE, - STATE(4453), 1, + STATE(4457), 2, sym_line_comment, - [148403] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150213] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7502), 1, - anon_sym_RBRACK, - STATE(4454), 1, + anon_sym_RBRACE, + STATE(4458), 2, sym_line_comment, - [148416] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [150227] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5988), 1, + anon_sym_LBRACE, + STATE(4459), 2, + sym_line_comment, sym_block_comment, + [150241] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7504), 1, - anon_sym_RBRACE, - STATE(4455), 1, + anon_sym_DOT, + STATE(4460), 2, sym_line_comment, - [148429] = 4, + sym_block_comment, + [150255] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7506), 1, - anon_sym_RBRACE, - STATE(4456), 1, + aux_sym_hash_statement_token1, + STATE(4461), 2, sym_line_comment, - [148442] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150269] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7508), 1, - anon_sym_RBRACE, - STATE(4457), 1, + anon_sym_DOT, + STATE(4462), 2, sym_line_comment, - [148455] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150283] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7510), 1, - anon_sym_RBRACE, - STATE(4458), 1, + anon_sym_DOT, + STATE(4463), 2, sym_line_comment, - [148468] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150297] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7512), 1, anon_sym_RBRACE, - STATE(4459), 1, + STATE(4464), 2, sym_line_comment, - [148481] = 4, - ACTIONS(3), 1, + sym_block_comment, + [150311] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_LBRACE, + STATE(4465), 2, + sym_line_comment, + sym_block_comment, + [150325] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5454), 1, + anon_sym_LBRACE, + STATE(4466), 2, + sym_line_comment, sym_block_comment, + [150339] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7514), 1, - anon_sym_RBRACE, - STATE(4460), 1, + anon_sym_LBRACE, + STATE(4467), 2, sym_line_comment, - [148494] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(885), 1, + [150353] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(881), 1, anon_sym_RBRACE, - STATE(4461), 1, + STATE(4468), 2, sym_line_comment, - [148507] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150367] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7516), 1, anon_sym_DOT, - STATE(4462), 1, + STATE(4469), 2, sym_line_comment, - [148520] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [150381] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7518), 1, - aux_sym__content_block_token1, - STATE(4463), 1, + anon_sym_DOT, + STATE(4470), 2, sym_line_comment, - [148533] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150395] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(4464), 1, + anon_sym_RBRACE, + STATE(4471), 2, sym_line_comment, - [148546] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5460), 1, - anon_sym_LBRACE, - STATE(4465), 1, - sym_line_comment, - [148559] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150409] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7522), 1, - anon_sym_LBRACE, - STATE(4466), 1, + anon_sym_RBRACE, + STATE(4472), 2, sym_line_comment, - [148572] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, - ACTIONS(7524), 1, - aux_sym__content_block_token1, - STATE(4467), 1, - sym_line_comment, - [148585] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150423] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5476), 1, + anon_sym_LBRACE, + STATE(4473), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5520), 1, + [150437] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7524), 1, anon_sym_LBRACE, - STATE(4468), 1, + STATE(4474), 2, sym_line_comment, - [148598] = 4, + sym_block_comment, + [150451] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7526), 1, - anon_sym_RBRACE, - STATE(4469), 1, + aux_sym__content_block_token1, + STATE(4475), 2, sym_line_comment, - [148611] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150465] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7528), 1, - anon_sym_RBRACE, - STATE(4470), 1, + sym_identifier, + STATE(4476), 2, sym_line_comment, - [148624] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150479] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7530), 1, - anon_sym_DOT, - STATE(4471), 1, + sym_identifier, + STATE(4477), 2, sym_line_comment, - [148637] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150493] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7532), 1, - anon_sym_RBRACE, - STATE(4472), 1, + sym_identifier, + STATE(4478), 2, sym_line_comment, - [148650] = 4, - ACTIONS(3), 1, + sym_block_comment, + [150507] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(5020), 1, + sym_identifier, + STATE(4479), 2, + sym_line_comment, + sym_block_comment, + [150521] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(903), 1, + anon_sym_RBRACE, + STATE(4480), 2, + sym_line_comment, sym_block_comment, + [150535] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7534), 1, - anon_sym_RBRACK, - STATE(4473), 1, + anon_sym_RBRACE, + STATE(4481), 2, sym_line_comment, - [148663] = 4, + sym_block_comment, + [150549] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7536), 1, - sym_int_literal, - STATE(4474), 1, + aux_sym__content_block_token1, + STATE(4482), 2, sym_line_comment, - [148676] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7404), 1, - anon_sym_RBRACE, - STATE(4475), 1, - sym_line_comment, - [148689] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150563] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7538), 1, - anon_sym_RBRACE, - STATE(4476), 1, + anon_sym_LBRACE, + STATE(4483), 2, sym_line_comment, - [148702] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6005), 1, + [150577] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5430), 1, anon_sym_LBRACE, - STATE(4477), 1, + STATE(4484), 2, sym_line_comment, - [148715] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(901), 1, - anon_sym_RBRACE, - STATE(4478), 1, - sym_line_comment, - [148728] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150591] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(943), 1, - anon_sym_RBRACE, - STATE(4479), 1, - sym_line_comment, - [148741] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(7540), 1, - anon_sym_COLON_EQ, - STATE(4480), 1, + anon_sym_RBRACE, + STATE(4485), 2, sym_line_comment, - [148754] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [150605] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1476), 1, + anon_sym_RPAREN, + STATE(4486), 2, + sym_line_comment, sym_block_comment, + [150619] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7542), 1, - anon_sym_RBRACE, - STATE(4481), 1, + anon_sym_DOT, + STATE(4487), 2, sym_line_comment, - [148767] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150633] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7544), 1, - anon_sym_RBRACE, - STATE(4482), 1, + anon_sym_RBRACK, + STATE(4488), 2, sym_line_comment, - [148780] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150647] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7546), 1, - anon_sym_DOT, - STATE(4483), 1, + anon_sym_RBRACE, + STATE(4489), 2, sym_line_comment, - [148793] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150661] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7548), 1, anon_sym_RBRACE, - STATE(4484), 1, + STATE(4490), 2, sym_line_comment, - [148806] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7012), 1, - anon_sym_RBRACE, - STATE(4485), 1, - sym_line_comment, - [148819] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150675] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(5454), 1, - anon_sym_LBRACE, - STATE(4486), 1, - sym_line_comment, - [148832] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(7550), 1, - anon_sym_LBRACE, - STATE(4487), 1, + anon_sym_DOT, + STATE(4491), 2, sym_line_comment, - [148845] = 4, - ACTIONS(497), 1, + sym_block_comment, + [150689] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, + ACTIONS(483), 1, + anon_sym_RBRACE, + STATE(4492), 2, + sym_line_comment, sym_block_comment, + [150703] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7552), 1, - aux_sym__content_block_token1, - STATE(4488), 1, + anon_sym_RBRACE, + STATE(4493), 2, sym_line_comment, - [148858] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1468), 1, - anon_sym_RPAREN, - STATE(4489), 1, - sym_line_comment, - [148871] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150717] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5486), 1, + anon_sym_LBRACE, + STATE(4494), 2, + sym_line_comment, sym_block_comment, + [150731] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7554), 1, - sym_identifier, - STATE(4490), 1, + anon_sym_LBRACE, + STATE(4495), 2, sym_line_comment, - [148884] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7460), 1, - anon_sym_RPAREN, - STATE(4491), 1, - sym_line_comment, - [148897] = 4, + [150745] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7556), 1, - anon_sym_LPAREN, - STATE(4492), 1, + aux_sym__content_block_token1, + STATE(4496), 2, sym_line_comment, - [148910] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150759] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7558), 1, - sym_identifier, - STATE(4493), 1, + anon_sym_RBRACE, + STATE(4497), 2, sym_line_comment, - [148923] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150773] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7560), 1, - sym_identifier, - STATE(4494), 1, + anon_sym_RBRACK, + STATE(4498), 2, sym_line_comment, - [148936] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1607), 1, - anon_sym_RPAREN, - STATE(4495), 1, - sym_line_comment, - [148949] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150787] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7562), 1, anon_sym_RBRACE, - STATE(4496), 1, + STATE(4499), 2, sym_line_comment, - [148962] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150801] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7564), 1, anon_sym_RBRACE, - STATE(4497), 1, + STATE(4500), 2, sym_line_comment, - [148975] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7566), 1, - sym_identifier, - STATE(4498), 1, - sym_line_comment, - [148988] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150815] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(481), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7566), 1, anon_sym_RBRACE, - STATE(4499), 1, + STATE(4501), 2, sym_line_comment, - [149001] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150829] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7568), 1, - anon_sym_RBRACK, - STATE(4500), 1, + anon_sym_RBRACE, + STATE(4502), 2, sym_line_comment, - [149014] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150843] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7570), 1, - anon_sym_RBRACK, - STATE(4501), 1, + anon_sym_RBRACE, + STATE(4503), 2, sym_line_comment, - [149027] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [150857] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7572), 1, - aux_sym__content_block_token1, - STATE(4502), 1, + anon_sym_RBRACE, + STATE(4504), 2, sym_line_comment, - [149040] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [150871] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(891), 1, + anon_sym_RBRACE, + STATE(4505), 2, + sym_line_comment, sym_block_comment, + [150885] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7574), 1, - sym_identifier, - STATE(4503), 1, + anon_sym_RBRACE, + STATE(4506), 2, sym_line_comment, - [149053] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150899] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7576), 1, - anon_sym_DOT, - STATE(4504), 1, + anon_sym_LBRACE, + STATE(4507), 2, sym_line_comment, - [149066] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1599), 1, + [150913] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1468), 1, anon_sym_RPAREN, - STATE(4505), 1, + STATE(4508), 2, sym_line_comment, - [149079] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150927] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7578), 1, anon_sym_RBRACE, - STATE(4506), 1, + STATE(4509), 2, sym_line_comment, - [149092] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5452), 1, - anon_sym_LBRACE, - STATE(4507), 1, - sym_line_comment, - [149105] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [150941] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7580), 1, - anon_sym_LBRACE, - STATE(4508), 1, + anon_sym_RBRACE, + STATE(4510), 2, sym_line_comment, - [149118] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [150955] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7582), 1, - aux_sym__content_block_token1, - STATE(4509), 1, + anon_sym_COLON, + STATE(4511), 2, sym_line_comment, - [149131] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150969] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7584), 1, - sym_identifier, - STATE(4510), 1, + anon_sym_DOT, + STATE(4512), 2, sym_line_comment, - [149144] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [150983] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7586), 1, - sym_identifier, - STATE(4511), 1, + anon_sym_RBRACK, + STATE(4513), 2, sym_line_comment, - [149157] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [150997] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4902), 1, + anon_sym_COLON, + STATE(4514), 2, + sym_line_comment, sym_block_comment, - ACTIONS(7588), 1, + [151011] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(4512), 1, + STATE(4515), 2, sym_line_comment, - [149170] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5526), 1, + [151025] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7588), 1, anon_sym_LBRACE, - STATE(4513), 1, + STATE(4516), 2, sym_line_comment, - [149183] = 4, + sym_block_comment, + [151039] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7590), 1, - anon_sym_RBRACE, - STATE(4514), 1, + aux_sym__content_block_token1, + STATE(4517), 2, sym_line_comment, - [149196] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7592), 1, - sym_identifier, - STATE(4515), 1, - sym_line_comment, - [149209] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151053] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7594), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(929), 1, anon_sym_RBRACE, - STATE(4516), 1, + STATE(4518), 2, sym_line_comment, - [149222] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(935), 1, + [151067] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7592), 1, anon_sym_RBRACE, - STATE(4517), 1, + STATE(4519), 2, sym_line_comment, - [149235] = 4, - ACTIONS(3), 1, + sym_block_comment, + [151081] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(4970), 1, + sym_identifier, + STATE(4520), 2, + sym_line_comment, + sym_block_comment, + [151095] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7594), 1, + anon_sym_LBRACE, + STATE(4521), 2, + sym_line_comment, sym_block_comment, + [151109] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7596), 1, - anon_sym_DOT, - STATE(4518), 1, + anon_sym_RBRACE, + STATE(4522), 2, sym_line_comment, - [149248] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151123] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7598), 1, - anon_sym_EQ, - STATE(4519), 1, + anon_sym_RBRACE, + STATE(4523), 2, sym_line_comment, - [149261] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151137] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7600), 1, anon_sym_RBRACE, - STATE(4520), 1, + STATE(4524), 2, sym_line_comment, - [149274] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151151] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7602), 1, anon_sym_RBRACE, - STATE(4521), 1, + STATE(4525), 2, sym_line_comment, - [149287] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151165] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7604), 1, - sym_identifier, - STATE(4522), 1, + anon_sym_RBRACK, + STATE(4526), 2, sym_line_comment, - [149300] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(909), 1, - anon_sym_RBRACE, - STATE(4523), 1, - sym_line_comment, - [149313] = 4, + [151179] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7606), 1, - anon_sym_DOT, - STATE(4524), 1, + aux_sym__content_block_token1, + STATE(4527), 2, sym_line_comment, - [149326] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151193] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7608), 1, - anon_sym_DOT, - STATE(4525), 1, + anon_sym_LBRACE, + STATE(4528), 2, sym_line_comment, - [149339] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151207] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5496), 1, + anon_sym_LBRACE, + STATE(4529), 2, + sym_line_comment, sym_block_comment, + [151221] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7610), 1, - sym_int_literal, - STATE(4526), 1, + anon_sym_RBRACE, + STATE(4530), 2, sym_line_comment, - [149352] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151235] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7612), 1, - anon_sym_RBRACE, - STATE(4527), 1, + anon_sym_RBRACK, + STATE(4531), 2, sym_line_comment, - [149365] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5450), 1, - anon_sym_LBRACE, - STATE(4528), 1, - sym_line_comment, - [149378] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151249] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4599), 1, + sym_identifier, + STATE(4532), 2, + sym_line_comment, sym_block_comment, + [151263] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7614), 1, - anon_sym_LBRACE, - STATE(4529), 1, + anon_sym_DOT, + STATE(4533), 2, sym_line_comment, - [149391] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [151277] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7616), 1, - aux_sym__content_block_token1, - STATE(4530), 1, + anon_sym_DOT, + STATE(4534), 2, sym_line_comment, - [149404] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1597), 1, - anon_sym_RPAREN, - STATE(4531), 1, - sym_line_comment, - [149417] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151291] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7618), 1, - anon_sym_RBRACK, - STATE(4532), 1, + anon_sym_EQ, + STATE(4535), 2, sym_line_comment, - [149430] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151305] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(4536), 2, + sym_line_comment, sym_block_comment, + [151319] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7620), 1, - anon_sym_RBRACE, - STATE(4533), 1, + anon_sym_LBRACE, + STATE(4537), 2, sym_line_comment, - [149443] = 4, + sym_block_comment, + [151333] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7622), 1, - anon_sym_RBRACE, - STATE(4534), 1, + aux_sym__content_block_token1, + STATE(4538), 2, sym_line_comment, - [149456] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151347] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6971), 1, + anon_sym_RBRACK, + STATE(4539), 2, + sym_line_comment, sym_block_comment, + [151361] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7624), 1, anon_sym_RBRACE, - STATE(4535), 1, + STATE(4540), 2, sym_line_comment, - [149469] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151375] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7626), 1, - anon_sym_RBRACE, - STATE(4536), 1, + sym_identifier, + STATE(4541), 2, sym_line_comment, - [149482] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151389] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7628), 1, anon_sym_RBRACE, - STATE(4537), 1, + STATE(4542), 2, sym_line_comment, - [149495] = 4, - ACTIONS(3), 1, + sym_block_comment, + [151403] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(921), 1, + anon_sym_RBRACE, + STATE(4543), 2, + sym_line_comment, + sym_block_comment, + [151417] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 1, + anon_sym_RPAREN, + STATE(4544), 2, + sym_line_comment, sym_block_comment, + [151431] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7630), 1, - anon_sym_DOT, - STATE(4538), 1, + anon_sym_LBRACE, + STATE(4545), 2, sym_line_comment, - [149508] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7632), 1, + [151445] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(893), 1, anon_sym_RBRACE, - STATE(4539), 1, + STATE(4546), 2, sym_line_comment, - [149521] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(875), 1, + [151459] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7632), 1, anon_sym_RBRACE, - STATE(4540), 1, + STATE(4547), 2, sym_line_comment, - [149534] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151473] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7634), 1, anon_sym_LBRACE, - STATE(4541), 1, + STATE(4548), 2, sym_line_comment, - [149547] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151487] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(925), 1, + anon_sym_RBRACE, + STATE(4549), 2, + sym_line_comment, sym_block_comment, + [151501] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7636), 1, anon_sym_RBRACE, - STATE(4542), 1, + STATE(4550), 2, sym_line_comment, - [149560] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151515] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7638), 1, anon_sym_RBRACE, - STATE(4543), 1, + STATE(4551), 2, sym_line_comment, - [149573] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151529] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7640), 1, anon_sym_RBRACE, - STATE(4544), 1, + STATE(4552), 2, sym_line_comment, - [149586] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151543] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7642), 1, - sym_identifier, - STATE(4545), 1, + anon_sym_EQ, + STATE(4553), 2, sym_line_comment, - [149599] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151557] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7644), 1, anon_sym_DOT, - STATE(4546), 1, + STATE(4554), 2, sym_line_comment, - [149612] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151571] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7646), 1, - anon_sym_RBRACK, - STATE(4547), 1, + anon_sym_EQ, + STATE(4555), 2, sym_line_comment, - [149625] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7648), 1, - sym_identifier, - STATE(4548), 1, - sym_line_comment, - [149638] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151585] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(933), 1, + anon_sym_RBRACE, + STATE(4556), 2, + sym_line_comment, sym_block_comment, - ACTIONS(5418), 1, + [151599] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, anon_sym_LBRACE, - STATE(4549), 1, + STATE(4557), 2, sym_line_comment, - [149651] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7650), 1, + [151613] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7648), 1, anon_sym_LBRACE, - STATE(4550), 1, + STATE(4558), 2, sym_line_comment, - [149664] = 4, - ACTIONS(497), 1, + sym_block_comment, + [151627] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(7652), 1, + anon_sym_SLASH_STAR, + ACTIONS(7650), 1, aux_sym__content_block_token1, - STATE(4551), 1, + STATE(4559), 2, sym_line_comment, - [149677] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151641] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7652), 1, + anon_sym_RBRACK, + STATE(4560), 2, + sym_line_comment, sym_block_comment, + [151655] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7654), 1, anon_sym_RBRACE, - STATE(4552), 1, + STATE(4561), 2, sym_line_comment, - [149690] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151669] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7656), 1, - sym_identifier, - STATE(4553), 1, + anon_sym_RBRACE, + STATE(4562), 2, sym_line_comment, - [149703] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151683] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7658), 1, anon_sym_RBRACE, - STATE(4554), 1, + STATE(4563), 2, sym_line_comment, - [149716] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(927), 1, - anon_sym_RBRACE, - STATE(4555), 1, - sym_line_comment, - [149729] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151697] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7660), 1, - anon_sym_RBRACK, - STATE(4556), 1, + sym_identifier, + STATE(4564), 2, sym_line_comment, - [149742] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151711] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7662), 1, anon_sym_RBRACE, - STATE(4557), 1, + STATE(4565), 2, sym_line_comment, - [149755] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151725] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1599), 1, + anon_sym_RPAREN, + STATE(4566), 2, + sym_line_comment, sym_block_comment, + [151739] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7664), 1, - anon_sym_RBRACE, - STATE(4558), 1, + anon_sym_RBRACK, + STATE(4567), 2, sym_line_comment, - [149768] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151753] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7666), 1, - anon_sym_RBRACK, - STATE(4559), 1, + anon_sym_RBRACE, + STATE(4568), 2, sym_line_comment, - [149781] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151767] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7668), 1, anon_sym_RBRACE, - STATE(4560), 1, + STATE(4569), 2, sym_line_comment, - [149794] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7670), 1, - anon_sym_RBRACK, - STATE(4561), 1, - sym_line_comment, - [149807] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151781] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7672), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7670), 1, anon_sym_RBRACE, - STATE(4562), 1, + STATE(4570), 2, sym_line_comment, - [149820] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7674), 1, + [151795] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7672), 1, anon_sym_DOT, - STATE(4563), 1, + STATE(4571), 2, sym_line_comment, - [149833] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7676), 1, + [151809] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7674), 1, anon_sym_RBRACK, - STATE(4564), 1, + STATE(4572), 2, sym_line_comment, - [149846] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5446), 1, + [151823] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, anon_sym_LBRACE, - STATE(4565), 1, + STATE(4573), 2, sym_line_comment, - [149859] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7678), 1, + [151837] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7676), 1, anon_sym_LBRACE, - STATE(4566), 1, + STATE(4574), 2, sym_line_comment, - [149872] = 4, - ACTIONS(497), 1, + sym_block_comment, + [151851] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(499), 1, - sym_block_comment, - ACTIONS(7680), 1, + anon_sym_SLASH_STAR, + ACTIONS(7678), 1, aux_sym__content_block_token1, - STATE(4567), 1, + STATE(4575), 2, sym_line_comment, - [149885] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7682), 1, + [151865] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7680), 1, anon_sym_RBRACE, - STATE(4568), 1, + STATE(4576), 2, sym_line_comment, - [149898] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [151879] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7682), 1, + anon_sym_RBRACK, + STATE(4577), 2, + sym_line_comment, sym_block_comment, + [151893] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7684), 1, - anon_sym_COLON, - STATE(4569), 1, + anon_sym_DOT, + STATE(4578), 2, sym_line_comment, - [149911] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151907] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7686), 1, - anon_sym_RBRACE, - STATE(4570), 1, + anon_sym_DOT, + STATE(4579), 2, sym_line_comment, - [149924] = 4, + sym_block_comment, + [151921] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7688), 1, - anon_sym_DOT, - STATE(4571), 1, + aux_sym__content_block_token1, + STATE(4580), 2, sym_line_comment, - [149937] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [151935] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7690), 1, - aux_sym__content_block_token1, - STATE(4572), 1, + anon_sym_RBRACE, + STATE(4581), 2, sym_line_comment, - [149950] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151949] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7692), 1, anon_sym_RBRACE, - STATE(4573), 1, + STATE(4582), 2, sym_line_comment, - [149963] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(915), 1, - anon_sym_RBRACE, - STATE(4574), 1, - sym_line_comment, - [149976] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [151963] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7694), 1, - anon_sym_RBRACE, - STATE(4575), 1, + anon_sym_PIPE, + STATE(4583), 2, sym_line_comment, - [149989] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151977] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7696), 1, anon_sym_RBRACE, - STATE(4576), 1, + STATE(4584), 2, sym_line_comment, - [150002] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [151991] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7698), 1, - anon_sym_RBRACE, - STATE(4577), 1, + anon_sym_RBRACK, + STATE(4585), 2, sym_line_comment, - [150015] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152005] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7700), 1, anon_sym_RBRACE, - STATE(4578), 1, + STATE(4586), 2, sym_line_comment, - [150028] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152019] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7702), 1, anon_sym_RBRACE, - STATE(4579), 1, + STATE(4587), 2, sym_line_comment, - [150041] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152033] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7704), 1, - anon_sym_SEMI, - STATE(4580), 1, + anon_sym_RBRACE, + STATE(4588), 2, sym_line_comment, - [150054] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152047] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7706), 1, - anon_sym_RBRACE, - STATE(4581), 1, + sym_identifier, + STATE(4589), 2, sym_line_comment, - [150067] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152061] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7708), 1, anon_sym_RBRACE, - STATE(4582), 1, + STATE(4590), 2, sym_line_comment, - [150080] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152075] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7710), 1, - anon_sym_in, - STATE(4583), 1, + sym_identifier, + STATE(4591), 2, sym_line_comment, - [150093] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(905), 1, - anon_sym_RBRACE, - STATE(4584), 1, - sym_line_comment, - [150106] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152089] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7712), 1, sym_identifier, - STATE(4585), 1, + STATE(4592), 2, sym_line_comment, - [150119] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(945), 1, + [152103] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(941), 1, anon_sym_RBRACE, - STATE(4586), 1, + STATE(4593), 2, sym_line_comment, - [150132] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152117] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7714), 1, - anon_sym_RBRACE, - STATE(4587), 1, + sym_identifier, + STATE(4594), 2, sym_line_comment, - [150145] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152131] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7716), 1, anon_sym_RBRACE, - STATE(4588), 1, + STATE(4595), 2, sym_line_comment, - [150158] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152145] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7718), 1, - anon_sym_LPAREN, - STATE(4589), 1, + anon_sym_RBRACE, + STATE(4596), 2, sym_line_comment, - [150171] = 4, + sym_block_comment, + [152159] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7720), 1, - anon_sym_RBRACE, - STATE(4590), 1, + aux_sym__content_block_token1, + STATE(4597), 2, sym_line_comment, - [150184] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(879), 1, - anon_sym_RBRACE, - STATE(4591), 1, - sym_line_comment, - [150197] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152173] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7722), 1, - anon_sym_RBRACK, - STATE(4592), 1, + sym_identifier, + STATE(4598), 2, sym_line_comment, - [150210] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152187] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7724), 1, - anon_sym_RBRACK, - STATE(4593), 1, + sym_identifier, + STATE(4599), 2, sym_line_comment, - [150223] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152201] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7726), 1, - anon_sym_RBRACK, - STATE(4594), 1, + sym_identifier, + STATE(4600), 2, sym_line_comment, - [150236] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152215] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7728), 1, - anon_sym_RBRACE, - STATE(4595), 1, + sym_identifier, + STATE(4601), 2, sym_line_comment, - [150249] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [152229] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7730), 1, - aux_sym__content_block_token1, - STATE(4596), 1, + anon_sym_RBRACE, + STATE(4602), 2, sym_line_comment, - [150262] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152243] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7732), 1, - anon_sym_RBRACE, - STATE(4597), 1, + sym_identifier, + STATE(4603), 2, sym_line_comment, - [150275] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152257] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(4598), 1, + anon_sym_RBRACE, + STATE(4604), 2, sym_line_comment, - [150288] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152271] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(885), 1, + anon_sym_RBRACE, + STATE(4605), 2, + sym_line_comment, sym_block_comment, + [152285] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7736), 1, - anon_sym_LBRACE, - STATE(4599), 1, + anon_sym_RBRACK, + STATE(4606), 2, sym_line_comment, - [150301] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5444), 1, - anon_sym_LBRACE, - STATE(4600), 1, - sym_line_comment, - [150314] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152299] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7738), 1, anon_sym_RBRACE, - STATE(4601), 1, + STATE(4607), 2, sym_line_comment, - [150327] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152313] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7740), 1, anon_sym_RBRACE, - STATE(4602), 1, + STATE(4608), 2, sym_line_comment, - [150340] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152327] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(875), 1, + anon_sym_RBRACE, + STATE(4609), 2, + sym_line_comment, sym_block_comment, + [152341] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7742), 1, anon_sym_RBRACE, - STATE(4603), 1, + STATE(4610), 2, sym_line_comment, - [150353] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6037), 1, - anon_sym_COLON_EQ, - STATE(4604), 1, - sym_line_comment, - [150366] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152355] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7744), 1, anon_sym_RBRACE, - STATE(4605), 1, + STATE(4611), 2, sym_line_comment, - [150379] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152369] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7746), 1, anon_sym_RBRACE, - STATE(4606), 1, + STATE(4612), 2, sym_line_comment, - [150392] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152383] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1474), 1, + anon_sym_RPAREN, + STATE(4613), 2, + sym_line_comment, sym_block_comment, + [152397] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7748), 1, - anon_sym_RBRACE, - STATE(4607), 1, + anon_sym_RBRACK, + STATE(4614), 2, sym_line_comment, - [150405] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(941), 1, + [152411] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(931), 1, anon_sym_RBRACE, - STATE(4608), 1, + STATE(4615), 2, sym_line_comment, - [150418] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152425] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7750), 1, anon_sym_RBRACE, - STATE(4609), 1, + STATE(4616), 2, sym_line_comment, - [150431] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152439] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7752), 1, anon_sym_RBRACE, - STATE(4610), 1, + STATE(4617), 2, sym_line_comment, - [150444] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152453] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7754), 1, - anon_sym_RBRACE, - STATE(4611), 1, + anon_sym_RBRACK, + STATE(4618), 2, sym_line_comment, - [150457] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152467] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7756), 1, - anon_sym_RBRACE, - STATE(4612), 1, + anon_sym_RBRACK, + STATE(4619), 2, sym_line_comment, - [150470] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152481] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7758), 1, - anon_sym_RBRACK, - STATE(4613), 1, + anon_sym_RBRACE, + STATE(4620), 2, sym_line_comment, - [150483] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1601), 1, - anon_sym_RPAREN, - STATE(4614), 1, - sym_line_comment, - [150496] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152495] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7760), 1, anon_sym_RBRACE, - STATE(4615), 1, + STATE(4621), 2, sym_line_comment, - [150509] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7762), 1, - anon_sym_DOT, - STATE(4616), 1, - sym_line_comment, - [150522] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152509] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(913), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7762), 1, anon_sym_RBRACE, - STATE(4617), 1, + STATE(4622), 2, sym_line_comment, - [150535] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7280), 1, - anon_sym_RPAREN, - STATE(4618), 1, - sym_line_comment, - [150548] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152523] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(4974), 1, - sym_identifier, - STATE(4619), 1, - sym_line_comment, - [150561] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, ACTIONS(7764), 1, anon_sym_RBRACE, - STATE(4620), 1, + STATE(4623), 2, sym_line_comment, - [150574] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152537] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7766), 1, anon_sym_RBRACE, - STATE(4621), 1, + STATE(4624), 2, sym_line_comment, - [150587] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152551] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(887), 1, + anon_sym_RBRACE, + STATE(4625), 2, + sym_line_comment, sym_block_comment, + [152565] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7768), 1, anon_sym_RBRACE, - STATE(4622), 1, + STATE(4626), 2, sym_line_comment, - [150600] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152579] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7770), 1, - anon_sym_RBRACK, - STATE(4623), 1, + anon_sym_RBRACE, + STATE(4627), 2, sym_line_comment, - [150613] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7772), 1, + [152593] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(923), 1, anon_sym_RBRACE, - STATE(4624), 1, + STATE(4628), 2, sym_line_comment, - [150626] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152607] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7772), 1, + anon_sym_RBRACK, + STATE(4629), 2, + sym_line_comment, sym_block_comment, + [152621] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7774), 1, anon_sym_RBRACE, - STATE(4625), 1, + STATE(4630), 2, sym_line_comment, - [150639] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152635] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7776), 1, - anon_sym_RBRACE, - STATE(4626), 1, + anon_sym_SEMI, + STATE(4631), 2, sym_line_comment, - [150652] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7778), 1, - anon_sym_LBRACE, - STATE(4627), 1, - sym_line_comment, - [150665] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152649] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(921), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7778), 1, anon_sym_RBRACE, - STATE(4628), 1, + STATE(4632), 2, sym_line_comment, - [150678] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152663] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7780), 1, anon_sym_RBRACE, - STATE(4629), 1, + STATE(4633), 2, sym_line_comment, - [150691] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152677] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7782), 1, - anon_sym_RBRACK, - STATE(4630), 1, + anon_sym_in, + STATE(4634), 2, sym_line_comment, - [150704] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152691] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7784), 1, - anon_sym_RBRACE, - STATE(4631), 1, + anon_sym_DOT, + STATE(4635), 2, sym_line_comment, - [150717] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152705] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7786), 1, - anon_sym_RBRACE, - STATE(4632), 1, + sym_identifier, + STATE(4636), 2, sym_line_comment, - [150730] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152719] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7788), 1, - anon_sym_LBRACE, - STATE(4633), 1, + anon_sym_RBRACK, + STATE(4637), 2, sym_line_comment, - [150743] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152733] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7790), 1, anon_sym_RBRACE, - STATE(4634), 1, + STATE(4638), 2, sym_line_comment, - [150756] = 4, + sym_block_comment, + [152747] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7792), 1, - anon_sym_DOT, - STATE(4635), 1, + aux_sym__content_block_token1, + STATE(4639), 2, sym_line_comment, - [150769] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152761] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7794), 1, - anon_sym_RBRACE, - STATE(4636), 1, + sym_identifier, + STATE(4640), 2, sym_line_comment, - [150782] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(919), 1, - anon_sym_RBRACE, - STATE(4637), 1, - sym_line_comment, - [150795] = 4, - ACTIONS(497), 1, + [152775] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, ACTIONS(7796), 1, - aux_sym_shebang_token1, - STATE(4638), 1, + anon_sym_LBRACE, + STATE(4641), 2, sym_line_comment, - [150808] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152789] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5532), 1, + anon_sym_LBRACE, + STATE(4642), 2, + sym_line_comment, sym_block_comment, + [152803] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7798), 1, anon_sym_RBRACE, - STATE(4639), 1, + STATE(4643), 2, sym_line_comment, - [150821] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152817] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6019), 1, + anon_sym_COLON_EQ, + STATE(4644), 2, + sym_line_comment, sym_block_comment, + [152831] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7800), 1, - anon_sym_RBRACE, - STATE(4640), 1, + anon_sym_LBRACE, + STATE(4645), 2, sym_line_comment, - [150834] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152845] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7802), 1, anon_sym_RBRACE, - STATE(4641), 1, + STATE(4646), 2, sym_line_comment, - [150847] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152859] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7804), 1, anon_sym_RBRACE, - STATE(4642), 1, + STATE(4647), 2, sym_line_comment, - [150860] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152873] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7806), 1, - anon_sym_DOT, - STATE(4643), 1, + anon_sym_LBRACE, + STATE(4648), 2, sym_line_comment, - [150873] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152887] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7808), 1, - anon_sym_RBRACE, - STATE(4644), 1, + anon_sym_LBRACE, + STATE(4649), 2, sym_line_comment, - [150886] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152901] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7810), 1, - anon_sym_RBRACE, - STATE(4645), 1, + sym_int_literal, + STATE(4650), 2, sym_line_comment, - [150899] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6676), 1, - anon_sym_RBRACE, - STATE(4646), 1, - sym_line_comment, - [150912] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152915] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7812), 1, - anon_sym_RBRACK, - STATE(4647), 1, + anon_sym_RBRACE, + STATE(4651), 2, sym_line_comment, - [150925] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [152929] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6613), 1, + anon_sym_RBRACE, + STATE(4652), 2, + sym_line_comment, sym_block_comment, + [152943] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7814), 1, anon_sym_RBRACE, - STATE(4648), 1, + STATE(4653), 2, sym_line_comment, - [150938] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152957] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7816), 1, - anon_sym_LBRACE, - STATE(4649), 1, + anon_sym_DOT, + STATE(4654), 2, sym_line_comment, - [150951] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1591), 1, - anon_sym_RPAREN, - STATE(4650), 1, - sym_line_comment, - [150964] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [152971] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7818), 1, anon_sym_RBRACE, - STATE(4651), 1, + STATE(4655), 2, sym_line_comment, - [150977] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(889), 1, + [152985] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(935), 1, anon_sym_RBRACE, - STATE(4652), 1, + STATE(4656), 2, sym_line_comment, - [150990] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [152999] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7820), 1, - anon_sym_RBRACK, - STATE(4653), 1, + anon_sym_RBRACE, + STATE(4657), 2, sym_line_comment, - [151003] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1603), 1, - anon_sym_RPAREN, - STATE(4654), 1, - sym_line_comment, - [151016] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153013] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7822), 1, anon_sym_RBRACE, - STATE(4655), 1, + STATE(4658), 2, sym_line_comment, - [151029] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(891), 1, - anon_sym_RBRACE, - STATE(4656), 1, - sym_line_comment, - [151042] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153027] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7824), 1, - anon_sym_RBRACK, - STATE(4657), 1, + anon_sym_RBRACE, + STATE(4659), 2, sym_line_comment, - [151055] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153041] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7826), 1, - sym_int_literal, - STATE(4658), 1, + anon_sym_RBRACE, + STATE(4660), 2, sym_line_comment, - [151068] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153055] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7828), 1, - anon_sym_RBRACE, - STATE(4659), 1, + anon_sym_RBRACK, + STATE(4661), 2, sym_line_comment, - [151081] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153069] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1601), 1, + anon_sym_RPAREN, + STATE(4662), 2, + sym_line_comment, sym_block_comment, + [153083] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7830), 1, anon_sym_RBRACE, - STATE(4660), 1, + STATE(4663), 2, sym_line_comment, - [151094] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153097] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7832), 1, - anon_sym_RBRACE, - STATE(4661), 1, + anon_sym_RBRACK, + STATE(4664), 2, sym_line_comment, - [151107] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153111] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7834), 1, - anon_sym_EQ, - STATE(4662), 1, + anon_sym_DOT, + STATE(4665), 2, sym_line_comment, - [151120] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153125] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(927), 1, + anon_sym_RBRACE, + STATE(4666), 2, + sym_line_comment, sym_block_comment, + [153139] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7836), 1, anon_sym_RBRACE, - STATE(4663), 1, + STATE(4667), 2, sym_line_comment, - [151133] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153153] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7838), 1, anon_sym_RBRACE, - STATE(4664), 1, + STATE(4668), 2, sym_line_comment, - [151146] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153167] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7840), 1, anon_sym_RBRACE, - STATE(4665), 1, + STATE(4669), 2, sym_line_comment, - [151159] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1593), 1, + [153181] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7378), 1, anon_sym_RPAREN, - STATE(4666), 1, + STATE(4670), 2, sym_line_comment, - [151172] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153195] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7842), 1, - anon_sym_LBRACE, - STATE(4667), 1, + anon_sym_RBRACE, + STATE(4671), 2, sym_line_comment, - [151185] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153209] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7844), 1, anon_sym_RBRACK, - STATE(4668), 1, + STATE(4672), 2, sym_line_comment, - [151198] = 4, + sym_block_comment, + [153223] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7846), 1, - anon_sym_RBRACE, - STATE(4669), 1, + aux_sym_shebang_token1, + STATE(4673), 2, sym_line_comment, - [151211] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153237] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7848), 1, anon_sym_RBRACE, - STATE(4670), 1, + STATE(4674), 2, sym_line_comment, - [151224] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153251] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7850), 1, - anon_sym_RBRACK, - STATE(4671), 1, + anon_sym_RBRACE, + STATE(4675), 2, sym_line_comment, - [151237] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153265] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7852), 1, anon_sym_RBRACE, - STATE(4672), 1, + STATE(4676), 2, sym_line_comment, - [151250] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153279] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7854), 1, - anon_sym_RBRACE, - STATE(4673), 1, + anon_sym_RBRACK, + STATE(4677), 2, sym_line_comment, - [151263] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(5020), 1, - sym_identifier, - STATE(4674), 1, - sym_line_comment, - [151276] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153293] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7856), 1, anon_sym_RBRACE, - STATE(4675), 1, + STATE(4678), 2, sym_line_comment, - [151289] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(917), 1, - anon_sym_RBRACE, - STATE(4676), 1, - sym_line_comment, - [151302] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153307] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7858), 1, - anon_sym_LBRACE, - STATE(4677), 1, + anon_sym_RBRACE, + STATE(4679), 2, sym_line_comment, - [151315] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153321] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(915), 1, + anon_sym_RBRACE, + STATE(4680), 2, + sym_line_comment, sym_block_comment, + [153335] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7860), 1, anon_sym_RBRACE, - STATE(4678), 1, + STATE(4681), 2, sym_line_comment, - [151328] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153349] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7862), 1, - anon_sym_RBRACE, - STATE(4679), 1, + anon_sym_EQ, + STATE(4682), 2, sym_line_comment, - [151341] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153363] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7864), 1, anon_sym_RBRACE, - STATE(4680), 1, + STATE(4683), 2, sym_line_comment, - [151354] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153377] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7866), 1, - anon_sym_LBRACE, - STATE(4681), 1, + anon_sym_RBRACE, + STATE(4684), 2, sym_line_comment, - [151367] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153391] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7868), 1, - anon_sym_RBRACK, - STATE(4682), 1, + anon_sym_RBRACE, + STATE(4685), 2, sym_line_comment, - [151380] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153405] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7870), 1, - anon_sym_EQ, - STATE(4683), 1, + anon_sym_RBRACE, + STATE(4686), 2, sym_line_comment, - [151393] = 4, - ACTIONS(3), 1, + sym_block_comment, + [153419] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(907), 1, + anon_sym_RBRACE, + STATE(4687), 2, + sym_line_comment, + sym_block_comment, + [153433] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1607), 1, + anon_sym_RPAREN, + STATE(4688), 2, + sym_line_comment, sym_block_comment, + [153447] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7872), 1, anon_sym_RBRACE, - STATE(4684), 1, + STATE(4689), 2, sym_line_comment, - [151406] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153461] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7874), 1, - anon_sym_LBRACE, - STATE(4685), 1, + anon_sym_RBRACE, + STATE(4690), 2, sym_line_comment, - [151419] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153475] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7876), 1, - sym_identifier, - STATE(4686), 1, + anon_sym_RBRACE, + STATE(4691), 2, sym_line_comment, - [151432] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153489] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7878), 1, - sym_identifier, - STATE(4687), 1, + anon_sym_RBRACE, + STATE(4692), 2, sym_line_comment, - [151445] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153503] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7880), 1, - anon_sym_RBRACE, - STATE(4688), 1, + anon_sym_RBRACK, + STATE(4693), 2, sym_line_comment, - [151458] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(923), 1, - anon_sym_RBRACE, - STATE(4689), 1, - sym_line_comment, - [151471] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153517] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7882), 1, - ts_builtin_sym_end, - STATE(4690), 1, - sym_line_comment, - [151484] = 4, - ACTIONS(3), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, - ACTIONS(931), 1, + ACTIONS(7882), 1, anon_sym_RBRACE, - STATE(4691), 1, + STATE(4694), 2, sym_line_comment, - [151497] = 4, + sym_block_comment, + [153531] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7884), 1, - anon_sym_RBRACE, - STATE(4692), 1, + aux_sym_shebang_token1, + STATE(4695), 2, sym_line_comment, - [151510] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7886), 1, + [153545] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(939), 1, anon_sym_RBRACE, - STATE(4693), 1, + STATE(4696), 2, sym_line_comment, - [151523] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153559] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7886), 1, + sym_identifier, + STATE(4697), 2, + sym_line_comment, sym_block_comment, + [153573] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7888), 1, anon_sym_RBRACE, - STATE(4694), 1, + STATE(4698), 2, sym_line_comment, - [151536] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7890), 1, - anon_sym_RBRACE, - STATE(4695), 1, - sym_line_comment, - [151549] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153587] = 4, ACTIONS(5), 1, - sym_block_comment, - ACTIONS(7892), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7890), 1, anon_sym_RBRACK, - STATE(4696), 1, + STATE(4699), 2, sym_line_comment, - [151562] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153601] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(1605), 1, anon_sym_RPAREN, - STATE(4697), 1, + STATE(4700), 2, sym_line_comment, - [151575] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7894), 1, + [153615] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7892), 1, anon_sym_RBRACE, - STATE(4698), 1, + STATE(4701), 2, sym_line_comment, - [151588] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7896), 1, + [153629] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7894), 1, anon_sym_RBRACE, - STATE(4699), 1, + STATE(4702), 2, sym_line_comment, - [151601] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(949), 1, + [153643] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(879), 1, anon_sym_RBRACE, - STATE(4700), 1, + STATE(4703), 2, sym_line_comment, - [151614] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153657] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7896), 1, + anon_sym_RBRACK, + STATE(4704), 2, + sym_line_comment, sym_block_comment, + [153671] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7898), 1, anon_sym_RBRACE, - STATE(4701), 1, + STATE(4705), 2, sym_line_comment, - [151627] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153685] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7900), 1, - anon_sym_LPAREN, - STATE(4702), 1, + anon_sym_RBRACE, + STATE(4706), 2, sym_line_comment, - [151640] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153699] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7902), 1, - anon_sym_RBRACE, - STATE(4703), 1, + ts_builtin_sym_end, + STATE(4707), 2, sym_line_comment, - [151653] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153713] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1609), 1, + anon_sym_RPAREN, + STATE(4708), 2, + sym_line_comment, sym_block_comment, + [153727] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7904), 1, - sym_identifier, - STATE(4704), 1, + anon_sym_RBRACK, + STATE(4709), 2, sym_line_comment, - [151666] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153741] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7906), 1, - anon_sym_RBRACE, - STATE(4705), 1, + anon_sym_LPAREN, + STATE(4710), 2, sym_line_comment, - [151679] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [153755] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7908), 1, - aux_sym_hash_statement_token1, - STATE(4706), 1, + anon_sym_RBRACE, + STATE(4711), 2, sym_line_comment, - [151692] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153769] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7910), 1, - anon_sym_LPAREN, - STATE(4707), 1, + anon_sym_RBRACE, + STATE(4712), 2, sym_line_comment, - [151705] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, sym_block_comment, + [153783] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7912), 1, - aux_sym_hash_statement_token1, - STATE(4708), 1, + anon_sym_LBRACE, + STATE(4713), 2, sym_line_comment, - [151718] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153797] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7914), 1, - sym_identifier, - STATE(4709), 1, + anon_sym_RBRACE, + STATE(4714), 2, sym_line_comment, - [151731] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153811] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7916), 1, - anon_sym_RBRACE, - STATE(4710), 1, + anon_sym_LPAREN, + STATE(4715), 2, sym_line_comment, - [151744] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153825] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7918), 1, - anon_sym_LPAREN, - STATE(4711), 1, + anon_sym_RBRACE, + STATE(4716), 2, sym_line_comment, - [151757] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153839] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7920), 1, anon_sym_RBRACK, - STATE(4712), 1, + STATE(4717), 2, sym_line_comment, - [151770] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153853] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7922), 1, - anon_sym_DOT, - STATE(4713), 1, + sym_int_literal, + STATE(4718), 2, sym_line_comment, - [151783] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153867] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7924), 1, - anon_sym_RBRACE, - STATE(4714), 1, + anon_sym_LPAREN, + STATE(4719), 2, sym_line_comment, - [151796] = 4, - ACTIONS(3), 1, + sym_block_comment, + [153881] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(1470), 1, + anon_sym_RPAREN, + STATE(4720), 2, + sym_line_comment, + sym_block_comment, + [153895] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(6855), 1, + anon_sym_RBRACE, + STATE(4721), 2, + sym_line_comment, sym_block_comment, + [153909] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7926), 1, - anon_sym_LPAREN, - STATE(4715), 1, + sym_identifier, + STATE(4722), 2, sym_line_comment, - [151809] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153923] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7928), 1, - anon_sym_RBRACE, - STATE(4716), 1, + anon_sym_LPAREN, + STATE(4723), 2, sym_line_comment, - [151822] = 4, + sym_block_comment, + [153937] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ACTIONS(499), 1, + anon_sym_SLASH_STAR, ACTIONS(7930), 1, - anon_sym_RBRACE, - STATE(4717), 1, + aux_sym_hash_statement_token1, + STATE(4724), 2, sym_line_comment, - [151835] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [153951] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7256), 1, + anon_sym_RPAREN, + STATE(4725), 2, + sym_line_comment, sym_block_comment, + [153965] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7932), 1, anon_sym_RBRACE, - STATE(4718), 1, + STATE(4726), 2, sym_line_comment, - [151848] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [153979] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7934), 1, anon_sym_LPAREN, - STATE(4719), 1, + STATE(4727), 2, sym_line_comment, - [151861] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(897), 1, - anon_sym_RBRACE, - STATE(4720), 1, - sym_line_comment, - [151874] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [153993] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7936), 1, anon_sym_RBRACE, - STATE(4721), 1, + STATE(4728), 2, sym_line_comment, - [151887] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154007] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7938), 1, - anon_sym_PIPE, - STATE(4722), 1, + anon_sym_RBRACE, + STATE(4729), 2, sym_line_comment, - [151900] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [154021] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(949), 1, + anon_sym_RBRACE, + STATE(4730), 2, + sym_line_comment, sym_block_comment, + [154035] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(4723), 1, + STATE(4731), 2, sym_line_comment, - [151913] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(925), 1, - anon_sym_RBRACE, - STATE(4724), 1, - sym_line_comment, - [151926] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [154049] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7942), 1, anon_sym_RBRACE, - STATE(4725), 1, + STATE(4732), 2, sym_line_comment, - [151939] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154063] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7944), 1, anon_sym_RBRACE, - STATE(4726), 1, + STATE(4733), 2, sym_line_comment, - [151952] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [154077] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(909), 1, + anon_sym_RBRACE, + STATE(4734), 2, + sym_line_comment, sym_block_comment, + [154091] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7946), 1, anon_sym_LPAREN, - STATE(4727), 1, + STATE(4735), 2, sym_line_comment, - [151965] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7948), 1, + [154105] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7436), 1, anon_sym_RBRACE, - STATE(4728), 1, + STATE(4736), 2, sym_line_comment, - [151978] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [154119] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7948), 1, + sym_int_literal, + STATE(4737), 2, + sym_line_comment, sym_block_comment, + [154133] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7950), 1, anon_sym_RBRACE, - STATE(4729), 1, + STATE(4738), 2, sym_line_comment, - [151991] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154147] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7952), 1, - sym_identifier, - STATE(4730), 1, + anon_sym_LPAREN, + STATE(4739), 2, sym_line_comment, - [152004] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154161] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7954), 1, - anon_sym_LPAREN, - STATE(4731), 1, + anon_sym_RBRACE, + STATE(4740), 2, sym_line_comment, - [152017] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + sym_block_comment, + [154175] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1478), 1, + anon_sym_RPAREN, + STATE(4741), 2, + sym_line_comment, sym_block_comment, + [154189] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7956), 1, - sym_identifier, - STATE(4732), 1, + anon_sym_RBRACE, + STATE(4742), 2, sym_line_comment, - [152030] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154203] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7958), 1, - anon_sym_RBRACE, - STATE(4733), 1, + anon_sym_LPAREN, + STATE(4743), 2, sym_line_comment, - [152043] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1589), 1, - anon_sym_RPAREN, - STATE(4734), 1, - sym_line_comment, - [152056] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [154217] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7960), 1, - anon_sym_LPAREN, - STATE(4735), 1, + anon_sym_RBRACK, + STATE(4744), 2, sym_line_comment, - [152069] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(6994), 1, - sym_identifier, - STATE(4736), 1, - sym_line_comment, - [152082] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [154231] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7962), 1, - anon_sym_RBRACK, - STATE(4737), 1, + anon_sym_RBRACE, + STATE(4745), 2, sym_line_comment, - [152095] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154245] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7964), 1, - anon_sym_RBRACK, - STATE(4738), 1, + sym_identifier, + STATE(4746), 2, sym_line_comment, - [152108] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154259] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7966), 1, anon_sym_LPAREN, - STATE(4739), 1, + STATE(4747), 2, sym_line_comment, - [152121] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(1609), 1, - anon_sym_RPAREN, - STATE(4740), 1, - sym_line_comment, - [152134] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, + [154273] = 4, ACTIONS(5), 1, - sym_block_comment, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7968), 1, - anon_sym_RBRACE, - STATE(4741), 1, + sym_identifier, + STATE(4748), 2, sym_line_comment, - [152147] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154287] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7970), 1, - sym_identifier, - STATE(4742), 1, + anon_sym_RBRACE, + STATE(4749), 2, sym_line_comment, - [152160] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154301] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7972), 1, anon_sym_RBRACE, - STATE(4743), 1, + STATE(4750), 2, sym_line_comment, - [152173] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(907), 1, + [154315] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7266), 1, anon_sym_RBRACE, - STATE(4744), 1, + STATE(4751), 2, sym_line_comment, - [152186] = 4, - ACTIONS(3), 1, + sym_block_comment, + [154329] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, anon_sym_SLASH_SLASH, + ACTIONS(6748), 1, + sym_identifier, + STATE(4752), 2, + sym_line_comment, + sym_block_comment, + [154343] = 4, ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(905), 1, + anon_sym_RBRACE, + STATE(4753), 2, + sym_line_comment, sym_block_comment, + [154357] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7974), 1, anon_sym_RBRACE, - STATE(4745), 1, + STATE(4754), 2, sym_line_comment, - [152199] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154371] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7976), 1, - anon_sym_RBRACE, - STATE(4746), 1, + sym_identifier, + STATE(4755), 2, sym_line_comment, - [152212] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154385] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7978), 1, anon_sym_RBRACE, - STATE(4747), 1, + STATE(4756), 2, sym_line_comment, - [152225] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(7980), 1, + [154399] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(945), 1, anon_sym_RBRACE, - STATE(4748), 1, + STATE(4757), 2, sym_line_comment, - [152238] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, - ACTIONS(893), 1, + [154413] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, + ACTIONS(7980), 1, anon_sym_RBRACE, - STATE(4749), 1, + STATE(4758), 2, sym_line_comment, - [152251] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154427] = 4, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(13), 1, + anon_sym_SLASH_SLASH, ACTIONS(7982), 1, anon_sym_RBRACE, - STATE(4750), 1, + STATE(4759), 2, sym_line_comment, - [152264] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, sym_block_comment, + [154441] = 1, ACTIONS(7984), 1, - sym_identifier, - STATE(4751), 1, - sym_line_comment, - [152277] = 4, - ACTIONS(497), 1, - anon_sym_SLASH_SLASH, - ACTIONS(499), 1, - sym_block_comment, + ts_builtin_sym_end, + [154445] = 1, ACTIONS(7986), 1, - aux_sym_shebang_token1, - STATE(4752), 1, - sym_line_comment, - [152290] = 4, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - sym_block_comment, + ts_builtin_sym_end, + [154449] = 1, ACTIONS(7988), 1, - anon_sym_RBRACK, - STATE(4753), 1, - sym_line_comment, - [152303] = 1, - ACTIONS(7990), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1638)] = 0, - [SMALL_STATE(1639)] = 75, - [SMALL_STATE(1640)] = 150, - [SMALL_STATE(1641)] = 225, - [SMALL_STATE(1642)] = 300, - [SMALL_STATE(1643)] = 375, - [SMALL_STATE(1644)] = 450, - [SMALL_STATE(1645)] = 579, - [SMALL_STATE(1646)] = 654, - [SMALL_STATE(1647)] = 729, - [SMALL_STATE(1648)] = 804, - [SMALL_STATE(1649)] = 879, - [SMALL_STATE(1650)] = 995, - [SMALL_STATE(1651)] = 1085, - [SMALL_STATE(1652)] = 1177, - [SMALL_STATE(1653)] = 1267, - [SMALL_STATE(1654)] = 1361, - [SMALL_STATE(1655)] = 1453, - [SMALL_STATE(1656)] = 1553, - [SMALL_STATE(1657)] = 1655, - [SMALL_STATE(1658)] = 1749, - [SMALL_STATE(1659)] = 1843, - [SMALL_STATE(1660)] = 1933, - [SMALL_STATE(1661)] = 2049, - [SMALL_STATE(1662)] = 2175, - [SMALL_STATE(1663)] = 2248, - [SMALL_STATE(1664)] = 2325, - [SMALL_STATE(1665)] = 2444, - [SMALL_STATE(1666)] = 2517, - [SMALL_STATE(1667)] = 2594, - [SMALL_STATE(1668)] = 2666, - [SMALL_STATE(1669)] = 2740, - [SMALL_STATE(1670)] = 2812, - [SMALL_STATE(1671)] = 2886, - [SMALL_STATE(1672)] = 2976, - [SMALL_STATE(1673)] = 3048, - [SMALL_STATE(1674)] = 3122, - [SMALL_STATE(1675)] = 3196, - [SMALL_STATE(1676)] = 3268, - [SMALL_STATE(1677)] = 3356, - [SMALL_STATE(1678)] = 3428, - [SMALL_STATE(1679)] = 3542, - [SMALL_STATE(1680)] = 3656, - [SMALL_STATE(1681)] = 3732, - [SMALL_STATE(1682)] = 3804, - [SMALL_STATE(1683)] = 3934, - [SMALL_STATE(1684)] = 4022, - [SMALL_STATE(1685)] = 4110, - [SMALL_STATE(1686)] = 4182, - [SMALL_STATE(1687)] = 4296, - [SMALL_STATE(1688)] = 4368, - [SMALL_STATE(1689)] = 4440, - [SMALL_STATE(1690)] = 4570, - [SMALL_STATE(1691)] = 4642, - [SMALL_STATE(1692)] = 4716, - [SMALL_STATE(1693)] = 4788, - [SMALL_STATE(1694)] = 4860, - [SMALL_STATE(1695)] = 4932, - [SMALL_STATE(1696)] = 5004, - [SMALL_STATE(1697)] = 5096, - [SMALL_STATE(1698)] = 5168, - [SMALL_STATE(1699)] = 5240, - [SMALL_STATE(1700)] = 5338, - [SMALL_STATE(1701)] = 5410, - [SMALL_STATE(1702)] = 5502, - [SMALL_STATE(1703)] = 5574, - [SMALL_STATE(1704)] = 5674, - [SMALL_STATE(1705)] = 5746, - [SMALL_STATE(1706)] = 5820, - [SMALL_STATE(1707)] = 5912, - [SMALL_STATE(1708)] = 5984, - [SMALL_STATE(1709)] = 6056, - [SMALL_STATE(1710)] = 6128, - [SMALL_STATE(1711)] = 6202, - [SMALL_STATE(1712)] = 6273, - [SMALL_STATE(1713)] = 6344, - [SMALL_STATE(1714)] = 6415, - [SMALL_STATE(1715)] = 6488, - [SMALL_STATE(1716)] = 6559, - [SMALL_STATE(1717)] = 6630, - [SMALL_STATE(1718)] = 6705, - [SMALL_STATE(1719)] = 6776, - [SMALL_STATE(1720)] = 6847, - [SMALL_STATE(1721)] = 6918, - [SMALL_STATE(1722)] = 6989, - [SMALL_STATE(1723)] = 7060, - [SMALL_STATE(1724)] = 7131, - [SMALL_STATE(1725)] = 7204, - [SMALL_STATE(1726)] = 7275, - [SMALL_STATE(1727)] = 7346, - [SMALL_STATE(1728)] = 7417, - [SMALL_STATE(1729)] = 7488, - [SMALL_STATE(1730)] = 7559, - [SMALL_STATE(1731)] = 7630, - [SMALL_STATE(1732)] = 7701, - [SMALL_STATE(1733)] = 7772, - [SMALL_STATE(1734)] = 7843, - [SMALL_STATE(1735)] = 7914, - [SMALL_STATE(1736)] = 7987, - [SMALL_STATE(1737)] = 8058, - [SMALL_STATE(1738)] = 8131, - [SMALL_STATE(1739)] = 8202, - [SMALL_STATE(1740)] = 8273, - [SMALL_STATE(1741)] = 8344, - [SMALL_STATE(1742)] = 8415, - [SMALL_STATE(1743)] = 8488, - [SMALL_STATE(1744)] = 8559, - [SMALL_STATE(1745)] = 8630, - [SMALL_STATE(1746)] = 8701, - [SMALL_STATE(1747)] = 8772, - [SMALL_STATE(1748)] = 8843, - [SMALL_STATE(1749)] = 8916, - [SMALL_STATE(1750)] = 8987, - [SMALL_STATE(1751)] = 9058, - [SMALL_STATE(1752)] = 9129, - [SMALL_STATE(1753)] = 9202, - [SMALL_STATE(1754)] = 9277, - [SMALL_STATE(1755)] = 9348, - [SMALL_STATE(1756)] = 9419, - [SMALL_STATE(1757)] = 9490, - [SMALL_STATE(1758)] = 9561, - [SMALL_STATE(1759)] = 9632, - [SMALL_STATE(1760)] = 9703, - [SMALL_STATE(1761)] = 9774, - [SMALL_STATE(1762)] = 9845, - [SMALL_STATE(1763)] = 9916, - [SMALL_STATE(1764)] = 9987, - [SMALL_STATE(1765)] = 10058, - [SMALL_STATE(1766)] = 10129, - [SMALL_STATE(1767)] = 10200, - [SMALL_STATE(1768)] = 10271, - [SMALL_STATE(1769)] = 10344, - [SMALL_STATE(1770)] = 10415, - [SMALL_STATE(1771)] = 10486, - [SMALL_STATE(1772)] = 10557, - [SMALL_STATE(1773)] = 10628, - [SMALL_STATE(1774)] = 10699, - [SMALL_STATE(1775)] = 10770, - [SMALL_STATE(1776)] = 10841, - [SMALL_STATE(1777)] = 10912, - [SMALL_STATE(1778)] = 10983, - [SMALL_STATE(1779)] = 11054, - [SMALL_STATE(1780)] = 11125, - [SMALL_STATE(1781)] = 11196, - [SMALL_STATE(1782)] = 11267, - [SMALL_STATE(1783)] = 11338, - [SMALL_STATE(1784)] = 11409, - [SMALL_STATE(1785)] = 11480, - [SMALL_STATE(1786)] = 11551, - [SMALL_STATE(1787)] = 11622, - [SMALL_STATE(1788)] = 11693, - [SMALL_STATE(1789)] = 11764, - [SMALL_STATE(1790)] = 11835, - [SMALL_STATE(1791)] = 11906, - [SMALL_STATE(1792)] = 11977, - [SMALL_STATE(1793)] = 12050, - [SMALL_STATE(1794)] = 12121, - [SMALL_STATE(1795)] = 12192, - [SMALL_STATE(1796)] = 12264, - [SMALL_STATE(1797)] = 12354, - [SMALL_STATE(1798)] = 12472, - [SMALL_STATE(1799)] = 12562, - [SMALL_STATE(1800)] = 12654, - [SMALL_STATE(1801)] = 12776, - [SMALL_STATE(1802)] = 12848, - [SMALL_STATE(1803)] = 12942, - [SMALL_STATE(1804)] = 13044, - [SMALL_STATE(1805)] = 13168, - [SMALL_STATE(1806)] = 13272, - [SMALL_STATE(1807)] = 13366, - [SMALL_STATE(1808)] = 13460, - [SMALL_STATE(1809)] = 13582, - [SMALL_STATE(1810)] = 13700, - [SMALL_STATE(1811)] = 13790, - [SMALL_STATE(1812)] = 13862, - [SMALL_STATE(1813)] = 13980, - [SMALL_STATE(1814)] = 14098, - [SMALL_STATE(1815)] = 14188, - [SMALL_STATE(1816)] = 14278, - [SMALL_STATE(1817)] = 14350, - [SMALL_STATE(1818)] = 14444, - [SMALL_STATE(1819)] = 14538, - [SMALL_STATE(1820)] = 14642, - [SMALL_STATE(1821)] = 14744, - [SMALL_STATE(1822)] = 14838, - [SMALL_STATE(1823)] = 14928, - [SMALL_STATE(1824)] = 15020, - [SMALL_STATE(1825)] = 15092, - [SMALL_STATE(1826)] = 15164, - [SMALL_STATE(1827)] = 15233, - [SMALL_STATE(1828)] = 15302, - [SMALL_STATE(1829)] = 15371, - [SMALL_STATE(1830)] = 15488, - [SMALL_STATE(1831)] = 15559, - [SMALL_STATE(1832)] = 15628, - [SMALL_STATE(1833)] = 15697, - [SMALL_STATE(1834)] = 15766, - [SMALL_STATE(1835)] = 15835, - [SMALL_STATE(1836)] = 15904, - [SMALL_STATE(1837)] = 15973, - [SMALL_STATE(1838)] = 16042, - [SMALL_STATE(1839)] = 16111, - [SMALL_STATE(1840)] = 16184, - [SMALL_STATE(1841)] = 16253, - [SMALL_STATE(1842)] = 16326, - [SMALL_STATE(1843)] = 16395, - [SMALL_STATE(1844)] = 16464, - [SMALL_STATE(1845)] = 16533, - [SMALL_STATE(1846)] = 16626, - [SMALL_STATE(1847)] = 16695, - [SMALL_STATE(1848)] = 16764, - [SMALL_STATE(1849)] = 16857, - [SMALL_STATE(1850)] = 16960, - [SMALL_STATE(1851)] = 17061, - [SMALL_STATE(1852)] = 17130, - [SMALL_STATE(1853)] = 17223, - [SMALL_STATE(1854)] = 17314, - [SMALL_STATE(1855)] = 17383, - [SMALL_STATE(1856)] = 17452, - [SMALL_STATE(1857)] = 17521, - [SMALL_STATE(1858)] = 17590, - [SMALL_STATE(1859)] = 17659, - [SMALL_STATE(1860)] = 17728, - [SMALL_STATE(1861)] = 17797, - [SMALL_STATE(1862)] = 17866, - [SMALL_STATE(1863)] = 17935, - [SMALL_STATE(1864)] = 18004, - [SMALL_STATE(1865)] = 18073, - [SMALL_STATE(1866)] = 18190, - [SMALL_STATE(1867)] = 18267, - [SMALL_STATE(1868)] = 18384, - [SMALL_STATE(1869)] = 18453, - [SMALL_STATE(1870)] = 18522, - [SMALL_STATE(1871)] = 18591, - [SMALL_STATE(1872)] = 18660, - [SMALL_STATE(1873)] = 18729, - [SMALL_STATE(1874)] = 18798, - [SMALL_STATE(1875)] = 18867, - [SMALL_STATE(1876)] = 18936, - [SMALL_STATE(1877)] = 19005, - [SMALL_STATE(1878)] = 19074, - [SMALL_STATE(1879)] = 19143, - [SMALL_STATE(1880)] = 19212, - [SMALL_STATE(1881)] = 19281, - [SMALL_STATE(1882)] = 19350, - [SMALL_STATE(1883)] = 19419, - [SMALL_STATE(1884)] = 19488, - [SMALL_STATE(1885)] = 19557, - [SMALL_STATE(1886)] = 19626, - [SMALL_STATE(1887)] = 19697, - [SMALL_STATE(1888)] = 19766, - [SMALL_STATE(1889)] = 19835, - [SMALL_STATE(1890)] = 19904, - [SMALL_STATE(1891)] = 19973, - [SMALL_STATE(1892)] = 20042, - [SMALL_STATE(1893)] = 20111, - [SMALL_STATE(1894)] = 20182, - [SMALL_STATE(1895)] = 20251, - [SMALL_STATE(1896)] = 20320, - [SMALL_STATE(1897)] = 20391, - [SMALL_STATE(1898)] = 20462, - [SMALL_STATE(1899)] = 20531, - [SMALL_STATE(1900)] = 20600, - [SMALL_STATE(1901)] = 20669, - [SMALL_STATE(1902)] = 20738, - [SMALL_STATE(1903)] = 20807, - [SMALL_STATE(1904)] = 20876, - [SMALL_STATE(1905)] = 20945, - [SMALL_STATE(1906)] = 21014, - [SMALL_STATE(1907)] = 21083, - [SMALL_STATE(1908)] = 21152, - [SMALL_STATE(1909)] = 21221, - [SMALL_STATE(1910)] = 21290, - [SMALL_STATE(1911)] = 21407, - [SMALL_STATE(1912)] = 21476, - [SMALL_STATE(1913)] = 21545, - [SMALL_STATE(1914)] = 21614, - [SMALL_STATE(1915)] = 21683, - [SMALL_STATE(1916)] = 21752, - [SMALL_STATE(1917)] = 21821, - [SMALL_STATE(1918)] = 21890, - [SMALL_STATE(1919)] = 21959, - [SMALL_STATE(1920)] = 22028, - [SMALL_STATE(1921)] = 22097, - [SMALL_STATE(1922)] = 22166, - [SMALL_STATE(1923)] = 22235, - [SMALL_STATE(1924)] = 22304, - [SMALL_STATE(1925)] = 22373, - [SMALL_STATE(1926)] = 22442, - [SMALL_STATE(1927)] = 22511, - [SMALL_STATE(1928)] = 22580, - [SMALL_STATE(1929)] = 22649, - [SMALL_STATE(1930)] = 22718, - [SMALL_STATE(1931)] = 22787, - [SMALL_STATE(1932)] = 22856, - [SMALL_STATE(1933)] = 22925, - [SMALL_STATE(1934)] = 22994, - [SMALL_STATE(1935)] = 23063, - [SMALL_STATE(1936)] = 23132, - [SMALL_STATE(1937)] = 23201, - [SMALL_STATE(1938)] = 23270, - [SMALL_STATE(1939)] = 23339, - [SMALL_STATE(1940)] = 23408, - [SMALL_STATE(1941)] = 23477, - [SMALL_STATE(1942)] = 23546, - [SMALL_STATE(1943)] = 23615, - [SMALL_STATE(1944)] = 23688, - [SMALL_STATE(1945)] = 23757, - [SMALL_STATE(1946)] = 23826, - [SMALL_STATE(1947)] = 23899, - [SMALL_STATE(1948)] = 23968, - [SMALL_STATE(1949)] = 24037, - [SMALL_STATE(1950)] = 24107, - [SMALL_STATE(1951)] = 24175, - [SMALL_STATE(1952)] = 24251, - [SMALL_STATE(1953)] = 24321, - [SMALL_STATE(1954)] = 24437, - [SMALL_STATE(1955)] = 24553, - [SMALL_STATE(1956)] = 24619, - [SMALL_STATE(1957)] = 24689, - [SMALL_STATE(1958)] = 24759, - [SMALL_STATE(1959)] = 24829, - [SMALL_STATE(1960)] = 24945, - [SMALL_STATE(1961)] = 25015, - [SMALL_STATE(1962)] = 25131, - [SMALL_STATE(1963)] = 25198, - [SMALL_STATE(1964)] = 25265, - [SMALL_STATE(1965)] = 25336, - [SMALL_STATE(1966)] = 25407, - [SMALL_STATE(1967)] = 25474, - [SMALL_STATE(1968)] = 25541, - [SMALL_STATE(1969)] = 25608, - [SMALL_STATE(1970)] = 25675, - [SMALL_STATE(1971)] = 25742, - [SMALL_STATE(1972)] = 25811, - [SMALL_STATE(1973)] = 25880, - [SMALL_STATE(1974)] = 25949, - [SMALL_STATE(1975)] = 26016, - [SMALL_STATE(1976)] = 26083, - [SMALL_STATE(1977)] = 26150, - [SMALL_STATE(1978)] = 26217, - [SMALL_STATE(1979)] = 26286, - [SMALL_STATE(1980)] = 26353, - [SMALL_STATE(1981)] = 26420, - [SMALL_STATE(1982)] = 26487, - [SMALL_STATE(1983)] = 26554, - [SMALL_STATE(1984)] = 26621, - [SMALL_STATE(1985)] = 26688, - [SMALL_STATE(1986)] = 26755, - [SMALL_STATE(1987)] = 26822, - [SMALL_STATE(1988)] = 26889, - [SMALL_STATE(1989)] = 26956, - [SMALL_STATE(1990)] = 27023, - [SMALL_STATE(1991)] = 27090, - [SMALL_STATE(1992)] = 27157, - [SMALL_STATE(1993)] = 27224, - [SMALL_STATE(1994)] = 27291, - [SMALL_STATE(1995)] = 27358, - [SMALL_STATE(1996)] = 27427, - [SMALL_STATE(1997)] = 27494, - [SMALL_STATE(1998)] = 27561, - [SMALL_STATE(1999)] = 27628, - [SMALL_STATE(2000)] = 27695, - [SMALL_STATE(2001)] = 27762, - [SMALL_STATE(2002)] = 27829, - [SMALL_STATE(2003)] = 27896, - [SMALL_STATE(2004)] = 27963, - [SMALL_STATE(2005)] = 28030, - [SMALL_STATE(2006)] = 28097, - [SMALL_STATE(2007)] = 28164, - [SMALL_STATE(2008)] = 28231, - [SMALL_STATE(2009)] = 28298, - [SMALL_STATE(2010)] = 28365, - [SMALL_STATE(2011)] = 28432, - [SMALL_STATE(2012)] = 28499, - [SMALL_STATE(2013)] = 28566, - [SMALL_STATE(2014)] = 28633, - [SMALL_STATE(2015)] = 28700, - [SMALL_STATE(2016)] = 28767, - [SMALL_STATE(2017)] = 28834, - [SMALL_STATE(2018)] = 28901, - [SMALL_STATE(2019)] = 28968, - [SMALL_STATE(2020)] = 29039, - [SMALL_STATE(2021)] = 29106, - [SMALL_STATE(2022)] = 29173, - [SMALL_STATE(2023)] = 29240, - [SMALL_STATE(2024)] = 29307, - [SMALL_STATE(2025)] = 29374, - [SMALL_STATE(2026)] = 29441, - [SMALL_STATE(2027)] = 29508, - [SMALL_STATE(2028)] = 29575, - [SMALL_STATE(2029)] = 29642, - [SMALL_STATE(2030)] = 29709, - [SMALL_STATE(2031)] = 29778, - [SMALL_STATE(2032)] = 29847, - [SMALL_STATE(2033)] = 29914, - [SMALL_STATE(2034)] = 29981, - [SMALL_STATE(2035)] = 30050, - [SMALL_STATE(2036)] = 30119, - [SMALL_STATE(2037)] = 30186, - [SMALL_STATE(2038)] = 30253, - [SMALL_STATE(2039)] = 30320, - [SMALL_STATE(2040)] = 30387, - [SMALL_STATE(2041)] = 30454, - [SMALL_STATE(2042)] = 30521, - [SMALL_STATE(2043)] = 30588, - [SMALL_STATE(2044)] = 30655, - [SMALL_STATE(2045)] = 30722, - [SMALL_STATE(2046)] = 30789, - [SMALL_STATE(2047)] = 30856, - [SMALL_STATE(2048)] = 30923, - [SMALL_STATE(2049)] = 30990, - [SMALL_STATE(2050)] = 31057, - [SMALL_STATE(2051)] = 31124, - [SMALL_STATE(2052)] = 31191, - [SMALL_STATE(2053)] = 31258, - [SMALL_STATE(2054)] = 31325, - [SMALL_STATE(2055)] = 31392, - [SMALL_STATE(2056)] = 31459, - [SMALL_STATE(2057)] = 31526, - [SMALL_STATE(2058)] = 31593, - [SMALL_STATE(2059)] = 31660, - [SMALL_STATE(2060)] = 31727, - [SMALL_STATE(2061)] = 31794, - [SMALL_STATE(2062)] = 31861, - [SMALL_STATE(2063)] = 31928, - [SMALL_STATE(2064)] = 31995, - [SMALL_STATE(2065)] = 32062, - [SMALL_STATE(2066)] = 32129, - [SMALL_STATE(2067)] = 32196, - [SMALL_STATE(2068)] = 32263, - [SMALL_STATE(2069)] = 32330, - [SMALL_STATE(2070)] = 32397, - [SMALL_STATE(2071)] = 32464, - [SMALL_STATE(2072)] = 32533, - [SMALL_STATE(2073)] = 32600, - [SMALL_STATE(2074)] = 32667, - [SMALL_STATE(2075)] = 32734, - [SMALL_STATE(2076)] = 32801, - [SMALL_STATE(2077)] = 32868, - [SMALL_STATE(2078)] = 32935, - [SMALL_STATE(2079)] = 33002, - [SMALL_STATE(2080)] = 33069, - [SMALL_STATE(2081)] = 33136, - [SMALL_STATE(2082)] = 33203, - [SMALL_STATE(2083)] = 33270, - [SMALL_STATE(2084)] = 33337, - [SMALL_STATE(2085)] = 33404, - [SMALL_STATE(2086)] = 33471, - [SMALL_STATE(2087)] = 33538, - [SMALL_STATE(2088)] = 33605, - [SMALL_STATE(2089)] = 33672, - [SMALL_STATE(2090)] = 33743, - [SMALL_STATE(2091)] = 33810, - [SMALL_STATE(2092)] = 33877, - [SMALL_STATE(2093)] = 33944, - [SMALL_STATE(2094)] = 34011, - [SMALL_STATE(2095)] = 34078, - [SMALL_STATE(2096)] = 34145, - [SMALL_STATE(2097)] = 34212, - [SMALL_STATE(2098)] = 34279, - [SMALL_STATE(2099)] = 34346, - [SMALL_STATE(2100)] = 34413, - [SMALL_STATE(2101)] = 34480, - [SMALL_STATE(2102)] = 34547, - [SMALL_STATE(2103)] = 34614, - [SMALL_STATE(2104)] = 34681, - [SMALL_STATE(2105)] = 34748, - [SMALL_STATE(2106)] = 34815, - [SMALL_STATE(2107)] = 34882, - [SMALL_STATE(2108)] = 34949, - [SMALL_STATE(2109)] = 35016, - [SMALL_STATE(2110)] = 35083, - [SMALL_STATE(2111)] = 35150, - [SMALL_STATE(2112)] = 35217, - [SMALL_STATE(2113)] = 35284, - [SMALL_STATE(2114)] = 35351, - [SMALL_STATE(2115)] = 35418, - [SMALL_STATE(2116)] = 35485, - [SMALL_STATE(2117)] = 35552, - [SMALL_STATE(2118)] = 35619, - [SMALL_STATE(2119)] = 35686, - [SMALL_STATE(2120)] = 35753, - [SMALL_STATE(2121)] = 35820, - [SMALL_STATE(2122)] = 35887, - [SMALL_STATE(2123)] = 35954, - [SMALL_STATE(2124)] = 36021, - [SMALL_STATE(2125)] = 36088, - [SMALL_STATE(2126)] = 36155, - [SMALL_STATE(2127)] = 36222, - [SMALL_STATE(2128)] = 36289, - [SMALL_STATE(2129)] = 36358, - [SMALL_STATE(2130)] = 36425, - [SMALL_STATE(2131)] = 36496, - [SMALL_STATE(2132)] = 36567, - [SMALL_STATE(2133)] = 36636, - [SMALL_STATE(2134)] = 36703, - [SMALL_STATE(2135)] = 36770, - [SMALL_STATE(2136)] = 36837, - [SMALL_STATE(2137)] = 36904, - [SMALL_STATE(2138)] = 36971, - [SMALL_STATE(2139)] = 37038, - [SMALL_STATE(2140)] = 37105, - [SMALL_STATE(2141)] = 37172, - [SMALL_STATE(2142)] = 37239, - [SMALL_STATE(2143)] = 37306, - [SMALL_STATE(2144)] = 37373, - [SMALL_STATE(2145)] = 37440, - [SMALL_STATE(2146)] = 37507, - [SMALL_STATE(2147)] = 37574, - [SMALL_STATE(2148)] = 37641, - [SMALL_STATE(2149)] = 37708, - [SMALL_STATE(2150)] = 37775, - [SMALL_STATE(2151)] = 37842, - [SMALL_STATE(2152)] = 37909, - [SMALL_STATE(2153)] = 37976, - [SMALL_STATE(2154)] = 38043, - [SMALL_STATE(2155)] = 38110, - [SMALL_STATE(2156)] = 38177, - [SMALL_STATE(2157)] = 38244, - [SMALL_STATE(2158)] = 38311, - [SMALL_STATE(2159)] = 38378, - [SMALL_STATE(2160)] = 38445, - [SMALL_STATE(2161)] = 38512, - [SMALL_STATE(2162)] = 38579, - [SMALL_STATE(2163)] = 38646, - [SMALL_STATE(2164)] = 38713, - [SMALL_STATE(2165)] = 38780, - [SMALL_STATE(2166)] = 38847, - [SMALL_STATE(2167)] = 38914, - [SMALL_STATE(2168)] = 38981, - [SMALL_STATE(2169)] = 39048, - [SMALL_STATE(2170)] = 39115, - [SMALL_STATE(2171)] = 39182, - [SMALL_STATE(2172)] = 39248, - [SMALL_STATE(2173)] = 39314, - [SMALL_STATE(2174)] = 39380, - [SMALL_STATE(2175)] = 39446, - [SMALL_STATE(2176)] = 39512, - [SMALL_STATE(2177)] = 39593, - [SMALL_STATE(2178)] = 39674, - [SMALL_STATE(2179)] = 39743, - [SMALL_STATE(2180)] = 39824, - [SMALL_STATE(2181)] = 39892, - [SMALL_STATE(2182)] = 39962, - [SMALL_STATE(2183)] = 40030, - [SMALL_STATE(2184)] = 40093, - [SMALL_STATE(2185)] = 40162, - [SMALL_STATE(2186)] = 40273, - [SMALL_STATE(2187)] = 40336, - [SMALL_STATE(2188)] = 40399, - [SMALL_STATE(2189)] = 40464, - [SMALL_STATE(2190)] = 40527, - [SMALL_STATE(2191)] = 40592, - [SMALL_STATE(2192)] = 40655, - [SMALL_STATE(2193)] = 40718, - [SMALL_STATE(2194)] = 40785, - [SMALL_STATE(2195)] = 40848, - [SMALL_STATE(2196)] = 40913, - [SMALL_STATE(2197)] = 40976, - [SMALL_STATE(2198)] = 41039, - [SMALL_STATE(2199)] = 41102, - [SMALL_STATE(2200)] = 41165, - [SMALL_STATE(2201)] = 41228, - [SMALL_STATE(2202)] = 41293, - [SMALL_STATE(2203)] = 41397, - [SMALL_STATE(2204)] = 41459, - [SMALL_STATE(2205)] = 41521, - [SMALL_STATE(2206)] = 41583, - [SMALL_STATE(2207)] = 41645, - [SMALL_STATE(2208)] = 41707, - [SMALL_STATE(2209)] = 41817, - [SMALL_STATE(2210)] = 41879, - [SMALL_STATE(2211)] = 41941, - [SMALL_STATE(2212)] = 42005, - [SMALL_STATE(2213)] = 42067, - [SMALL_STATE(2214)] = 42129, - [SMALL_STATE(2215)] = 42191, - [SMALL_STATE(2216)] = 42253, - [SMALL_STATE(2217)] = 42315, - [SMALL_STATE(2218)] = 42377, - [SMALL_STATE(2219)] = 42439, - [SMALL_STATE(2220)] = 42503, - [SMALL_STATE(2221)] = 42565, - [SMALL_STATE(2222)] = 42627, - [SMALL_STATE(2223)] = 42689, - [SMALL_STATE(2224)] = 42751, - [SMALL_STATE(2225)] = 42813, - [SMALL_STATE(2226)] = 42875, - [SMALL_STATE(2227)] = 42937, - [SMALL_STATE(2228)] = 42999, - [SMALL_STATE(2229)] = 43061, - [SMALL_STATE(2230)] = 43123, - [SMALL_STATE(2231)] = 43185, - [SMALL_STATE(2232)] = 43247, - [SMALL_STATE(2233)] = 43309, - [SMALL_STATE(2234)] = 43371, - [SMALL_STATE(2235)] = 43433, - [SMALL_STATE(2236)] = 43495, - [SMALL_STATE(2237)] = 43557, - [SMALL_STATE(2238)] = 43619, - [SMALL_STATE(2239)] = 43681, - [SMALL_STATE(2240)] = 43743, - [SMALL_STATE(2241)] = 43805, - [SMALL_STATE(2242)] = 43867, - [SMALL_STATE(2243)] = 43929, - [SMALL_STATE(2244)] = 43991, - [SMALL_STATE(2245)] = 44053, - [SMALL_STATE(2246)] = 44115, - [SMALL_STATE(2247)] = 44177, - [SMALL_STATE(2248)] = 44239, - [SMALL_STATE(2249)] = 44301, - [SMALL_STATE(2250)] = 44363, - [SMALL_STATE(2251)] = 44425, - [SMALL_STATE(2252)] = 44487, - [SMALL_STATE(2253)] = 44549, - [SMALL_STATE(2254)] = 44611, - [SMALL_STATE(2255)] = 44673, - [SMALL_STATE(2256)] = 44735, - [SMALL_STATE(2257)] = 44797, - [SMALL_STATE(2258)] = 44859, - [SMALL_STATE(2259)] = 44921, - [SMALL_STATE(2260)] = 44985, - [SMALL_STATE(2261)] = 45047, - [SMALL_STATE(2262)] = 45109, - [SMALL_STATE(2263)] = 45171, - [SMALL_STATE(2264)] = 45233, - [SMALL_STATE(2265)] = 45295, - [SMALL_STATE(2266)] = 45357, - [SMALL_STATE(2267)] = 45419, - [SMALL_STATE(2268)] = 45499, - [SMALL_STATE(2269)] = 45561, - [SMALL_STATE(2270)] = 45623, - [SMALL_STATE(2271)] = 45685, - [SMALL_STATE(2272)] = 45747, - [SMALL_STATE(2273)] = 45809, - [SMALL_STATE(2274)] = 45871, - [SMALL_STATE(2275)] = 45935, - [SMALL_STATE(2276)] = 45997, - [SMALL_STATE(2277)] = 46059, - [SMALL_STATE(2278)] = 46121, - [SMALL_STATE(2279)] = 46185, - [SMALL_STATE(2280)] = 46247, - [SMALL_STATE(2281)] = 46309, - [SMALL_STATE(2282)] = 46371, - [SMALL_STATE(2283)] = 46433, - [SMALL_STATE(2284)] = 46495, - [SMALL_STATE(2285)] = 46557, - [SMALL_STATE(2286)] = 46619, - [SMALL_STATE(2287)] = 46681, - [SMALL_STATE(2288)] = 46743, - [SMALL_STATE(2289)] = 46805, - [SMALL_STATE(2290)] = 46867, - [SMALL_STATE(2291)] = 46929, - [SMALL_STATE(2292)] = 46991, - [SMALL_STATE(2293)] = 47053, - [SMALL_STATE(2294)] = 47115, - [SMALL_STATE(2295)] = 47177, - [SMALL_STATE(2296)] = 47259, - [SMALL_STATE(2297)] = 47363, - [SMALL_STATE(2298)] = 47425, - [SMALL_STATE(2299)] = 47487, - [SMALL_STATE(2300)] = 47549, - [SMALL_STATE(2301)] = 47611, - [SMALL_STATE(2302)] = 47673, - [SMALL_STATE(2303)] = 47735, - [SMALL_STATE(2304)] = 47797, - [SMALL_STATE(2305)] = 47859, - [SMALL_STATE(2306)] = 47921, - [SMALL_STATE(2307)] = 47985, - [SMALL_STATE(2308)] = 48047, - [SMALL_STATE(2309)] = 48109, - [SMALL_STATE(2310)] = 48171, - [SMALL_STATE(2311)] = 48233, - [SMALL_STATE(2312)] = 48315, - [SMALL_STATE(2313)] = 48377, - [SMALL_STATE(2314)] = 48459, - [SMALL_STATE(2315)] = 48549, - [SMALL_STATE(2316)] = 48637, - [SMALL_STATE(2317)] = 48699, - [SMALL_STATE(2318)] = 48760, - [SMALL_STATE(2319)] = 48841, - [SMALL_STATE(2320)] = 48904, - [SMALL_STATE(2321)] = 48985, - [SMALL_STATE(2322)] = 49068, - [SMALL_STATE(2323)] = 49171, - [SMALL_STATE(2324)] = 49274, - [SMALL_STATE(2325)] = 49377, - [SMALL_STATE(2326)] = 49466, - [SMALL_STATE(2327)] = 49549, - [SMALL_STATE(2328)] = 49632, - [SMALL_STATE(2329)] = 49719, - [SMALL_STATE(2330)] = 49800, - [SMALL_STATE(2331)] = 49903, - [SMALL_STATE(2332)] = 49966, - [SMALL_STATE(2333)] = 50027, - [SMALL_STATE(2334)] = 50106, - [SMALL_STATE(2335)] = 50167, - [SMALL_STATE(2336)] = 50228, - [SMALL_STATE(2337)] = 50292, - [SMALL_STATE(2338)] = 50400, - [SMALL_STATE(2339)] = 50464, - [SMALL_STATE(2340)] = 50525, - [SMALL_STATE(2341)] = 50600, - [SMALL_STATE(2342)] = 50661, - [SMALL_STATE(2343)] = 50722, - [SMALL_STATE(2344)] = 50827, - [SMALL_STATE(2345)] = 50888, - [SMALL_STATE(2346)] = 50949, - [SMALL_STATE(2347)] = 51024, - [SMALL_STATE(2348)] = 51099, - [SMALL_STATE(2349)] = 51157, - [SMALL_STATE(2350)] = 51215, - [SMALL_STATE(2351)] = 51273, - [SMALL_STATE(2352)] = 51373, - [SMALL_STATE(2353)] = 51489, - [SMALL_STATE(2354)] = 51547, - [SMALL_STATE(2355)] = 51663, - [SMALL_STATE(2356)] = 51779, - [SMALL_STATE(2357)] = 51895, - [SMALL_STATE(2358)] = 51953, - [SMALL_STATE(2359)] = 52011, - [SMALL_STATE(2360)] = 52069, - [SMALL_STATE(2361)] = 52169, - [SMALL_STATE(2362)] = 52227, - [SMALL_STATE(2363)] = 52285, - [SMALL_STATE(2364)] = 52343, - [SMALL_STATE(2365)] = 52401, - [SMALL_STATE(2366)] = 52501, - [SMALL_STATE(2367)] = 52559, - [SMALL_STATE(2368)] = 52617, - [SMALL_STATE(2369)] = 52733, - [SMALL_STATE(2370)] = 52791, - [SMALL_STATE(2371)] = 52849, - [SMALL_STATE(2372)] = 52907, - [SMALL_STATE(2373)] = 52965, - [SMALL_STATE(2374)] = 53081, - [SMALL_STATE(2375)] = 53139, - [SMALL_STATE(2376)] = 53197, - [SMALL_STATE(2377)] = 53313, - [SMALL_STATE(2378)] = 53371, - [SMALL_STATE(2379)] = 53429, - [SMALL_STATE(2380)] = 53487, - [SMALL_STATE(2381)] = 53545, - [SMALL_STATE(2382)] = 53605, - [SMALL_STATE(2383)] = 53663, - [SMALL_STATE(2384)] = 53721, - [SMALL_STATE(2385)] = 53779, - [SMALL_STATE(2386)] = 53837, - [SMALL_STATE(2387)] = 53895, - [SMALL_STATE(2388)] = 53953, - [SMALL_STATE(2389)] = 54011, - [SMALL_STATE(2390)] = 54069, - [SMALL_STATE(2391)] = 54127, - [SMALL_STATE(2392)] = 54185, - [SMALL_STATE(2393)] = 54245, - [SMALL_STATE(2394)] = 54303, - [SMALL_STATE(2395)] = 54361, - [SMALL_STATE(2396)] = 54419, - [SMALL_STATE(2397)] = 54477, - [SMALL_STATE(2398)] = 54579, - [SMALL_STATE(2399)] = 54637, - [SMALL_STATE(2400)] = 54695, - [SMALL_STATE(2401)] = 54757, - [SMALL_STATE(2402)] = 54815, - [SMALL_STATE(2403)] = 54891, - [SMALL_STATE(2404)] = 54949, - [SMALL_STATE(2405)] = 55027, - [SMALL_STATE(2406)] = 55111, - [SMALL_STATE(2407)] = 55197, - [SMALL_STATE(2408)] = 55255, - [SMALL_STATE(2409)] = 55333, - [SMALL_STATE(2410)] = 55411, - [SMALL_STATE(2411)] = 55469, - [SMALL_STATE(2412)] = 55527, - [SMALL_STATE(2413)] = 55643, - [SMALL_STATE(2414)] = 55705, - [SMALL_STATE(2415)] = 55763, - [SMALL_STATE(2416)] = 55821, - [SMALL_STATE(2417)] = 55879, - [SMALL_STATE(2418)] = 55937, - [SMALL_STATE(2419)] = 55995, - [SMALL_STATE(2420)] = 56053, - [SMALL_STATE(2421)] = 56111, - [SMALL_STATE(2422)] = 56169, - [SMALL_STATE(2423)] = 56227, - [SMALL_STATE(2424)] = 56343, - [SMALL_STATE(2425)] = 56401, - [SMALL_STATE(2426)] = 56459, - [SMALL_STATE(2427)] = 56517, - [SMALL_STATE(2428)] = 56575, - [SMALL_STATE(2429)] = 56633, - [SMALL_STATE(2430)] = 56691, - [SMALL_STATE(2431)] = 56749, - [SMALL_STATE(2432)] = 56807, - [SMALL_STATE(2433)] = 56865, - [SMALL_STATE(2434)] = 56923, - [SMALL_STATE(2435)] = 56981, - [SMALL_STATE(2436)] = 57097, - [SMALL_STATE(2437)] = 57155, - [SMALL_STATE(2438)] = 57213, - [SMALL_STATE(2439)] = 57271, - [SMALL_STATE(2440)] = 57329, - [SMALL_STATE(2441)] = 57429, - [SMALL_STATE(2442)] = 57487, - [SMALL_STATE(2443)] = 57587, - [SMALL_STATE(2444)] = 57645, - [SMALL_STATE(2445)] = 57703, - [SMALL_STATE(2446)] = 57761, - [SMALL_STATE(2447)] = 57819, - [SMALL_STATE(2448)] = 57877, - [SMALL_STATE(2449)] = 57935, - [SMALL_STATE(2450)] = 57993, - [SMALL_STATE(2451)] = 58109, - [SMALL_STATE(2452)] = 58167, - [SMALL_STATE(2453)] = 58283, - [SMALL_STATE(2454)] = 58341, - [SMALL_STATE(2455)] = 58399, - [SMALL_STATE(2456)] = 58457, - [SMALL_STATE(2457)] = 58515, - [SMALL_STATE(2458)] = 58573, - [SMALL_STATE(2459)] = 58631, - [SMALL_STATE(2460)] = 58689, - [SMALL_STATE(2461)] = 58747, - [SMALL_STATE(2462)] = 58809, - [SMALL_STATE(2463)] = 58871, - [SMALL_STATE(2464)] = 58971, - [SMALL_STATE(2465)] = 59087, - [SMALL_STATE(2466)] = 59145, - [SMALL_STATE(2467)] = 59203, - [SMALL_STATE(2468)] = 59261, - [SMALL_STATE(2469)] = 59321, - [SMALL_STATE(2470)] = 59379, - [SMALL_STATE(2471)] = 59437, - [SMALL_STATE(2472)] = 59513, - [SMALL_STATE(2473)] = 59591, - [SMALL_STATE(2474)] = 59675, - [SMALL_STATE(2475)] = 59761, - [SMALL_STATE(2476)] = 59819, - [SMALL_STATE(2477)] = 59877, - [SMALL_STATE(2478)] = 59935, - [SMALL_STATE(2479)] = 60013, - [SMALL_STATE(2480)] = 60091, - [SMALL_STATE(2481)] = 60149, - [SMALL_STATE(2482)] = 60228, - [SMALL_STATE(2483)] = 60287, - [SMALL_STATE(2484)] = 60374, - [SMALL_STATE(2485)] = 60461, - [SMALL_STATE(2486)] = 60558, - [SMALL_STATE(2487)] = 60653, - [SMALL_STATE(2488)] = 60740, - [SMALL_STATE(2489)] = 60823, - [SMALL_STATE(2490)] = 60882, - [SMALL_STATE(2491)] = 60981, - [SMALL_STATE(2492)] = 61080, - [SMALL_STATE(2493)] = 61179, - [SMALL_STATE(2494)] = 61238, - [SMALL_STATE(2495)] = 61335, - [SMALL_STATE(2496)] = 61394, - [SMALL_STATE(2497)] = 61487, - [SMALL_STATE(2498)] = 61580, - [SMALL_STATE(2499)] = 61673, - [SMALL_STATE(2500)] = 61782, - [SMALL_STATE(2501)] = 61891, - [SMALL_STATE(2502)] = 61950, - [SMALL_STATE(2503)] = 62009, - [SMALL_STATE(2504)] = 62096, - [SMALL_STATE(2505)] = 62183, - [SMALL_STATE(2506)] = 62278, - [SMALL_STATE(2507)] = 62371, - [SMALL_STATE(2508)] = 62458, - [SMALL_STATE(2509)] = 62541, - [SMALL_STATE(2510)] = 62620, - [SMALL_STATE(2511)] = 62679, - [SMALL_STATE(2512)] = 62738, - [SMALL_STATE(2513)] = 62799, - [SMALL_STATE(2514)] = 62878, - [SMALL_STATE(2515)] = 62937, - [SMALL_STATE(2516)] = 63036, - [SMALL_STATE(2517)] = 63147, - [SMALL_STATE(2518)] = 63258, - [SMALL_STATE(2519)] = 63314, - [SMALL_STATE(2520)] = 63370, - [SMALL_STATE(2521)] = 63426, - [SMALL_STATE(2522)] = 63486, - [SMALL_STATE(2523)] = 63542, - [SMALL_STATE(2524)] = 63598, - [SMALL_STATE(2525)] = 63654, - [SMALL_STATE(2526)] = 63710, - [SMALL_STATE(2527)] = 63766, - [SMALL_STATE(2528)] = 63822, - [SMALL_STATE(2529)] = 63878, - [SMALL_STATE(2530)] = 63936, - [SMALL_STATE(2531)] = 63992, - [SMALL_STATE(2532)] = 64048, - [SMALL_STATE(2533)] = 64104, - [SMALL_STATE(2534)] = 64160, - [SMALL_STATE(2535)] = 64216, - [SMALL_STATE(2536)] = 64272, - [SMALL_STATE(2537)] = 64328, - [SMALL_STATE(2538)] = 64388, - [SMALL_STATE(2539)] = 64444, - [SMALL_STATE(2540)] = 64500, - [SMALL_STATE(2541)] = 64556, - [SMALL_STATE(2542)] = 64612, - [SMALL_STATE(2543)] = 64668, - [SMALL_STATE(2544)] = 64724, - [SMALL_STATE(2545)] = 64834, - [SMALL_STATE(2546)] = 64890, - [SMALL_STATE(2547)] = 64946, - [SMALL_STATE(2548)] = 65002, - [SMALL_STATE(2549)] = 65058, - [SMALL_STATE(2550)] = 65142, - [SMALL_STATE(2551)] = 65198, - [SMALL_STATE(2552)] = 65254, - [SMALL_STATE(2553)] = 65310, - [SMALL_STATE(2554)] = 65394, - [SMALL_STATE(2555)] = 65450, - [SMALL_STATE(2556)] = 65506, - [SMALL_STATE(2557)] = 65598, - [SMALL_STATE(2558)] = 65688, - [SMALL_STATE(2559)] = 65744, - [SMALL_STATE(2560)] = 65800, - [SMALL_STATE(2561)] = 65856, - [SMALL_STATE(2562)] = 65912, - [SMALL_STATE(2563)] = 65996, - [SMALL_STATE(2564)] = 66052, - [SMALL_STATE(2565)] = 66108, - [SMALL_STATE(2566)] = 66164, - [SMALL_STATE(2567)] = 66220, - [SMALL_STATE(2568)] = 66276, - [SMALL_STATE(2569)] = 66332, - [SMALL_STATE(2570)] = 66388, - [SMALL_STATE(2571)] = 66444, - [SMALL_STATE(2572)] = 66500, - [SMALL_STATE(2573)] = 66580, - [SMALL_STATE(2574)] = 66636, - [SMALL_STATE(2575)] = 66692, - [SMALL_STATE(2576)] = 66748, - [SMALL_STATE(2577)] = 66804, - [SMALL_STATE(2578)] = 66910, - [SMALL_STATE(2579)] = 67016, - [SMALL_STATE(2580)] = 67072, - [SMALL_STATE(2581)] = 67128, - [SMALL_STATE(2582)] = 67184, - [SMALL_STATE(2583)] = 67240, - [SMALL_STATE(2584)] = 67296, - [SMALL_STATE(2585)] = 67352, - [SMALL_STATE(2586)] = 67408, - [SMALL_STATE(2587)] = 67466, - [SMALL_STATE(2588)] = 67524, - [SMALL_STATE(2589)] = 67580, - [SMALL_STATE(2590)] = 67636, - [SMALL_STATE(2591)] = 67692, - [SMALL_STATE(2592)] = 67748, - [SMALL_STATE(2593)] = 67808, - [SMALL_STATE(2594)] = 67864, - [SMALL_STATE(2595)] = 67920, - [SMALL_STATE(2596)] = 67976, - [SMALL_STATE(2597)] = 68032, - [SMALL_STATE(2598)] = 68092, - [SMALL_STATE(2599)] = 68178, - [SMALL_STATE(2600)] = 68234, - [SMALL_STATE(2601)] = 68290, - [SMALL_STATE(2602)] = 68376, - [SMALL_STATE(2603)] = 68432, - [SMALL_STATE(2604)] = 68488, - [SMALL_STATE(2605)] = 68594, - [SMALL_STATE(2606)] = 68650, - [SMALL_STATE(2607)] = 68706, - [SMALL_STATE(2608)] = 68762, - [SMALL_STATE(2609)] = 68818, - [SMALL_STATE(2610)] = 68874, - [SMALL_STATE(2611)] = 68930, - [SMALL_STATE(2612)] = 68986, - [SMALL_STATE(2613)] = 69082, - [SMALL_STATE(2614)] = 69138, - [SMALL_STATE(2615)] = 69194, - [SMALL_STATE(2616)] = 69250, - [SMALL_STATE(2617)] = 69306, - [SMALL_STATE(2618)] = 69412, - [SMALL_STATE(2619)] = 69468, - [SMALL_STATE(2620)] = 69574, - [SMALL_STATE(2621)] = 69630, - [SMALL_STATE(2622)] = 69686, - [SMALL_STATE(2623)] = 69742, - [SMALL_STATE(2624)] = 69798, - [SMALL_STATE(2625)] = 69854, - [SMALL_STATE(2626)] = 69966, - [SMALL_STATE(2627)] = 70022, - [SMALL_STATE(2628)] = 70078, - [SMALL_STATE(2629)] = 70134, - [SMALL_STATE(2630)] = 70228, - [SMALL_STATE(2631)] = 70284, - [SMALL_STATE(2632)] = 70394, - [SMALL_STATE(2633)] = 70504, - [SMALL_STATE(2634)] = 70590, - [SMALL_STATE(2635)] = 70700, - [SMALL_STATE(2636)] = 70782, - [SMALL_STATE(2637)] = 70840, - [SMALL_STATE(2638)] = 70898, - [SMALL_STATE(2639)] = 70954, - [SMALL_STATE(2640)] = 71034, - [SMALL_STATE(2641)] = 71118, - [SMALL_STATE(2642)] = 71208, - [SMALL_STATE(2643)] = 71300, - [SMALL_STATE(2644)] = 71384, - [SMALL_STATE(2645)] = 71468, - [SMALL_STATE(2646)] = 71524, - [SMALL_STATE(2647)] = 71582, - [SMALL_STATE(2648)] = 71640, - [SMALL_STATE(2649)] = 71696, - [SMALL_STATE(2650)] = 71752, - [SMALL_STATE(2651)] = 71808, - [SMALL_STATE(2652)] = 71863, - [SMALL_STATE(2653)] = 71918, - [SMALL_STATE(2654)] = 72025, - [SMALL_STATE(2655)] = 72134, - [SMALL_STATE(2656)] = 72243, - [SMALL_STATE(2657)] = 72352, - [SMALL_STATE(2658)] = 72457, - [SMALL_STATE(2659)] = 72564, - [SMALL_STATE(2660)] = 72621, - [SMALL_STATE(2661)] = 72728, - [SMALL_STATE(2662)] = 72789, - [SMALL_STATE(2663)] = 72898, - [SMALL_STATE(2664)] = 73003, - [SMALL_STATE(2665)] = 73062, - [SMALL_STATE(2666)] = 73171, - [SMALL_STATE(2667)] = 73280, - [SMALL_STATE(2668)] = 73335, - [SMALL_STATE(2669)] = 73442, - [SMALL_STATE(2670)] = 73551, - [SMALL_STATE(2671)] = 73606, - [SMALL_STATE(2672)] = 73715, - [SMALL_STATE(2673)] = 73820, - [SMALL_STATE(2674)] = 73927, - [SMALL_STATE(2675)] = 74034, - [SMALL_STATE(2676)] = 74141, - [SMALL_STATE(2677)] = 74250, - [SMALL_STATE(2678)] = 74359, - [SMALL_STATE(2679)] = 74466, - [SMALL_STATE(2680)] = 74573, - [SMALL_STATE(2681)] = 74678, - [SMALL_STATE(2682)] = 74787, - [SMALL_STATE(2683)] = 74896, - [SMALL_STATE(2684)] = 75003, - [SMALL_STATE(2685)] = 75110, - [SMALL_STATE(2686)] = 75217, - [SMALL_STATE(2687)] = 75324, - [SMALL_STATE(2688)] = 75433, - [SMALL_STATE(2689)] = 75494, - [SMALL_STATE(2690)] = 75599, - [SMALL_STATE(2691)] = 75706, - [SMALL_STATE(2692)] = 75763, - [SMALL_STATE(2693)] = 75820, - [SMALL_STATE(2694)] = 75924, - [SMALL_STATE(2695)] = 76028, - [SMALL_STATE(2696)] = 76082, - [SMALL_STATE(2697)] = 76186, - [SMALL_STATE(2698)] = 76290, - [SMALL_STATE(2699)] = 76344, - [SMALL_STATE(2700)] = 76448, - [SMALL_STATE(2701)] = 76552, - [SMALL_STATE(2702)] = 76656, - [SMALL_STATE(2703)] = 76756, - [SMALL_STATE(2704)] = 76860, - [SMALL_STATE(2705)] = 76964, - [SMALL_STATE(2706)] = 77020, - [SMALL_STATE(2707)] = 77074, - [SMALL_STATE(2708)] = 77128, - [SMALL_STATE(2709)] = 77228, - [SMALL_STATE(2710)] = 77282, - [SMALL_STATE(2711)] = 77386, - [SMALL_STATE(2712)] = 77490, - [SMALL_STATE(2713)] = 77544, - [SMALL_STATE(2714)] = 77598, - [SMALL_STATE(2715)] = 77702, - [SMALL_STATE(2716)] = 77806, - [SMALL_STATE(2717)] = 77860, - [SMALL_STATE(2718)] = 77914, - [SMALL_STATE(2719)] = 77968, - [SMALL_STATE(2720)] = 78022, - [SMALL_STATE(2721)] = 78076, - [SMALL_STATE(2722)] = 78176, - [SMALL_STATE(2723)] = 78280, - [SMALL_STATE(2724)] = 78384, - [SMALL_STATE(2725)] = 78438, - [SMALL_STATE(2726)] = 78492, - [SMALL_STATE(2727)] = 78592, - [SMALL_STATE(2728)] = 78692, - [SMALL_STATE(2729)] = 78796, - [SMALL_STATE(2730)] = 78850, - [SMALL_STATE(2731)] = 78904, - [SMALL_STATE(2732)] = 78958, - [SMALL_STATE(2733)] = 79012, - [SMALL_STATE(2734)] = 79066, - [SMALL_STATE(2735)] = 79120, - [SMALL_STATE(2736)] = 79224, - [SMALL_STATE(2737)] = 79278, - [SMALL_STATE(2738)] = 79332, - [SMALL_STATE(2739)] = 79432, - [SMALL_STATE(2740)] = 79536, - [SMALL_STATE(2741)] = 79594, - [SMALL_STATE(2742)] = 79652, - [SMALL_STATE(2743)] = 79706, - [SMALL_STATE(2744)] = 79760, - [SMALL_STATE(2745)] = 79814, - [SMALL_STATE(2746)] = 79868, - [SMALL_STATE(2747)] = 79972, - [SMALL_STATE(2748)] = 80076, - [SMALL_STATE(2749)] = 80180, - [SMALL_STATE(2750)] = 80234, - [SMALL_STATE(2751)] = 80338, - [SMALL_STATE(2752)] = 80442, - [SMALL_STATE(2753)] = 80542, - [SMALL_STATE(2754)] = 80598, - [SMALL_STATE(2755)] = 80652, - [SMALL_STATE(2756)] = 80752, - [SMALL_STATE(2757)] = 80856, - [SMALL_STATE(2758)] = 80910, - [SMALL_STATE(2759)] = 80964, - [SMALL_STATE(2760)] = 81018, - [SMALL_STATE(2761)] = 81072, - [SMALL_STATE(2762)] = 81126, - [SMALL_STATE(2763)] = 81226, - [SMALL_STATE(2764)] = 81326, - [SMALL_STATE(2765)] = 81380, - [SMALL_STATE(2766)] = 81484, - [SMALL_STATE(2767)] = 81538, - [SMALL_STATE(2768)] = 81592, - [SMALL_STATE(2769)] = 81646, - [SMALL_STATE(2770)] = 81700, - [SMALL_STATE(2771)] = 81754, - [SMALL_STATE(2772)] = 81858, - [SMALL_STATE(2773)] = 81912, - [SMALL_STATE(2774)] = 82016, - [SMALL_STATE(2775)] = 82070, - [SMALL_STATE(2776)] = 82174, - [SMALL_STATE(2777)] = 82278, - [SMALL_STATE(2778)] = 82378, - [SMALL_STATE(2779)] = 82434, - [SMALL_STATE(2780)] = 82488, - [SMALL_STATE(2781)] = 82542, - [SMALL_STATE(2782)] = 82596, - [SMALL_STATE(2783)] = 82700, - [SMALL_STATE(2784)] = 82778, - [SMALL_STATE(2785)] = 82832, - [SMALL_STATE(2786)] = 82886, - [SMALL_STATE(2787)] = 82940, - [SMALL_STATE(2788)] = 82994, - [SMALL_STATE(2789)] = 83048, - [SMALL_STATE(2790)] = 83152, - [SMALL_STATE(2791)] = 83252, - [SMALL_STATE(2792)] = 83306, - [SMALL_STATE(2793)] = 83388, - [SMALL_STATE(2794)] = 83488, - [SMALL_STATE(2795)] = 83542, - [SMALL_STATE(2796)] = 83646, - [SMALL_STATE(2797)] = 83702, - [SMALL_STATE(2798)] = 83756, - [SMALL_STATE(2799)] = 83810, - [SMALL_STATE(2800)] = 83914, - [SMALL_STATE(2801)] = 84002, - [SMALL_STATE(2802)] = 84056, - [SMALL_STATE(2803)] = 84110, - [SMALL_STATE(2804)] = 84200, - [SMALL_STATE(2805)] = 84254, - [SMALL_STATE(2806)] = 84336, - [SMALL_STATE(2807)] = 84392, - [SMALL_STATE(2808)] = 84474, - [SMALL_STATE(2809)] = 84578, - [SMALL_STATE(2810)] = 84634, - [SMALL_STATE(2811)] = 84738, - [SMALL_STATE(2812)] = 84842, - [SMALL_STATE(2813)] = 84946, - [SMALL_STATE(2814)] = 85000, - [SMALL_STATE(2815)] = 85054, - [SMALL_STATE(2816)] = 85108, - [SMALL_STATE(2817)] = 85212, - [SMALL_STATE(2818)] = 85266, - [SMALL_STATE(2819)] = 85320, - [SMALL_STATE(2820)] = 85420, - [SMALL_STATE(2821)] = 85524, - [SMALL_STATE(2822)] = 85628, - [SMALL_STATE(2823)] = 85682, - [SMALL_STATE(2824)] = 85740, - [SMALL_STATE(2825)] = 85796, - [SMALL_STATE(2826)] = 85850, - [SMALL_STATE(2827)] = 85954, - [SMALL_STATE(2828)] = 86008, - [SMALL_STATE(2829)] = 86062, - [SMALL_STATE(2830)] = 86116, - [SMALL_STATE(2831)] = 86170, - [SMALL_STATE(2832)] = 86274, - [SMALL_STATE(2833)] = 86328, - [SMALL_STATE(2834)] = 86432, - [SMALL_STATE(2835)] = 86486, - [SMALL_STATE(2836)] = 86540, - [SMALL_STATE(2837)] = 86594, - [SMALL_STATE(2838)] = 86648, - [SMALL_STATE(2839)] = 86702, - [SMALL_STATE(2840)] = 86756, - [SMALL_STATE(2841)] = 86860, - [SMALL_STATE(2842)] = 86964, - [SMALL_STATE(2843)] = 87020, - [SMALL_STATE(2844)] = 87076, - [SMALL_STATE(2845)] = 87176, - [SMALL_STATE(2846)] = 87230, - [SMALL_STATE(2847)] = 87330, - [SMALL_STATE(2848)] = 87384, - [SMALL_STATE(2849)] = 87438, - [SMALL_STATE(2850)] = 87492, - [SMALL_STATE(2851)] = 87596, - [SMALL_STATE(2852)] = 87650, - [SMALL_STATE(2853)] = 87706, - [SMALL_STATE(2854)] = 87760, - [SMALL_STATE(2855)] = 87814, - [SMALL_STATE(2856)] = 87868, - [SMALL_STATE(2857)] = 87950, - [SMALL_STATE(2858)] = 88032, - [SMALL_STATE(2859)] = 88086, - [SMALL_STATE(2860)] = 88144, - [SMALL_STATE(2861)] = 88200, - [SMALL_STATE(2862)] = 88254, - [SMALL_STATE(2863)] = 88308, - [SMALL_STATE(2864)] = 88412, - [SMALL_STATE(2865)] = 88502, - [SMALL_STATE(2866)] = 88590, - [SMALL_STATE(2867)] = 88694, - [SMALL_STATE(2868)] = 88776, - [SMALL_STATE(2869)] = 88880, - [SMALL_STATE(2870)] = 88958, - [SMALL_STATE(2871)] = 89012, - [SMALL_STATE(2872)] = 89066, - [SMALL_STATE(2873)] = 89120, - [SMALL_STATE(2874)] = 89174, - [SMALL_STATE(2875)] = 89228, - [SMALL_STATE(2876)] = 89282, - [SMALL_STATE(2877)] = 89336, - [SMALL_STATE(2878)] = 89392, - [SMALL_STATE(2879)] = 89448, - [SMALL_STATE(2880)] = 89552, - [SMALL_STATE(2881)] = 89606, - [SMALL_STATE(2882)] = 89660, - [SMALL_STATE(2883)] = 89761, - [SMALL_STATE(2884)] = 89862, - [SMALL_STATE(2885)] = 89921, - [SMALL_STATE(2886)] = 90022, - [SMALL_STATE(2887)] = 90123, - [SMALL_STATE(2888)] = 90224, - [SMALL_STATE(2889)] = 90325, - [SMALL_STATE(2890)] = 90426, - [SMALL_STATE(2891)] = 90527, - [SMALL_STATE(2892)] = 90580, - [SMALL_STATE(2893)] = 90633, - [SMALL_STATE(2894)] = 90734, - [SMALL_STATE(2895)] = 90835, - [SMALL_STATE(2896)] = 90936, - [SMALL_STATE(2897)] = 90991, - [SMALL_STATE(2898)] = 91046, - [SMALL_STATE(2899)] = 91147, - [SMALL_STATE(2900)] = 91242, - [SMALL_STATE(2901)] = 91297, - [SMALL_STATE(2902)] = 91356, - [SMALL_STATE(2903)] = 91457, - [SMALL_STATE(2904)] = 91558, - [SMALL_STATE(2905)] = 91651, - [SMALL_STATE(2906)] = 91752, - [SMALL_STATE(2907)] = 91853, - [SMALL_STATE(2908)] = 91954, - [SMALL_STATE(2909)] = 92049, - [SMALL_STATE(2910)] = 92142, - [SMALL_STATE(2911)] = 92194, - [SMALL_STATE(2912)] = 92246, - [SMALL_STATE(2913)] = 92334, - [SMALL_STATE(2914)] = 92386, - [SMALL_STATE(2915)] = 92438, - [SMALL_STATE(2916)] = 92492, - [SMALL_STATE(2917)] = 92546, - [SMALL_STATE(2918)] = 92600, - [SMALL_STATE(2919)] = 92652, - [SMALL_STATE(2920)] = 92706, - [SMALL_STATE(2921)] = 92758, - [SMALL_STATE(2922)] = 92810, - [SMALL_STATE(2923)] = 92862, - [SMALL_STATE(2924)] = 92914, - [SMALL_STATE(2925)] = 92968, - [SMALL_STATE(2926)] = 93020, - [SMALL_STATE(2927)] = 93072, - [SMALL_STATE(2928)] = 93160, - [SMALL_STATE(2929)] = 93212, - [SMALL_STATE(2930)] = 93266, - [SMALL_STATE(2931)] = 93320, - [SMALL_STATE(2932)] = 93408, - [SMALL_STATE(2933)] = 93460, - [SMALL_STATE(2934)] = 93512, - [SMALL_STATE(2935)] = 93564, - [SMALL_STATE(2936)] = 93618, - [SMALL_STATE(2937)] = 93706, - [SMALL_STATE(2938)] = 93758, - [SMALL_STATE(2939)] = 93810, - [SMALL_STATE(2940)] = 93862, - [SMALL_STATE(2941)] = 93916, - [SMALL_STATE(2942)] = 93968, - [SMALL_STATE(2943)] = 94020, - [SMALL_STATE(2944)] = 94108, - [SMALL_STATE(2945)] = 94160, - [SMALL_STATE(2946)] = 94212, - [SMALL_STATE(2947)] = 94266, - [SMALL_STATE(2948)] = 94320, - [SMALL_STATE(2949)] = 94374, - [SMALL_STATE(2950)] = 94426, - [SMALL_STATE(2951)] = 94478, - [SMALL_STATE(2952)] = 94572, - [SMALL_STATE(2953)] = 94624, - [SMALL_STATE(2954)] = 94676, - [SMALL_STATE(2955)] = 94764, - [SMALL_STATE(2956)] = 94818, - [SMALL_STATE(2957)] = 94870, - [SMALL_STATE(2958)] = 94922, - [SMALL_STATE(2959)] = 94976, - [SMALL_STATE(2960)] = 95028, - [SMALL_STATE(2961)] = 95081, - [SMALL_STATE(2962)] = 95136, - [SMALL_STATE(2963)] = 95189, - [SMALL_STATE(2964)] = 95242, - [SMALL_STATE(2965)] = 95295, - [SMALL_STATE(2966)] = 95350, - [SMALL_STATE(2967)] = 95403, - [SMALL_STATE(2968)] = 95456, - [SMALL_STATE(2969)] = 95511, - [SMALL_STATE(2970)] = 95566, - [SMALL_STATE(2971)] = 95619, - [SMALL_STATE(2972)] = 95672, - [SMALL_STATE(2973)] = 95725, - [SMALL_STATE(2974)] = 95778, - [SMALL_STATE(2975)] = 95833, - [SMALL_STATE(2976)] = 95888, - [SMALL_STATE(2977)] = 95941, - [SMALL_STATE(2978)] = 95994, - [SMALL_STATE(2979)] = 96047, - [SMALL_STATE(2980)] = 96102, - [SMALL_STATE(2981)] = 96155, - [SMALL_STATE(2982)] = 96210, - [SMALL_STATE(2983)] = 96263, - [SMALL_STATE(2984)] = 96316, - [SMALL_STATE(2985)] = 96371, - [SMALL_STATE(2986)] = 96426, - [SMALL_STATE(2987)] = 96479, - [SMALL_STATE(2988)] = 96534, - [SMALL_STATE(2989)] = 96587, - [SMALL_STATE(2990)] = 96642, - [SMALL_STATE(2991)] = 96695, - [SMALL_STATE(2992)] = 96750, - [SMALL_STATE(2993)] = 96805, - [SMALL_STATE(2994)] = 96858, - [SMALL_STATE(2995)] = 96913, - [SMALL_STATE(2996)] = 96966, - [SMALL_STATE(2997)] = 97019, - [SMALL_STATE(2998)] = 97072, - [SMALL_STATE(2999)] = 97127, - [SMALL_STATE(3000)] = 97180, - [SMALL_STATE(3001)] = 97235, - [SMALL_STATE(3002)] = 97290, - [SMALL_STATE(3003)] = 97345, - [SMALL_STATE(3004)] = 97398, - [SMALL_STATE(3005)] = 97451, - [SMALL_STATE(3006)] = 97506, - [SMALL_STATE(3007)] = 97559, - [SMALL_STATE(3008)] = 97612, - [SMALL_STATE(3009)] = 97665, - [SMALL_STATE(3010)] = 97720, - [SMALL_STATE(3011)] = 97775, - [SMALL_STATE(3012)] = 97828, - [SMALL_STATE(3013)] = 97881, - [SMALL_STATE(3014)] = 97934, - [SMALL_STATE(3015)] = 97989, - [SMALL_STATE(3016)] = 98042, - [SMALL_STATE(3017)] = 98095, - [SMALL_STATE(3018)] = 98148, - [SMALL_STATE(3019)] = 98201, - [SMALL_STATE(3020)] = 98254, - [SMALL_STATE(3021)] = 98307, - [SMALL_STATE(3022)] = 98362, - [SMALL_STATE(3023)] = 98415, - [SMALL_STATE(3024)] = 98468, - [SMALL_STATE(3025)] = 98521, - [SMALL_STATE(3026)] = 98576, - [SMALL_STATE(3027)] = 98631, - [SMALL_STATE(3028)] = 98684, - [SMALL_STATE(3029)] = 98737, - [SMALL_STATE(3030)] = 98790, - [SMALL_STATE(3031)] = 98845, - [SMALL_STATE(3032)] = 98898, - [SMALL_STATE(3033)] = 98951, - [SMALL_STATE(3034)] = 99006, - [SMALL_STATE(3035)] = 99059, - [SMALL_STATE(3036)] = 99147, - [SMALL_STATE(3037)] = 99235, - [SMALL_STATE(3038)] = 99320, - [SMALL_STATE(3039)] = 99405, - [SMALL_STATE(3040)] = 99490, - [SMALL_STATE(3041)] = 99549, - [SMALL_STATE(3042)] = 99634, - [SMALL_STATE(3043)] = 99719, - [SMALL_STATE(3044)] = 99804, - [SMALL_STATE(3045)] = 99889, - [SMALL_STATE(3046)] = 99974, - [SMALL_STATE(3047)] = 100059, - [SMALL_STATE(3048)] = 100144, - [SMALL_STATE(3049)] = 100229, - [SMALL_STATE(3050)] = 100314, - [SMALL_STATE(3051)] = 100399, - [SMALL_STATE(3052)] = 100484, - [SMALL_STATE(3053)] = 100569, - [SMALL_STATE(3054)] = 100654, - [SMALL_STATE(3055)] = 100739, - [SMALL_STATE(3056)] = 100824, - [SMALL_STATE(3057)] = 100909, - [SMALL_STATE(3058)] = 100994, - [SMALL_STATE(3059)] = 101079, - [SMALL_STATE(3060)] = 101164, - [SMALL_STATE(3061)] = 101249, - [SMALL_STATE(3062)] = 101334, - [SMALL_STATE(3063)] = 101419, - [SMALL_STATE(3064)] = 101504, - [SMALL_STATE(3065)] = 101589, - [SMALL_STATE(3066)] = 101674, - [SMALL_STATE(3067)] = 101759, - [SMALL_STATE(3068)] = 101844, - [SMALL_STATE(3069)] = 101929, - [SMALL_STATE(3070)] = 102014, - [SMALL_STATE(3071)] = 102099, - [SMALL_STATE(3072)] = 102184, - [SMALL_STATE(3073)] = 102269, - [SMALL_STATE(3074)] = 102354, - [SMALL_STATE(3075)] = 102439, - [SMALL_STATE(3076)] = 102521, - [SMALL_STATE(3077)] = 102603, - [SMALL_STATE(3078)] = 102685, - [SMALL_STATE(3079)] = 102767, - [SMALL_STATE(3080)] = 102849, - [SMALL_STATE(3081)] = 102931, - [SMALL_STATE(3082)] = 103013, - [SMALL_STATE(3083)] = 103095, - [SMALL_STATE(3084)] = 103177, - [SMALL_STATE(3085)] = 103259, - [SMALL_STATE(3086)] = 103341, - [SMALL_STATE(3087)] = 103423, - [SMALL_STATE(3088)] = 103505, - [SMALL_STATE(3089)] = 103587, - [SMALL_STATE(3090)] = 103669, - [SMALL_STATE(3091)] = 103751, - [SMALL_STATE(3092)] = 103833, - [SMALL_STATE(3093)] = 103915, - [SMALL_STATE(3094)] = 103997, - [SMALL_STATE(3095)] = 104079, - [SMALL_STATE(3096)] = 104161, - [SMALL_STATE(3097)] = 104243, - [SMALL_STATE(3098)] = 104325, - [SMALL_STATE(3099)] = 104407, - [SMALL_STATE(3100)] = 104489, - [SMALL_STATE(3101)] = 104571, - [SMALL_STATE(3102)] = 104653, - [SMALL_STATE(3103)] = 104735, - [SMALL_STATE(3104)] = 104817, - [SMALL_STATE(3105)] = 104899, - [SMALL_STATE(3106)] = 104981, - [SMALL_STATE(3107)] = 105063, - [SMALL_STATE(3108)] = 105145, - [SMALL_STATE(3109)] = 105227, - [SMALL_STATE(3110)] = 105309, - [SMALL_STATE(3111)] = 105391, - [SMALL_STATE(3112)] = 105473, - [SMALL_STATE(3113)] = 105555, - [SMALL_STATE(3114)] = 105637, - [SMALL_STATE(3115)] = 105719, - [SMALL_STATE(3116)] = 105801, - [SMALL_STATE(3117)] = 105883, - [SMALL_STATE(3118)] = 105965, - [SMALL_STATE(3119)] = 106047, - [SMALL_STATE(3120)] = 106129, - [SMALL_STATE(3121)] = 106211, - [SMALL_STATE(3122)] = 106293, - [SMALL_STATE(3123)] = 106375, - [SMALL_STATE(3124)] = 106457, - [SMALL_STATE(3125)] = 106539, - [SMALL_STATE(3126)] = 106621, - [SMALL_STATE(3127)] = 106703, - [SMALL_STATE(3128)] = 106785, - [SMALL_STATE(3129)] = 106867, - [SMALL_STATE(3130)] = 106949, - [SMALL_STATE(3131)] = 107031, - [SMALL_STATE(3132)] = 107113, - [SMALL_STATE(3133)] = 107195, - [SMALL_STATE(3134)] = 107277, - [SMALL_STATE(3135)] = 107359, - [SMALL_STATE(3136)] = 107441, - [SMALL_STATE(3137)] = 107523, - [SMALL_STATE(3138)] = 107605, - [SMALL_STATE(3139)] = 107687, - [SMALL_STATE(3140)] = 107769, - [SMALL_STATE(3141)] = 107851, - [SMALL_STATE(3142)] = 107933, - [SMALL_STATE(3143)] = 108015, - [SMALL_STATE(3144)] = 108097, - [SMALL_STATE(3145)] = 108179, - [SMALL_STATE(3146)] = 108261, - [SMALL_STATE(3147)] = 108343, - [SMALL_STATE(3148)] = 108425, - [SMALL_STATE(3149)] = 108507, - [SMALL_STATE(3150)] = 108589, - [SMALL_STATE(3151)] = 108671, - [SMALL_STATE(3152)] = 108753, - [SMALL_STATE(3153)] = 108835, - [SMALL_STATE(3154)] = 108917, - [SMALL_STATE(3155)] = 108999, - [SMALL_STATE(3156)] = 109081, - [SMALL_STATE(3157)] = 109163, - [SMALL_STATE(3158)] = 109245, - [SMALL_STATE(3159)] = 109327, - [SMALL_STATE(3160)] = 109409, - [SMALL_STATE(3161)] = 109491, - [SMALL_STATE(3162)] = 109573, - [SMALL_STATE(3163)] = 109655, - [SMALL_STATE(3164)] = 109737, - [SMALL_STATE(3165)] = 109819, - [SMALL_STATE(3166)] = 109901, - [SMALL_STATE(3167)] = 109983, - [SMALL_STATE(3168)] = 110065, - [SMALL_STATE(3169)] = 110147, - [SMALL_STATE(3170)] = 110229, - [SMALL_STATE(3171)] = 110311, - [SMALL_STATE(3172)] = 110393, - [SMALL_STATE(3173)] = 110475, - [SMALL_STATE(3174)] = 110557, - [SMALL_STATE(3175)] = 110639, - [SMALL_STATE(3176)] = 110721, - [SMALL_STATE(3177)] = 110803, - [SMALL_STATE(3178)] = 110885, - [SMALL_STATE(3179)] = 110967, - [SMALL_STATE(3180)] = 111049, - [SMALL_STATE(3181)] = 111131, - [SMALL_STATE(3182)] = 111213, - [SMALL_STATE(3183)] = 111295, - [SMALL_STATE(3184)] = 111377, - [SMALL_STATE(3185)] = 111459, - [SMALL_STATE(3186)] = 111541, - [SMALL_STATE(3187)] = 111623, - [SMALL_STATE(3188)] = 111705, - [SMALL_STATE(3189)] = 111787, - [SMALL_STATE(3190)] = 111869, - [SMALL_STATE(3191)] = 111951, - [SMALL_STATE(3192)] = 112033, - [SMALL_STATE(3193)] = 112115, - [SMALL_STATE(3194)] = 112197, - [SMALL_STATE(3195)] = 112279, - [SMALL_STATE(3196)] = 112361, - [SMALL_STATE(3197)] = 112443, - [SMALL_STATE(3198)] = 112525, - [SMALL_STATE(3199)] = 112607, - [SMALL_STATE(3200)] = 112689, - [SMALL_STATE(3201)] = 112771, - [SMALL_STATE(3202)] = 112853, - [SMALL_STATE(3203)] = 112935, - [SMALL_STATE(3204)] = 113017, - [SMALL_STATE(3205)] = 113099, - [SMALL_STATE(3206)] = 113181, - [SMALL_STATE(3207)] = 113263, - [SMALL_STATE(3208)] = 113345, - [SMALL_STATE(3209)] = 113427, - [SMALL_STATE(3210)] = 113509, - [SMALL_STATE(3211)] = 113591, - [SMALL_STATE(3212)] = 113673, - [SMALL_STATE(3213)] = 113755, - [SMALL_STATE(3214)] = 113837, - [SMALL_STATE(3215)] = 113919, - [SMALL_STATE(3216)] = 114001, - [SMALL_STATE(3217)] = 114083, - [SMALL_STATE(3218)] = 114165, - [SMALL_STATE(3219)] = 114247, - [SMALL_STATE(3220)] = 114329, - [SMALL_STATE(3221)] = 114411, - [SMALL_STATE(3222)] = 114493, - [SMALL_STATE(3223)] = 114575, - [SMALL_STATE(3224)] = 114657, - [SMALL_STATE(3225)] = 114739, - [SMALL_STATE(3226)] = 114821, - [SMALL_STATE(3227)] = 114903, - [SMALL_STATE(3228)] = 114985, - [SMALL_STATE(3229)] = 115067, - [SMALL_STATE(3230)] = 115149, - [SMALL_STATE(3231)] = 115231, - [SMALL_STATE(3232)] = 115313, - [SMALL_STATE(3233)] = 115395, - [SMALL_STATE(3234)] = 115477, - [SMALL_STATE(3235)] = 115559, - [SMALL_STATE(3236)] = 115641, - [SMALL_STATE(3237)] = 115723, - [SMALL_STATE(3238)] = 115805, - [SMALL_STATE(3239)] = 115887, - [SMALL_STATE(3240)] = 115969, - [SMALL_STATE(3241)] = 116051, - [SMALL_STATE(3242)] = 116133, - [SMALL_STATE(3243)] = 116215, - [SMALL_STATE(3244)] = 116297, - [SMALL_STATE(3245)] = 116379, - [SMALL_STATE(3246)] = 116461, - [SMALL_STATE(3247)] = 116543, - [SMALL_STATE(3248)] = 116625, - [SMALL_STATE(3249)] = 116707, - [SMALL_STATE(3250)] = 116789, - [SMALL_STATE(3251)] = 116871, - [SMALL_STATE(3252)] = 116953, - [SMALL_STATE(3253)] = 117035, - [SMALL_STATE(3254)] = 117117, - [SMALL_STATE(3255)] = 117199, - [SMALL_STATE(3256)] = 117281, - [SMALL_STATE(3257)] = 117363, - [SMALL_STATE(3258)] = 117445, - [SMALL_STATE(3259)] = 117527, - [SMALL_STATE(3260)] = 117609, - [SMALL_STATE(3261)] = 117691, - [SMALL_STATE(3262)] = 117773, - [SMALL_STATE(3263)] = 117855, - [SMALL_STATE(3264)] = 117937, - [SMALL_STATE(3265)] = 118019, - [SMALL_STATE(3266)] = 118101, - [SMALL_STATE(3267)] = 118183, - [SMALL_STATE(3268)] = 118265, - [SMALL_STATE(3269)] = 118347, - [SMALL_STATE(3270)] = 118429, - [SMALL_STATE(3271)] = 118511, - [SMALL_STATE(3272)] = 118593, - [SMALL_STATE(3273)] = 118675, - [SMALL_STATE(3274)] = 118757, - [SMALL_STATE(3275)] = 118839, - [SMALL_STATE(3276)] = 118921, - [SMALL_STATE(3277)] = 119003, - [SMALL_STATE(3278)] = 119085, - [SMALL_STATE(3279)] = 119167, - [SMALL_STATE(3280)] = 119249, - [SMALL_STATE(3281)] = 119331, - [SMALL_STATE(3282)] = 119413, - [SMALL_STATE(3283)] = 119495, - [SMALL_STATE(3284)] = 119577, - [SMALL_STATE(3285)] = 119659, - [SMALL_STATE(3286)] = 119741, - [SMALL_STATE(3287)] = 119823, - [SMALL_STATE(3288)] = 119905, - [SMALL_STATE(3289)] = 119987, - [SMALL_STATE(3290)] = 120069, - [SMALL_STATE(3291)] = 120151, - [SMALL_STATE(3292)] = 120233, - [SMALL_STATE(3293)] = 120315, - [SMALL_STATE(3294)] = 120397, - [SMALL_STATE(3295)] = 120479, - [SMALL_STATE(3296)] = 120561, - [SMALL_STATE(3297)] = 120643, - [SMALL_STATE(3298)] = 120725, - [SMALL_STATE(3299)] = 120807, - [SMALL_STATE(3300)] = 120889, - [SMALL_STATE(3301)] = 120971, - [SMALL_STATE(3302)] = 121053, - [SMALL_STATE(3303)] = 121135, - [SMALL_STATE(3304)] = 121217, - [SMALL_STATE(3305)] = 121299, - [SMALL_STATE(3306)] = 121381, - [SMALL_STATE(3307)] = 121463, - [SMALL_STATE(3308)] = 121545, - [SMALL_STATE(3309)] = 121627, - [SMALL_STATE(3310)] = 121709, - [SMALL_STATE(3311)] = 121791, - [SMALL_STATE(3312)] = 121873, - [SMALL_STATE(3313)] = 121955, - [SMALL_STATE(3314)] = 122037, - [SMALL_STATE(3315)] = 122119, - [SMALL_STATE(3316)] = 122201, - [SMALL_STATE(3317)] = 122283, - [SMALL_STATE(3318)] = 122365, - [SMALL_STATE(3319)] = 122447, - [SMALL_STATE(3320)] = 122529, - [SMALL_STATE(3321)] = 122611, - [SMALL_STATE(3322)] = 122693, - [SMALL_STATE(3323)] = 122775, - [SMALL_STATE(3324)] = 122857, - [SMALL_STATE(3325)] = 122939, - [SMALL_STATE(3326)] = 123021, - [SMALL_STATE(3327)] = 123103, - [SMALL_STATE(3328)] = 123185, - [SMALL_STATE(3329)] = 123267, - [SMALL_STATE(3330)] = 123349, - [SMALL_STATE(3331)] = 123431, - [SMALL_STATE(3332)] = 123513, - [SMALL_STATE(3333)] = 123595, - [SMALL_STATE(3334)] = 123677, - [SMALL_STATE(3335)] = 123759, - [SMALL_STATE(3336)] = 123841, - [SMALL_STATE(3337)] = 123923, - [SMALL_STATE(3338)] = 124005, - [SMALL_STATE(3339)] = 124087, - [SMALL_STATE(3340)] = 124169, - [SMALL_STATE(3341)] = 124251, - [SMALL_STATE(3342)] = 124333, - [SMALL_STATE(3343)] = 124406, - [SMALL_STATE(3344)] = 124473, - [SMALL_STATE(3345)] = 124540, - [SMALL_STATE(3346)] = 124607, - [SMALL_STATE(3347)] = 124674, - [SMALL_STATE(3348)] = 124741, - [SMALL_STATE(3349)] = 124808, - [SMALL_STATE(3350)] = 124875, - [SMALL_STATE(3351)] = 124942, - [SMALL_STATE(3352)] = 125009, - [SMALL_STATE(3353)] = 125076, - [SMALL_STATE(3354)] = 125143, - [SMALL_STATE(3355)] = 125216, - [SMALL_STATE(3356)] = 125283, - [SMALL_STATE(3357)] = 125350, - [SMALL_STATE(3358)] = 125417, - [SMALL_STATE(3359)] = 125485, - [SMALL_STATE(3360)] = 125521, - [SMALL_STATE(3361)] = 125557, - [SMALL_STATE(3362)] = 125593, - [SMALL_STATE(3363)] = 125629, - [SMALL_STATE(3364)] = 125665, - [SMALL_STATE(3365)] = 125701, - [SMALL_STATE(3366)] = 125733, - [SMALL_STATE(3367)] = 125765, - [SMALL_STATE(3368)] = 125797, - [SMALL_STATE(3369)] = 125829, - [SMALL_STATE(3370)] = 125875, - [SMALL_STATE(3371)] = 125925, - [SMALL_STATE(3372)] = 125971, - [SMALL_STATE(3373)] = 126003, - [SMALL_STATE(3374)] = 126049, - [SMALL_STATE(3375)] = 126082, - [SMALL_STATE(3376)] = 126111, - [SMALL_STATE(3377)] = 126140, - [SMALL_STATE(3378)] = 126173, - [SMALL_STATE(3379)] = 126202, - [SMALL_STATE(3380)] = 126237, - [SMALL_STATE(3381)] = 126269, - [SMALL_STATE(3382)] = 126299, - [SMALL_STATE(3383)] = 126331, - [SMALL_STATE(3384)] = 126363, - [SMALL_STATE(3385)] = 126393, - [SMALL_STATE(3386)] = 126425, - [SMALL_STATE(3387)] = 126457, - [SMALL_STATE(3388)] = 126489, - [SMALL_STATE(3389)] = 126521, - [SMALL_STATE(3390)] = 126550, - [SMALL_STATE(3391)] = 126597, - [SMALL_STATE(3392)] = 126642, - [SMALL_STATE(3393)] = 126689, - [SMALL_STATE(3394)] = 126718, - [SMALL_STATE(3395)] = 126749, - [SMALL_STATE(3396)] = 126783, - [SMALL_STATE(3397)] = 126811, - [SMALL_STATE(3398)] = 126845, - [SMALL_STATE(3399)] = 126873, - [SMALL_STATE(3400)] = 126919, - [SMALL_STATE(3401)] = 126965, - [SMALL_STATE(3402)] = 127011, - [SMALL_STATE(3403)] = 127057, - [SMALL_STATE(3404)] = 127103, - [SMALL_STATE(3405)] = 127137, - [SMALL_STATE(3406)] = 127183, - [SMALL_STATE(3407)] = 127217, - [SMALL_STATE(3408)] = 127263, - [SMALL_STATE(3409)] = 127291, - [SMALL_STATE(3410)] = 127337, - [SMALL_STATE(3411)] = 127383, - [SMALL_STATE(3412)] = 127417, - [SMALL_STATE(3413)] = 127451, - [SMALL_STATE(3414)] = 127497, - [SMALL_STATE(3415)] = 127543, - [SMALL_STATE(3416)] = 127589, - [SMALL_STATE(3417)] = 127623, - [SMALL_STATE(3418)] = 127669, - [SMALL_STATE(3419)] = 127715, - [SMALL_STATE(3420)] = 127745, - [SMALL_STATE(3421)] = 127779, - [SMALL_STATE(3422)] = 127807, - [SMALL_STATE(3423)] = 127853, - [SMALL_STATE(3424)] = 127881, - [SMALL_STATE(3425)] = 127911, - [SMALL_STATE(3426)] = 127957, - [SMALL_STATE(3427)] = 128003, - [SMALL_STATE(3428)] = 128049, - [SMALL_STATE(3429)] = 128095, - [SMALL_STATE(3430)] = 128141, - [SMALL_STATE(3431)] = 128169, - [SMALL_STATE(3432)] = 128213, - [SMALL_STATE(3433)] = 128259, - [SMALL_STATE(3434)] = 128305, - [SMALL_STATE(3435)] = 128351, - [SMALL_STATE(3436)] = 128397, - [SMALL_STATE(3437)] = 128425, - [SMALL_STATE(3438)] = 128471, - [SMALL_STATE(3439)] = 128517, - [SMALL_STATE(3440)] = 128563, - [SMALL_STATE(3441)] = 128609, - [SMALL_STATE(3442)] = 128634, - [SMALL_STATE(3443)] = 128665, - [SMALL_STATE(3444)] = 128690, - [SMALL_STATE(3445)] = 128719, - [SMALL_STATE(3446)] = 128744, - [SMALL_STATE(3447)] = 128774, - [SMALL_STATE(3448)] = 128800, - [SMALL_STATE(3449)] = 128826, - [SMALL_STATE(3450)] = 128853, - [SMALL_STATE(3451)] = 128876, - [SMALL_STATE(3452)] = 128899, - [SMALL_STATE(3453)] = 128922, - [SMALL_STATE(3454)] = 128951, - [SMALL_STATE(3455)] = 128974, - [SMALL_STATE(3456)] = 128997, - [SMALL_STATE(3457)] = 129020, - [SMALL_STATE(3458)] = 129043, - [SMALL_STATE(3459)] = 129070, - [SMALL_STATE(3460)] = 129093, - [SMALL_STATE(3461)] = 129116, - [SMALL_STATE(3462)] = 129139, - [SMALL_STATE(3463)] = 129162, - [SMALL_STATE(3464)] = 129185, - [SMALL_STATE(3465)] = 129208, - [SMALL_STATE(3466)] = 129231, - [SMALL_STATE(3467)] = 129254, - [SMALL_STATE(3468)] = 129277, - [SMALL_STATE(3469)] = 129300, - [SMALL_STATE(3470)] = 129323, - [SMALL_STATE(3471)] = 129346, - [SMALL_STATE(3472)] = 129369, - [SMALL_STATE(3473)] = 129392, - [SMALL_STATE(3474)] = 129415, - [SMALL_STATE(3475)] = 129441, - [SMALL_STATE(3476)] = 129469, - [SMALL_STATE(3477)] = 129507, - [SMALL_STATE(3478)] = 129540, - [SMALL_STATE(3479)] = 129567, - [SMALL_STATE(3480)] = 129600, - [SMALL_STATE(3481)] = 129633, - [SMALL_STATE(3482)] = 129654, - [SMALL_STATE(3483)] = 129689, - [SMALL_STATE(3484)] = 129722, - [SMALL_STATE(3485)] = 129755, - [SMALL_STATE(3486)] = 129788, - [SMALL_STATE(3487)] = 129811, - [SMALL_STATE(3488)] = 129844, - [SMALL_STATE(3489)] = 129877, - [SMALL_STATE(3490)] = 129904, - [SMALL_STATE(3491)] = 129937, - [SMALL_STATE(3492)] = 129970, - [SMALL_STATE(3493)] = 130003, - [SMALL_STATE(3494)] = 130036, - [SMALL_STATE(3495)] = 130061, - [SMALL_STATE(3496)] = 130089, - [SMALL_STATE(3497)] = 130109, - [SMALL_STATE(3498)] = 130133, - [SMALL_STATE(3499)] = 130153, - [SMALL_STATE(3500)] = 130175, - [SMALL_STATE(3501)] = 130195, - [SMALL_STATE(3502)] = 130215, - [SMALL_STATE(3503)] = 130235, - [SMALL_STATE(3504)] = 130257, - [SMALL_STATE(3505)] = 130281, - [SMALL_STATE(3506)] = 130301, - [SMALL_STATE(3507)] = 130321, - [SMALL_STATE(3508)] = 130343, - [SMALL_STATE(3509)] = 130365, - [SMALL_STATE(3510)] = 130385, - [SMALL_STATE(3511)] = 130405, - [SMALL_STATE(3512)] = 130439, - [SMALL_STATE(3513)] = 130458, - [SMALL_STATE(3514)] = 130485, - [SMALL_STATE(3515)] = 130512, - [SMALL_STATE(3516)] = 130543, - [SMALL_STATE(3517)] = 130570, - [SMALL_STATE(3518)] = 130597, - [SMALL_STATE(3519)] = 130624, - [SMALL_STATE(3520)] = 130651, - [SMALL_STATE(3521)] = 130678, - [SMALL_STATE(3522)] = 130705, - [SMALL_STATE(3523)] = 130732, - [SMALL_STATE(3524)] = 130759, - [SMALL_STATE(3525)] = 130786, - [SMALL_STATE(3526)] = 130813, - [SMALL_STATE(3527)] = 130840, - [SMALL_STATE(3528)] = 130867, - [SMALL_STATE(3529)] = 130894, - [SMALL_STATE(3530)] = 130923, - [SMALL_STATE(3531)] = 130950, - [SMALL_STATE(3532)] = 130973, - [SMALL_STATE(3533)] = 130992, - [SMALL_STATE(3534)] = 131019, - [SMALL_STATE(3535)] = 131046, - [SMALL_STATE(3536)] = 131073, - [SMALL_STATE(3537)] = 131104, - [SMALL_STATE(3538)] = 131131, - [SMALL_STATE(3539)] = 131160, - [SMALL_STATE(3540)] = 131179, - [SMALL_STATE(3541)] = 131206, - [SMALL_STATE(3542)] = 131233, - [SMALL_STATE(3543)] = 131260, - [SMALL_STATE(3544)] = 131287, - [SMALL_STATE(3545)] = 131314, - [SMALL_STATE(3546)] = 131336, - [SMALL_STATE(3547)] = 131362, - [SMALL_STATE(3548)] = 131390, - [SMALL_STATE(3549)] = 131418, - [SMALL_STATE(3550)] = 131446, - [SMALL_STATE(3551)] = 131474, - [SMALL_STATE(3552)] = 131502, - [SMALL_STATE(3553)] = 131530, - [SMALL_STATE(3554)] = 131558, - [SMALL_STATE(3555)] = 131586, - [SMALL_STATE(3556)] = 131614, - [SMALL_STATE(3557)] = 131642, - [SMALL_STATE(3558)] = 131670, - [SMALL_STATE(3559)] = 131692, - [SMALL_STATE(3560)] = 131720, - [SMALL_STATE(3561)] = 131748, - [SMALL_STATE(3562)] = 131776, - [SMALL_STATE(3563)] = 131804, - [SMALL_STATE(3564)] = 131832, - [SMALL_STATE(3565)] = 131860, - [SMALL_STATE(3566)] = 131888, - [SMALL_STATE(3567)] = 131916, - [SMALL_STATE(3568)] = 131944, - [SMALL_STATE(3569)] = 131970, - [SMALL_STATE(3570)] = 131996, - [SMALL_STATE(3571)] = 132024, - [SMALL_STATE(3572)] = 132052, - [SMALL_STATE(3573)] = 132080, - [SMALL_STATE(3574)] = 132108, - [SMALL_STATE(3575)] = 132136, - [SMALL_STATE(3576)] = 132164, - [SMALL_STATE(3577)] = 132192, - [SMALL_STATE(3578)] = 132220, - [SMALL_STATE(3579)] = 132248, - [SMALL_STATE(3580)] = 132276, - [SMALL_STATE(3581)] = 132304, - [SMALL_STATE(3582)] = 132324, - [SMALL_STATE(3583)] = 132352, - [SMALL_STATE(3584)] = 132380, - [SMALL_STATE(3585)] = 132408, - [SMALL_STATE(3586)] = 132436, - [SMALL_STATE(3587)] = 132464, - [SMALL_STATE(3588)] = 132492, - [SMALL_STATE(3589)] = 132520, - [SMALL_STATE(3590)] = 132542, - [SMALL_STATE(3591)] = 132570, - [SMALL_STATE(3592)] = 132598, - [SMALL_STATE(3593)] = 132626, - [SMALL_STATE(3594)] = 132654, - [SMALL_STATE(3595)] = 132682, - [SMALL_STATE(3596)] = 132710, - [SMALL_STATE(3597)] = 132738, - [SMALL_STATE(3598)] = 132766, - [SMALL_STATE(3599)] = 132794, - [SMALL_STATE(3600)] = 132816, - [SMALL_STATE(3601)] = 132844, - [SMALL_STATE(3602)] = 132872, - [SMALL_STATE(3603)] = 132900, - [SMALL_STATE(3604)] = 132928, - [SMALL_STATE(3605)] = 132950, - [SMALL_STATE(3606)] = 132978, - [SMALL_STATE(3607)] = 133006, - [SMALL_STATE(3608)] = 133034, - [SMALL_STATE(3609)] = 133062, - [SMALL_STATE(3610)] = 133084, - [SMALL_STATE(3611)] = 133112, - [SMALL_STATE(3612)] = 133140, - [SMALL_STATE(3613)] = 133168, - [SMALL_STATE(3614)] = 133196, - [SMALL_STATE(3615)] = 133224, - [SMALL_STATE(3616)] = 133252, - [SMALL_STATE(3617)] = 133280, - [SMALL_STATE(3618)] = 133308, - [SMALL_STATE(3619)] = 133336, - [SMALL_STATE(3620)] = 133364, - [SMALL_STATE(3621)] = 133392, - [SMALL_STATE(3622)] = 133420, - [SMALL_STATE(3623)] = 133448, - [SMALL_STATE(3624)] = 133476, - [SMALL_STATE(3625)] = 133504, - [SMALL_STATE(3626)] = 133532, - [SMALL_STATE(3627)] = 133560, - [SMALL_STATE(3628)] = 133588, - [SMALL_STATE(3629)] = 133616, - [SMALL_STATE(3630)] = 133644, - [SMALL_STATE(3631)] = 133672, - [SMALL_STATE(3632)] = 133700, - [SMALL_STATE(3633)] = 133728, - [SMALL_STATE(3634)] = 133756, - [SMALL_STATE(3635)] = 133784, - [SMALL_STATE(3636)] = 133812, - [SMALL_STATE(3637)] = 133840, - [SMALL_STATE(3638)] = 133868, - [SMALL_STATE(3639)] = 133888, - [SMALL_STATE(3640)] = 133916, - [SMALL_STATE(3641)] = 133944, - [SMALL_STATE(3642)] = 133966, - [SMALL_STATE(3643)] = 133994, - [SMALL_STATE(3644)] = 134016, - [SMALL_STATE(3645)] = 134044, - [SMALL_STATE(3646)] = 134072, - [SMALL_STATE(3647)] = 134100, - [SMALL_STATE(3648)] = 134120, - [SMALL_STATE(3649)] = 134148, - [SMALL_STATE(3650)] = 134176, - [SMALL_STATE(3651)] = 134198, - [SMALL_STATE(3652)] = 134226, - [SMALL_STATE(3653)] = 134254, - [SMALL_STATE(3654)] = 134282, - [SMALL_STATE(3655)] = 134310, - [SMALL_STATE(3656)] = 134338, - [SMALL_STATE(3657)] = 134366, - [SMALL_STATE(3658)] = 134394, - [SMALL_STATE(3659)] = 134415, - [SMALL_STATE(3660)] = 134438, - [SMALL_STATE(3661)] = 134457, - [SMALL_STATE(3662)] = 134478, - [SMALL_STATE(3663)] = 134501, - [SMALL_STATE(3664)] = 134524, - [SMALL_STATE(3665)] = 134541, - [SMALL_STATE(3666)] = 134564, - [SMALL_STATE(3667)] = 134589, - [SMALL_STATE(3668)] = 134606, - [SMALL_STATE(3669)] = 134625, - [SMALL_STATE(3670)] = 134648, - [SMALL_STATE(3671)] = 134667, - [SMALL_STATE(3672)] = 134690, - [SMALL_STATE(3673)] = 134711, - [SMALL_STATE(3674)] = 134730, - [SMALL_STATE(3675)] = 134753, - [SMALL_STATE(3676)] = 134776, - [SMALL_STATE(3677)] = 134795, - [SMALL_STATE(3678)] = 134820, - [SMALL_STATE(3679)] = 134841, - [SMALL_STATE(3680)] = 134866, - [SMALL_STATE(3681)] = 134885, - [SMALL_STATE(3682)] = 134906, - [SMALL_STATE(3683)] = 134923, - [SMALL_STATE(3684)] = 134948, - [SMALL_STATE(3685)] = 134965, - [SMALL_STATE(3686)] = 134990, - [SMALL_STATE(3687)] = 135015, - [SMALL_STATE(3688)] = 135032, - [SMALL_STATE(3689)] = 135053, - [SMALL_STATE(3690)] = 135070, - [SMALL_STATE(3691)] = 135090, - [SMALL_STATE(3692)] = 135110, - [SMALL_STATE(3693)] = 135126, - [SMALL_STATE(3694)] = 135146, - [SMALL_STATE(3695)] = 135162, - [SMALL_STATE(3696)] = 135178, - [SMALL_STATE(3697)] = 135198, - [SMALL_STATE(3698)] = 135220, - [SMALL_STATE(3699)] = 135240, - [SMALL_STATE(3700)] = 135260, - [SMALL_STATE(3701)] = 135280, - [SMALL_STATE(3702)] = 135300, - [SMALL_STATE(3703)] = 135320, - [SMALL_STATE(3704)] = 135336, - [SMALL_STATE(3705)] = 135356, - [SMALL_STATE(3706)] = 135376, - [SMALL_STATE(3707)] = 135396, - [SMALL_STATE(3708)] = 135416, - [SMALL_STATE(3709)] = 135434, - [SMALL_STATE(3710)] = 135454, - [SMALL_STATE(3711)] = 135474, - [SMALL_STATE(3712)] = 135494, - [SMALL_STATE(3713)] = 135510, - [SMALL_STATE(3714)] = 135532, - [SMALL_STATE(3715)] = 135548, - [SMALL_STATE(3716)] = 135564, - [SMALL_STATE(3717)] = 135580, - [SMALL_STATE(3718)] = 135602, - [SMALL_STATE(3719)] = 135622, - [SMALL_STATE(3720)] = 135642, - [SMALL_STATE(3721)] = 135658, - [SMALL_STATE(3722)] = 135678, - [SMALL_STATE(3723)] = 135694, - [SMALL_STATE(3724)] = 135714, - [SMALL_STATE(3725)] = 135730, - [SMALL_STATE(3726)] = 135750, - [SMALL_STATE(3727)] = 135770, - [SMALL_STATE(3728)] = 135790, - [SMALL_STATE(3729)] = 135810, - [SMALL_STATE(3730)] = 135832, - [SMALL_STATE(3731)] = 135854, - [SMALL_STATE(3732)] = 135874, - [SMALL_STATE(3733)] = 135894, - [SMALL_STATE(3734)] = 135914, - [SMALL_STATE(3735)] = 135934, - [SMALL_STATE(3736)] = 135950, - [SMALL_STATE(3737)] = 135970, - [SMALL_STATE(3738)] = 135990, - [SMALL_STATE(3739)] = 136012, - [SMALL_STATE(3740)] = 136032, - [SMALL_STATE(3741)] = 136048, - [SMALL_STATE(3742)] = 136068, - [SMALL_STATE(3743)] = 136088, - [SMALL_STATE(3744)] = 136106, - [SMALL_STATE(3745)] = 136126, - [SMALL_STATE(3746)] = 136146, - [SMALL_STATE(3747)] = 136166, - [SMALL_STATE(3748)] = 136188, - [SMALL_STATE(3749)] = 136206, - [SMALL_STATE(3750)] = 136226, - [SMALL_STATE(3751)] = 136246, - [SMALL_STATE(3752)] = 136266, - [SMALL_STATE(3753)] = 136282, - [SMALL_STATE(3754)] = 136298, - [SMALL_STATE(3755)] = 136318, - [SMALL_STATE(3756)] = 136334, - [SMALL_STATE(3757)] = 136354, - [SMALL_STATE(3758)] = 136374, - [SMALL_STATE(3759)] = 136394, - [SMALL_STATE(3760)] = 136416, - [SMALL_STATE(3761)] = 136436, - [SMALL_STATE(3762)] = 136458, - [SMALL_STATE(3763)] = 136480, - [SMALL_STATE(3764)] = 136500, - [SMALL_STATE(3765)] = 136522, - [SMALL_STATE(3766)] = 136542, - [SMALL_STATE(3767)] = 136562, - [SMALL_STATE(3768)] = 136584, - [SMALL_STATE(3769)] = 136606, - [SMALL_STATE(3770)] = 136626, - [SMALL_STATE(3771)] = 136648, - [SMALL_STATE(3772)] = 136670, - [SMALL_STATE(3773)] = 136690, - [SMALL_STATE(3774)] = 136710, - [SMALL_STATE(3775)] = 136732, - [SMALL_STATE(3776)] = 136752, - [SMALL_STATE(3777)] = 136772, - [SMALL_STATE(3778)] = 136792, - [SMALL_STATE(3779)] = 136812, - [SMALL_STATE(3780)] = 136828, - [SMALL_STATE(3781)] = 136848, - [SMALL_STATE(3782)] = 136864, - [SMALL_STATE(3783)] = 136884, - [SMALL_STATE(3784)] = 136904, - [SMALL_STATE(3785)] = 136924, - [SMALL_STATE(3786)] = 136940, - [SMALL_STATE(3787)] = 136956, - [SMALL_STATE(3788)] = 136974, - [SMALL_STATE(3789)] = 136994, - [SMALL_STATE(3790)] = 137010, - [SMALL_STATE(3791)] = 137032, - [SMALL_STATE(3792)] = 137052, - [SMALL_STATE(3793)] = 137070, - [SMALL_STATE(3794)] = 137090, - [SMALL_STATE(3795)] = 137110, - [SMALL_STATE(3796)] = 137128, - [SMALL_STATE(3797)] = 137148, - [SMALL_STATE(3798)] = 137168, - [SMALL_STATE(3799)] = 137186, - [SMALL_STATE(3800)] = 137202, - [SMALL_STATE(3801)] = 137222, - [SMALL_STATE(3802)] = 137240, - [SMALL_STATE(3803)] = 137260, - [SMALL_STATE(3804)] = 137280, - [SMALL_STATE(3805)] = 137302, - [SMALL_STATE(3806)] = 137318, - [SMALL_STATE(3807)] = 137334, - [SMALL_STATE(3808)] = 137354, - [SMALL_STATE(3809)] = 137376, - [SMALL_STATE(3810)] = 137396, - [SMALL_STATE(3811)] = 137416, - [SMALL_STATE(3812)] = 137438, - [SMALL_STATE(3813)] = 137460, - [SMALL_STATE(3814)] = 137478, - [SMALL_STATE(3815)] = 137498, - [SMALL_STATE(3816)] = 137516, - [SMALL_STATE(3817)] = 137536, - [SMALL_STATE(3818)] = 137556, - [SMALL_STATE(3819)] = 137576, - [SMALL_STATE(3820)] = 137596, - [SMALL_STATE(3821)] = 137618, - [SMALL_STATE(3822)] = 137640, - [SMALL_STATE(3823)] = 137660, - [SMALL_STATE(3824)] = 137680, - [SMALL_STATE(3825)] = 137696, - [SMALL_STATE(3826)] = 137718, - [SMALL_STATE(3827)] = 137738, - [SMALL_STATE(3828)] = 137758, - [SMALL_STATE(3829)] = 137778, - [SMALL_STATE(3830)] = 137798, - [SMALL_STATE(3831)] = 137818, - [SMALL_STATE(3832)] = 137838, - [SMALL_STATE(3833)] = 137858, - [SMALL_STATE(3834)] = 137878, - [SMALL_STATE(3835)] = 137896, - [SMALL_STATE(3836)] = 137918, - [SMALL_STATE(3837)] = 137938, - [SMALL_STATE(3838)] = 137958, - [SMALL_STATE(3839)] = 137980, - [SMALL_STATE(3840)] = 138000, - [SMALL_STATE(3841)] = 138020, - [SMALL_STATE(3842)] = 138040, - [SMALL_STATE(3843)] = 138062, - [SMALL_STATE(3844)] = 138080, - [SMALL_STATE(3845)] = 138100, - [SMALL_STATE(3846)] = 138122, - [SMALL_STATE(3847)] = 138140, - [SMALL_STATE(3848)] = 138156, - [SMALL_STATE(3849)] = 138176, - [SMALL_STATE(3850)] = 138196, - [SMALL_STATE(3851)] = 138216, - [SMALL_STATE(3852)] = 138238, - [SMALL_STATE(3853)] = 138260, - [SMALL_STATE(3854)] = 138282, - [SMALL_STATE(3855)] = 138302, - [SMALL_STATE(3856)] = 138322, - [SMALL_STATE(3857)] = 138344, - [SMALL_STATE(3858)] = 138364, - [SMALL_STATE(3859)] = 138384, - [SMALL_STATE(3860)] = 138404, - [SMALL_STATE(3861)] = 138424, - [SMALL_STATE(3862)] = 138446, - [SMALL_STATE(3863)] = 138468, - [SMALL_STATE(3864)] = 138487, - [SMALL_STATE(3865)] = 138504, - [SMALL_STATE(3866)] = 138523, - [SMALL_STATE(3867)] = 138542, - [SMALL_STATE(3868)] = 138561, - [SMALL_STATE(3869)] = 138580, - [SMALL_STATE(3870)] = 138599, - [SMALL_STATE(3871)] = 138618, - [SMALL_STATE(3872)] = 138637, - [SMALL_STATE(3873)] = 138656, - [SMALL_STATE(3874)] = 138675, - [SMALL_STATE(3875)] = 138690, - [SMALL_STATE(3876)] = 138709, - [SMALL_STATE(3877)] = 138728, - [SMALL_STATE(3878)] = 138747, - [SMALL_STATE(3879)] = 138766, - [SMALL_STATE(3880)] = 138785, - [SMALL_STATE(3881)] = 138804, - [SMALL_STATE(3882)] = 138823, - [SMALL_STATE(3883)] = 138842, - [SMALL_STATE(3884)] = 138861, - [SMALL_STATE(3885)] = 138880, - [SMALL_STATE(3886)] = 138899, - [SMALL_STATE(3887)] = 138918, - [SMALL_STATE(3888)] = 138933, - [SMALL_STATE(3889)] = 138952, - [SMALL_STATE(3890)] = 138967, - [SMALL_STATE(3891)] = 138984, - [SMALL_STATE(3892)] = 139003, - [SMALL_STATE(3893)] = 139022, - [SMALL_STATE(3894)] = 139039, - [SMALL_STATE(3895)] = 139054, - [SMALL_STATE(3896)] = 139073, - [SMALL_STATE(3897)] = 139092, - [SMALL_STATE(3898)] = 139111, - [SMALL_STATE(3899)] = 139126, - [SMALL_STATE(3900)] = 139145, - [SMALL_STATE(3901)] = 139164, - [SMALL_STATE(3902)] = 139183, - [SMALL_STATE(3903)] = 139202, - [SMALL_STATE(3904)] = 139221, - [SMALL_STATE(3905)] = 139240, - [SMALL_STATE(3906)] = 139259, - [SMALL_STATE(3907)] = 139278, - [SMALL_STATE(3908)] = 139297, - [SMALL_STATE(3909)] = 139316, - [SMALL_STATE(3910)] = 139335, - [SMALL_STATE(3911)] = 139354, - [SMALL_STATE(3912)] = 139371, - [SMALL_STATE(3913)] = 139390, - [SMALL_STATE(3914)] = 139409, - [SMALL_STATE(3915)] = 139428, - [SMALL_STATE(3916)] = 139447, - [SMALL_STATE(3917)] = 139466, - [SMALL_STATE(3918)] = 139485, - [SMALL_STATE(3919)] = 139504, - [SMALL_STATE(3920)] = 139523, - [SMALL_STATE(3921)] = 139542, - [SMALL_STATE(3922)] = 139561, - [SMALL_STATE(3923)] = 139580, - [SMALL_STATE(3924)] = 139599, - [SMALL_STATE(3925)] = 139618, - [SMALL_STATE(3926)] = 139637, - [SMALL_STATE(3927)] = 139656, - [SMALL_STATE(3928)] = 139675, - [SMALL_STATE(3929)] = 139694, - [SMALL_STATE(3930)] = 139713, - [SMALL_STATE(3931)] = 139732, - [SMALL_STATE(3932)] = 139751, - [SMALL_STATE(3933)] = 139770, - [SMALL_STATE(3934)] = 139789, - [SMALL_STATE(3935)] = 139808, - [SMALL_STATE(3936)] = 139827, - [SMALL_STATE(3937)] = 139846, - [SMALL_STATE(3938)] = 139865, - [SMALL_STATE(3939)] = 139884, - [SMALL_STATE(3940)] = 139903, - [SMALL_STATE(3941)] = 139922, - [SMALL_STATE(3942)] = 139941, - [SMALL_STATE(3943)] = 139960, - [SMALL_STATE(3944)] = 139979, - [SMALL_STATE(3945)] = 139998, - [SMALL_STATE(3946)] = 140017, - [SMALL_STATE(3947)] = 140034, - [SMALL_STATE(3948)] = 140053, - [SMALL_STATE(3949)] = 140072, - [SMALL_STATE(3950)] = 140091, - [SMALL_STATE(3951)] = 140108, - [SMALL_STATE(3952)] = 140127, - [SMALL_STATE(3953)] = 140144, - [SMALL_STATE(3954)] = 140163, - [SMALL_STATE(3955)] = 140182, - [SMALL_STATE(3956)] = 140201, - [SMALL_STATE(3957)] = 140216, - [SMALL_STATE(3958)] = 140235, - [SMALL_STATE(3959)] = 140252, - [SMALL_STATE(3960)] = 140271, - [SMALL_STATE(3961)] = 140290, - [SMALL_STATE(3962)] = 140309, - [SMALL_STATE(3963)] = 140328, - [SMALL_STATE(3964)] = 140343, - [SMALL_STATE(3965)] = 140362, - [SMALL_STATE(3966)] = 140381, - [SMALL_STATE(3967)] = 140400, - [SMALL_STATE(3968)] = 140419, - [SMALL_STATE(3969)] = 140436, - [SMALL_STATE(3970)] = 140453, - [SMALL_STATE(3971)] = 140472, - [SMALL_STATE(3972)] = 140491, - [SMALL_STATE(3973)] = 140510, - [SMALL_STATE(3974)] = 140529, - [SMALL_STATE(3975)] = 140548, - [SMALL_STATE(3976)] = 140567, - [SMALL_STATE(3977)] = 140586, - [SMALL_STATE(3978)] = 140605, - [SMALL_STATE(3979)] = 140624, - [SMALL_STATE(3980)] = 140643, - [SMALL_STATE(3981)] = 140660, - [SMALL_STATE(3982)] = 140679, - [SMALL_STATE(3983)] = 140698, - [SMALL_STATE(3984)] = 140717, - [SMALL_STATE(3985)] = 140736, - [SMALL_STATE(3986)] = 140755, - [SMALL_STATE(3987)] = 140774, - [SMALL_STATE(3988)] = 140793, - [SMALL_STATE(3989)] = 140812, - [SMALL_STATE(3990)] = 140831, - [SMALL_STATE(3991)] = 140850, - [SMALL_STATE(3992)] = 140869, - [SMALL_STATE(3993)] = 140888, - [SMALL_STATE(3994)] = 140907, - [SMALL_STATE(3995)] = 140926, - [SMALL_STATE(3996)] = 140945, - [SMALL_STATE(3997)] = 140964, - [SMALL_STATE(3998)] = 140983, - [SMALL_STATE(3999)] = 141002, - [SMALL_STATE(4000)] = 141021, - [SMALL_STATE(4001)] = 141040, - [SMALL_STATE(4002)] = 141057, - [SMALL_STATE(4003)] = 141076, - [SMALL_STATE(4004)] = 141093, - [SMALL_STATE(4005)] = 141112, - [SMALL_STATE(4006)] = 141131, - [SMALL_STATE(4007)] = 141148, - [SMALL_STATE(4008)] = 141165, - [SMALL_STATE(4009)] = 141184, - [SMALL_STATE(4010)] = 141203, - [SMALL_STATE(4011)] = 141222, - [SMALL_STATE(4012)] = 141241, - [SMALL_STATE(4013)] = 141260, - [SMALL_STATE(4014)] = 141277, - [SMALL_STATE(4015)] = 141296, - [SMALL_STATE(4016)] = 141315, - [SMALL_STATE(4017)] = 141334, - [SMALL_STATE(4018)] = 141353, - [SMALL_STATE(4019)] = 141372, - [SMALL_STATE(4020)] = 141391, - [SMALL_STATE(4021)] = 141410, - [SMALL_STATE(4022)] = 141429, - [SMALL_STATE(4023)] = 141448, - [SMALL_STATE(4024)] = 141467, - [SMALL_STATE(4025)] = 141486, - [SMALL_STATE(4026)] = 141505, - [SMALL_STATE(4027)] = 141524, - [SMALL_STATE(4028)] = 141543, - [SMALL_STATE(4029)] = 141562, - [SMALL_STATE(4030)] = 141581, - [SMALL_STATE(4031)] = 141600, - [SMALL_STATE(4032)] = 141619, - [SMALL_STATE(4033)] = 141638, - [SMALL_STATE(4034)] = 141657, - [SMALL_STATE(4035)] = 141676, - [SMALL_STATE(4036)] = 141693, - [SMALL_STATE(4037)] = 141712, - [SMALL_STATE(4038)] = 141731, - [SMALL_STATE(4039)] = 141750, - [SMALL_STATE(4040)] = 141769, - [SMALL_STATE(4041)] = 141788, - [SMALL_STATE(4042)] = 141805, - [SMALL_STATE(4043)] = 141824, - [SMALL_STATE(4044)] = 141843, - [SMALL_STATE(4045)] = 141862, - [SMALL_STATE(4046)] = 141881, - [SMALL_STATE(4047)] = 141896, - [SMALL_STATE(4048)] = 141911, - [SMALL_STATE(4049)] = 141930, - [SMALL_STATE(4050)] = 141949, - [SMALL_STATE(4051)] = 141964, - [SMALL_STATE(4052)] = 141983, - [SMALL_STATE(4053)] = 142002, - [SMALL_STATE(4054)] = 142021, - [SMALL_STATE(4055)] = 142040, - [SMALL_STATE(4056)] = 142059, - [SMALL_STATE(4057)] = 142078, - [SMALL_STATE(4058)] = 142097, - [SMALL_STATE(4059)] = 142116, - [SMALL_STATE(4060)] = 142135, - [SMALL_STATE(4061)] = 142154, - [SMALL_STATE(4062)] = 142173, - [SMALL_STATE(4063)] = 142192, - [SMALL_STATE(4064)] = 142211, - [SMALL_STATE(4065)] = 142230, - [SMALL_STATE(4066)] = 142249, - [SMALL_STATE(4067)] = 142268, - [SMALL_STATE(4068)] = 142287, - [SMALL_STATE(4069)] = 142306, - [SMALL_STATE(4070)] = 142325, - [SMALL_STATE(4071)] = 142342, - [SMALL_STATE(4072)] = 142361, - [SMALL_STATE(4073)] = 142380, - [SMALL_STATE(4074)] = 142399, - [SMALL_STATE(4075)] = 142414, - [SMALL_STATE(4076)] = 142433, - [SMALL_STATE(4077)] = 142452, - [SMALL_STATE(4078)] = 142471, - [SMALL_STATE(4079)] = 142486, - [SMALL_STATE(4080)] = 142503, - [SMALL_STATE(4081)] = 142522, - [SMALL_STATE(4082)] = 142541, - [SMALL_STATE(4083)] = 142560, - [SMALL_STATE(4084)] = 142579, - [SMALL_STATE(4085)] = 142598, - [SMALL_STATE(4086)] = 142617, - [SMALL_STATE(4087)] = 142636, - [SMALL_STATE(4088)] = 142655, - [SMALL_STATE(4089)] = 142670, - [SMALL_STATE(4090)] = 142689, - [SMALL_STATE(4091)] = 142704, - [SMALL_STATE(4092)] = 142723, - [SMALL_STATE(4093)] = 142742, - [SMALL_STATE(4094)] = 142761, - [SMALL_STATE(4095)] = 142780, - [SMALL_STATE(4096)] = 142799, - [SMALL_STATE(4097)] = 142818, - [SMALL_STATE(4098)] = 142833, - [SMALL_STATE(4099)] = 142852, - [SMALL_STATE(4100)] = 142871, - [SMALL_STATE(4101)] = 142890, - [SMALL_STATE(4102)] = 142909, - [SMALL_STATE(4103)] = 142928, - [SMALL_STATE(4104)] = 142947, - [SMALL_STATE(4105)] = 142966, - [SMALL_STATE(4106)] = 142985, - [SMALL_STATE(4107)] = 143001, - [SMALL_STATE(4108)] = 143017, - [SMALL_STATE(4109)] = 143033, - [SMALL_STATE(4110)] = 143049, - [SMALL_STATE(4111)] = 143065, - [SMALL_STATE(4112)] = 143081, - [SMALL_STATE(4113)] = 143097, - [SMALL_STATE(4114)] = 143113, - [SMALL_STATE(4115)] = 143129, - [SMALL_STATE(4116)] = 143145, - [SMALL_STATE(4117)] = 143161, - [SMALL_STATE(4118)] = 143177, - [SMALL_STATE(4119)] = 143191, - [SMALL_STATE(4120)] = 143207, - [SMALL_STATE(4121)] = 143223, - [SMALL_STATE(4122)] = 143239, - [SMALL_STATE(4123)] = 143255, - [SMALL_STATE(4124)] = 143271, - [SMALL_STATE(4125)] = 143287, - [SMALL_STATE(4126)] = 143303, - [SMALL_STATE(4127)] = 143319, - [SMALL_STATE(4128)] = 143335, - [SMALL_STATE(4129)] = 143351, - [SMALL_STATE(4130)] = 143367, - [SMALL_STATE(4131)] = 143383, - [SMALL_STATE(4132)] = 143399, - [SMALL_STATE(4133)] = 143415, - [SMALL_STATE(4134)] = 143431, - [SMALL_STATE(4135)] = 143447, - [SMALL_STATE(4136)] = 143463, - [SMALL_STATE(4137)] = 143479, - [SMALL_STATE(4138)] = 143495, - [SMALL_STATE(4139)] = 143511, - [SMALL_STATE(4140)] = 143527, - [SMALL_STATE(4141)] = 143541, - [SMALL_STATE(4142)] = 143557, - [SMALL_STATE(4143)] = 143571, - [SMALL_STATE(4144)] = 143587, - [SMALL_STATE(4145)] = 143601, - [SMALL_STATE(4146)] = 143617, - [SMALL_STATE(4147)] = 143631, - [SMALL_STATE(4148)] = 143645, - [SMALL_STATE(4149)] = 143661, - [SMALL_STATE(4150)] = 143677, - [SMALL_STATE(4151)] = 143693, - [SMALL_STATE(4152)] = 143709, - [SMALL_STATE(4153)] = 143725, - [SMALL_STATE(4154)] = 143741, - [SMALL_STATE(4155)] = 143757, - [SMALL_STATE(4156)] = 143773, - [SMALL_STATE(4157)] = 143789, - [SMALL_STATE(4158)] = 143805, - [SMALL_STATE(4159)] = 143821, - [SMALL_STATE(4160)] = 143837, - [SMALL_STATE(4161)] = 143851, - [SMALL_STATE(4162)] = 143867, - [SMALL_STATE(4163)] = 143881, - [SMALL_STATE(4164)] = 143897, - [SMALL_STATE(4165)] = 143913, - [SMALL_STATE(4166)] = 143929, - [SMALL_STATE(4167)] = 143943, - [SMALL_STATE(4168)] = 143959, - [SMALL_STATE(4169)] = 143975, - [SMALL_STATE(4170)] = 143991, - [SMALL_STATE(4171)] = 144007, - [SMALL_STATE(4172)] = 144023, - [SMALL_STATE(4173)] = 144039, - [SMALL_STATE(4174)] = 144053, - [SMALL_STATE(4175)] = 144069, - [SMALL_STATE(4176)] = 144085, - [SMALL_STATE(4177)] = 144101, - [SMALL_STATE(4178)] = 144115, - [SMALL_STATE(4179)] = 144131, - [SMALL_STATE(4180)] = 144147, - [SMALL_STATE(4181)] = 144163, - [SMALL_STATE(4182)] = 144179, - [SMALL_STATE(4183)] = 144195, - [SMALL_STATE(4184)] = 144211, - [SMALL_STATE(4185)] = 144227, - [SMALL_STATE(4186)] = 144241, - [SMALL_STATE(4187)] = 144257, - [SMALL_STATE(4188)] = 144273, - [SMALL_STATE(4189)] = 144289, - [SMALL_STATE(4190)] = 144303, - [SMALL_STATE(4191)] = 144317, - [SMALL_STATE(4192)] = 144333, - [SMALL_STATE(4193)] = 144349, - [SMALL_STATE(4194)] = 144363, - [SMALL_STATE(4195)] = 144379, - [SMALL_STATE(4196)] = 144395, - [SMALL_STATE(4197)] = 144411, - [SMALL_STATE(4198)] = 144427, - [SMALL_STATE(4199)] = 144443, - [SMALL_STATE(4200)] = 144459, - [SMALL_STATE(4201)] = 144475, - [SMALL_STATE(4202)] = 144489, - [SMALL_STATE(4203)] = 144505, - [SMALL_STATE(4204)] = 144521, - [SMALL_STATE(4205)] = 144537, - [SMALL_STATE(4206)] = 144553, - [SMALL_STATE(4207)] = 144569, - [SMALL_STATE(4208)] = 144585, - [SMALL_STATE(4209)] = 144601, - [SMALL_STATE(4210)] = 144617, - [SMALL_STATE(4211)] = 144633, - [SMALL_STATE(4212)] = 144649, - [SMALL_STATE(4213)] = 144665, - [SMALL_STATE(4214)] = 144679, - [SMALL_STATE(4215)] = 144693, - [SMALL_STATE(4216)] = 144709, - [SMALL_STATE(4217)] = 144725, - [SMALL_STATE(4218)] = 144739, - [SMALL_STATE(4219)] = 144755, - [SMALL_STATE(4220)] = 144771, - [SMALL_STATE(4221)] = 144787, - [SMALL_STATE(4222)] = 144803, - [SMALL_STATE(4223)] = 144819, - [SMALL_STATE(4224)] = 144835, - [SMALL_STATE(4225)] = 144851, - [SMALL_STATE(4226)] = 144867, - [SMALL_STATE(4227)] = 144883, - [SMALL_STATE(4228)] = 144899, - [SMALL_STATE(4229)] = 144915, - [SMALL_STATE(4230)] = 144931, - [SMALL_STATE(4231)] = 144947, - [SMALL_STATE(4232)] = 144963, - [SMALL_STATE(4233)] = 144979, - [SMALL_STATE(4234)] = 144995, - [SMALL_STATE(4235)] = 145011, - [SMALL_STATE(4236)] = 145027, - [SMALL_STATE(4237)] = 145043, - [SMALL_STATE(4238)] = 145059, - [SMALL_STATE(4239)] = 145075, - [SMALL_STATE(4240)] = 145091, - [SMALL_STATE(4241)] = 145107, - [SMALL_STATE(4242)] = 145123, - [SMALL_STATE(4243)] = 145139, - [SMALL_STATE(4244)] = 145155, - [SMALL_STATE(4245)] = 145171, - [SMALL_STATE(4246)] = 145187, - [SMALL_STATE(4247)] = 145203, - [SMALL_STATE(4248)] = 145219, - [SMALL_STATE(4249)] = 145235, - [SMALL_STATE(4250)] = 145251, - [SMALL_STATE(4251)] = 145267, - [SMALL_STATE(4252)] = 145283, - [SMALL_STATE(4253)] = 145299, - [SMALL_STATE(4254)] = 145315, - [SMALL_STATE(4255)] = 145331, - [SMALL_STATE(4256)] = 145347, - [SMALL_STATE(4257)] = 145363, - [SMALL_STATE(4258)] = 145379, - [SMALL_STATE(4259)] = 145395, - [SMALL_STATE(4260)] = 145411, - [SMALL_STATE(4261)] = 145427, - [SMALL_STATE(4262)] = 145443, - [SMALL_STATE(4263)] = 145459, - [SMALL_STATE(4264)] = 145473, - [SMALL_STATE(4265)] = 145489, - [SMALL_STATE(4266)] = 145505, - [SMALL_STATE(4267)] = 145521, - [SMALL_STATE(4268)] = 145537, - [SMALL_STATE(4269)] = 145553, - [SMALL_STATE(4270)] = 145569, - [SMALL_STATE(4271)] = 145585, - [SMALL_STATE(4272)] = 145601, - [SMALL_STATE(4273)] = 145617, - [SMALL_STATE(4274)] = 145631, - [SMALL_STATE(4275)] = 145647, - [SMALL_STATE(4276)] = 145661, - [SMALL_STATE(4277)] = 145677, - [SMALL_STATE(4278)] = 145693, - [SMALL_STATE(4279)] = 145709, - [SMALL_STATE(4280)] = 145725, - [SMALL_STATE(4281)] = 145741, - [SMALL_STATE(4282)] = 145757, - [SMALL_STATE(4283)] = 145773, - [SMALL_STATE(4284)] = 145789, - [SMALL_STATE(4285)] = 145805, - [SMALL_STATE(4286)] = 145821, - [SMALL_STATE(4287)] = 145837, - [SMALL_STATE(4288)] = 145853, - [SMALL_STATE(4289)] = 145869, - [SMALL_STATE(4290)] = 145885, - [SMALL_STATE(4291)] = 145901, - [SMALL_STATE(4292)] = 145915, - [SMALL_STATE(4293)] = 145931, - [SMALL_STATE(4294)] = 145947, - [SMALL_STATE(4295)] = 145963, - [SMALL_STATE(4296)] = 145979, - [SMALL_STATE(4297)] = 145995, - [SMALL_STATE(4298)] = 146011, - [SMALL_STATE(4299)] = 146027, - [SMALL_STATE(4300)] = 146043, - [SMALL_STATE(4301)] = 146059, - [SMALL_STATE(4302)] = 146075, - [SMALL_STATE(4303)] = 146091, - [SMALL_STATE(4304)] = 146107, - [SMALL_STATE(4305)] = 146123, - [SMALL_STATE(4306)] = 146139, - [SMALL_STATE(4307)] = 146155, - [SMALL_STATE(4308)] = 146171, - [SMALL_STATE(4309)] = 146187, - [SMALL_STATE(4310)] = 146201, - [SMALL_STATE(4311)] = 146215, - [SMALL_STATE(4312)] = 146229, - [SMALL_STATE(4313)] = 146245, - [SMALL_STATE(4314)] = 146261, - [SMALL_STATE(4315)] = 146277, - [SMALL_STATE(4316)] = 146293, - [SMALL_STATE(4317)] = 146309, - [SMALL_STATE(4318)] = 146325, - [SMALL_STATE(4319)] = 146341, - [SMALL_STATE(4320)] = 146357, - [SMALL_STATE(4321)] = 146373, - [SMALL_STATE(4322)] = 146389, - [SMALL_STATE(4323)] = 146405, - [SMALL_STATE(4324)] = 146421, - [SMALL_STATE(4325)] = 146437, - [SMALL_STATE(4326)] = 146453, - [SMALL_STATE(4327)] = 146469, - [SMALL_STATE(4328)] = 146485, - [SMALL_STATE(4329)] = 146501, - [SMALL_STATE(4330)] = 146517, - [SMALL_STATE(4331)] = 146533, - [SMALL_STATE(4332)] = 146549, - [SMALL_STATE(4333)] = 146565, - [SMALL_STATE(4334)] = 146579, - [SMALL_STATE(4335)] = 146595, - [SMALL_STATE(4336)] = 146611, - [SMALL_STATE(4337)] = 146627, - [SMALL_STATE(4338)] = 146643, - [SMALL_STATE(4339)] = 146659, - [SMALL_STATE(4340)] = 146675, - [SMALL_STATE(4341)] = 146691, - [SMALL_STATE(4342)] = 146707, - [SMALL_STATE(4343)] = 146723, - [SMALL_STATE(4344)] = 146739, - [SMALL_STATE(4345)] = 146755, - [SMALL_STATE(4346)] = 146771, - [SMALL_STATE(4347)] = 146787, - [SMALL_STATE(4348)] = 146803, - [SMALL_STATE(4349)] = 146819, - [SMALL_STATE(4350)] = 146835, - [SMALL_STATE(4351)] = 146851, - [SMALL_STATE(4352)] = 146867, - [SMALL_STATE(4353)] = 146883, - [SMALL_STATE(4354)] = 146899, - [SMALL_STATE(4355)] = 146915, - [SMALL_STATE(4356)] = 146931, - [SMALL_STATE(4357)] = 146947, - [SMALL_STATE(4358)] = 146963, - [SMALL_STATE(4359)] = 146979, - [SMALL_STATE(4360)] = 146995, - [SMALL_STATE(4361)] = 147011, - [SMALL_STATE(4362)] = 147027, - [SMALL_STATE(4363)] = 147043, - [SMALL_STATE(4364)] = 147059, - [SMALL_STATE(4365)] = 147075, - [SMALL_STATE(4366)] = 147091, - [SMALL_STATE(4367)] = 147107, - [SMALL_STATE(4368)] = 147121, - [SMALL_STATE(4369)] = 147137, - [SMALL_STATE(4370)] = 147153, - [SMALL_STATE(4371)] = 147167, - [SMALL_STATE(4372)] = 147183, - [SMALL_STATE(4373)] = 147199, - [SMALL_STATE(4374)] = 147215, - [SMALL_STATE(4375)] = 147231, - [SMALL_STATE(4376)] = 147247, - [SMALL_STATE(4377)] = 147263, - [SMALL_STATE(4378)] = 147279, - [SMALL_STATE(4379)] = 147295, - [SMALL_STATE(4380)] = 147311, - [SMALL_STATE(4381)] = 147327, - [SMALL_STATE(4382)] = 147343, - [SMALL_STATE(4383)] = 147359, - [SMALL_STATE(4384)] = 147375, - [SMALL_STATE(4385)] = 147391, - [SMALL_STATE(4386)] = 147407, - [SMALL_STATE(4387)] = 147423, - [SMALL_STATE(4388)] = 147439, - [SMALL_STATE(4389)] = 147455, - [SMALL_STATE(4390)] = 147471, - [SMALL_STATE(4391)] = 147487, - [SMALL_STATE(4392)] = 147503, - [SMALL_STATE(4393)] = 147517, - [SMALL_STATE(4394)] = 147533, - [SMALL_STATE(4395)] = 147549, - [SMALL_STATE(4396)] = 147565, - [SMALL_STATE(4397)] = 147581, - [SMALL_STATE(4398)] = 147595, - [SMALL_STATE(4399)] = 147611, - [SMALL_STATE(4400)] = 147625, - [SMALL_STATE(4401)] = 147641, - [SMALL_STATE(4402)] = 147655, - [SMALL_STATE(4403)] = 147671, - [SMALL_STATE(4404)] = 147687, - [SMALL_STATE(4405)] = 147703, - [SMALL_STATE(4406)] = 147719, - [SMALL_STATE(4407)] = 147735, - [SMALL_STATE(4408)] = 147751, - [SMALL_STATE(4409)] = 147767, - [SMALL_STATE(4410)] = 147783, - [SMALL_STATE(4411)] = 147799, - [SMALL_STATE(4412)] = 147815, - [SMALL_STATE(4413)] = 147831, - [SMALL_STATE(4414)] = 147847, - [SMALL_STATE(4415)] = 147863, - [SMALL_STATE(4416)] = 147879, - [SMALL_STATE(4417)] = 147895, - [SMALL_STATE(4418)] = 147911, - [SMALL_STATE(4419)] = 147927, - [SMALL_STATE(4420)] = 147943, - [SMALL_STATE(4421)] = 147959, - [SMALL_STATE(4422)] = 147975, - [SMALL_STATE(4423)] = 147991, - [SMALL_STATE(4424)] = 148007, - [SMALL_STATE(4425)] = 148023, - [SMALL_STATE(4426)] = 148039, - [SMALL_STATE(4427)] = 148052, - [SMALL_STATE(4428)] = 148065, - [SMALL_STATE(4429)] = 148078, - [SMALL_STATE(4430)] = 148091, - [SMALL_STATE(4431)] = 148104, - [SMALL_STATE(4432)] = 148117, - [SMALL_STATE(4433)] = 148130, - [SMALL_STATE(4434)] = 148143, - [SMALL_STATE(4435)] = 148156, - [SMALL_STATE(4436)] = 148169, - [SMALL_STATE(4437)] = 148182, - [SMALL_STATE(4438)] = 148195, - [SMALL_STATE(4439)] = 148208, - [SMALL_STATE(4440)] = 148221, - [SMALL_STATE(4441)] = 148234, - [SMALL_STATE(4442)] = 148247, - [SMALL_STATE(4443)] = 148260, - [SMALL_STATE(4444)] = 148273, - [SMALL_STATE(4445)] = 148286, - [SMALL_STATE(4446)] = 148299, - [SMALL_STATE(4447)] = 148312, - [SMALL_STATE(4448)] = 148325, - [SMALL_STATE(4449)] = 148338, - [SMALL_STATE(4450)] = 148351, - [SMALL_STATE(4451)] = 148364, - [SMALL_STATE(4452)] = 148377, - [SMALL_STATE(4453)] = 148390, - [SMALL_STATE(4454)] = 148403, - [SMALL_STATE(4455)] = 148416, - [SMALL_STATE(4456)] = 148429, - [SMALL_STATE(4457)] = 148442, - [SMALL_STATE(4458)] = 148455, - [SMALL_STATE(4459)] = 148468, - [SMALL_STATE(4460)] = 148481, - [SMALL_STATE(4461)] = 148494, - [SMALL_STATE(4462)] = 148507, - [SMALL_STATE(4463)] = 148520, - [SMALL_STATE(4464)] = 148533, - [SMALL_STATE(4465)] = 148546, - [SMALL_STATE(4466)] = 148559, - [SMALL_STATE(4467)] = 148572, - [SMALL_STATE(4468)] = 148585, - [SMALL_STATE(4469)] = 148598, - [SMALL_STATE(4470)] = 148611, - [SMALL_STATE(4471)] = 148624, - [SMALL_STATE(4472)] = 148637, - [SMALL_STATE(4473)] = 148650, - [SMALL_STATE(4474)] = 148663, - [SMALL_STATE(4475)] = 148676, - [SMALL_STATE(4476)] = 148689, - [SMALL_STATE(4477)] = 148702, - [SMALL_STATE(4478)] = 148715, - [SMALL_STATE(4479)] = 148728, - [SMALL_STATE(4480)] = 148741, - [SMALL_STATE(4481)] = 148754, - [SMALL_STATE(4482)] = 148767, - [SMALL_STATE(4483)] = 148780, - [SMALL_STATE(4484)] = 148793, - [SMALL_STATE(4485)] = 148806, - [SMALL_STATE(4486)] = 148819, - [SMALL_STATE(4487)] = 148832, - [SMALL_STATE(4488)] = 148845, - [SMALL_STATE(4489)] = 148858, - [SMALL_STATE(4490)] = 148871, - [SMALL_STATE(4491)] = 148884, - [SMALL_STATE(4492)] = 148897, - [SMALL_STATE(4493)] = 148910, - [SMALL_STATE(4494)] = 148923, - [SMALL_STATE(4495)] = 148936, - [SMALL_STATE(4496)] = 148949, - [SMALL_STATE(4497)] = 148962, - [SMALL_STATE(4498)] = 148975, - [SMALL_STATE(4499)] = 148988, - [SMALL_STATE(4500)] = 149001, - [SMALL_STATE(4501)] = 149014, - [SMALL_STATE(4502)] = 149027, - [SMALL_STATE(4503)] = 149040, - [SMALL_STATE(4504)] = 149053, - [SMALL_STATE(4505)] = 149066, - [SMALL_STATE(4506)] = 149079, - [SMALL_STATE(4507)] = 149092, - [SMALL_STATE(4508)] = 149105, - [SMALL_STATE(4509)] = 149118, - [SMALL_STATE(4510)] = 149131, - [SMALL_STATE(4511)] = 149144, - [SMALL_STATE(4512)] = 149157, - [SMALL_STATE(4513)] = 149170, - [SMALL_STATE(4514)] = 149183, - [SMALL_STATE(4515)] = 149196, - [SMALL_STATE(4516)] = 149209, - [SMALL_STATE(4517)] = 149222, - [SMALL_STATE(4518)] = 149235, - [SMALL_STATE(4519)] = 149248, - [SMALL_STATE(4520)] = 149261, - [SMALL_STATE(4521)] = 149274, - [SMALL_STATE(4522)] = 149287, - [SMALL_STATE(4523)] = 149300, - [SMALL_STATE(4524)] = 149313, - [SMALL_STATE(4525)] = 149326, - [SMALL_STATE(4526)] = 149339, - [SMALL_STATE(4527)] = 149352, - [SMALL_STATE(4528)] = 149365, - [SMALL_STATE(4529)] = 149378, - [SMALL_STATE(4530)] = 149391, - [SMALL_STATE(4531)] = 149404, - [SMALL_STATE(4532)] = 149417, - [SMALL_STATE(4533)] = 149430, - [SMALL_STATE(4534)] = 149443, - [SMALL_STATE(4535)] = 149456, - [SMALL_STATE(4536)] = 149469, - [SMALL_STATE(4537)] = 149482, - [SMALL_STATE(4538)] = 149495, - [SMALL_STATE(4539)] = 149508, - [SMALL_STATE(4540)] = 149521, - [SMALL_STATE(4541)] = 149534, - [SMALL_STATE(4542)] = 149547, - [SMALL_STATE(4543)] = 149560, - [SMALL_STATE(4544)] = 149573, - [SMALL_STATE(4545)] = 149586, - [SMALL_STATE(4546)] = 149599, - [SMALL_STATE(4547)] = 149612, - [SMALL_STATE(4548)] = 149625, - [SMALL_STATE(4549)] = 149638, - [SMALL_STATE(4550)] = 149651, - [SMALL_STATE(4551)] = 149664, - [SMALL_STATE(4552)] = 149677, - [SMALL_STATE(4553)] = 149690, - [SMALL_STATE(4554)] = 149703, - [SMALL_STATE(4555)] = 149716, - [SMALL_STATE(4556)] = 149729, - [SMALL_STATE(4557)] = 149742, - [SMALL_STATE(4558)] = 149755, - [SMALL_STATE(4559)] = 149768, - [SMALL_STATE(4560)] = 149781, - [SMALL_STATE(4561)] = 149794, - [SMALL_STATE(4562)] = 149807, - [SMALL_STATE(4563)] = 149820, - [SMALL_STATE(4564)] = 149833, - [SMALL_STATE(4565)] = 149846, - [SMALL_STATE(4566)] = 149859, - [SMALL_STATE(4567)] = 149872, - [SMALL_STATE(4568)] = 149885, - [SMALL_STATE(4569)] = 149898, - [SMALL_STATE(4570)] = 149911, - [SMALL_STATE(4571)] = 149924, - [SMALL_STATE(4572)] = 149937, - [SMALL_STATE(4573)] = 149950, - [SMALL_STATE(4574)] = 149963, - [SMALL_STATE(4575)] = 149976, - [SMALL_STATE(4576)] = 149989, - [SMALL_STATE(4577)] = 150002, - [SMALL_STATE(4578)] = 150015, - [SMALL_STATE(4579)] = 150028, - [SMALL_STATE(4580)] = 150041, - [SMALL_STATE(4581)] = 150054, - [SMALL_STATE(4582)] = 150067, - [SMALL_STATE(4583)] = 150080, - [SMALL_STATE(4584)] = 150093, - [SMALL_STATE(4585)] = 150106, - [SMALL_STATE(4586)] = 150119, - [SMALL_STATE(4587)] = 150132, - [SMALL_STATE(4588)] = 150145, - [SMALL_STATE(4589)] = 150158, - [SMALL_STATE(4590)] = 150171, - [SMALL_STATE(4591)] = 150184, - [SMALL_STATE(4592)] = 150197, - [SMALL_STATE(4593)] = 150210, - [SMALL_STATE(4594)] = 150223, - [SMALL_STATE(4595)] = 150236, - [SMALL_STATE(4596)] = 150249, - [SMALL_STATE(4597)] = 150262, - [SMALL_STATE(4598)] = 150275, - [SMALL_STATE(4599)] = 150288, - [SMALL_STATE(4600)] = 150301, - [SMALL_STATE(4601)] = 150314, - [SMALL_STATE(4602)] = 150327, - [SMALL_STATE(4603)] = 150340, - [SMALL_STATE(4604)] = 150353, - [SMALL_STATE(4605)] = 150366, - [SMALL_STATE(4606)] = 150379, - [SMALL_STATE(4607)] = 150392, - [SMALL_STATE(4608)] = 150405, - [SMALL_STATE(4609)] = 150418, - [SMALL_STATE(4610)] = 150431, - [SMALL_STATE(4611)] = 150444, - [SMALL_STATE(4612)] = 150457, - [SMALL_STATE(4613)] = 150470, - [SMALL_STATE(4614)] = 150483, - [SMALL_STATE(4615)] = 150496, - [SMALL_STATE(4616)] = 150509, - [SMALL_STATE(4617)] = 150522, - [SMALL_STATE(4618)] = 150535, - [SMALL_STATE(4619)] = 150548, - [SMALL_STATE(4620)] = 150561, - [SMALL_STATE(4621)] = 150574, - [SMALL_STATE(4622)] = 150587, - [SMALL_STATE(4623)] = 150600, - [SMALL_STATE(4624)] = 150613, - [SMALL_STATE(4625)] = 150626, - [SMALL_STATE(4626)] = 150639, - [SMALL_STATE(4627)] = 150652, - [SMALL_STATE(4628)] = 150665, - [SMALL_STATE(4629)] = 150678, - [SMALL_STATE(4630)] = 150691, - [SMALL_STATE(4631)] = 150704, - [SMALL_STATE(4632)] = 150717, - [SMALL_STATE(4633)] = 150730, - [SMALL_STATE(4634)] = 150743, - [SMALL_STATE(4635)] = 150756, - [SMALL_STATE(4636)] = 150769, - [SMALL_STATE(4637)] = 150782, - [SMALL_STATE(4638)] = 150795, - [SMALL_STATE(4639)] = 150808, - [SMALL_STATE(4640)] = 150821, - [SMALL_STATE(4641)] = 150834, - [SMALL_STATE(4642)] = 150847, - [SMALL_STATE(4643)] = 150860, - [SMALL_STATE(4644)] = 150873, - [SMALL_STATE(4645)] = 150886, - [SMALL_STATE(4646)] = 150899, - [SMALL_STATE(4647)] = 150912, - [SMALL_STATE(4648)] = 150925, - [SMALL_STATE(4649)] = 150938, - [SMALL_STATE(4650)] = 150951, - [SMALL_STATE(4651)] = 150964, - [SMALL_STATE(4652)] = 150977, - [SMALL_STATE(4653)] = 150990, - [SMALL_STATE(4654)] = 151003, - [SMALL_STATE(4655)] = 151016, - [SMALL_STATE(4656)] = 151029, - [SMALL_STATE(4657)] = 151042, - [SMALL_STATE(4658)] = 151055, - [SMALL_STATE(4659)] = 151068, - [SMALL_STATE(4660)] = 151081, - [SMALL_STATE(4661)] = 151094, - [SMALL_STATE(4662)] = 151107, - [SMALL_STATE(4663)] = 151120, - [SMALL_STATE(4664)] = 151133, - [SMALL_STATE(4665)] = 151146, - [SMALL_STATE(4666)] = 151159, - [SMALL_STATE(4667)] = 151172, - [SMALL_STATE(4668)] = 151185, - [SMALL_STATE(4669)] = 151198, - [SMALL_STATE(4670)] = 151211, - [SMALL_STATE(4671)] = 151224, - [SMALL_STATE(4672)] = 151237, - [SMALL_STATE(4673)] = 151250, - [SMALL_STATE(4674)] = 151263, - [SMALL_STATE(4675)] = 151276, - [SMALL_STATE(4676)] = 151289, - [SMALL_STATE(4677)] = 151302, - [SMALL_STATE(4678)] = 151315, - [SMALL_STATE(4679)] = 151328, - [SMALL_STATE(4680)] = 151341, - [SMALL_STATE(4681)] = 151354, - [SMALL_STATE(4682)] = 151367, - [SMALL_STATE(4683)] = 151380, - [SMALL_STATE(4684)] = 151393, - [SMALL_STATE(4685)] = 151406, - [SMALL_STATE(4686)] = 151419, - [SMALL_STATE(4687)] = 151432, - [SMALL_STATE(4688)] = 151445, - [SMALL_STATE(4689)] = 151458, - [SMALL_STATE(4690)] = 151471, - [SMALL_STATE(4691)] = 151484, - [SMALL_STATE(4692)] = 151497, - [SMALL_STATE(4693)] = 151510, - [SMALL_STATE(4694)] = 151523, - [SMALL_STATE(4695)] = 151536, - [SMALL_STATE(4696)] = 151549, - [SMALL_STATE(4697)] = 151562, - [SMALL_STATE(4698)] = 151575, - [SMALL_STATE(4699)] = 151588, - [SMALL_STATE(4700)] = 151601, - [SMALL_STATE(4701)] = 151614, - [SMALL_STATE(4702)] = 151627, - [SMALL_STATE(4703)] = 151640, - [SMALL_STATE(4704)] = 151653, - [SMALL_STATE(4705)] = 151666, - [SMALL_STATE(4706)] = 151679, - [SMALL_STATE(4707)] = 151692, - [SMALL_STATE(4708)] = 151705, - [SMALL_STATE(4709)] = 151718, - [SMALL_STATE(4710)] = 151731, - [SMALL_STATE(4711)] = 151744, - [SMALL_STATE(4712)] = 151757, - [SMALL_STATE(4713)] = 151770, - [SMALL_STATE(4714)] = 151783, - [SMALL_STATE(4715)] = 151796, - [SMALL_STATE(4716)] = 151809, - [SMALL_STATE(4717)] = 151822, - [SMALL_STATE(4718)] = 151835, - [SMALL_STATE(4719)] = 151848, - [SMALL_STATE(4720)] = 151861, - [SMALL_STATE(4721)] = 151874, - [SMALL_STATE(4722)] = 151887, - [SMALL_STATE(4723)] = 151900, - [SMALL_STATE(4724)] = 151913, - [SMALL_STATE(4725)] = 151926, - [SMALL_STATE(4726)] = 151939, - [SMALL_STATE(4727)] = 151952, - [SMALL_STATE(4728)] = 151965, - [SMALL_STATE(4729)] = 151978, - [SMALL_STATE(4730)] = 151991, - [SMALL_STATE(4731)] = 152004, - [SMALL_STATE(4732)] = 152017, - [SMALL_STATE(4733)] = 152030, - [SMALL_STATE(4734)] = 152043, - [SMALL_STATE(4735)] = 152056, - [SMALL_STATE(4736)] = 152069, - [SMALL_STATE(4737)] = 152082, - [SMALL_STATE(4738)] = 152095, - [SMALL_STATE(4739)] = 152108, - [SMALL_STATE(4740)] = 152121, - [SMALL_STATE(4741)] = 152134, - [SMALL_STATE(4742)] = 152147, - [SMALL_STATE(4743)] = 152160, - [SMALL_STATE(4744)] = 152173, - [SMALL_STATE(4745)] = 152186, - [SMALL_STATE(4746)] = 152199, - [SMALL_STATE(4747)] = 152212, - [SMALL_STATE(4748)] = 152225, - [SMALL_STATE(4749)] = 152238, - [SMALL_STATE(4750)] = 152251, - [SMALL_STATE(4751)] = 152264, - [SMALL_STATE(4752)] = 152277, - [SMALL_STATE(4753)] = 152290, - [SMALL_STATE(4754)] = 152303, + [SMALL_STATE(1649)] = 0, + [SMALL_STATE(1650)] = 91, + [SMALL_STATE(1651)] = 184, + [SMALL_STATE(1652)] = 279, + [SMALL_STATE(1653)] = 374, + [SMALL_STATE(1654)] = 501, + [SMALL_STATE(1655)] = 604, + [SMALL_STATE(1656)] = 721, + [SMALL_STATE(1657)] = 838, + [SMALL_STATE(1658)] = 933, + [SMALL_STATE(1659)] = 1024, + [SMALL_STATE(1660)] = 1117, + [SMALL_STATE(1661)] = 1218, + [SMALL_STATE(1662)] = 1309, + [SMALL_STATE(1663)] = 1383, + [SMALL_STATE(1664)] = 1461, + [SMALL_STATE(1665)] = 1539, + [SMALL_STATE(1666)] = 1613, + [SMALL_STATE(1667)] = 1733, + [SMALL_STATE(1668)] = 1806, + [SMALL_STATE(1669)] = 1881, + [SMALL_STATE(1670)] = 1974, + [SMALL_STATE(1671)] = 2047, + [SMALL_STATE(1672)] = 2120, + [SMALL_STATE(1673)] = 2213, + [SMALL_STATE(1674)] = 2286, + [SMALL_STATE(1675)] = 2359, + [SMALL_STATE(1676)] = 2432, + [SMALL_STATE(1677)] = 2521, + [SMALL_STATE(1678)] = 2594, + [SMALL_STATE(1679)] = 2667, + [SMALL_STATE(1680)] = 2740, + [SMALL_STATE(1681)] = 2813, + [SMALL_STATE(1682)] = 2944, + [SMALL_STATE(1683)] = 3019, + [SMALL_STATE(1684)] = 3118, + [SMALL_STATE(1685)] = 3191, + [SMALL_STATE(1686)] = 3264, + [SMALL_STATE(1687)] = 3337, + [SMALL_STATE(1688)] = 3426, + [SMALL_STATE(1689)] = 3527, + [SMALL_STATE(1690)] = 3658, + [SMALL_STATE(1691)] = 3751, + [SMALL_STATE(1692)] = 3866, + [SMALL_STATE(1693)] = 3941, + [SMALL_STATE(1694)] = 4056, + [SMALL_STATE(1695)] = 4129, + [SMALL_STATE(1696)] = 4206, + [SMALL_STATE(1697)] = 4279, + [SMALL_STATE(1698)] = 4354, + [SMALL_STATE(1699)] = 4427, + [SMALL_STATE(1700)] = 4518, + [SMALL_STATE(1701)] = 4591, + [SMALL_STATE(1702)] = 4664, + [SMALL_STATE(1703)] = 4753, + [SMALL_STATE(1704)] = 4828, + [SMALL_STATE(1705)] = 4901, + [SMALL_STATE(1706)] = 4976, + [SMALL_STATE(1707)] = 5091, + [SMALL_STATE(1708)] = 5166, + [SMALL_STATE(1709)] = 5239, + [SMALL_STATE(1710)] = 5312, + [SMALL_STATE(1711)] = 5385, + [SMALL_STATE(1712)] = 5457, + [SMALL_STATE(1713)] = 5529, + [SMALL_STATE(1714)] = 5601, + [SMALL_STATE(1715)] = 5673, + [SMALL_STATE(1716)] = 5745, + [SMALL_STATE(1717)] = 5817, + [SMALL_STATE(1718)] = 5889, + [SMALL_STATE(1719)] = 5961, + [SMALL_STATE(1720)] = 6033, + [SMALL_STATE(1721)] = 6105, + [SMALL_STATE(1722)] = 6177, + [SMALL_STATE(1723)] = 6251, + [SMALL_STATE(1724)] = 6323, + [SMALL_STATE(1725)] = 6395, + [SMALL_STATE(1726)] = 6467, + [SMALL_STATE(1727)] = 6539, + [SMALL_STATE(1728)] = 6611, + [SMALL_STATE(1729)] = 6683, + [SMALL_STATE(1730)] = 6755, + [SMALL_STATE(1731)] = 6827, + [SMALL_STATE(1732)] = 6899, + [SMALL_STATE(1733)] = 6971, + [SMALL_STATE(1734)] = 7043, + [SMALL_STATE(1735)] = 7115, + [SMALL_STATE(1736)] = 7187, + [SMALL_STATE(1737)] = 7259, + [SMALL_STATE(1738)] = 7331, + [SMALL_STATE(1739)] = 7403, + [SMALL_STATE(1740)] = 7477, + [SMALL_STATE(1741)] = 7549, + [SMALL_STATE(1742)] = 7621, + [SMALL_STATE(1743)] = 7693, + [SMALL_STATE(1744)] = 7765, + [SMALL_STATE(1745)] = 7837, + [SMALL_STATE(1746)] = 7909, + [SMALL_STATE(1747)] = 7981, + [SMALL_STATE(1748)] = 8053, + [SMALL_STATE(1749)] = 8125, + [SMALL_STATE(1750)] = 8197, + [SMALL_STATE(1751)] = 8269, + [SMALL_STATE(1752)] = 8341, + [SMALL_STATE(1753)] = 8413, + [SMALL_STATE(1754)] = 8485, + [SMALL_STATE(1755)] = 8557, + [SMALL_STATE(1756)] = 8629, + [SMALL_STATE(1757)] = 8701, + [SMALL_STATE(1758)] = 8773, + [SMALL_STATE(1759)] = 8845, + [SMALL_STATE(1760)] = 8917, + [SMALL_STATE(1761)] = 8989, + [SMALL_STATE(1762)] = 9061, + [SMALL_STATE(1763)] = 9135, + [SMALL_STATE(1764)] = 9209, + [SMALL_STATE(1765)] = 9281, + [SMALL_STATE(1766)] = 9353, + [SMALL_STATE(1767)] = 9429, + [SMALL_STATE(1768)] = 9501, + [SMALL_STATE(1769)] = 9573, + [SMALL_STATE(1770)] = 9645, + [SMALL_STATE(1771)] = 9717, + [SMALL_STATE(1772)] = 9789, + [SMALL_STATE(1773)] = 9861, + [SMALL_STATE(1774)] = 9937, + [SMALL_STATE(1775)] = 10009, + [SMALL_STATE(1776)] = 10081, + [SMALL_STATE(1777)] = 10153, + [SMALL_STATE(1778)] = 10227, + [SMALL_STATE(1779)] = 10299, + [SMALL_STATE(1780)] = 10371, + [SMALL_STATE(1781)] = 10443, + [SMALL_STATE(1782)] = 10517, + [SMALL_STATE(1783)] = 10591, + [SMALL_STATE(1784)] = 10663, + [SMALL_STATE(1785)] = 10737, + [SMALL_STATE(1786)] = 10809, + [SMALL_STATE(1787)] = 10881, + [SMALL_STATE(1788)] = 10953, + [SMALL_STATE(1789)] = 11025, + [SMALL_STATE(1790)] = 11097, + [SMALL_STATE(1791)] = 11169, + [SMALL_STATE(1792)] = 11241, + [SMALL_STATE(1793)] = 11313, + [SMALL_STATE(1794)] = 11385, + [SMALL_STATE(1795)] = 11459, + [SMALL_STATE(1796)] = 11554, + [SMALL_STATE(1797)] = 11657, + [SMALL_STATE(1798)] = 11748, + [SMALL_STATE(1799)] = 11867, + [SMALL_STATE(1800)] = 11986, + [SMALL_STATE(1801)] = 12079, + [SMALL_STATE(1802)] = 12170, + [SMALL_STATE(1803)] = 12289, + [SMALL_STATE(1804)] = 12408, + [SMALL_STATE(1805)] = 12503, + [SMALL_STATE(1806)] = 12594, + [SMALL_STATE(1807)] = 12667, + [SMALL_STATE(1808)] = 12740, + [SMALL_STATE(1809)] = 12813, + [SMALL_STATE(1810)] = 12904, + [SMALL_STATE(1811)] = 12995, + [SMALL_STATE(1812)] = 13118, + [SMALL_STATE(1813)] = 13191, + [SMALL_STATE(1814)] = 13264, + [SMALL_STATE(1815)] = 13359, + [SMALL_STATE(1816)] = 13452, + [SMALL_STATE(1817)] = 13577, + [SMALL_STATE(1818)] = 13700, + [SMALL_STATE(1819)] = 13791, + [SMALL_STATE(1820)] = 13886, + [SMALL_STATE(1821)] = 13981, + [SMALL_STATE(1822)] = 14086, + [SMALL_STATE(1823)] = 14191, + [SMALL_STATE(1824)] = 14264, + [SMALL_STATE(1825)] = 14367, + [SMALL_STATE(1826)] = 14462, + [SMALL_STATE(1827)] = 14532, + [SMALL_STATE(1828)] = 14650, + [SMALL_STATE(1829)] = 14720, + [SMALL_STATE(1830)] = 14790, + [SMALL_STATE(1831)] = 14860, + [SMALL_STATE(1832)] = 14930, + [SMALL_STATE(1833)] = 15000, + [SMALL_STATE(1834)] = 15070, + [SMALL_STATE(1835)] = 15140, + [SMALL_STATE(1836)] = 15210, + [SMALL_STATE(1837)] = 15280, + [SMALL_STATE(1838)] = 15350, + [SMALL_STATE(1839)] = 15420, + [SMALL_STATE(1840)] = 15490, + [SMALL_STATE(1841)] = 15582, + [SMALL_STATE(1842)] = 15676, + [SMALL_STATE(1843)] = 15778, + [SMALL_STATE(1844)] = 15882, + [SMALL_STATE(1845)] = 15976, + [SMALL_STATE(1846)] = 16070, + [SMALL_STATE(1847)] = 16140, + [SMALL_STATE(1848)] = 16210, + [SMALL_STATE(1849)] = 16284, + [SMALL_STATE(1850)] = 16354, + [SMALL_STATE(1851)] = 16424, + [SMALL_STATE(1852)] = 16496, + [SMALL_STATE(1853)] = 16566, + [SMALL_STATE(1854)] = 16636, + [SMALL_STATE(1855)] = 16706, + [SMALL_STATE(1856)] = 16776, + [SMALL_STATE(1857)] = 16846, + [SMALL_STATE(1858)] = 16916, + [SMALL_STATE(1859)] = 16988, + [SMALL_STATE(1860)] = 17060, + [SMALL_STATE(1861)] = 17130, + [SMALL_STATE(1862)] = 17200, + [SMALL_STATE(1863)] = 17270, + [SMALL_STATE(1864)] = 17340, + [SMALL_STATE(1865)] = 17410, + [SMALL_STATE(1866)] = 17480, + [SMALL_STATE(1867)] = 17550, + [SMALL_STATE(1868)] = 17620, + [SMALL_STATE(1869)] = 17690, + [SMALL_STATE(1870)] = 17760, + [SMALL_STATE(1871)] = 17830, + [SMALL_STATE(1872)] = 17900, + [SMALL_STATE(1873)] = 17970, + [SMALL_STATE(1874)] = 18040, + [SMALL_STATE(1875)] = 18110, + [SMALL_STATE(1876)] = 18180, + [SMALL_STATE(1877)] = 18250, + [SMALL_STATE(1878)] = 18320, + [SMALL_STATE(1879)] = 18390, + [SMALL_STATE(1880)] = 18460, + [SMALL_STATE(1881)] = 18530, + [SMALL_STATE(1882)] = 18600, + [SMALL_STATE(1883)] = 18670, + [SMALL_STATE(1884)] = 18740, + [SMALL_STATE(1885)] = 18812, + [SMALL_STATE(1886)] = 18890, + [SMALL_STATE(1887)] = 18964, + [SMALL_STATE(1888)] = 19034, + [SMALL_STATE(1889)] = 19104, + [SMALL_STATE(1890)] = 19174, + [SMALL_STATE(1891)] = 19244, + [SMALL_STATE(1892)] = 19318, + [SMALL_STATE(1893)] = 19388, + [SMALL_STATE(1894)] = 19458, + [SMALL_STATE(1895)] = 19528, + [SMALL_STATE(1896)] = 19598, + [SMALL_STATE(1897)] = 19668, + [SMALL_STATE(1898)] = 19738, + [SMALL_STATE(1899)] = 19808, + [SMALL_STATE(1900)] = 19878, + [SMALL_STATE(1901)] = 19996, + [SMALL_STATE(1902)] = 20066, + [SMALL_STATE(1903)] = 20136, + [SMALL_STATE(1904)] = 20206, + [SMALL_STATE(1905)] = 20276, + [SMALL_STATE(1906)] = 20346, + [SMALL_STATE(1907)] = 20420, + [SMALL_STATE(1908)] = 20490, + [SMALL_STATE(1909)] = 20560, + [SMALL_STATE(1910)] = 20630, + [SMALL_STATE(1911)] = 20700, + [SMALL_STATE(1912)] = 20770, + [SMALL_STATE(1913)] = 20840, + [SMALL_STATE(1914)] = 20910, + [SMALL_STATE(1915)] = 20980, + [SMALL_STATE(1916)] = 21050, + [SMALL_STATE(1917)] = 21120, + [SMALL_STATE(1918)] = 21238, + [SMALL_STATE(1919)] = 21356, + [SMALL_STATE(1920)] = 21426, + [SMALL_STATE(1921)] = 21496, + [SMALL_STATE(1922)] = 21566, + [SMALL_STATE(1923)] = 21636, + [SMALL_STATE(1924)] = 21706, + [SMALL_STATE(1925)] = 21776, + [SMALL_STATE(1926)] = 21846, + [SMALL_STATE(1927)] = 21916, + [SMALL_STATE(1928)] = 21986, + [SMALL_STATE(1929)] = 22056, + [SMALL_STATE(1930)] = 22126, + [SMALL_STATE(1931)] = 22196, + [SMALL_STATE(1932)] = 22266, + [SMALL_STATE(1933)] = 22336, + [SMALL_STATE(1934)] = 22406, + [SMALL_STATE(1935)] = 22476, + [SMALL_STATE(1936)] = 22546, + [SMALL_STATE(1937)] = 22616, + [SMALL_STATE(1938)] = 22688, + [SMALL_STATE(1939)] = 22758, + [SMALL_STATE(1940)] = 22828, + [SMALL_STATE(1941)] = 22898, + [SMALL_STATE(1942)] = 22968, + [SMALL_STATE(1943)] = 23038, + [SMALL_STATE(1944)] = 23108, + [SMALL_STATE(1945)] = 23178, + [SMALL_STATE(1946)] = 23248, + [SMALL_STATE(1947)] = 23318, + [SMALL_STATE(1948)] = 23388, + [SMALL_STATE(1949)] = 23458, + [SMALL_STATE(1950)] = 23529, + [SMALL_STATE(1951)] = 23600, + [SMALL_STATE(1952)] = 23717, + [SMALL_STATE(1953)] = 23834, + [SMALL_STATE(1954)] = 23951, + [SMALL_STATE(1955)] = 24018, + [SMALL_STATE(1956)] = 24089, + [SMALL_STATE(1957)] = 24160, + [SMALL_STATE(1958)] = 24229, + [SMALL_STATE(1959)] = 24306, + [SMALL_STATE(1960)] = 24423, + [SMALL_STATE(1961)] = 24494, + [SMALL_STATE(1962)] = 24565, + [SMALL_STATE(1963)] = 24633, + [SMALL_STATE(1964)] = 24701, + [SMALL_STATE(1965)] = 24769, + [SMALL_STATE(1966)] = 24837, + [SMALL_STATE(1967)] = 24905, + [SMALL_STATE(1968)] = 24973, + [SMALL_STATE(1969)] = 25041, + [SMALL_STATE(1970)] = 25109, + [SMALL_STATE(1971)] = 25177, + [SMALL_STATE(1972)] = 25245, + [SMALL_STATE(1973)] = 25313, + [SMALL_STATE(1974)] = 25381, + [SMALL_STATE(1975)] = 25449, + [SMALL_STATE(1976)] = 25517, + [SMALL_STATE(1977)] = 25585, + [SMALL_STATE(1978)] = 25653, + [SMALL_STATE(1979)] = 25721, + [SMALL_STATE(1980)] = 25789, + [SMALL_STATE(1981)] = 25857, + [SMALL_STATE(1982)] = 25925, + [SMALL_STATE(1983)] = 25993, + [SMALL_STATE(1984)] = 26061, + [SMALL_STATE(1985)] = 26129, + [SMALL_STATE(1986)] = 26197, + [SMALL_STATE(1987)] = 26265, + [SMALL_STATE(1988)] = 26333, + [SMALL_STATE(1989)] = 26401, + [SMALL_STATE(1990)] = 26469, + [SMALL_STATE(1991)] = 26537, + [SMALL_STATE(1992)] = 26605, + [SMALL_STATE(1993)] = 26675, + [SMALL_STATE(1994)] = 26743, + [SMALL_STATE(1995)] = 26811, + [SMALL_STATE(1996)] = 26879, + [SMALL_STATE(1997)] = 26947, + [SMALL_STATE(1998)] = 27015, + [SMALL_STATE(1999)] = 27083, + [SMALL_STATE(2000)] = 27151, + [SMALL_STATE(2001)] = 27219, + [SMALL_STATE(2002)] = 27287, + [SMALL_STATE(2003)] = 27355, + [SMALL_STATE(2004)] = 27423, + [SMALL_STATE(2005)] = 27491, + [SMALL_STATE(2006)] = 27559, + [SMALL_STATE(2007)] = 27627, + [SMALL_STATE(2008)] = 27695, + [SMALL_STATE(2009)] = 27763, + [SMALL_STATE(2010)] = 27831, + [SMALL_STATE(2011)] = 27899, + [SMALL_STATE(2012)] = 27967, + [SMALL_STATE(2013)] = 28035, + [SMALL_STATE(2014)] = 28103, + [SMALL_STATE(2015)] = 28171, + [SMALL_STATE(2016)] = 28239, + [SMALL_STATE(2017)] = 28307, + [SMALL_STATE(2018)] = 28375, + [SMALL_STATE(2019)] = 28443, + [SMALL_STATE(2020)] = 28511, + [SMALL_STATE(2021)] = 28579, + [SMALL_STATE(2022)] = 28647, + [SMALL_STATE(2023)] = 28715, + [SMALL_STATE(2024)] = 28783, + [SMALL_STATE(2025)] = 28851, + [SMALL_STATE(2026)] = 28919, + [SMALL_STATE(2027)] = 28987, + [SMALL_STATE(2028)] = 29055, + [SMALL_STATE(2029)] = 29123, + [SMALL_STATE(2030)] = 29191, + [SMALL_STATE(2031)] = 29259, + [SMALL_STATE(2032)] = 29327, + [SMALL_STATE(2033)] = 29395, + [SMALL_STATE(2034)] = 29463, + [SMALL_STATE(2035)] = 29531, + [SMALL_STATE(2036)] = 29599, + [SMALL_STATE(2037)] = 29667, + [SMALL_STATE(2038)] = 29735, + [SMALL_STATE(2039)] = 29803, + [SMALL_STATE(2040)] = 29871, + [SMALL_STATE(2041)] = 29939, + [SMALL_STATE(2042)] = 30007, + [SMALL_STATE(2043)] = 30077, + [SMALL_STATE(2044)] = 30147, + [SMALL_STATE(2045)] = 30215, + [SMALL_STATE(2046)] = 30283, + [SMALL_STATE(2047)] = 30355, + [SMALL_STATE(2048)] = 30425, + [SMALL_STATE(2049)] = 30495, + [SMALL_STATE(2050)] = 30565, + [SMALL_STATE(2051)] = 30633, + [SMALL_STATE(2052)] = 30701, + [SMALL_STATE(2053)] = 30769, + [SMALL_STATE(2054)] = 30839, + [SMALL_STATE(2055)] = 30907, + [SMALL_STATE(2056)] = 30975, + [SMALL_STATE(2057)] = 31043, + [SMALL_STATE(2058)] = 31111, + [SMALL_STATE(2059)] = 31179, + [SMALL_STATE(2060)] = 31247, + [SMALL_STATE(2061)] = 31315, + [SMALL_STATE(2062)] = 31383, + [SMALL_STATE(2063)] = 31451, + [SMALL_STATE(2064)] = 31519, + [SMALL_STATE(2065)] = 31587, + [SMALL_STATE(2066)] = 31655, + [SMALL_STATE(2067)] = 31723, + [SMALL_STATE(2068)] = 31791, + [SMALL_STATE(2069)] = 31859, + [SMALL_STATE(2070)] = 31927, + [SMALL_STATE(2071)] = 31995, + [SMALL_STATE(2072)] = 32063, + [SMALL_STATE(2073)] = 32131, + [SMALL_STATE(2074)] = 32199, + [SMALL_STATE(2075)] = 32271, + [SMALL_STATE(2076)] = 32339, + [SMALL_STATE(2077)] = 32407, + [SMALL_STATE(2078)] = 32475, + [SMALL_STATE(2079)] = 32543, + [SMALL_STATE(2080)] = 32615, + [SMALL_STATE(2081)] = 32683, + [SMALL_STATE(2082)] = 32751, + [SMALL_STATE(2083)] = 32819, + [SMALL_STATE(2084)] = 32887, + [SMALL_STATE(2085)] = 32955, + [SMALL_STATE(2086)] = 33023, + [SMALL_STATE(2087)] = 33091, + [SMALL_STATE(2088)] = 33159, + [SMALL_STATE(2089)] = 33227, + [SMALL_STATE(2090)] = 33295, + [SMALL_STATE(2091)] = 33363, + [SMALL_STATE(2092)] = 33431, + [SMALL_STATE(2093)] = 33499, + [SMALL_STATE(2094)] = 33567, + [SMALL_STATE(2095)] = 33635, + [SMALL_STATE(2096)] = 33703, + [SMALL_STATE(2097)] = 33771, + [SMALL_STATE(2098)] = 33839, + [SMALL_STATE(2099)] = 33907, + [SMALL_STATE(2100)] = 33975, + [SMALL_STATE(2101)] = 34043, + [SMALL_STATE(2102)] = 34111, + [SMALL_STATE(2103)] = 34179, + [SMALL_STATE(2104)] = 34249, + [SMALL_STATE(2105)] = 34319, + [SMALL_STATE(2106)] = 34387, + [SMALL_STATE(2107)] = 34455, + [SMALL_STATE(2108)] = 34523, + [SMALL_STATE(2109)] = 34591, + [SMALL_STATE(2110)] = 34659, + [SMALL_STATE(2111)] = 34727, + [SMALL_STATE(2112)] = 34795, + [SMALL_STATE(2113)] = 34863, + [SMALL_STATE(2114)] = 34931, + [SMALL_STATE(2115)] = 34999, + [SMALL_STATE(2116)] = 35067, + [SMALL_STATE(2117)] = 35135, + [SMALL_STATE(2118)] = 35203, + [SMALL_STATE(2119)] = 35271, + [SMALL_STATE(2120)] = 35339, + [SMALL_STATE(2121)] = 35407, + [SMALL_STATE(2122)] = 35475, + [SMALL_STATE(2123)] = 35543, + [SMALL_STATE(2124)] = 35611, + [SMALL_STATE(2125)] = 35679, + [SMALL_STATE(2126)] = 35747, + [SMALL_STATE(2127)] = 35815, + [SMALL_STATE(2128)] = 35883, + [SMALL_STATE(2129)] = 35951, + [SMALL_STATE(2130)] = 36019, + [SMALL_STATE(2131)] = 36091, + [SMALL_STATE(2132)] = 36163, + [SMALL_STATE(2133)] = 36235, + [SMALL_STATE(2134)] = 36303, + [SMALL_STATE(2135)] = 36371, + [SMALL_STATE(2136)] = 36439, + [SMALL_STATE(2137)] = 36509, + [SMALL_STATE(2138)] = 36577, + [SMALL_STATE(2139)] = 36645, + [SMALL_STATE(2140)] = 36713, + [SMALL_STATE(2141)] = 36783, + [SMALL_STATE(2142)] = 36851, + [SMALL_STATE(2143)] = 36919, + [SMALL_STATE(2144)] = 36989, + [SMALL_STATE(2145)] = 37057, + [SMALL_STATE(2146)] = 37125, + [SMALL_STATE(2147)] = 37193, + [SMALL_STATE(2148)] = 37261, + [SMALL_STATE(2149)] = 37329, + [SMALL_STATE(2150)] = 37397, + [SMALL_STATE(2151)] = 37465, + [SMALL_STATE(2152)] = 37533, + [SMALL_STATE(2153)] = 37601, + [SMALL_STATE(2154)] = 37669, + [SMALL_STATE(2155)] = 37737, + [SMALL_STATE(2156)] = 37805, + [SMALL_STATE(2157)] = 37873, + [SMALL_STATE(2158)] = 37941, + [SMALL_STATE(2159)] = 38009, + [SMALL_STATE(2160)] = 38077, + [SMALL_STATE(2161)] = 38145, + [SMALL_STATE(2162)] = 38213, + [SMALL_STATE(2163)] = 38281, + [SMALL_STATE(2164)] = 38349, + [SMALL_STATE(2165)] = 38417, + [SMALL_STATE(2166)] = 38485, + [SMALL_STATE(2167)] = 38553, + [SMALL_STATE(2168)] = 38621, + [SMALL_STATE(2169)] = 38689, + [SMALL_STATE(2170)] = 38757, + [SMALL_STATE(2171)] = 38825, + [SMALL_STATE(2172)] = 38892, + [SMALL_STATE(2173)] = 38959, + [SMALL_STATE(2174)] = 39026, + [SMALL_STATE(2175)] = 39093, + [SMALL_STATE(2176)] = 39160, + [SMALL_STATE(2177)] = 39242, + [SMALL_STATE(2178)] = 39324, + [SMALL_STATE(2179)] = 39406, + [SMALL_STATE(2180)] = 39476, + [SMALL_STATE(2181)] = 39545, + [SMALL_STATE(2182)] = 39616, + [SMALL_STATE(2183)] = 39685, + [SMALL_STATE(2184)] = 39749, + [SMALL_STATE(2185)] = 39815, + [SMALL_STATE(2186)] = 39879, + [SMALL_STATE(2187)] = 39943, + [SMALL_STATE(2188)] = 40007, + [SMALL_STATE(2189)] = 40071, + [SMALL_STATE(2190)] = 40135, + [SMALL_STATE(2191)] = 40201, + [SMALL_STATE(2192)] = 40265, + [SMALL_STATE(2193)] = 40329, + [SMALL_STATE(2194)] = 40399, + [SMALL_STATE(2195)] = 40463, + [SMALL_STATE(2196)] = 40529, + [SMALL_STATE(2197)] = 40593, + [SMALL_STATE(2198)] = 40659, + [SMALL_STATE(2199)] = 40771, + [SMALL_STATE(2200)] = 40835, + [SMALL_STATE(2201)] = 40899, + [SMALL_STATE(2202)] = 40967, + [SMALL_STATE(2203)] = 41030, + [SMALL_STATE(2204)] = 41093, + [SMALL_STATE(2205)] = 41156, + [SMALL_STATE(2206)] = 41219, + [SMALL_STATE(2207)] = 41282, + [SMALL_STATE(2208)] = 41387, + [SMALL_STATE(2209)] = 41450, + [SMALL_STATE(2210)] = 41515, + [SMALL_STATE(2211)] = 41578, + [SMALL_STATE(2212)] = 41641, + [SMALL_STATE(2213)] = 41704, + [SMALL_STATE(2214)] = 41787, + [SMALL_STATE(2215)] = 41850, + [SMALL_STATE(2216)] = 41913, + [SMALL_STATE(2217)] = 41976, + [SMALL_STATE(2218)] = 42039, + [SMALL_STATE(2219)] = 42102, + [SMALL_STATE(2220)] = 42165, + [SMALL_STATE(2221)] = 42248, + [SMALL_STATE(2222)] = 42311, + [SMALL_STATE(2223)] = 42374, + [SMALL_STATE(2224)] = 42439, + [SMALL_STATE(2225)] = 42502, + [SMALL_STATE(2226)] = 42565, + [SMALL_STATE(2227)] = 42628, + [SMALL_STATE(2228)] = 42691, + [SMALL_STATE(2229)] = 42754, + [SMALL_STATE(2230)] = 42817, + [SMALL_STATE(2231)] = 42880, + [SMALL_STATE(2232)] = 42943, + [SMALL_STATE(2233)] = 43006, + [SMALL_STATE(2234)] = 43069, + [SMALL_STATE(2235)] = 43174, + [SMALL_STATE(2236)] = 43237, + [SMALL_STATE(2237)] = 43300, + [SMALL_STATE(2238)] = 43363, + [SMALL_STATE(2239)] = 43426, + [SMALL_STATE(2240)] = 43489, + [SMALL_STATE(2241)] = 43552, + [SMALL_STATE(2242)] = 43615, + [SMALL_STATE(2243)] = 43678, + [SMALL_STATE(2244)] = 43741, + [SMALL_STATE(2245)] = 43804, + [SMALL_STATE(2246)] = 43867, + [SMALL_STATE(2247)] = 43930, + [SMALL_STATE(2248)] = 43993, + [SMALL_STATE(2249)] = 44056, + [SMALL_STATE(2250)] = 44147, + [SMALL_STATE(2251)] = 44236, + [SMALL_STATE(2252)] = 44319, + [SMALL_STATE(2253)] = 44382, + [SMALL_STATE(2254)] = 44445, + [SMALL_STATE(2255)] = 44508, + [SMALL_STATE(2256)] = 44571, + [SMALL_STATE(2257)] = 44634, + [SMALL_STATE(2258)] = 44697, + [SMALL_STATE(2259)] = 44760, + [SMALL_STATE(2260)] = 44823, + [SMALL_STATE(2261)] = 44886, + [SMALL_STATE(2262)] = 44949, + [SMALL_STATE(2263)] = 45012, + [SMALL_STATE(2264)] = 45075, + [SMALL_STATE(2265)] = 45138, + [SMALL_STATE(2266)] = 45201, + [SMALL_STATE(2267)] = 45264, + [SMALL_STATE(2268)] = 45327, + [SMALL_STATE(2269)] = 45390, + [SMALL_STATE(2270)] = 45453, + [SMALL_STATE(2271)] = 45516, + [SMALL_STATE(2272)] = 45579, + [SMALL_STATE(2273)] = 45642, + [SMALL_STATE(2274)] = 45705, + [SMALL_STATE(2275)] = 45768, + [SMALL_STATE(2276)] = 45831, + [SMALL_STATE(2277)] = 45894, + [SMALL_STATE(2278)] = 45957, + [SMALL_STATE(2279)] = 46020, + [SMALL_STATE(2280)] = 46083, + [SMALL_STATE(2281)] = 46146, + [SMALL_STATE(2282)] = 46227, + [SMALL_STATE(2283)] = 46290, + [SMALL_STATE(2284)] = 46353, + [SMALL_STATE(2285)] = 46416, + [SMALL_STATE(2286)] = 46479, + [SMALL_STATE(2287)] = 46542, + [SMALL_STATE(2288)] = 46605, + [SMALL_STATE(2289)] = 46668, + [SMALL_STATE(2290)] = 46731, + [SMALL_STATE(2291)] = 46794, + [SMALL_STATE(2292)] = 46857, + [SMALL_STATE(2293)] = 46920, + [SMALL_STATE(2294)] = 46983, + [SMALL_STATE(2295)] = 47046, + [SMALL_STATE(2296)] = 47109, + [SMALL_STATE(2297)] = 47174, + [SMALL_STATE(2298)] = 47239, + [SMALL_STATE(2299)] = 47302, + [SMALL_STATE(2300)] = 47365, + [SMALL_STATE(2301)] = 47428, + [SMALL_STATE(2302)] = 47491, + [SMALL_STATE(2303)] = 47554, + [SMALL_STATE(2304)] = 47665, + [SMALL_STATE(2305)] = 47728, + [SMALL_STATE(2306)] = 47791, + [SMALL_STATE(2307)] = 47854, + [SMALL_STATE(2308)] = 47919, + [SMALL_STATE(2309)] = 47982, + [SMALL_STATE(2310)] = 48045, + [SMALL_STATE(2311)] = 48110, + [SMALL_STATE(2312)] = 48173, + [SMALL_STATE(2313)] = 48236, + [SMALL_STATE(2314)] = 48299, + [SMALL_STATE(2315)] = 48362, + [SMALL_STATE(2316)] = 48425, + [SMALL_STATE(2317)] = 48488, + [SMALL_STATE(2318)] = 48592, + [SMALL_STATE(2319)] = 48696, + [SMALL_STATE(2320)] = 48760, + [SMALL_STATE(2321)] = 48842, + [SMALL_STATE(2322)] = 48924, + [SMALL_STATE(2323)] = 48986, + [SMALL_STATE(2324)] = 49048, + [SMALL_STATE(2325)] = 49152, + [SMALL_STATE(2326)] = 49216, + [SMALL_STATE(2327)] = 49296, + [SMALL_STATE(2328)] = 49380, + [SMALL_STATE(2329)] = 49462, + [SMALL_STATE(2330)] = 49524, + [SMALL_STATE(2331)] = 49586, + [SMALL_STATE(2332)] = 49670, + [SMALL_STATE(2333)] = 49754, + [SMALL_STATE(2334)] = 49842, + [SMALL_STATE(2335)] = 49932, + [SMALL_STATE(2336)] = 50036, + [SMALL_STATE(2337)] = 50101, + [SMALL_STATE(2338)] = 50166, + [SMALL_STATE(2339)] = 50275, + [SMALL_STATE(2340)] = 50337, + [SMALL_STATE(2341)] = 50399, + [SMALL_STATE(2342)] = 50475, + [SMALL_STATE(2343)] = 50537, + [SMALL_STATE(2344)] = 50599, + [SMALL_STATE(2345)] = 50705, + [SMALL_STATE(2346)] = 50767, + [SMALL_STATE(2347)] = 50843, + [SMALL_STATE(2348)] = 50919, + [SMALL_STATE(2349)] = 50978, + [SMALL_STATE(2350)] = 51037, + [SMALL_STATE(2351)] = 51096, + [SMALL_STATE(2352)] = 51155, + [SMALL_STATE(2353)] = 51214, + [SMALL_STATE(2354)] = 51273, + [SMALL_STATE(2355)] = 51332, + [SMALL_STATE(2356)] = 51391, + [SMALL_STATE(2357)] = 51450, + [SMALL_STATE(2358)] = 51551, + [SMALL_STATE(2359)] = 51652, + [SMALL_STATE(2360)] = 51711, + [SMALL_STATE(2361)] = 51770, + [SMALL_STATE(2362)] = 51829, + [SMALL_STATE(2363)] = 51888, + [SMALL_STATE(2364)] = 51947, + [SMALL_STATE(2365)] = 52006, + [SMALL_STATE(2366)] = 52067, + [SMALL_STATE(2367)] = 52126, + [SMALL_STATE(2368)] = 52185, + [SMALL_STATE(2369)] = 52286, + [SMALL_STATE(2370)] = 52345, + [SMALL_STATE(2371)] = 52404, + [SMALL_STATE(2372)] = 52463, + [SMALL_STATE(2373)] = 52522, + [SMALL_STATE(2374)] = 52581, + [SMALL_STATE(2375)] = 52640, + [SMALL_STATE(2376)] = 52757, + [SMALL_STATE(2377)] = 52834, + [SMALL_STATE(2378)] = 52935, + [SMALL_STATE(2379)] = 52994, + [SMALL_STATE(2380)] = 53053, + [SMALL_STATE(2381)] = 53112, + [SMALL_STATE(2382)] = 53171, + [SMALL_STATE(2383)] = 53230, + [SMALL_STATE(2384)] = 53289, + [SMALL_STATE(2385)] = 53348, + [SMALL_STATE(2386)] = 53407, + [SMALL_STATE(2387)] = 53466, + [SMALL_STATE(2388)] = 53525, + [SMALL_STATE(2389)] = 53610, + [SMALL_STATE(2390)] = 53669, + [SMALL_STATE(2391)] = 53728, + [SMALL_STATE(2392)] = 53845, + [SMALL_STATE(2393)] = 53904, + [SMALL_STATE(2394)] = 53963, + [SMALL_STATE(2395)] = 54022, + [SMALL_STATE(2396)] = 54139, + [SMALL_STATE(2397)] = 54198, + [SMALL_STATE(2398)] = 54257, + [SMALL_STATE(2399)] = 54318, + [SMALL_STATE(2400)] = 54405, + [SMALL_STATE(2401)] = 54464, + [SMALL_STATE(2402)] = 54523, + [SMALL_STATE(2403)] = 54586, + [SMALL_STATE(2404)] = 54649, + [SMALL_STATE(2405)] = 54708, + [SMALL_STATE(2406)] = 54767, + [SMALL_STATE(2407)] = 54826, + [SMALL_STATE(2408)] = 54885, + [SMALL_STATE(2409)] = 54944, + [SMALL_STATE(2410)] = 55003, + [SMALL_STATE(2411)] = 55106, + [SMALL_STATE(2412)] = 55223, + [SMALL_STATE(2413)] = 55282, + [SMALL_STATE(2414)] = 55341, + [SMALL_STATE(2415)] = 55400, + [SMALL_STATE(2416)] = 55459, + [SMALL_STATE(2417)] = 55518, + [SMALL_STATE(2418)] = 55635, + [SMALL_STATE(2419)] = 55752, + [SMALL_STATE(2420)] = 55811, + [SMALL_STATE(2421)] = 55870, + [SMALL_STATE(2422)] = 55929, + [SMALL_STATE(2423)] = 55988, + [SMALL_STATE(2424)] = 56105, + [SMALL_STATE(2425)] = 56164, + [SMALL_STATE(2426)] = 56265, + [SMALL_STATE(2427)] = 56324, + [SMALL_STATE(2428)] = 56441, + [SMALL_STATE(2429)] = 56500, + [SMALL_STATE(2430)] = 56617, + [SMALL_STATE(2431)] = 56696, + [SMALL_STATE(2432)] = 56755, + [SMALL_STATE(2433)] = 56814, + [SMALL_STATE(2434)] = 56873, + [SMALL_STATE(2435)] = 56952, + [SMALL_STATE(2436)] = 57011, + [SMALL_STATE(2437)] = 57070, + [SMALL_STATE(2438)] = 57129, + [SMALL_STATE(2439)] = 57188, + [SMALL_STATE(2440)] = 57247, + [SMALL_STATE(2441)] = 57306, + [SMALL_STATE(2442)] = 57423, + [SMALL_STATE(2443)] = 57482, + [SMALL_STATE(2444)] = 57583, + [SMALL_STATE(2445)] = 57642, + [SMALL_STATE(2446)] = 57701, + [SMALL_STATE(2447)] = 57760, + [SMALL_STATE(2448)] = 57819, + [SMALL_STATE(2449)] = 57878, + [SMALL_STATE(2450)] = 57937, + [SMALL_STATE(2451)] = 57996, + [SMALL_STATE(2452)] = 58055, + [SMALL_STATE(2453)] = 58172, + [SMALL_STATE(2454)] = 58231, + [SMALL_STATE(2455)] = 58290, + [SMALL_STATE(2456)] = 58407, + [SMALL_STATE(2457)] = 58468, + [SMALL_STATE(2458)] = 58527, + [SMALL_STATE(2459)] = 58586, + [SMALL_STATE(2460)] = 58645, + [SMALL_STATE(2461)] = 58704, + [SMALL_STATE(2462)] = 58763, + [SMALL_STATE(2463)] = 58822, + [SMALL_STATE(2464)] = 58901, + [SMALL_STATE(2465)] = 58960, + [SMALL_STATE(2466)] = 59023, + [SMALL_STATE(2467)] = 59086, + [SMALL_STATE(2468)] = 59165, + [SMALL_STATE(2469)] = 59252, + [SMALL_STATE(2470)] = 59311, + [SMALL_STATE(2471)] = 59396, + [SMALL_STATE(2472)] = 59455, + [SMALL_STATE(2473)] = 59514, + [SMALL_STATE(2474)] = 59573, + [SMALL_STATE(2475)] = 59652, + [SMALL_STATE(2476)] = 59711, + [SMALL_STATE(2477)] = 59770, + [SMALL_STATE(2478)] = 59887, + [SMALL_STATE(2479)] = 59964, + [SMALL_STATE(2480)] = 60043, + [SMALL_STATE(2481)] = 60102, + [SMALL_STATE(2482)] = 60162, + [SMALL_STATE(2483)] = 60222, + [SMALL_STATE(2484)] = 60282, + [SMALL_STATE(2485)] = 60376, + [SMALL_STATE(2486)] = 60470, + [SMALL_STATE(2487)] = 60564, + [SMALL_STATE(2488)] = 60624, + [SMALL_STATE(2489)] = 60704, + [SMALL_STATE(2490)] = 60764, + [SMALL_STATE(2491)] = 60824, + [SMALL_STATE(2492)] = 60884, + [SMALL_STATE(2493)] = 60972, + [SMALL_STATE(2494)] = 61060, + [SMALL_STATE(2495)] = 61156, + [SMALL_STATE(2496)] = 61250, + [SMALL_STATE(2497)] = 61338, + [SMALL_STATE(2498)] = 61436, + [SMALL_STATE(2499)] = 61520, + [SMALL_STATE(2500)] = 61630, + [SMALL_STATE(2501)] = 61710, + [SMALL_STATE(2502)] = 61770, + [SMALL_STATE(2503)] = 61830, + [SMALL_STATE(2504)] = 61940, + [SMALL_STATE(2505)] = 62052, + [SMALL_STATE(2506)] = 62114, + [SMALL_STATE(2507)] = 62226, + [SMALL_STATE(2508)] = 62326, + [SMALL_STATE(2509)] = 62426, + [SMALL_STATE(2510)] = 62526, + [SMALL_STATE(2511)] = 62614, + [SMALL_STATE(2512)] = 62714, + [SMALL_STATE(2513)] = 62802, + [SMALL_STATE(2514)] = 62900, + [SMALL_STATE(2515)] = 62996, + [SMALL_STATE(2516)] = 63084, + [SMALL_STATE(2517)] = 63168, + [SMALL_STATE(2518)] = 63248, + [SMALL_STATE(2519)] = 63333, + [SMALL_STATE(2520)] = 63390, + [SMALL_STATE(2521)] = 63449, + [SMALL_STATE(2522)] = 63506, + [SMALL_STATE(2523)] = 63563, + [SMALL_STATE(2524)] = 63620, + [SMALL_STATE(2525)] = 63677, + [SMALL_STATE(2526)] = 63734, + [SMALL_STATE(2527)] = 63795, + [SMALL_STATE(2528)] = 63856, + [SMALL_STATE(2529)] = 63913, + [SMALL_STATE(2530)] = 63970, + [SMALL_STATE(2531)] = 64027, + [SMALL_STATE(2532)] = 64086, + [SMALL_STATE(2533)] = 64143, + [SMALL_STATE(2534)] = 64200, + [SMALL_STATE(2535)] = 64257, + [SMALL_STATE(2536)] = 64314, + [SMALL_STATE(2537)] = 64371, + [SMALL_STATE(2538)] = 64428, + [SMALL_STATE(2539)] = 64485, + [SMALL_STATE(2540)] = 64542, + [SMALL_STATE(2541)] = 64649, + [SMALL_STATE(2542)] = 64762, + [SMALL_STATE(2543)] = 64869, + [SMALL_STATE(2544)] = 64926, + [SMALL_STATE(2545)] = 64985, + [SMALL_STATE(2546)] = 65042, + [SMALL_STATE(2547)] = 65099, + [SMALL_STATE(2548)] = 65156, + [SMALL_STATE(2549)] = 65213, + [SMALL_STATE(2550)] = 65270, + [SMALL_STATE(2551)] = 65327, + [SMALL_STATE(2552)] = 65384, + [SMALL_STATE(2553)] = 65441, + [SMALL_STATE(2554)] = 65498, + [SMALL_STATE(2555)] = 65557, + [SMALL_STATE(2556)] = 65668, + [SMALL_STATE(2557)] = 65725, + [SMALL_STATE(2558)] = 65782, + [SMALL_STATE(2559)] = 65893, + [SMALL_STATE(2560)] = 65950, + [SMALL_STATE(2561)] = 66007, + [SMALL_STATE(2562)] = 66068, + [SMALL_STATE(2563)] = 66125, + [SMALL_STATE(2564)] = 66182, + [SMALL_STATE(2565)] = 66239, + [SMALL_STATE(2566)] = 66296, + [SMALL_STATE(2567)] = 66353, + [SMALL_STATE(2568)] = 66410, + [SMALL_STATE(2569)] = 66471, + [SMALL_STATE(2570)] = 66528, + [SMALL_STATE(2571)] = 66585, + [SMALL_STATE(2572)] = 66642, + [SMALL_STATE(2573)] = 66699, + [SMALL_STATE(2574)] = 66782, + [SMALL_STATE(2575)] = 66839, + [SMALL_STATE(2576)] = 66896, + [SMALL_STATE(2577)] = 66983, + [SMALL_STATE(2578)] = 67040, + [SMALL_STATE(2579)] = 67097, + [SMALL_STATE(2580)] = 67154, + [SMALL_STATE(2581)] = 67211, + [SMALL_STATE(2582)] = 67268, + [SMALL_STATE(2583)] = 67325, + [SMALL_STATE(2584)] = 67382, + [SMALL_STATE(2585)] = 67439, + [SMALL_STATE(2586)] = 67496, + [SMALL_STATE(2587)] = 67553, + [SMALL_STATE(2588)] = 67664, + [SMALL_STATE(2589)] = 67721, + [SMALL_STATE(2590)] = 67778, + [SMALL_STATE(2591)] = 67863, + [SMALL_STATE(2592)] = 67920, + [SMALL_STATE(2593)] = 68013, + [SMALL_STATE(2594)] = 68070, + [SMALL_STATE(2595)] = 68127, + [SMALL_STATE(2596)] = 68184, + [SMALL_STATE(2597)] = 68241, + [SMALL_STATE(2598)] = 68298, + [SMALL_STATE(2599)] = 68355, + [SMALL_STATE(2600)] = 68412, + [SMALL_STATE(2601)] = 68497, + [SMALL_STATE(2602)] = 68554, + [SMALL_STATE(2603)] = 68611, + [SMALL_STATE(2604)] = 68668, + [SMALL_STATE(2605)] = 68775, + [SMALL_STATE(2606)] = 68832, + [SMALL_STATE(2607)] = 68923, + [SMALL_STATE(2608)] = 68982, + [SMALL_STATE(2609)] = 69039, + [SMALL_STATE(2610)] = 69098, + [SMALL_STATE(2611)] = 69155, + [SMALL_STATE(2612)] = 69212, + [SMALL_STATE(2613)] = 69269, + [SMALL_STATE(2614)] = 69326, + [SMALL_STATE(2615)] = 69411, + [SMALL_STATE(2616)] = 69468, + [SMALL_STATE(2617)] = 69553, + [SMALL_STATE(2618)] = 69610, + [SMALL_STATE(2619)] = 69691, + [SMALL_STATE(2620)] = 69786, + [SMALL_STATE(2621)] = 69883, + [SMALL_STATE(2622)] = 69940, + [SMALL_STATE(2623)] = 70027, + [SMALL_STATE(2624)] = 70114, + [SMALL_STATE(2625)] = 70171, + [SMALL_STATE(2626)] = 70264, + [SMALL_STATE(2627)] = 70321, + [SMALL_STATE(2628)] = 70412, + [SMALL_STATE(2629)] = 70469, + [SMALL_STATE(2630)] = 70526, + [SMALL_STATE(2631)] = 70583, + [SMALL_STATE(2632)] = 70690, + [SMALL_STATE(2633)] = 70747, + [SMALL_STATE(2634)] = 70832, + [SMALL_STATE(2635)] = 70889, + [SMALL_STATE(2636)] = 70946, + [SMALL_STATE(2637)] = 71003, + [SMALL_STATE(2638)] = 71060, + [SMALL_STATE(2639)] = 71117, + [SMALL_STATE(2640)] = 71174, + [SMALL_STATE(2641)] = 71231, + [SMALL_STATE(2642)] = 71342, + [SMALL_STATE(2643)] = 71401, + [SMALL_STATE(2644)] = 71458, + [SMALL_STATE(2645)] = 71565, + [SMALL_STATE(2646)] = 71622, + [SMALL_STATE(2647)] = 71679, + [SMALL_STATE(2648)] = 71736, + [SMALL_STATE(2649)] = 71793, + [SMALL_STATE(2650)] = 71850, + [SMALL_STATE(2651)] = 71931, + [SMALL_STATE(2652)] = 72041, + [SMALL_STATE(2653)] = 72151, + [SMALL_STATE(2654)] = 72207, + [SMALL_STATE(2655)] = 72315, + [SMALL_STATE(2656)] = 72373, + [SMALL_STATE(2657)] = 72483, + [SMALL_STATE(2658)] = 72539, + [SMALL_STATE(2659)] = 72595, + [SMALL_STATE(2660)] = 72703, + [SMALL_STATE(2661)] = 72811, + [SMALL_STATE(2662)] = 72919, + [SMALL_STATE(2663)] = 73029, + [SMALL_STATE(2664)] = 73139, + [SMALL_STATE(2665)] = 73245, + [SMALL_STATE(2666)] = 73355, + [SMALL_STATE(2667)] = 73465, + [SMALL_STATE(2668)] = 73571, + [SMALL_STATE(2669)] = 73679, + [SMALL_STATE(2670)] = 73787, + [SMALL_STATE(2671)] = 73893, + [SMALL_STATE(2672)] = 74003, + [SMALL_STATE(2673)] = 74111, + [SMALL_STATE(2674)] = 74167, + [SMALL_STATE(2675)] = 74275, + [SMALL_STATE(2676)] = 74335, + [SMALL_STATE(2677)] = 74443, + [SMALL_STATE(2678)] = 74551, + [SMALL_STATE(2679)] = 74613, + [SMALL_STATE(2680)] = 74719, + [SMALL_STATE(2681)] = 74777, + [SMALL_STATE(2682)] = 74885, + [SMALL_STATE(2683)] = 74995, + [SMALL_STATE(2684)] = 75101, + [SMALL_STATE(2685)] = 75211, + [SMALL_STATE(2686)] = 75319, + [SMALL_STATE(2687)] = 75381, + [SMALL_STATE(2688)] = 75489, + [SMALL_STATE(2689)] = 75599, + [SMALL_STATE(2690)] = 75709, + [SMALL_STATE(2691)] = 75819, + [SMALL_STATE(2692)] = 75927, + [SMALL_STATE(2693)] = 75985, + [SMALL_STATE(2694)] = 76040, + [SMALL_STATE(2695)] = 76095, + [SMALL_STATE(2696)] = 76196, + [SMALL_STATE(2697)] = 76251, + [SMALL_STATE(2698)] = 76306, + [SMALL_STATE(2699)] = 76411, + [SMALL_STATE(2700)] = 76516, + [SMALL_STATE(2701)] = 76621, + [SMALL_STATE(2702)] = 76678, + [SMALL_STATE(2703)] = 76733, + [SMALL_STATE(2704)] = 76788, + [SMALL_STATE(2705)] = 76893, + [SMALL_STATE(2706)] = 76994, + [SMALL_STATE(2707)] = 77099, + [SMALL_STATE(2708)] = 77204, + [SMALL_STATE(2709)] = 77259, + [SMALL_STATE(2710)] = 77314, + [SMALL_STATE(2711)] = 77369, + [SMALL_STATE(2712)] = 77474, + [SMALL_STATE(2713)] = 77579, + [SMALL_STATE(2714)] = 77634, + [SMALL_STATE(2715)] = 77739, + [SMALL_STATE(2716)] = 77844, + [SMALL_STATE(2717)] = 77899, + [SMALL_STATE(2718)] = 77954, + [SMALL_STATE(2719)] = 78009, + [SMALL_STATE(2720)] = 78064, + [SMALL_STATE(2721)] = 78119, + [SMALL_STATE(2722)] = 78174, + [SMALL_STATE(2723)] = 78229, + [SMALL_STATE(2724)] = 78284, + [SMALL_STATE(2725)] = 78339, + [SMALL_STATE(2726)] = 78394, + [SMALL_STATE(2727)] = 78449, + [SMALL_STATE(2728)] = 78506, + [SMALL_STATE(2729)] = 78561, + [SMALL_STATE(2730)] = 78666, + [SMALL_STATE(2731)] = 78771, + [SMALL_STATE(2732)] = 78876, + [SMALL_STATE(2733)] = 78931, + [SMALL_STATE(2734)] = 78986, + [SMALL_STATE(2735)] = 79091, + [SMALL_STATE(2736)] = 79196, + [SMALL_STATE(2737)] = 79251, + [SMALL_STATE(2738)] = 79306, + [SMALL_STATE(2739)] = 79361, + [SMALL_STATE(2740)] = 79416, + [SMALL_STATE(2741)] = 79471, + [SMALL_STATE(2742)] = 79526, + [SMALL_STATE(2743)] = 79581, + [SMALL_STATE(2744)] = 79636, + [SMALL_STATE(2745)] = 79691, + [SMALL_STATE(2746)] = 79746, + [SMALL_STATE(2747)] = 79801, + [SMALL_STATE(2748)] = 79856, + [SMALL_STATE(2749)] = 79957, + [SMALL_STATE(2750)] = 80058, + [SMALL_STATE(2751)] = 80113, + [SMALL_STATE(2752)] = 80168, + [SMALL_STATE(2753)] = 80223, + [SMALL_STATE(2754)] = 80278, + [SMALL_STATE(2755)] = 80333, + [SMALL_STATE(2756)] = 80438, + [SMALL_STATE(2757)] = 80543, + [SMALL_STATE(2758)] = 80598, + [SMALL_STATE(2759)] = 80703, + [SMALL_STATE(2760)] = 80808, + [SMALL_STATE(2761)] = 80863, + [SMALL_STATE(2762)] = 80964, + [SMALL_STATE(2763)] = 81019, + [SMALL_STATE(2764)] = 81120, + [SMALL_STATE(2765)] = 81175, + [SMALL_STATE(2766)] = 81230, + [SMALL_STATE(2767)] = 81285, + [SMALL_STATE(2768)] = 81340, + [SMALL_STATE(2769)] = 81395, + [SMALL_STATE(2770)] = 81450, + [SMALL_STATE(2771)] = 81555, + [SMALL_STATE(2772)] = 81610, + [SMALL_STATE(2773)] = 81665, + [SMALL_STATE(2774)] = 81770, + [SMALL_STATE(2775)] = 81825, + [SMALL_STATE(2776)] = 81880, + [SMALL_STATE(2777)] = 81935, + [SMALL_STATE(2778)] = 81990, + [SMALL_STATE(2779)] = 82045, + [SMALL_STATE(2780)] = 82100, + [SMALL_STATE(2781)] = 82155, + [SMALL_STATE(2782)] = 82260, + [SMALL_STATE(2783)] = 82315, + [SMALL_STATE(2784)] = 82370, + [SMALL_STATE(2785)] = 82453, + [SMALL_STATE(2786)] = 82508, + [SMALL_STATE(2787)] = 82563, + [SMALL_STATE(2788)] = 82618, + [SMALL_STATE(2789)] = 82719, + [SMALL_STATE(2790)] = 82774, + [SMALL_STATE(2791)] = 82829, + [SMALL_STATE(2792)] = 82884, + [SMALL_STATE(2793)] = 82939, + [SMALL_STATE(2794)] = 82994, + [SMALL_STATE(2795)] = 83049, + [SMALL_STATE(2796)] = 83104, + [SMALL_STATE(2797)] = 83159, + [SMALL_STATE(2798)] = 83214, + [SMALL_STATE(2799)] = 83269, + [SMALL_STATE(2800)] = 83324, + [SMALL_STATE(2801)] = 83379, + [SMALL_STATE(2802)] = 83434, + [SMALL_STATE(2803)] = 83489, + [SMALL_STATE(2804)] = 83590, + [SMALL_STATE(2805)] = 83647, + [SMALL_STATE(2806)] = 83702, + [SMALL_STATE(2807)] = 83807, + [SMALL_STATE(2808)] = 83890, + [SMALL_STATE(2809)] = 83981, + [SMALL_STATE(2810)] = 84038, + [SMALL_STATE(2811)] = 84143, + [SMALL_STATE(2812)] = 84248, + [SMALL_STATE(2813)] = 84353, + [SMALL_STATE(2814)] = 84410, + [SMALL_STATE(2815)] = 84467, + [SMALL_STATE(2816)] = 84572, + [SMALL_STATE(2817)] = 84673, + [SMALL_STATE(2818)] = 84778, + [SMALL_STATE(2819)] = 84867, + [SMALL_STATE(2820)] = 84950, + [SMALL_STATE(2821)] = 85055, + [SMALL_STATE(2822)] = 85112, + [SMALL_STATE(2823)] = 85167, + [SMALL_STATE(2824)] = 85222, + [SMALL_STATE(2825)] = 85277, + [SMALL_STATE(2826)] = 85356, + [SMALL_STATE(2827)] = 85411, + [SMALL_STATE(2828)] = 85516, + [SMALL_STATE(2829)] = 85621, + [SMALL_STATE(2830)] = 85726, + [SMALL_STATE(2831)] = 85831, + [SMALL_STATE(2832)] = 85936, + [SMALL_STATE(2833)] = 86041, + [SMALL_STATE(2834)] = 86096, + [SMALL_STATE(2835)] = 86151, + [SMALL_STATE(2836)] = 86206, + [SMALL_STATE(2837)] = 86261, + [SMALL_STATE(2838)] = 86366, + [SMALL_STATE(2839)] = 86421, + [SMALL_STATE(2840)] = 86476, + [SMALL_STATE(2841)] = 86531, + [SMALL_STATE(2842)] = 86636, + [SMALL_STATE(2843)] = 86691, + [SMALL_STATE(2844)] = 86792, + [SMALL_STATE(2845)] = 86847, + [SMALL_STATE(2846)] = 86904, + [SMALL_STATE(2847)] = 86961, + [SMALL_STATE(2848)] = 87018, + [SMALL_STATE(2849)] = 87073, + [SMALL_STATE(2850)] = 87174, + [SMALL_STATE(2851)] = 87275, + [SMALL_STATE(2852)] = 87332, + [SMALL_STATE(2853)] = 87387, + [SMALL_STATE(2854)] = 87492, + [SMALL_STATE(2855)] = 87593, + [SMALL_STATE(2856)] = 87652, + [SMALL_STATE(2857)] = 87709, + [SMALL_STATE(2858)] = 87814, + [SMALL_STATE(2859)] = 87919, + [SMALL_STATE(2860)] = 88020, + [SMALL_STATE(2861)] = 88125, + [SMALL_STATE(2862)] = 88184, + [SMALL_STATE(2863)] = 88243, + [SMALL_STATE(2864)] = 88348, + [SMALL_STATE(2865)] = 88453, + [SMALL_STATE(2866)] = 88558, + [SMALL_STATE(2867)] = 88641, + [SMALL_STATE(2868)] = 88724, + [SMALL_STATE(2869)] = 88829, + [SMALL_STATE(2870)] = 88930, + [SMALL_STATE(2871)] = 89035, + [SMALL_STATE(2872)] = 89140, + [SMALL_STATE(2873)] = 89245, + [SMALL_STATE(2874)] = 89350, + [SMALL_STATE(2875)] = 89407, + [SMALL_STATE(2876)] = 89498, + [SMALL_STATE(2877)] = 89587, + [SMALL_STATE(2878)] = 89670, + [SMALL_STATE(2879)] = 89771, + [SMALL_STATE(2880)] = 89850, + [SMALL_STATE(2881)] = 89955, + [SMALL_STATE(2882)] = 90014, + [SMALL_STATE(2883)] = 90074, + [SMALL_STATE(2884)] = 90130, + [SMALL_STATE(2885)] = 90232, + [SMALL_STATE(2886)] = 90334, + [SMALL_STATE(2887)] = 90430, + [SMALL_STATE(2888)] = 90532, + [SMALL_STATE(2889)] = 90634, + [SMALL_STATE(2890)] = 90736, + [SMALL_STATE(2891)] = 90792, + [SMALL_STATE(2892)] = 90894, + [SMALL_STATE(2893)] = 90996, + [SMALL_STATE(2894)] = 91098, + [SMALL_STATE(2895)] = 91158, + [SMALL_STATE(2896)] = 91260, + [SMALL_STATE(2897)] = 91362, + [SMALL_STATE(2898)] = 91464, + [SMALL_STATE(2899)] = 91566, + [SMALL_STATE(2900)] = 91660, + [SMALL_STATE(2901)] = 91756, + [SMALL_STATE(2902)] = 91858, + [SMALL_STATE(2903)] = 91952, + [SMALL_STATE(2904)] = 92054, + [SMALL_STATE(2905)] = 92110, + [SMALL_STATE(2906)] = 92212, + [SMALL_STATE(2907)] = 92266, + [SMALL_STATE(2908)] = 92368, + [SMALL_STATE(2909)] = 92470, + [SMALL_STATE(2910)] = 92524, + [SMALL_STATE(2911)] = 92579, + [SMALL_STATE(2912)] = 92632, + [SMALL_STATE(2913)] = 92721, + [SMALL_STATE(2914)] = 92774, + [SMALL_STATE(2915)] = 92827, + [SMALL_STATE(2916)] = 92880, + [SMALL_STATE(2917)] = 92933, + [SMALL_STATE(2918)] = 92986, + [SMALL_STATE(2919)] = 93041, + [SMALL_STATE(2920)] = 93130, + [SMALL_STATE(2921)] = 93183, + [SMALL_STATE(2922)] = 93236, + [SMALL_STATE(2923)] = 93289, + [SMALL_STATE(2924)] = 93342, + [SMALL_STATE(2925)] = 93397, + [SMALL_STATE(2926)] = 93450, + [SMALL_STATE(2927)] = 93503, + [SMALL_STATE(2928)] = 93556, + [SMALL_STATE(2929)] = 93611, + [SMALL_STATE(2930)] = 93666, + [SMALL_STATE(2931)] = 93721, + [SMALL_STATE(2932)] = 93774, + [SMALL_STATE(2933)] = 93827, + [SMALL_STATE(2934)] = 93880, + [SMALL_STATE(2935)] = 93933, + [SMALL_STATE(2936)] = 93986, + [SMALL_STATE(2937)] = 94041, + [SMALL_STATE(2938)] = 94094, + [SMALL_STATE(2939)] = 94147, + [SMALL_STATE(2940)] = 94202, + [SMALL_STATE(2941)] = 94257, + [SMALL_STATE(2942)] = 94310, + [SMALL_STATE(2943)] = 94365, + [SMALL_STATE(2944)] = 94418, + [SMALL_STATE(2945)] = 94507, + [SMALL_STATE(2946)] = 94560, + [SMALL_STATE(2947)] = 94649, + [SMALL_STATE(2948)] = 94738, + [SMALL_STATE(2949)] = 94791, + [SMALL_STATE(2950)] = 94846, + [SMALL_STATE(2951)] = 94901, + [SMALL_STATE(2952)] = 94990, + [SMALL_STATE(2953)] = 95043, + [SMALL_STATE(2954)] = 95098, + [SMALL_STATE(2955)] = 95151, + [SMALL_STATE(2956)] = 95206, + [SMALL_STATE(2957)] = 95259, + [SMALL_STATE(2958)] = 95312, + [SMALL_STATE(2959)] = 95407, + [SMALL_STATE(2960)] = 95460, + [SMALL_STATE(2961)] = 95514, + [SMALL_STATE(2962)] = 95568, + [SMALL_STATE(2963)] = 95624, + [SMALL_STATE(2964)] = 95678, + [SMALL_STATE(2965)] = 95732, + [SMALL_STATE(2966)] = 95788, + [SMALL_STATE(2967)] = 95842, + [SMALL_STATE(2968)] = 95896, + [SMALL_STATE(2969)] = 95952, + [SMALL_STATE(2970)] = 96006, + [SMALL_STATE(2971)] = 96060, + [SMALL_STATE(2972)] = 96114, + [SMALL_STATE(2973)] = 96168, + [SMALL_STATE(2974)] = 96224, + [SMALL_STATE(2975)] = 96278, + [SMALL_STATE(2976)] = 96334, + [SMALL_STATE(2977)] = 96390, + [SMALL_STATE(2978)] = 96444, + [SMALL_STATE(2979)] = 96498, + [SMALL_STATE(2980)] = 96552, + [SMALL_STATE(2981)] = 96606, + [SMALL_STATE(2982)] = 96662, + [SMALL_STATE(2983)] = 96718, + [SMALL_STATE(2984)] = 96772, + [SMALL_STATE(2985)] = 96828, + [SMALL_STATE(2986)] = 96884, + [SMALL_STATE(2987)] = 96938, + [SMALL_STATE(2988)] = 96994, + [SMALL_STATE(2989)] = 97048, + [SMALL_STATE(2990)] = 97104, + [SMALL_STATE(2991)] = 97160, + [SMALL_STATE(2992)] = 97214, + [SMALL_STATE(2993)] = 97268, + [SMALL_STATE(2994)] = 97322, + [SMALL_STATE(2995)] = 97376, + [SMALL_STATE(2996)] = 97430, + [SMALL_STATE(2997)] = 97486, + [SMALL_STATE(2998)] = 97540, + [SMALL_STATE(2999)] = 97594, + [SMALL_STATE(3000)] = 97650, + [SMALL_STATE(3001)] = 97704, + [SMALL_STATE(3002)] = 97758, + [SMALL_STATE(3003)] = 97814, + [SMALL_STATE(3004)] = 97870, + [SMALL_STATE(3005)] = 97926, + [SMALL_STATE(3006)] = 97980, + [SMALL_STATE(3007)] = 98036, + [SMALL_STATE(3008)] = 98090, + [SMALL_STATE(3009)] = 98144, + [SMALL_STATE(3010)] = 98198, + [SMALL_STATE(3011)] = 98252, + [SMALL_STATE(3012)] = 98306, + [SMALL_STATE(3013)] = 98360, + [SMALL_STATE(3014)] = 98416, + [SMALL_STATE(3015)] = 98470, + [SMALL_STATE(3016)] = 98526, + [SMALL_STATE(3017)] = 98582, + [SMALL_STATE(3018)] = 98636, + [SMALL_STATE(3019)] = 98692, + [SMALL_STATE(3020)] = 98746, + [SMALL_STATE(3021)] = 98800, + [SMALL_STATE(3022)] = 98854, + [SMALL_STATE(3023)] = 98910, + [SMALL_STATE(3024)] = 98964, + [SMALL_STATE(3025)] = 99018, + [SMALL_STATE(3026)] = 99072, + [SMALL_STATE(3027)] = 99128, + [SMALL_STATE(3028)] = 99184, + [SMALL_STATE(3029)] = 99240, + [SMALL_STATE(3030)] = 99294, + [SMALL_STATE(3031)] = 99348, + [SMALL_STATE(3032)] = 99402, + [SMALL_STATE(3033)] = 99458, + [SMALL_STATE(3034)] = 99512, + [SMALL_STATE(3035)] = 99566, + [SMALL_STATE(3036)] = 99655, + [SMALL_STATE(3037)] = 99744, + [SMALL_STATE(3038)] = 99830, + [SMALL_STATE(3039)] = 99916, + [SMALL_STATE(3040)] = 100002, + [SMALL_STATE(3041)] = 100088, + [SMALL_STATE(3042)] = 100174, + [SMALL_STATE(3043)] = 100260, + [SMALL_STATE(3044)] = 100346, + [SMALL_STATE(3045)] = 100432, + [SMALL_STATE(3046)] = 100518, + [SMALL_STATE(3047)] = 100604, + [SMALL_STATE(3048)] = 100664, + [SMALL_STATE(3049)] = 100750, + [SMALL_STATE(3050)] = 100836, + [SMALL_STATE(3051)] = 100922, + [SMALL_STATE(3052)] = 101008, + [SMALL_STATE(3053)] = 101094, + [SMALL_STATE(3054)] = 101180, + [SMALL_STATE(3055)] = 101266, + [SMALL_STATE(3056)] = 101352, + [SMALL_STATE(3057)] = 101438, + [SMALL_STATE(3058)] = 101524, + [SMALL_STATE(3059)] = 101610, + [SMALL_STATE(3060)] = 101696, + [SMALL_STATE(3061)] = 101782, + [SMALL_STATE(3062)] = 101868, + [SMALL_STATE(3063)] = 101954, + [SMALL_STATE(3064)] = 102040, + [SMALL_STATE(3065)] = 102126, + [SMALL_STATE(3066)] = 102212, + [SMALL_STATE(3067)] = 102298, + [SMALL_STATE(3068)] = 102384, + [SMALL_STATE(3069)] = 102470, + [SMALL_STATE(3070)] = 102556, + [SMALL_STATE(3071)] = 102642, + [SMALL_STATE(3072)] = 102728, + [SMALL_STATE(3073)] = 102814, + [SMALL_STATE(3074)] = 102900, + [SMALL_STATE(3075)] = 102986, + [SMALL_STATE(3076)] = 103069, + [SMALL_STATE(3077)] = 103152, + [SMALL_STATE(3078)] = 103235, + [SMALL_STATE(3079)] = 103318, + [SMALL_STATE(3080)] = 103401, + [SMALL_STATE(3081)] = 103484, + [SMALL_STATE(3082)] = 103567, + [SMALL_STATE(3083)] = 103650, + [SMALL_STATE(3084)] = 103733, + [SMALL_STATE(3085)] = 103816, + [SMALL_STATE(3086)] = 103899, + [SMALL_STATE(3087)] = 103982, + [SMALL_STATE(3088)] = 104065, + [SMALL_STATE(3089)] = 104148, + [SMALL_STATE(3090)] = 104231, + [SMALL_STATE(3091)] = 104314, + [SMALL_STATE(3092)] = 104397, + [SMALL_STATE(3093)] = 104480, + [SMALL_STATE(3094)] = 104563, + [SMALL_STATE(3095)] = 104646, + [SMALL_STATE(3096)] = 104729, + [SMALL_STATE(3097)] = 104812, + [SMALL_STATE(3098)] = 104895, + [SMALL_STATE(3099)] = 104978, + [SMALL_STATE(3100)] = 105061, + [SMALL_STATE(3101)] = 105144, + [SMALL_STATE(3102)] = 105227, + [SMALL_STATE(3103)] = 105310, + [SMALL_STATE(3104)] = 105393, + [SMALL_STATE(3105)] = 105476, + [SMALL_STATE(3106)] = 105559, + [SMALL_STATE(3107)] = 105642, + [SMALL_STATE(3108)] = 105725, + [SMALL_STATE(3109)] = 105808, + [SMALL_STATE(3110)] = 105891, + [SMALL_STATE(3111)] = 105974, + [SMALL_STATE(3112)] = 106057, + [SMALL_STATE(3113)] = 106140, + [SMALL_STATE(3114)] = 106223, + [SMALL_STATE(3115)] = 106306, + [SMALL_STATE(3116)] = 106389, + [SMALL_STATE(3117)] = 106472, + [SMALL_STATE(3118)] = 106555, + [SMALL_STATE(3119)] = 106638, + [SMALL_STATE(3120)] = 106721, + [SMALL_STATE(3121)] = 106804, + [SMALL_STATE(3122)] = 106887, + [SMALL_STATE(3123)] = 106970, + [SMALL_STATE(3124)] = 107053, + [SMALL_STATE(3125)] = 107136, + [SMALL_STATE(3126)] = 107219, + [SMALL_STATE(3127)] = 107302, + [SMALL_STATE(3128)] = 107385, + [SMALL_STATE(3129)] = 107468, + [SMALL_STATE(3130)] = 107551, + [SMALL_STATE(3131)] = 107634, + [SMALL_STATE(3132)] = 107717, + [SMALL_STATE(3133)] = 107800, + [SMALL_STATE(3134)] = 107883, + [SMALL_STATE(3135)] = 107966, + [SMALL_STATE(3136)] = 108049, + [SMALL_STATE(3137)] = 108132, + [SMALL_STATE(3138)] = 108215, + [SMALL_STATE(3139)] = 108298, + [SMALL_STATE(3140)] = 108381, + [SMALL_STATE(3141)] = 108464, + [SMALL_STATE(3142)] = 108547, + [SMALL_STATE(3143)] = 108630, + [SMALL_STATE(3144)] = 108713, + [SMALL_STATE(3145)] = 108796, + [SMALL_STATE(3146)] = 108879, + [SMALL_STATE(3147)] = 108962, + [SMALL_STATE(3148)] = 109045, + [SMALL_STATE(3149)] = 109128, + [SMALL_STATE(3150)] = 109211, + [SMALL_STATE(3151)] = 109294, + [SMALL_STATE(3152)] = 109377, + [SMALL_STATE(3153)] = 109460, + [SMALL_STATE(3154)] = 109543, + [SMALL_STATE(3155)] = 109626, + [SMALL_STATE(3156)] = 109709, + [SMALL_STATE(3157)] = 109792, + [SMALL_STATE(3158)] = 109875, + [SMALL_STATE(3159)] = 109958, + [SMALL_STATE(3160)] = 110041, + [SMALL_STATE(3161)] = 110124, + [SMALL_STATE(3162)] = 110207, + [SMALL_STATE(3163)] = 110290, + [SMALL_STATE(3164)] = 110373, + [SMALL_STATE(3165)] = 110456, + [SMALL_STATE(3166)] = 110539, + [SMALL_STATE(3167)] = 110622, + [SMALL_STATE(3168)] = 110705, + [SMALL_STATE(3169)] = 110788, + [SMALL_STATE(3170)] = 110871, + [SMALL_STATE(3171)] = 110954, + [SMALL_STATE(3172)] = 111037, + [SMALL_STATE(3173)] = 111120, + [SMALL_STATE(3174)] = 111203, + [SMALL_STATE(3175)] = 111286, + [SMALL_STATE(3176)] = 111369, + [SMALL_STATE(3177)] = 111452, + [SMALL_STATE(3178)] = 111535, + [SMALL_STATE(3179)] = 111618, + [SMALL_STATE(3180)] = 111701, + [SMALL_STATE(3181)] = 111784, + [SMALL_STATE(3182)] = 111867, + [SMALL_STATE(3183)] = 111950, + [SMALL_STATE(3184)] = 112033, + [SMALL_STATE(3185)] = 112116, + [SMALL_STATE(3186)] = 112199, + [SMALL_STATE(3187)] = 112282, + [SMALL_STATE(3188)] = 112365, + [SMALL_STATE(3189)] = 112448, + [SMALL_STATE(3190)] = 112531, + [SMALL_STATE(3191)] = 112614, + [SMALL_STATE(3192)] = 112697, + [SMALL_STATE(3193)] = 112780, + [SMALL_STATE(3194)] = 112863, + [SMALL_STATE(3195)] = 112946, + [SMALL_STATE(3196)] = 113029, + [SMALL_STATE(3197)] = 113112, + [SMALL_STATE(3198)] = 113195, + [SMALL_STATE(3199)] = 113278, + [SMALL_STATE(3200)] = 113361, + [SMALL_STATE(3201)] = 113444, + [SMALL_STATE(3202)] = 113527, + [SMALL_STATE(3203)] = 113610, + [SMALL_STATE(3204)] = 113693, + [SMALL_STATE(3205)] = 113776, + [SMALL_STATE(3206)] = 113859, + [SMALL_STATE(3207)] = 113942, + [SMALL_STATE(3208)] = 114025, + [SMALL_STATE(3209)] = 114108, + [SMALL_STATE(3210)] = 114191, + [SMALL_STATE(3211)] = 114274, + [SMALL_STATE(3212)] = 114357, + [SMALL_STATE(3213)] = 114440, + [SMALL_STATE(3214)] = 114523, + [SMALL_STATE(3215)] = 114606, + [SMALL_STATE(3216)] = 114689, + [SMALL_STATE(3217)] = 114772, + [SMALL_STATE(3218)] = 114855, + [SMALL_STATE(3219)] = 114938, + [SMALL_STATE(3220)] = 115021, + [SMALL_STATE(3221)] = 115104, + [SMALL_STATE(3222)] = 115187, + [SMALL_STATE(3223)] = 115270, + [SMALL_STATE(3224)] = 115353, + [SMALL_STATE(3225)] = 115436, + [SMALL_STATE(3226)] = 115519, + [SMALL_STATE(3227)] = 115602, + [SMALL_STATE(3228)] = 115685, + [SMALL_STATE(3229)] = 115768, + [SMALL_STATE(3230)] = 115851, + [SMALL_STATE(3231)] = 115934, + [SMALL_STATE(3232)] = 116017, + [SMALL_STATE(3233)] = 116100, + [SMALL_STATE(3234)] = 116183, + [SMALL_STATE(3235)] = 116266, + [SMALL_STATE(3236)] = 116349, + [SMALL_STATE(3237)] = 116432, + [SMALL_STATE(3238)] = 116515, + [SMALL_STATE(3239)] = 116598, + [SMALL_STATE(3240)] = 116681, + [SMALL_STATE(3241)] = 116764, + [SMALL_STATE(3242)] = 116847, + [SMALL_STATE(3243)] = 116930, + [SMALL_STATE(3244)] = 117013, + [SMALL_STATE(3245)] = 117096, + [SMALL_STATE(3246)] = 117179, + [SMALL_STATE(3247)] = 117262, + [SMALL_STATE(3248)] = 117345, + [SMALL_STATE(3249)] = 117428, + [SMALL_STATE(3250)] = 117511, + [SMALL_STATE(3251)] = 117594, + [SMALL_STATE(3252)] = 117677, + [SMALL_STATE(3253)] = 117760, + [SMALL_STATE(3254)] = 117843, + [SMALL_STATE(3255)] = 117926, + [SMALL_STATE(3256)] = 118009, + [SMALL_STATE(3257)] = 118092, + [SMALL_STATE(3258)] = 118175, + [SMALL_STATE(3259)] = 118258, + [SMALL_STATE(3260)] = 118341, + [SMALL_STATE(3261)] = 118424, + [SMALL_STATE(3262)] = 118507, + [SMALL_STATE(3263)] = 118590, + [SMALL_STATE(3264)] = 118673, + [SMALL_STATE(3265)] = 118756, + [SMALL_STATE(3266)] = 118839, + [SMALL_STATE(3267)] = 118922, + [SMALL_STATE(3268)] = 119005, + [SMALL_STATE(3269)] = 119088, + [SMALL_STATE(3270)] = 119171, + [SMALL_STATE(3271)] = 119254, + [SMALL_STATE(3272)] = 119337, + [SMALL_STATE(3273)] = 119420, + [SMALL_STATE(3274)] = 119503, + [SMALL_STATE(3275)] = 119586, + [SMALL_STATE(3276)] = 119669, + [SMALL_STATE(3277)] = 119752, + [SMALL_STATE(3278)] = 119835, + [SMALL_STATE(3279)] = 119918, + [SMALL_STATE(3280)] = 120001, + [SMALL_STATE(3281)] = 120084, + [SMALL_STATE(3282)] = 120167, + [SMALL_STATE(3283)] = 120250, + [SMALL_STATE(3284)] = 120333, + [SMALL_STATE(3285)] = 120416, + [SMALL_STATE(3286)] = 120499, + [SMALL_STATE(3287)] = 120582, + [SMALL_STATE(3288)] = 120665, + [SMALL_STATE(3289)] = 120748, + [SMALL_STATE(3290)] = 120831, + [SMALL_STATE(3291)] = 120914, + [SMALL_STATE(3292)] = 120997, + [SMALL_STATE(3293)] = 121080, + [SMALL_STATE(3294)] = 121163, + [SMALL_STATE(3295)] = 121246, + [SMALL_STATE(3296)] = 121329, + [SMALL_STATE(3297)] = 121412, + [SMALL_STATE(3298)] = 121495, + [SMALL_STATE(3299)] = 121578, + [SMALL_STATE(3300)] = 121661, + [SMALL_STATE(3301)] = 121744, + [SMALL_STATE(3302)] = 121827, + [SMALL_STATE(3303)] = 121910, + [SMALL_STATE(3304)] = 121993, + [SMALL_STATE(3305)] = 122076, + [SMALL_STATE(3306)] = 122159, + [SMALL_STATE(3307)] = 122242, + [SMALL_STATE(3308)] = 122325, + [SMALL_STATE(3309)] = 122408, + [SMALL_STATE(3310)] = 122491, + [SMALL_STATE(3311)] = 122574, + [SMALL_STATE(3312)] = 122657, + [SMALL_STATE(3313)] = 122740, + [SMALL_STATE(3314)] = 122823, + [SMALL_STATE(3315)] = 122906, + [SMALL_STATE(3316)] = 122989, + [SMALL_STATE(3317)] = 123072, + [SMALL_STATE(3318)] = 123155, + [SMALL_STATE(3319)] = 123238, + [SMALL_STATE(3320)] = 123321, + [SMALL_STATE(3321)] = 123404, + [SMALL_STATE(3322)] = 123487, + [SMALL_STATE(3323)] = 123570, + [SMALL_STATE(3324)] = 123653, + [SMALL_STATE(3325)] = 123736, + [SMALL_STATE(3326)] = 123819, + [SMALL_STATE(3327)] = 123902, + [SMALL_STATE(3328)] = 123985, + [SMALL_STATE(3329)] = 124068, + [SMALL_STATE(3330)] = 124151, + [SMALL_STATE(3331)] = 124234, + [SMALL_STATE(3332)] = 124317, + [SMALL_STATE(3333)] = 124400, + [SMALL_STATE(3334)] = 124483, + [SMALL_STATE(3335)] = 124566, + [SMALL_STATE(3336)] = 124649, + [SMALL_STATE(3337)] = 124732, + [SMALL_STATE(3338)] = 124815, + [SMALL_STATE(3339)] = 124898, + [SMALL_STATE(3340)] = 124981, + [SMALL_STATE(3341)] = 125064, + [SMALL_STATE(3342)] = 125147, + [SMALL_STATE(3343)] = 125215, + [SMALL_STATE(3344)] = 125283, + [SMALL_STATE(3345)] = 125351, + [SMALL_STATE(3346)] = 125419, + [SMALL_STATE(3347)] = 125487, + [SMALL_STATE(3348)] = 125555, + [SMALL_STATE(3349)] = 125623, + [SMALL_STATE(3350)] = 125691, + [SMALL_STATE(3351)] = 125759, + [SMALL_STATE(3352)] = 125827, + [SMALL_STATE(3353)] = 125901, + [SMALL_STATE(3354)] = 125969, + [SMALL_STATE(3355)] = 126037, + [SMALL_STATE(3356)] = 126105, + [SMALL_STATE(3357)] = 126179, + [SMALL_STATE(3358)] = 126247, + [SMALL_STATE(3359)] = 126316, + [SMALL_STATE(3360)] = 126353, + [SMALL_STATE(3361)] = 126390, + [SMALL_STATE(3362)] = 126427, + [SMALL_STATE(3363)] = 126464, + [SMALL_STATE(3364)] = 126501, + [SMALL_STATE(3365)] = 126538, + [SMALL_STATE(3366)] = 126589, + [SMALL_STATE(3367)] = 126622, + [SMALL_STATE(3368)] = 126655, + [SMALL_STATE(3369)] = 126702, + [SMALL_STATE(3370)] = 126735, + [SMALL_STATE(3371)] = 126782, + [SMALL_STATE(3372)] = 126815, + [SMALL_STATE(3373)] = 126862, + [SMALL_STATE(3374)] = 126895, + [SMALL_STATE(3375)] = 126925, + [SMALL_STATE(3376)] = 126959, + [SMALL_STATE(3377)] = 126989, + [SMALL_STATE(3378)] = 127025, + [SMALL_STATE(3379)] = 127059, + [SMALL_STATE(3380)] = 127089, + [SMALL_STATE(3381)] = 127122, + [SMALL_STATE(3382)] = 127155, + [SMALL_STATE(3383)] = 127186, + [SMALL_STATE(3384)] = 127219, + [SMALL_STATE(3385)] = 127252, + [SMALL_STATE(3386)] = 127285, + [SMALL_STATE(3387)] = 127316, + [SMALL_STATE(3388)] = 127349, + [SMALL_STATE(3389)] = 127382, + [SMALL_STATE(3390)] = 127412, + [SMALL_STATE(3391)] = 127444, + [SMALL_STATE(3392)] = 127492, + [SMALL_STATE(3393)] = 127540, + [SMALL_STATE(3394)] = 127570, + [SMALL_STATE(3395)] = 127616, + [SMALL_STATE(3396)] = 127663, + [SMALL_STATE(3397)] = 127710, + [SMALL_STATE(3398)] = 127739, + [SMALL_STATE(3399)] = 127786, + [SMALL_STATE(3400)] = 127815, + [SMALL_STATE(3401)] = 127862, + [SMALL_STATE(3402)] = 127897, + [SMALL_STATE(3403)] = 127944, + [SMALL_STATE(3404)] = 127991, + [SMALL_STATE(3405)] = 128038, + [SMALL_STATE(3406)] = 128073, + [SMALL_STATE(3407)] = 128120, + [SMALL_STATE(3408)] = 128167, + [SMALL_STATE(3409)] = 128212, + [SMALL_STATE(3410)] = 128243, + [SMALL_STATE(3411)] = 128290, + [SMALL_STATE(3412)] = 128337, + [SMALL_STATE(3413)] = 128384, + [SMALL_STATE(3414)] = 128413, + [SMALL_STATE(3415)] = 128442, + [SMALL_STATE(3416)] = 128489, + [SMALL_STATE(3417)] = 128518, + [SMALL_STATE(3418)] = 128565, + [SMALL_STATE(3419)] = 128594, + [SMALL_STATE(3420)] = 128629, + [SMALL_STATE(3421)] = 128664, + [SMALL_STATE(3422)] = 128699, + [SMALL_STATE(3423)] = 128746, + [SMALL_STATE(3424)] = 128793, + [SMALL_STATE(3425)] = 128840, + [SMALL_STATE(3426)] = 128887, + [SMALL_STATE(3427)] = 128934, + [SMALL_STATE(3428)] = 128981, + [SMALL_STATE(3429)] = 129028, + [SMALL_STATE(3430)] = 129075, + [SMALL_STATE(3431)] = 129110, + [SMALL_STATE(3432)] = 129157, + [SMALL_STATE(3433)] = 129204, + [SMALL_STATE(3434)] = 129235, + [SMALL_STATE(3435)] = 129270, + [SMALL_STATE(3436)] = 129317, + [SMALL_STATE(3437)] = 129346, + [SMALL_STATE(3438)] = 129393, + [SMALL_STATE(3439)] = 129440, + [SMALL_STATE(3440)] = 129487, + [SMALL_STATE(3441)] = 129522, + [SMALL_STATE(3442)] = 129548, + [SMALL_STATE(3443)] = 129580, + [SMALL_STATE(3444)] = 129610, + [SMALL_STATE(3445)] = 129636, + [SMALL_STATE(3446)] = 129662, + [SMALL_STATE(3447)] = 129693, + [SMALL_STATE(3448)] = 129720, + [SMALL_STATE(3449)] = 129747, + [SMALL_STATE(3450)] = 129771, + [SMALL_STATE(3451)] = 129795, + [SMALL_STATE(3452)] = 129819, + [SMALL_STATE(3453)] = 129843, + [SMALL_STATE(3454)] = 129873, + [SMALL_STATE(3455)] = 129897, + [SMALL_STATE(3456)] = 129921, + [SMALL_STATE(3457)] = 129945, + [SMALL_STATE(3458)] = 129969, + [SMALL_STATE(3459)] = 129993, + [SMALL_STATE(3460)] = 130017, + [SMALL_STATE(3461)] = 130041, + [SMALL_STATE(3462)] = 130065, + [SMALL_STATE(3463)] = 130089, + [SMALL_STATE(3464)] = 130113, + [SMALL_STATE(3465)] = 130137, + [SMALL_STATE(3466)] = 130161, + [SMALL_STATE(3467)] = 130185, + [SMALL_STATE(3468)] = 130209, + [SMALL_STATE(3469)] = 130237, + [SMALL_STATE(3470)] = 130261, + [SMALL_STATE(3471)] = 130285, + [SMALL_STATE(3472)] = 130309, + [SMALL_STATE(3473)] = 130337, + [SMALL_STATE(3474)] = 130361, + [SMALL_STATE(3475)] = 130388, + [SMALL_STATE(3476)] = 130417, + [SMALL_STATE(3477)] = 130456, + [SMALL_STATE(3478)] = 130492, + [SMALL_STATE(3479)] = 130516, + [SMALL_STATE(3480)] = 130542, + [SMALL_STATE(3481)] = 130576, + [SMALL_STATE(3482)] = 130598, + [SMALL_STATE(3483)] = 130632, + [SMALL_STATE(3484)] = 130666, + [SMALL_STATE(3485)] = 130700, + [SMALL_STATE(3486)] = 130734, + [SMALL_STATE(3487)] = 130768, + [SMALL_STATE(3488)] = 130802, + [SMALL_STATE(3489)] = 130836, + [SMALL_STATE(3490)] = 130870, + [SMALL_STATE(3491)] = 130898, + [SMALL_STATE(3492)] = 130926, + [SMALL_STATE(3493)] = 130960, + [SMALL_STATE(3494)] = 130994, + [SMALL_STATE(3495)] = 131028, + [SMALL_STATE(3496)] = 131051, + [SMALL_STATE(3497)] = 131074, + [SMALL_STATE(3498)] = 131103, + [SMALL_STATE(3499)] = 131128, + [SMALL_STATE(3500)] = 131149, + [SMALL_STATE(3501)] = 131170, + [SMALL_STATE(3502)] = 131193, + [SMALL_STATE(3503)] = 131218, + [SMALL_STATE(3504)] = 131241, + [SMALL_STATE(3505)] = 131262, + [SMALL_STATE(3506)] = 131283, + [SMALL_STATE(3507)] = 131304, + [SMALL_STATE(3508)] = 131325, + [SMALL_STATE(3509)] = 131346, + [SMALL_STATE(3510)] = 131381, + [SMALL_STATE(3511)] = 131402, + [SMALL_STATE(3512)] = 131423, + [SMALL_STATE(3513)] = 131451, + [SMALL_STATE(3514)] = 131479, + [SMALL_STATE(3515)] = 131511, + [SMALL_STATE(3516)] = 131539, + [SMALL_STATE(3517)] = 131567, + [SMALL_STATE(3518)] = 131595, + [SMALL_STATE(3519)] = 131623, + [SMALL_STATE(3520)] = 131647, + [SMALL_STATE(3521)] = 131675, + [SMALL_STATE(3522)] = 131703, + [SMALL_STATE(3523)] = 131731, + [SMALL_STATE(3524)] = 131759, + [SMALL_STATE(3525)] = 131787, + [SMALL_STATE(3526)] = 131815, + [SMALL_STATE(3527)] = 131843, + [SMALL_STATE(3528)] = 131873, + [SMALL_STATE(3529)] = 131901, + [SMALL_STATE(3530)] = 131929, + [SMALL_STATE(3531)] = 131957, + [SMALL_STATE(3532)] = 131977, + [SMALL_STATE(3533)] = 131997, + [SMALL_STATE(3534)] = 132025, + [SMALL_STATE(3535)] = 132053, + [SMALL_STATE(3536)] = 132081, + [SMALL_STATE(3537)] = 132109, + [SMALL_STATE(3538)] = 132137, + [SMALL_STATE(3539)] = 132167, + [SMALL_STATE(3540)] = 132195, + [SMALL_STATE(3541)] = 132223, + [SMALL_STATE(3542)] = 132251, + [SMALL_STATE(3543)] = 132283, + [SMALL_STATE(3544)] = 132311, + [SMALL_STATE(3545)] = 132331, + [SMALL_STATE(3546)] = 132358, + [SMALL_STATE(3547)] = 132385, + [SMALL_STATE(3548)] = 132412, + [SMALL_STATE(3549)] = 132439, + [SMALL_STATE(3550)] = 132466, + [SMALL_STATE(3551)] = 132493, + [SMALL_STATE(3552)] = 132522, + [SMALL_STATE(3553)] = 132543, + [SMALL_STATE(3554)] = 132566, + [SMALL_STATE(3555)] = 132593, + [SMALL_STATE(3556)] = 132616, + [SMALL_STATE(3557)] = 132643, + [SMALL_STATE(3558)] = 132670, + [SMALL_STATE(3559)] = 132697, + [SMALL_STATE(3560)] = 132724, + [SMALL_STATE(3561)] = 132751, + [SMALL_STATE(3562)] = 132778, + [SMALL_STATE(3563)] = 132805, + [SMALL_STATE(3564)] = 132832, + [SMALL_STATE(3565)] = 132859, + [SMALL_STATE(3566)] = 132886, + [SMALL_STATE(3567)] = 132913, + [SMALL_STATE(3568)] = 132940, + [SMALL_STATE(3569)] = 132967, + [SMALL_STATE(3570)] = 132994, + [SMALL_STATE(3571)] = 133021, + [SMALL_STATE(3572)] = 133048, + [SMALL_STATE(3573)] = 133075, + [SMALL_STATE(3574)] = 133102, + [SMALL_STATE(3575)] = 133129, + [SMALL_STATE(3576)] = 133156, + [SMALL_STATE(3577)] = 133183, + [SMALL_STATE(3578)] = 133210, + [SMALL_STATE(3579)] = 133237, + [SMALL_STATE(3580)] = 133264, + [SMALL_STATE(3581)] = 133291, + [SMALL_STATE(3582)] = 133318, + [SMALL_STATE(3583)] = 133345, + [SMALL_STATE(3584)] = 133372, + [SMALL_STATE(3585)] = 133397, + [SMALL_STATE(3586)] = 133424, + [SMALL_STATE(3587)] = 133451, + [SMALL_STATE(3588)] = 133478, + [SMALL_STATE(3589)] = 133505, + [SMALL_STATE(3590)] = 133532, + [SMALL_STATE(3591)] = 133559, + [SMALL_STATE(3592)] = 133586, + [SMALL_STATE(3593)] = 133613, + [SMALL_STATE(3594)] = 133640, + [SMALL_STATE(3595)] = 133663, + [SMALL_STATE(3596)] = 133690, + [SMALL_STATE(3597)] = 133717, + [SMALL_STATE(3598)] = 133744, + [SMALL_STATE(3599)] = 133771, + [SMALL_STATE(3600)] = 133798, + [SMALL_STATE(3601)] = 133825, + [SMALL_STATE(3602)] = 133852, + [SMALL_STATE(3603)] = 133879, + [SMALL_STATE(3604)] = 133906, + [SMALL_STATE(3605)] = 133933, + [SMALL_STATE(3606)] = 133960, + [SMALL_STATE(3607)] = 133987, + [SMALL_STATE(3608)] = 134014, + [SMALL_STATE(3609)] = 134041, + [SMALL_STATE(3610)] = 134068, + [SMALL_STATE(3611)] = 134095, + [SMALL_STATE(3612)] = 134122, + [SMALL_STATE(3613)] = 134149, + [SMALL_STATE(3614)] = 134174, + [SMALL_STATE(3615)] = 134199, + [SMALL_STATE(3616)] = 134226, + [SMALL_STATE(3617)] = 134253, + [SMALL_STATE(3618)] = 134280, + [SMALL_STATE(3619)] = 134307, + [SMALL_STATE(3620)] = 134330, + [SMALL_STATE(3621)] = 134357, + [SMALL_STATE(3622)] = 134384, + [SMALL_STATE(3623)] = 134411, + [SMALL_STATE(3624)] = 134438, + [SMALL_STATE(3625)] = 134459, + [SMALL_STATE(3626)] = 134486, + [SMALL_STATE(3627)] = 134513, + [SMALL_STATE(3628)] = 134536, + [SMALL_STATE(3629)] = 134559, + [SMALL_STATE(3630)] = 134582, + [SMALL_STATE(3631)] = 134609, + [SMALL_STATE(3632)] = 134636, + [SMALL_STATE(3633)] = 134663, + [SMALL_STATE(3634)] = 134690, + [SMALL_STATE(3635)] = 134717, + [SMALL_STATE(3636)] = 134744, + [SMALL_STATE(3637)] = 134771, + [SMALL_STATE(3638)] = 134798, + [SMALL_STATE(3639)] = 134825, + [SMALL_STATE(3640)] = 134852, + [SMALL_STATE(3641)] = 134879, + [SMALL_STATE(3642)] = 134900, + [SMALL_STATE(3643)] = 134927, + [SMALL_STATE(3644)] = 134954, + [SMALL_STATE(3645)] = 134981, + [SMALL_STATE(3646)] = 135006, + [SMALL_STATE(3647)] = 135033, + [SMALL_STATE(3648)] = 135060, + [SMALL_STATE(3649)] = 135087, + [SMALL_STATE(3650)] = 135110, + [SMALL_STATE(3651)] = 135137, + [SMALL_STATE(3652)] = 135164, + [SMALL_STATE(3653)] = 135191, + [SMALL_STATE(3654)] = 135220, + [SMALL_STATE(3655)] = 135243, + [SMALL_STATE(3656)] = 135270, + [SMALL_STATE(3657)] = 135297, + [SMALL_STATE(3658)] = 135324, + [SMALL_STATE(3659)] = 135351, + [SMALL_STATE(3660)] = 135378, + [SMALL_STATE(3661)] = 135401, + [SMALL_STATE(3662)] = 135425, + [SMALL_STATE(3663)] = 135451, + [SMALL_STATE(3664)] = 135475, + [SMALL_STATE(3665)] = 135499, + [SMALL_STATE(3666)] = 135521, + [SMALL_STATE(3667)] = 135547, + [SMALL_STATE(3668)] = 135569, + [SMALL_STATE(3669)] = 135593, + [SMALL_STATE(3670)] = 135613, + [SMALL_STATE(3671)] = 135637, + [SMALL_STATE(3672)] = 135661, + [SMALL_STATE(3673)] = 135685, + [SMALL_STATE(3674)] = 135711, + [SMALL_STATE(3675)] = 135731, + [SMALL_STATE(3676)] = 135753, + [SMALL_STATE(3677)] = 135771, + [SMALL_STATE(3678)] = 135797, + [SMALL_STATE(3679)] = 135815, + [SMALL_STATE(3680)] = 135839, + [SMALL_STATE(3681)] = 135861, + [SMALL_STATE(3682)] = 135879, + [SMALL_STATE(3683)] = 135899, + [SMALL_STATE(3684)] = 135921, + [SMALL_STATE(3685)] = 135939, + [SMALL_STATE(3686)] = 135959, + [SMALL_STATE(3687)] = 135977, + [SMALL_STATE(3688)] = 136003, + [SMALL_STATE(3689)] = 136025, + [SMALL_STATE(3690)] = 136047, + [SMALL_STATE(3691)] = 136073, + [SMALL_STATE(3692)] = 136093, + [SMALL_STATE(3693)] = 136111, + [SMALL_STATE(3694)] = 136131, + [SMALL_STATE(3695)] = 136151, + [SMALL_STATE(3696)] = 136174, + [SMALL_STATE(3697)] = 136197, + [SMALL_STATE(3698)] = 136218, + [SMALL_STATE(3699)] = 136241, + [SMALL_STATE(3700)] = 136262, + [SMALL_STATE(3701)] = 136279, + [SMALL_STATE(3702)] = 136296, + [SMALL_STATE(3703)] = 136317, + [SMALL_STATE(3704)] = 136338, + [SMALL_STATE(3705)] = 136359, + [SMALL_STATE(3706)] = 136378, + [SMALL_STATE(3707)] = 136399, + [SMALL_STATE(3708)] = 136422, + [SMALL_STATE(3709)] = 136443, + [SMALL_STATE(3710)] = 136464, + [SMALL_STATE(3711)] = 136485, + [SMALL_STATE(3712)] = 136506, + [SMALL_STATE(3713)] = 136527, + [SMALL_STATE(3714)] = 136548, + [SMALL_STATE(3715)] = 136569, + [SMALL_STATE(3716)] = 136592, + [SMALL_STATE(3717)] = 136615, + [SMALL_STATE(3718)] = 136636, + [SMALL_STATE(3719)] = 136657, + [SMALL_STATE(3720)] = 136678, + [SMALL_STATE(3721)] = 136695, + [SMALL_STATE(3722)] = 136712, + [SMALL_STATE(3723)] = 136729, + [SMALL_STATE(3724)] = 136750, + [SMALL_STATE(3725)] = 136773, + [SMALL_STATE(3726)] = 136790, + [SMALL_STATE(3727)] = 136811, + [SMALL_STATE(3728)] = 136828, + [SMALL_STATE(3729)] = 136851, + [SMALL_STATE(3730)] = 136868, + [SMALL_STATE(3731)] = 136891, + [SMALL_STATE(3732)] = 136908, + [SMALL_STATE(3733)] = 136929, + [SMALL_STATE(3734)] = 136950, + [SMALL_STATE(3735)] = 136971, + [SMALL_STATE(3736)] = 136994, + [SMALL_STATE(3737)] = 137017, + [SMALL_STATE(3738)] = 137038, + [SMALL_STATE(3739)] = 137055, + [SMALL_STATE(3740)] = 137076, + [SMALL_STATE(3741)] = 137099, + [SMALL_STATE(3742)] = 137122, + [SMALL_STATE(3743)] = 137143, + [SMALL_STATE(3744)] = 137166, + [SMALL_STATE(3745)] = 137183, + [SMALL_STATE(3746)] = 137200, + [SMALL_STATE(3747)] = 137217, + [SMALL_STATE(3748)] = 137238, + [SMALL_STATE(3749)] = 137261, + [SMALL_STATE(3750)] = 137282, + [SMALL_STATE(3751)] = 137303, + [SMALL_STATE(3752)] = 137324, + [SMALL_STATE(3753)] = 137345, + [SMALL_STATE(3754)] = 137368, + [SMALL_STATE(3755)] = 137389, + [SMALL_STATE(3756)] = 137410, + [SMALL_STATE(3757)] = 137429, + [SMALL_STATE(3758)] = 137450, + [SMALL_STATE(3759)] = 137471, + [SMALL_STATE(3760)] = 137494, + [SMALL_STATE(3761)] = 137515, + [SMALL_STATE(3762)] = 137536, + [SMALL_STATE(3763)] = 137557, + [SMALL_STATE(3764)] = 137578, + [SMALL_STATE(3765)] = 137599, + [SMALL_STATE(3766)] = 137620, + [SMALL_STATE(3767)] = 137643, + [SMALL_STATE(3768)] = 137664, + [SMALL_STATE(3769)] = 137681, + [SMALL_STATE(3770)] = 137702, + [SMALL_STATE(3771)] = 137719, + [SMALL_STATE(3772)] = 137736, + [SMALL_STATE(3773)] = 137759, + [SMALL_STATE(3774)] = 137780, + [SMALL_STATE(3775)] = 137801, + [SMALL_STATE(3776)] = 137822, + [SMALL_STATE(3777)] = 137845, + [SMALL_STATE(3778)] = 137866, + [SMALL_STATE(3779)] = 137887, + [SMALL_STATE(3780)] = 137908, + [SMALL_STATE(3781)] = 137929, + [SMALL_STATE(3782)] = 137946, + [SMALL_STATE(3783)] = 137967, + [SMALL_STATE(3784)] = 137984, + [SMALL_STATE(3785)] = 138005, + [SMALL_STATE(3786)] = 138028, + [SMALL_STATE(3787)] = 138045, + [SMALL_STATE(3788)] = 138066, + [SMALL_STATE(3789)] = 138087, + [SMALL_STATE(3790)] = 138110, + [SMALL_STATE(3791)] = 138131, + [SMALL_STATE(3792)] = 138152, + [SMALL_STATE(3793)] = 138173, + [SMALL_STATE(3794)] = 138190, + [SMALL_STATE(3795)] = 138207, + [SMALL_STATE(3796)] = 138224, + [SMALL_STATE(3797)] = 138247, + [SMALL_STATE(3798)] = 138264, + [SMALL_STATE(3799)] = 138281, + [SMALL_STATE(3800)] = 138298, + [SMALL_STATE(3801)] = 138319, + [SMALL_STATE(3802)] = 138340, + [SMALL_STATE(3803)] = 138361, + [SMALL_STATE(3804)] = 138382, + [SMALL_STATE(3805)] = 138403, + [SMALL_STATE(3806)] = 138424, + [SMALL_STATE(3807)] = 138445, + [SMALL_STATE(3808)] = 138466, + [SMALL_STATE(3809)] = 138487, + [SMALL_STATE(3810)] = 138504, + [SMALL_STATE(3811)] = 138525, + [SMALL_STATE(3812)] = 138542, + [SMALL_STATE(3813)] = 138563, + [SMALL_STATE(3814)] = 138584, + [SMALL_STATE(3815)] = 138605, + [SMALL_STATE(3816)] = 138628, + [SMALL_STATE(3817)] = 138649, + [SMALL_STATE(3818)] = 138670, + [SMALL_STATE(3819)] = 138691, + [SMALL_STATE(3820)] = 138712, + [SMALL_STATE(3821)] = 138733, + [SMALL_STATE(3822)] = 138754, + [SMALL_STATE(3823)] = 138775, + [SMALL_STATE(3824)] = 138796, + [SMALL_STATE(3825)] = 138817, + [SMALL_STATE(3826)] = 138834, + [SMALL_STATE(3827)] = 138857, + [SMALL_STATE(3828)] = 138878, + [SMALL_STATE(3829)] = 138895, + [SMALL_STATE(3830)] = 138912, + [SMALL_STATE(3831)] = 138933, + [SMALL_STATE(3832)] = 138954, + [SMALL_STATE(3833)] = 138977, + [SMALL_STATE(3834)] = 138994, + [SMALL_STATE(3835)] = 139011, + [SMALL_STATE(3836)] = 139032, + [SMALL_STATE(3837)] = 139053, + [SMALL_STATE(3838)] = 139074, + [SMALL_STATE(3839)] = 139091, + [SMALL_STATE(3840)] = 139114, + [SMALL_STATE(3841)] = 139135, + [SMALL_STATE(3842)] = 139152, + [SMALL_STATE(3843)] = 139169, + [SMALL_STATE(3844)] = 139192, + [SMALL_STATE(3845)] = 139213, + [SMALL_STATE(3846)] = 139236, + [SMALL_STATE(3847)] = 139257, + [SMALL_STATE(3848)] = 139278, + [SMALL_STATE(3849)] = 139297, + [SMALL_STATE(3850)] = 139318, + [SMALL_STATE(3851)] = 139339, + [SMALL_STATE(3852)] = 139360, + [SMALL_STATE(3853)] = 139383, + [SMALL_STATE(3854)] = 139406, + [SMALL_STATE(3855)] = 139423, + [SMALL_STATE(3856)] = 139440, + [SMALL_STATE(3857)] = 139463, + [SMALL_STATE(3858)] = 139484, + [SMALL_STATE(3859)] = 139505, + [SMALL_STATE(3860)] = 139526, + [SMALL_STATE(3861)] = 139547, + [SMALL_STATE(3862)] = 139570, + [SMALL_STATE(3863)] = 139591, + [SMALL_STATE(3864)] = 139612, + [SMALL_STATE(3865)] = 139633, + [SMALL_STATE(3866)] = 139654, + [SMALL_STATE(3867)] = 139675, + [SMALL_STATE(3868)] = 139698, + [SMALL_STATE(3869)] = 139719, + [SMALL_STATE(3870)] = 139739, + [SMALL_STATE(3871)] = 139759, + [SMALL_STATE(3872)] = 139779, + [SMALL_STATE(3873)] = 139799, + [SMALL_STATE(3874)] = 139819, + [SMALL_STATE(3875)] = 139839, + [SMALL_STATE(3876)] = 139859, + [SMALL_STATE(3877)] = 139879, + [SMALL_STATE(3878)] = 139899, + [SMALL_STATE(3879)] = 139919, + [SMALL_STATE(3880)] = 139939, + [SMALL_STATE(3881)] = 139959, + [SMALL_STATE(3882)] = 139979, + [SMALL_STATE(3883)] = 139999, + [SMALL_STATE(3884)] = 140019, + [SMALL_STATE(3885)] = 140039, + [SMALL_STATE(3886)] = 140059, + [SMALL_STATE(3887)] = 140079, + [SMALL_STATE(3888)] = 140099, + [SMALL_STATE(3889)] = 140119, + [SMALL_STATE(3890)] = 140139, + [SMALL_STATE(3891)] = 140159, + [SMALL_STATE(3892)] = 140177, + [SMALL_STATE(3893)] = 140197, + [SMALL_STATE(3894)] = 140215, + [SMALL_STATE(3895)] = 140233, + [SMALL_STATE(3896)] = 140253, + [SMALL_STATE(3897)] = 140273, + [SMALL_STATE(3898)] = 140293, + [SMALL_STATE(3899)] = 140313, + [SMALL_STATE(3900)] = 140333, + [SMALL_STATE(3901)] = 140353, + [SMALL_STATE(3902)] = 140373, + [SMALL_STATE(3903)] = 140393, + [SMALL_STATE(3904)] = 140413, + [SMALL_STATE(3905)] = 140433, + [SMALL_STATE(3906)] = 140453, + [SMALL_STATE(3907)] = 140473, + [SMALL_STATE(3908)] = 140493, + [SMALL_STATE(3909)] = 140513, + [SMALL_STATE(3910)] = 140533, + [SMALL_STATE(3911)] = 140553, + [SMALL_STATE(3912)] = 140573, + [SMALL_STATE(3913)] = 140593, + [SMALL_STATE(3914)] = 140613, + [SMALL_STATE(3915)] = 140633, + [SMALL_STATE(3916)] = 140653, + [SMALL_STATE(3917)] = 140673, + [SMALL_STATE(3918)] = 140693, + [SMALL_STATE(3919)] = 140713, + [SMALL_STATE(3920)] = 140731, + [SMALL_STATE(3921)] = 140751, + [SMALL_STATE(3922)] = 140771, + [SMALL_STATE(3923)] = 140791, + [SMALL_STATE(3924)] = 140811, + [SMALL_STATE(3925)] = 140831, + [SMALL_STATE(3926)] = 140851, + [SMALL_STATE(3927)] = 140871, + [SMALL_STATE(3928)] = 140887, + [SMALL_STATE(3929)] = 140907, + [SMALL_STATE(3930)] = 140927, + [SMALL_STATE(3931)] = 140947, + [SMALL_STATE(3932)] = 140967, + [SMALL_STATE(3933)] = 140987, + [SMALL_STATE(3934)] = 141007, + [SMALL_STATE(3935)] = 141027, + [SMALL_STATE(3936)] = 141047, + [SMALL_STATE(3937)] = 141067, + [SMALL_STATE(3938)] = 141087, + [SMALL_STATE(3939)] = 141107, + [SMALL_STATE(3940)] = 141127, + [SMALL_STATE(3941)] = 141147, + [SMALL_STATE(3942)] = 141167, + [SMALL_STATE(3943)] = 141187, + [SMALL_STATE(3944)] = 141207, + [SMALL_STATE(3945)] = 141227, + [SMALL_STATE(3946)] = 141247, + [SMALL_STATE(3947)] = 141267, + [SMALL_STATE(3948)] = 141287, + [SMALL_STATE(3949)] = 141307, + [SMALL_STATE(3950)] = 141327, + [SMALL_STATE(3951)] = 141343, + [SMALL_STATE(3952)] = 141363, + [SMALL_STATE(3953)] = 141383, + [SMALL_STATE(3954)] = 141403, + [SMALL_STATE(3955)] = 141419, + [SMALL_STATE(3956)] = 141437, + [SMALL_STATE(3957)] = 141457, + [SMALL_STATE(3958)] = 141475, + [SMALL_STATE(3959)] = 141495, + [SMALL_STATE(3960)] = 141515, + [SMALL_STATE(3961)] = 141535, + [SMALL_STATE(3962)] = 141555, + [SMALL_STATE(3963)] = 141571, + [SMALL_STATE(3964)] = 141591, + [SMALL_STATE(3965)] = 141611, + [SMALL_STATE(3966)] = 141629, + [SMALL_STATE(3967)] = 141649, + [SMALL_STATE(3968)] = 141669, + [SMALL_STATE(3969)] = 141689, + [SMALL_STATE(3970)] = 141709, + [SMALL_STATE(3971)] = 141729, + [SMALL_STATE(3972)] = 141749, + [SMALL_STATE(3973)] = 141769, + [SMALL_STATE(3974)] = 141789, + [SMALL_STATE(3975)] = 141809, + [SMALL_STATE(3976)] = 141827, + [SMALL_STATE(3977)] = 141845, + [SMALL_STATE(3978)] = 141865, + [SMALL_STATE(3979)] = 141885, + [SMALL_STATE(3980)] = 141905, + [SMALL_STATE(3981)] = 141925, + [SMALL_STATE(3982)] = 141945, + [SMALL_STATE(3983)] = 141965, + [SMALL_STATE(3984)] = 141981, + [SMALL_STATE(3985)] = 142001, + [SMALL_STATE(3986)] = 142019, + [SMALL_STATE(3987)] = 142035, + [SMALL_STATE(3988)] = 142055, + [SMALL_STATE(3989)] = 142075, + [SMALL_STATE(3990)] = 142095, + [SMALL_STATE(3991)] = 142111, + [SMALL_STATE(3992)] = 142131, + [SMALL_STATE(3993)] = 142151, + [SMALL_STATE(3994)] = 142171, + [SMALL_STATE(3995)] = 142191, + [SMALL_STATE(3996)] = 142211, + [SMALL_STATE(3997)] = 142231, + [SMALL_STATE(3998)] = 142247, + [SMALL_STATE(3999)] = 142267, + [SMALL_STATE(4000)] = 142287, + [SMALL_STATE(4001)] = 142307, + [SMALL_STATE(4002)] = 142327, + [SMALL_STATE(4003)] = 142347, + [SMALL_STATE(4004)] = 142367, + [SMALL_STATE(4005)] = 142383, + [SMALL_STATE(4006)] = 142403, + [SMALL_STATE(4007)] = 142423, + [SMALL_STATE(4008)] = 142441, + [SMALL_STATE(4009)] = 142461, + [SMALL_STATE(4010)] = 142481, + [SMALL_STATE(4011)] = 142501, + [SMALL_STATE(4012)] = 142521, + [SMALL_STATE(4013)] = 142541, + [SMALL_STATE(4014)] = 142561, + [SMALL_STATE(4015)] = 142579, + [SMALL_STATE(4016)] = 142599, + [SMALL_STATE(4017)] = 142619, + [SMALL_STATE(4018)] = 142639, + [SMALL_STATE(4019)] = 142659, + [SMALL_STATE(4020)] = 142679, + [SMALL_STATE(4021)] = 142699, + [SMALL_STATE(4022)] = 142717, + [SMALL_STATE(4023)] = 142737, + [SMALL_STATE(4024)] = 142757, + [SMALL_STATE(4025)] = 142777, + [SMALL_STATE(4026)] = 142797, + [SMALL_STATE(4027)] = 142817, + [SMALL_STATE(4028)] = 142837, + [SMALL_STATE(4029)] = 142857, + [SMALL_STATE(4030)] = 142873, + [SMALL_STATE(4031)] = 142893, + [SMALL_STATE(4032)] = 142913, + [SMALL_STATE(4033)] = 142933, + [SMALL_STATE(4034)] = 142953, + [SMALL_STATE(4035)] = 142973, + [SMALL_STATE(4036)] = 142993, + [SMALL_STATE(4037)] = 143013, + [SMALL_STATE(4038)] = 143033, + [SMALL_STATE(4039)] = 143053, + [SMALL_STATE(4040)] = 143073, + [SMALL_STATE(4041)] = 143093, + [SMALL_STATE(4042)] = 143113, + [SMALL_STATE(4043)] = 143133, + [SMALL_STATE(4044)] = 143153, + [SMALL_STATE(4045)] = 143173, + [SMALL_STATE(4046)] = 143193, + [SMALL_STATE(4047)] = 143213, + [SMALL_STATE(4048)] = 143233, + [SMALL_STATE(4049)] = 143253, + [SMALL_STATE(4050)] = 143271, + [SMALL_STATE(4051)] = 143291, + [SMALL_STATE(4052)] = 143311, + [SMALL_STATE(4053)] = 143329, + [SMALL_STATE(4054)] = 143347, + [SMALL_STATE(4055)] = 143365, + [SMALL_STATE(4056)] = 143385, + [SMALL_STATE(4057)] = 143405, + [SMALL_STATE(4058)] = 143425, + [SMALL_STATE(4059)] = 143445, + [SMALL_STATE(4060)] = 143465, + [SMALL_STATE(4061)] = 143485, + [SMALL_STATE(4062)] = 143505, + [SMALL_STATE(4063)] = 143525, + [SMALL_STATE(4064)] = 143545, + [SMALL_STATE(4065)] = 143565, + [SMALL_STATE(4066)] = 143585, + [SMALL_STATE(4067)] = 143605, + [SMALL_STATE(4068)] = 143625, + [SMALL_STATE(4069)] = 143645, + [SMALL_STATE(4070)] = 143665, + [SMALL_STATE(4071)] = 143685, + [SMALL_STATE(4072)] = 143705, + [SMALL_STATE(4073)] = 143725, + [SMALL_STATE(4074)] = 143745, + [SMALL_STATE(4075)] = 143761, + [SMALL_STATE(4076)] = 143777, + [SMALL_STATE(4077)] = 143793, + [SMALL_STATE(4078)] = 143813, + [SMALL_STATE(4079)] = 143833, + [SMALL_STATE(4080)] = 143853, + [SMALL_STATE(4081)] = 143871, + [SMALL_STATE(4082)] = 143891, + [SMALL_STATE(4083)] = 143911, + [SMALL_STATE(4084)] = 143931, + [SMALL_STATE(4085)] = 143951, + [SMALL_STATE(4086)] = 143971, + [SMALL_STATE(4087)] = 143991, + [SMALL_STATE(4088)] = 144011, + [SMALL_STATE(4089)] = 144031, + [SMALL_STATE(4090)] = 144051, + [SMALL_STATE(4091)] = 144071, + [SMALL_STATE(4092)] = 144089, + [SMALL_STATE(4093)] = 144109, + [SMALL_STATE(4094)] = 144129, + [SMALL_STATE(4095)] = 144149, + [SMALL_STATE(4096)] = 144169, + [SMALL_STATE(4097)] = 144189, + [SMALL_STATE(4098)] = 144209, + [SMALL_STATE(4099)] = 144229, + [SMALL_STATE(4100)] = 144247, + [SMALL_STATE(4101)] = 144267, + [SMALL_STATE(4102)] = 144287, + [SMALL_STATE(4103)] = 144307, + [SMALL_STATE(4104)] = 144323, + [SMALL_STATE(4105)] = 144343, + [SMALL_STATE(4106)] = 144363, + [SMALL_STATE(4107)] = 144383, + [SMALL_STATE(4108)] = 144403, + [SMALL_STATE(4109)] = 144423, + [SMALL_STATE(4110)] = 144443, + [SMALL_STATE(4111)] = 144463, + [SMALL_STATE(4112)] = 144479, + [SMALL_STATE(4113)] = 144496, + [SMALL_STATE(4114)] = 144513, + [SMALL_STATE(4115)] = 144530, + [SMALL_STATE(4116)] = 144547, + [SMALL_STATE(4117)] = 144564, + [SMALL_STATE(4118)] = 144581, + [SMALL_STATE(4119)] = 144598, + [SMALL_STATE(4120)] = 144615, + [SMALL_STATE(4121)] = 144632, + [SMALL_STATE(4122)] = 144649, + [SMALL_STATE(4123)] = 144666, + [SMALL_STATE(4124)] = 144683, + [SMALL_STATE(4125)] = 144700, + [SMALL_STATE(4126)] = 144717, + [SMALL_STATE(4127)] = 144732, + [SMALL_STATE(4128)] = 144747, + [SMALL_STATE(4129)] = 144764, + [SMALL_STATE(4130)] = 144781, + [SMALL_STATE(4131)] = 144798, + [SMALL_STATE(4132)] = 144815, + [SMALL_STATE(4133)] = 144832, + [SMALL_STATE(4134)] = 144849, + [SMALL_STATE(4135)] = 144866, + [SMALL_STATE(4136)] = 144883, + [SMALL_STATE(4137)] = 144898, + [SMALL_STATE(4138)] = 144915, + [SMALL_STATE(4139)] = 144932, + [SMALL_STATE(4140)] = 144949, + [SMALL_STATE(4141)] = 144966, + [SMALL_STATE(4142)] = 144983, + [SMALL_STATE(4143)] = 144998, + [SMALL_STATE(4144)] = 145015, + [SMALL_STATE(4145)] = 145030, + [SMALL_STATE(4146)] = 145045, + [SMALL_STATE(4147)] = 145062, + [SMALL_STATE(4148)] = 145077, + [SMALL_STATE(4149)] = 145094, + [SMALL_STATE(4150)] = 145111, + [SMALL_STATE(4151)] = 145128, + [SMALL_STATE(4152)] = 145145, + [SMALL_STATE(4153)] = 145160, + [SMALL_STATE(4154)] = 145177, + [SMALL_STATE(4155)] = 145194, + [SMALL_STATE(4156)] = 145211, + [SMALL_STATE(4157)] = 145228, + [SMALL_STATE(4158)] = 145245, + [SMALL_STATE(4159)] = 145262, + [SMALL_STATE(4160)] = 145279, + [SMALL_STATE(4161)] = 145296, + [SMALL_STATE(4162)] = 145313, + [SMALL_STATE(4163)] = 145330, + [SMALL_STATE(4164)] = 145345, + [SMALL_STATE(4165)] = 145362, + [SMALL_STATE(4166)] = 145379, + [SMALL_STATE(4167)] = 145396, + [SMALL_STATE(4168)] = 145411, + [SMALL_STATE(4169)] = 145428, + [SMALL_STATE(4170)] = 145445, + [SMALL_STATE(4171)] = 145462, + [SMALL_STATE(4172)] = 145479, + [SMALL_STATE(4173)] = 145496, + [SMALL_STATE(4174)] = 145513, + [SMALL_STATE(4175)] = 145530, + [SMALL_STATE(4176)] = 145547, + [SMALL_STATE(4177)] = 145564, + [SMALL_STATE(4178)] = 145581, + [SMALL_STATE(4179)] = 145598, + [SMALL_STATE(4180)] = 145615, + [SMALL_STATE(4181)] = 145632, + [SMALL_STATE(4182)] = 145649, + [SMALL_STATE(4183)] = 145666, + [SMALL_STATE(4184)] = 145683, + [SMALL_STATE(4185)] = 145698, + [SMALL_STATE(4186)] = 145715, + [SMALL_STATE(4187)] = 145732, + [SMALL_STATE(4188)] = 145749, + [SMALL_STATE(4189)] = 145764, + [SMALL_STATE(4190)] = 145781, + [SMALL_STATE(4191)] = 145798, + [SMALL_STATE(4192)] = 145815, + [SMALL_STATE(4193)] = 145832, + [SMALL_STATE(4194)] = 145847, + [SMALL_STATE(4195)] = 145864, + [SMALL_STATE(4196)] = 145881, + [SMALL_STATE(4197)] = 145898, + [SMALL_STATE(4198)] = 145915, + [SMALL_STATE(4199)] = 145932, + [SMALL_STATE(4200)] = 145949, + [SMALL_STATE(4201)] = 145966, + [SMALL_STATE(4202)] = 145983, + [SMALL_STATE(4203)] = 146000, + [SMALL_STATE(4204)] = 146017, + [SMALL_STATE(4205)] = 146034, + [SMALL_STATE(4206)] = 146051, + [SMALL_STATE(4207)] = 146068, + [SMALL_STATE(4208)] = 146085, + [SMALL_STATE(4209)] = 146102, + [SMALL_STATE(4210)] = 146119, + [SMALL_STATE(4211)] = 146136, + [SMALL_STATE(4212)] = 146153, + [SMALL_STATE(4213)] = 146170, + [SMALL_STATE(4214)] = 146187, + [SMALL_STATE(4215)] = 146204, + [SMALL_STATE(4216)] = 146221, + [SMALL_STATE(4217)] = 146238, + [SMALL_STATE(4218)] = 146255, + [SMALL_STATE(4219)] = 146272, + [SMALL_STATE(4220)] = 146289, + [SMALL_STATE(4221)] = 146306, + [SMALL_STATE(4222)] = 146323, + [SMALL_STATE(4223)] = 146340, + [SMALL_STATE(4224)] = 146357, + [SMALL_STATE(4225)] = 146374, + [SMALL_STATE(4226)] = 146391, + [SMALL_STATE(4227)] = 146408, + [SMALL_STATE(4228)] = 146425, + [SMALL_STATE(4229)] = 146442, + [SMALL_STATE(4230)] = 146459, + [SMALL_STATE(4231)] = 146476, + [SMALL_STATE(4232)] = 146493, + [SMALL_STATE(4233)] = 146510, + [SMALL_STATE(4234)] = 146527, + [SMALL_STATE(4235)] = 146544, + [SMALL_STATE(4236)] = 146561, + [SMALL_STATE(4237)] = 146578, + [SMALL_STATE(4238)] = 146595, + [SMALL_STATE(4239)] = 146612, + [SMALL_STATE(4240)] = 146629, + [SMALL_STATE(4241)] = 146646, + [SMALL_STATE(4242)] = 146663, + [SMALL_STATE(4243)] = 146680, + [SMALL_STATE(4244)] = 146697, + [SMALL_STATE(4245)] = 146714, + [SMALL_STATE(4246)] = 146731, + [SMALL_STATE(4247)] = 146748, + [SMALL_STATE(4248)] = 146765, + [SMALL_STATE(4249)] = 146782, + [SMALL_STATE(4250)] = 146799, + [SMALL_STATE(4251)] = 146816, + [SMALL_STATE(4252)] = 146833, + [SMALL_STATE(4253)] = 146850, + [SMALL_STATE(4254)] = 146867, + [SMALL_STATE(4255)] = 146884, + [SMALL_STATE(4256)] = 146901, + [SMALL_STATE(4257)] = 146918, + [SMALL_STATE(4258)] = 146935, + [SMALL_STATE(4259)] = 146952, + [SMALL_STATE(4260)] = 146969, + [SMALL_STATE(4261)] = 146984, + [SMALL_STATE(4262)] = 146999, + [SMALL_STATE(4263)] = 147016, + [SMALL_STATE(4264)] = 147033, + [SMALL_STATE(4265)] = 147050, + [SMALL_STATE(4266)] = 147067, + [SMALL_STATE(4267)] = 147084, + [SMALL_STATE(4268)] = 147101, + [SMALL_STATE(4269)] = 147118, + [SMALL_STATE(4270)] = 147135, + [SMALL_STATE(4271)] = 147152, + [SMALL_STATE(4272)] = 147167, + [SMALL_STATE(4273)] = 147184, + [SMALL_STATE(4274)] = 147201, + [SMALL_STATE(4275)] = 147218, + [SMALL_STATE(4276)] = 147235, + [SMALL_STATE(4277)] = 147250, + [SMALL_STATE(4278)] = 147267, + [SMALL_STATE(4279)] = 147284, + [SMALL_STATE(4280)] = 147301, + [SMALL_STATE(4281)] = 147318, + [SMALL_STATE(4282)] = 147335, + [SMALL_STATE(4283)] = 147352, + [SMALL_STATE(4284)] = 147369, + [SMALL_STATE(4285)] = 147384, + [SMALL_STATE(4286)] = 147401, + [SMALL_STATE(4287)] = 147418, + [SMALL_STATE(4288)] = 147435, + [SMALL_STATE(4289)] = 147452, + [SMALL_STATE(4290)] = 147469, + [SMALL_STATE(4291)] = 147486, + [SMALL_STATE(4292)] = 147503, + [SMALL_STATE(4293)] = 147520, + [SMALL_STATE(4294)] = 147537, + [SMALL_STATE(4295)] = 147554, + [SMALL_STATE(4296)] = 147571, + [SMALL_STATE(4297)] = 147586, + [SMALL_STATE(4298)] = 147603, + [SMALL_STATE(4299)] = 147620, + [SMALL_STATE(4300)] = 147635, + [SMALL_STATE(4301)] = 147650, + [SMALL_STATE(4302)] = 147667, + [SMALL_STATE(4303)] = 147684, + [SMALL_STATE(4304)] = 147701, + [SMALL_STATE(4305)] = 147716, + [SMALL_STATE(4306)] = 147733, + [SMALL_STATE(4307)] = 147750, + [SMALL_STATE(4308)] = 147767, + [SMALL_STATE(4309)] = 147784, + [SMALL_STATE(4310)] = 147801, + [SMALL_STATE(4311)] = 147818, + [SMALL_STATE(4312)] = 147835, + [SMALL_STATE(4313)] = 147852, + [SMALL_STATE(4314)] = 147869, + [SMALL_STATE(4315)] = 147886, + [SMALL_STATE(4316)] = 147903, + [SMALL_STATE(4317)] = 147920, + [SMALL_STATE(4318)] = 147937, + [SMALL_STATE(4319)] = 147954, + [SMALL_STATE(4320)] = 147971, + [SMALL_STATE(4321)] = 147988, + [SMALL_STATE(4322)] = 148003, + [SMALL_STATE(4323)] = 148018, + [SMALL_STATE(4324)] = 148033, + [SMALL_STATE(4325)] = 148050, + [SMALL_STATE(4326)] = 148067, + [SMALL_STATE(4327)] = 148084, + [SMALL_STATE(4328)] = 148101, + [SMALL_STATE(4329)] = 148116, + [SMALL_STATE(4330)] = 148133, + [SMALL_STATE(4331)] = 148148, + [SMALL_STATE(4332)] = 148165, + [SMALL_STATE(4333)] = 148182, + [SMALL_STATE(4334)] = 148199, + [SMALL_STATE(4335)] = 148216, + [SMALL_STATE(4336)] = 148233, + [SMALL_STATE(4337)] = 148248, + [SMALL_STATE(4338)] = 148265, + [SMALL_STATE(4339)] = 148280, + [SMALL_STATE(4340)] = 148297, + [SMALL_STATE(4341)] = 148314, + [SMALL_STATE(4342)] = 148329, + [SMALL_STATE(4343)] = 148346, + [SMALL_STATE(4344)] = 148363, + [SMALL_STATE(4345)] = 148380, + [SMALL_STATE(4346)] = 148397, + [SMALL_STATE(4347)] = 148412, + [SMALL_STATE(4348)] = 148429, + [SMALL_STATE(4349)] = 148446, + [SMALL_STATE(4350)] = 148463, + [SMALL_STATE(4351)] = 148480, + [SMALL_STATE(4352)] = 148497, + [SMALL_STATE(4353)] = 148514, + [SMALL_STATE(4354)] = 148529, + [SMALL_STATE(4355)] = 148546, + [SMALL_STATE(4356)] = 148563, + [SMALL_STATE(4357)] = 148580, + [SMALL_STATE(4358)] = 148597, + [SMALL_STATE(4359)] = 148614, + [SMALL_STATE(4360)] = 148631, + [SMALL_STATE(4361)] = 148648, + [SMALL_STATE(4362)] = 148665, + [SMALL_STATE(4363)] = 148682, + [SMALL_STATE(4364)] = 148699, + [SMALL_STATE(4365)] = 148716, + [SMALL_STATE(4366)] = 148733, + [SMALL_STATE(4367)] = 148750, + [SMALL_STATE(4368)] = 148767, + [SMALL_STATE(4369)] = 148784, + [SMALL_STATE(4370)] = 148801, + [SMALL_STATE(4371)] = 148818, + [SMALL_STATE(4372)] = 148835, + [SMALL_STATE(4373)] = 148852, + [SMALL_STATE(4374)] = 148869, + [SMALL_STATE(4375)] = 148886, + [SMALL_STATE(4376)] = 148903, + [SMALL_STATE(4377)] = 148920, + [SMALL_STATE(4378)] = 148937, + [SMALL_STATE(4379)] = 148954, + [SMALL_STATE(4380)] = 148971, + [SMALL_STATE(4381)] = 148988, + [SMALL_STATE(4382)] = 149005, + [SMALL_STATE(4383)] = 149022, + [SMALL_STATE(4384)] = 149039, + [SMALL_STATE(4385)] = 149056, + [SMALL_STATE(4386)] = 149073, + [SMALL_STATE(4387)] = 149090, + [SMALL_STATE(4388)] = 149107, + [SMALL_STATE(4389)] = 149124, + [SMALL_STATE(4390)] = 149141, + [SMALL_STATE(4391)] = 149158, + [SMALL_STATE(4392)] = 149175, + [SMALL_STATE(4393)] = 149192, + [SMALL_STATE(4394)] = 149209, + [SMALL_STATE(4395)] = 149226, + [SMALL_STATE(4396)] = 149243, + [SMALL_STATE(4397)] = 149260, + [SMALL_STATE(4398)] = 149277, + [SMALL_STATE(4399)] = 149294, + [SMALL_STATE(4400)] = 149311, + [SMALL_STATE(4401)] = 149328, + [SMALL_STATE(4402)] = 149345, + [SMALL_STATE(4403)] = 149362, + [SMALL_STATE(4404)] = 149379, + [SMALL_STATE(4405)] = 149396, + [SMALL_STATE(4406)] = 149413, + [SMALL_STATE(4407)] = 149428, + [SMALL_STATE(4408)] = 149445, + [SMALL_STATE(4409)] = 149462, + [SMALL_STATE(4410)] = 149479, + [SMALL_STATE(4411)] = 149496, + [SMALL_STATE(4412)] = 149513, + [SMALL_STATE(4413)] = 149530, + [SMALL_STATE(4414)] = 149545, + [SMALL_STATE(4415)] = 149562, + [SMALL_STATE(4416)] = 149579, + [SMALL_STATE(4417)] = 149596, + [SMALL_STATE(4418)] = 149613, + [SMALL_STATE(4419)] = 149628, + [SMALL_STATE(4420)] = 149645, + [SMALL_STATE(4421)] = 149662, + [SMALL_STATE(4422)] = 149679, + [SMALL_STATE(4423)] = 149696, + [SMALL_STATE(4424)] = 149713, + [SMALL_STATE(4425)] = 149730, + [SMALL_STATE(4426)] = 149747, + [SMALL_STATE(4427)] = 149764, + [SMALL_STATE(4428)] = 149781, + [SMALL_STATE(4429)] = 149798, + [SMALL_STATE(4430)] = 149815, + [SMALL_STATE(4431)] = 149832, + [SMALL_STATE(4432)] = 149849, + [SMALL_STATE(4433)] = 149863, + [SMALL_STATE(4434)] = 149877, + [SMALL_STATE(4435)] = 149891, + [SMALL_STATE(4436)] = 149905, + [SMALL_STATE(4437)] = 149919, + [SMALL_STATE(4438)] = 149933, + [SMALL_STATE(4439)] = 149947, + [SMALL_STATE(4440)] = 149961, + [SMALL_STATE(4441)] = 149975, + [SMALL_STATE(4442)] = 149989, + [SMALL_STATE(4443)] = 150003, + [SMALL_STATE(4444)] = 150017, + [SMALL_STATE(4445)] = 150031, + [SMALL_STATE(4446)] = 150045, + [SMALL_STATE(4447)] = 150059, + [SMALL_STATE(4448)] = 150073, + [SMALL_STATE(4449)] = 150087, + [SMALL_STATE(4450)] = 150101, + [SMALL_STATE(4451)] = 150115, + [SMALL_STATE(4452)] = 150129, + [SMALL_STATE(4453)] = 150143, + [SMALL_STATE(4454)] = 150157, + [SMALL_STATE(4455)] = 150171, + [SMALL_STATE(4456)] = 150185, + [SMALL_STATE(4457)] = 150199, + [SMALL_STATE(4458)] = 150213, + [SMALL_STATE(4459)] = 150227, + [SMALL_STATE(4460)] = 150241, + [SMALL_STATE(4461)] = 150255, + [SMALL_STATE(4462)] = 150269, + [SMALL_STATE(4463)] = 150283, + [SMALL_STATE(4464)] = 150297, + [SMALL_STATE(4465)] = 150311, + [SMALL_STATE(4466)] = 150325, + [SMALL_STATE(4467)] = 150339, + [SMALL_STATE(4468)] = 150353, + [SMALL_STATE(4469)] = 150367, + [SMALL_STATE(4470)] = 150381, + [SMALL_STATE(4471)] = 150395, + [SMALL_STATE(4472)] = 150409, + [SMALL_STATE(4473)] = 150423, + [SMALL_STATE(4474)] = 150437, + [SMALL_STATE(4475)] = 150451, + [SMALL_STATE(4476)] = 150465, + [SMALL_STATE(4477)] = 150479, + [SMALL_STATE(4478)] = 150493, + [SMALL_STATE(4479)] = 150507, + [SMALL_STATE(4480)] = 150521, + [SMALL_STATE(4481)] = 150535, + [SMALL_STATE(4482)] = 150549, + [SMALL_STATE(4483)] = 150563, + [SMALL_STATE(4484)] = 150577, + [SMALL_STATE(4485)] = 150591, + [SMALL_STATE(4486)] = 150605, + [SMALL_STATE(4487)] = 150619, + [SMALL_STATE(4488)] = 150633, + [SMALL_STATE(4489)] = 150647, + [SMALL_STATE(4490)] = 150661, + [SMALL_STATE(4491)] = 150675, + [SMALL_STATE(4492)] = 150689, + [SMALL_STATE(4493)] = 150703, + [SMALL_STATE(4494)] = 150717, + [SMALL_STATE(4495)] = 150731, + [SMALL_STATE(4496)] = 150745, + [SMALL_STATE(4497)] = 150759, + [SMALL_STATE(4498)] = 150773, + [SMALL_STATE(4499)] = 150787, + [SMALL_STATE(4500)] = 150801, + [SMALL_STATE(4501)] = 150815, + [SMALL_STATE(4502)] = 150829, + [SMALL_STATE(4503)] = 150843, + [SMALL_STATE(4504)] = 150857, + [SMALL_STATE(4505)] = 150871, + [SMALL_STATE(4506)] = 150885, + [SMALL_STATE(4507)] = 150899, + [SMALL_STATE(4508)] = 150913, + [SMALL_STATE(4509)] = 150927, + [SMALL_STATE(4510)] = 150941, + [SMALL_STATE(4511)] = 150955, + [SMALL_STATE(4512)] = 150969, + [SMALL_STATE(4513)] = 150983, + [SMALL_STATE(4514)] = 150997, + [SMALL_STATE(4515)] = 151011, + [SMALL_STATE(4516)] = 151025, + [SMALL_STATE(4517)] = 151039, + [SMALL_STATE(4518)] = 151053, + [SMALL_STATE(4519)] = 151067, + [SMALL_STATE(4520)] = 151081, + [SMALL_STATE(4521)] = 151095, + [SMALL_STATE(4522)] = 151109, + [SMALL_STATE(4523)] = 151123, + [SMALL_STATE(4524)] = 151137, + [SMALL_STATE(4525)] = 151151, + [SMALL_STATE(4526)] = 151165, + [SMALL_STATE(4527)] = 151179, + [SMALL_STATE(4528)] = 151193, + [SMALL_STATE(4529)] = 151207, + [SMALL_STATE(4530)] = 151221, + [SMALL_STATE(4531)] = 151235, + [SMALL_STATE(4532)] = 151249, + [SMALL_STATE(4533)] = 151263, + [SMALL_STATE(4534)] = 151277, + [SMALL_STATE(4535)] = 151291, + [SMALL_STATE(4536)] = 151305, + [SMALL_STATE(4537)] = 151319, + [SMALL_STATE(4538)] = 151333, + [SMALL_STATE(4539)] = 151347, + [SMALL_STATE(4540)] = 151361, + [SMALL_STATE(4541)] = 151375, + [SMALL_STATE(4542)] = 151389, + [SMALL_STATE(4543)] = 151403, + [SMALL_STATE(4544)] = 151417, + [SMALL_STATE(4545)] = 151431, + [SMALL_STATE(4546)] = 151445, + [SMALL_STATE(4547)] = 151459, + [SMALL_STATE(4548)] = 151473, + [SMALL_STATE(4549)] = 151487, + [SMALL_STATE(4550)] = 151501, + [SMALL_STATE(4551)] = 151515, + [SMALL_STATE(4552)] = 151529, + [SMALL_STATE(4553)] = 151543, + [SMALL_STATE(4554)] = 151557, + [SMALL_STATE(4555)] = 151571, + [SMALL_STATE(4556)] = 151585, + [SMALL_STATE(4557)] = 151599, + [SMALL_STATE(4558)] = 151613, + [SMALL_STATE(4559)] = 151627, + [SMALL_STATE(4560)] = 151641, + [SMALL_STATE(4561)] = 151655, + [SMALL_STATE(4562)] = 151669, + [SMALL_STATE(4563)] = 151683, + [SMALL_STATE(4564)] = 151697, + [SMALL_STATE(4565)] = 151711, + [SMALL_STATE(4566)] = 151725, + [SMALL_STATE(4567)] = 151739, + [SMALL_STATE(4568)] = 151753, + [SMALL_STATE(4569)] = 151767, + [SMALL_STATE(4570)] = 151781, + [SMALL_STATE(4571)] = 151795, + [SMALL_STATE(4572)] = 151809, + [SMALL_STATE(4573)] = 151823, + [SMALL_STATE(4574)] = 151837, + [SMALL_STATE(4575)] = 151851, + [SMALL_STATE(4576)] = 151865, + [SMALL_STATE(4577)] = 151879, + [SMALL_STATE(4578)] = 151893, + [SMALL_STATE(4579)] = 151907, + [SMALL_STATE(4580)] = 151921, + [SMALL_STATE(4581)] = 151935, + [SMALL_STATE(4582)] = 151949, + [SMALL_STATE(4583)] = 151963, + [SMALL_STATE(4584)] = 151977, + [SMALL_STATE(4585)] = 151991, + [SMALL_STATE(4586)] = 152005, + [SMALL_STATE(4587)] = 152019, + [SMALL_STATE(4588)] = 152033, + [SMALL_STATE(4589)] = 152047, + [SMALL_STATE(4590)] = 152061, + [SMALL_STATE(4591)] = 152075, + [SMALL_STATE(4592)] = 152089, + [SMALL_STATE(4593)] = 152103, + [SMALL_STATE(4594)] = 152117, + [SMALL_STATE(4595)] = 152131, + [SMALL_STATE(4596)] = 152145, + [SMALL_STATE(4597)] = 152159, + [SMALL_STATE(4598)] = 152173, + [SMALL_STATE(4599)] = 152187, + [SMALL_STATE(4600)] = 152201, + [SMALL_STATE(4601)] = 152215, + [SMALL_STATE(4602)] = 152229, + [SMALL_STATE(4603)] = 152243, + [SMALL_STATE(4604)] = 152257, + [SMALL_STATE(4605)] = 152271, + [SMALL_STATE(4606)] = 152285, + [SMALL_STATE(4607)] = 152299, + [SMALL_STATE(4608)] = 152313, + [SMALL_STATE(4609)] = 152327, + [SMALL_STATE(4610)] = 152341, + [SMALL_STATE(4611)] = 152355, + [SMALL_STATE(4612)] = 152369, + [SMALL_STATE(4613)] = 152383, + [SMALL_STATE(4614)] = 152397, + [SMALL_STATE(4615)] = 152411, + [SMALL_STATE(4616)] = 152425, + [SMALL_STATE(4617)] = 152439, + [SMALL_STATE(4618)] = 152453, + [SMALL_STATE(4619)] = 152467, + [SMALL_STATE(4620)] = 152481, + [SMALL_STATE(4621)] = 152495, + [SMALL_STATE(4622)] = 152509, + [SMALL_STATE(4623)] = 152523, + [SMALL_STATE(4624)] = 152537, + [SMALL_STATE(4625)] = 152551, + [SMALL_STATE(4626)] = 152565, + [SMALL_STATE(4627)] = 152579, + [SMALL_STATE(4628)] = 152593, + [SMALL_STATE(4629)] = 152607, + [SMALL_STATE(4630)] = 152621, + [SMALL_STATE(4631)] = 152635, + [SMALL_STATE(4632)] = 152649, + [SMALL_STATE(4633)] = 152663, + [SMALL_STATE(4634)] = 152677, + [SMALL_STATE(4635)] = 152691, + [SMALL_STATE(4636)] = 152705, + [SMALL_STATE(4637)] = 152719, + [SMALL_STATE(4638)] = 152733, + [SMALL_STATE(4639)] = 152747, + [SMALL_STATE(4640)] = 152761, + [SMALL_STATE(4641)] = 152775, + [SMALL_STATE(4642)] = 152789, + [SMALL_STATE(4643)] = 152803, + [SMALL_STATE(4644)] = 152817, + [SMALL_STATE(4645)] = 152831, + [SMALL_STATE(4646)] = 152845, + [SMALL_STATE(4647)] = 152859, + [SMALL_STATE(4648)] = 152873, + [SMALL_STATE(4649)] = 152887, + [SMALL_STATE(4650)] = 152901, + [SMALL_STATE(4651)] = 152915, + [SMALL_STATE(4652)] = 152929, + [SMALL_STATE(4653)] = 152943, + [SMALL_STATE(4654)] = 152957, + [SMALL_STATE(4655)] = 152971, + [SMALL_STATE(4656)] = 152985, + [SMALL_STATE(4657)] = 152999, + [SMALL_STATE(4658)] = 153013, + [SMALL_STATE(4659)] = 153027, + [SMALL_STATE(4660)] = 153041, + [SMALL_STATE(4661)] = 153055, + [SMALL_STATE(4662)] = 153069, + [SMALL_STATE(4663)] = 153083, + [SMALL_STATE(4664)] = 153097, + [SMALL_STATE(4665)] = 153111, + [SMALL_STATE(4666)] = 153125, + [SMALL_STATE(4667)] = 153139, + [SMALL_STATE(4668)] = 153153, + [SMALL_STATE(4669)] = 153167, + [SMALL_STATE(4670)] = 153181, + [SMALL_STATE(4671)] = 153195, + [SMALL_STATE(4672)] = 153209, + [SMALL_STATE(4673)] = 153223, + [SMALL_STATE(4674)] = 153237, + [SMALL_STATE(4675)] = 153251, + [SMALL_STATE(4676)] = 153265, + [SMALL_STATE(4677)] = 153279, + [SMALL_STATE(4678)] = 153293, + [SMALL_STATE(4679)] = 153307, + [SMALL_STATE(4680)] = 153321, + [SMALL_STATE(4681)] = 153335, + [SMALL_STATE(4682)] = 153349, + [SMALL_STATE(4683)] = 153363, + [SMALL_STATE(4684)] = 153377, + [SMALL_STATE(4685)] = 153391, + [SMALL_STATE(4686)] = 153405, + [SMALL_STATE(4687)] = 153419, + [SMALL_STATE(4688)] = 153433, + [SMALL_STATE(4689)] = 153447, + [SMALL_STATE(4690)] = 153461, + [SMALL_STATE(4691)] = 153475, + [SMALL_STATE(4692)] = 153489, + [SMALL_STATE(4693)] = 153503, + [SMALL_STATE(4694)] = 153517, + [SMALL_STATE(4695)] = 153531, + [SMALL_STATE(4696)] = 153545, + [SMALL_STATE(4697)] = 153559, + [SMALL_STATE(4698)] = 153573, + [SMALL_STATE(4699)] = 153587, + [SMALL_STATE(4700)] = 153601, + [SMALL_STATE(4701)] = 153615, + [SMALL_STATE(4702)] = 153629, + [SMALL_STATE(4703)] = 153643, + [SMALL_STATE(4704)] = 153657, + [SMALL_STATE(4705)] = 153671, + [SMALL_STATE(4706)] = 153685, + [SMALL_STATE(4707)] = 153699, + [SMALL_STATE(4708)] = 153713, + [SMALL_STATE(4709)] = 153727, + [SMALL_STATE(4710)] = 153741, + [SMALL_STATE(4711)] = 153755, + [SMALL_STATE(4712)] = 153769, + [SMALL_STATE(4713)] = 153783, + [SMALL_STATE(4714)] = 153797, + [SMALL_STATE(4715)] = 153811, + [SMALL_STATE(4716)] = 153825, + [SMALL_STATE(4717)] = 153839, + [SMALL_STATE(4718)] = 153853, + [SMALL_STATE(4719)] = 153867, + [SMALL_STATE(4720)] = 153881, + [SMALL_STATE(4721)] = 153895, + [SMALL_STATE(4722)] = 153909, + [SMALL_STATE(4723)] = 153923, + [SMALL_STATE(4724)] = 153937, + [SMALL_STATE(4725)] = 153951, + [SMALL_STATE(4726)] = 153965, + [SMALL_STATE(4727)] = 153979, + [SMALL_STATE(4728)] = 153993, + [SMALL_STATE(4729)] = 154007, + [SMALL_STATE(4730)] = 154021, + [SMALL_STATE(4731)] = 154035, + [SMALL_STATE(4732)] = 154049, + [SMALL_STATE(4733)] = 154063, + [SMALL_STATE(4734)] = 154077, + [SMALL_STATE(4735)] = 154091, + [SMALL_STATE(4736)] = 154105, + [SMALL_STATE(4737)] = 154119, + [SMALL_STATE(4738)] = 154133, + [SMALL_STATE(4739)] = 154147, + [SMALL_STATE(4740)] = 154161, + [SMALL_STATE(4741)] = 154175, + [SMALL_STATE(4742)] = 154189, + [SMALL_STATE(4743)] = 154203, + [SMALL_STATE(4744)] = 154217, + [SMALL_STATE(4745)] = 154231, + [SMALL_STATE(4746)] = 154245, + [SMALL_STATE(4747)] = 154259, + [SMALL_STATE(4748)] = 154273, + [SMALL_STATE(4749)] = 154287, + [SMALL_STATE(4750)] = 154301, + [SMALL_STATE(4751)] = 154315, + [SMALL_STATE(4752)] = 154329, + [SMALL_STATE(4753)] = 154343, + [SMALL_STATE(4754)] = 154357, + [SMALL_STATE(4755)] = 154371, + [SMALL_STATE(4756)] = 154385, + [SMALL_STATE(4757)] = 154399, + [SMALL_STATE(4758)] = 154413, + [SMALL_STATE(4759)] = 154427, + [SMALL_STATE(4760)] = 154441, + [SMALL_STATE(4761)] = 154445, + [SMALL_STATE(4762)] = 154449, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(396), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4344), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3961), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(669), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3475), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4742), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3358), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(598), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(637), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3991), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4736), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3532), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2193), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4732), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4730), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2912), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(653), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(658), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4243), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(191), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(692), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(241), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(712), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(392), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(388), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(248), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4238), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4020), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(728), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1623), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3301), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3314), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3313), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3309), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(738), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4133), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4124), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1502), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1503), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3686), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(109), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4706), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4704), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3342), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3550), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3627), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3551), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3557), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3881), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3882), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(441), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4430), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(26), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3879), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(613), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3475), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4755), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3358), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(668), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(673), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3880), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4752), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3544), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2201), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4748), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4746), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2951), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(736), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(761), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4423), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(191), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(812), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(827), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(218), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(851), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(437), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(321), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(294), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4422), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3890), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(880), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1622), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3079), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3081), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3096), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3097), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(912), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4407), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4381), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1458), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1459), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3690), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4724), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4722), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3352), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3565), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3571), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3608), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3623), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3952), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3953), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1866), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4365), - [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(286), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1885), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4310), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(238), [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(521), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3491), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(606), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(569), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4239), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2193), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2912), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(565), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(600), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(599), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4418), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(314), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(562), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(594), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2054), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(294), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(519), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3487), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(807), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(757), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4409), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2201), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2951), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(756), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(803), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(800), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4303), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(389), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(753), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(798), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2062), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(261), [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(651), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(397), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(364), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(245), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4298), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3865), - [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2054), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2055), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1623), - [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3301), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3314), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3313), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3309), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3552), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3561), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3566), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3567), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3876), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3880), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2842), - [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4287), - [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(298), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(711), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3479), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(540), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(518), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4331), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2193), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2912), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(438), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(536), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(535), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4278), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(369), - [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(516), - [1249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(532), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2837), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(238), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4216), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(447), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(412), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(327), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(291), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4270), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3992), - [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2837), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2798), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1623), - [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3301), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3314), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3313), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3309), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3588), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3590), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3603), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3608), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3997), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3998), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1163), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4369), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(252), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(626), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3477), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(685), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(640), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(731), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4234), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2193), - [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2912), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(639), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(681), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(680), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4396), - [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(373), - [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(631), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(678), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1182), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(297), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(628), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(395), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(354), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(221), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4416), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3925), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1182), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1183), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1623), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3301), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3314), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3313), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3309), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3592), - [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3593), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3594), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3595), - [1583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3872), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3867), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(522), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(411), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(319), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(253), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4291), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3989), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2062), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2063), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1622), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3079), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3081), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3096), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3097), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3651), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3644), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3639), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3638), + [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3992), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3995), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2845), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4280), + [1267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(220), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(632), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3489), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(728), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(706), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4424), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2201), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2951), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(404), + [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(725), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(724), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4275), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(365), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(697), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(722), + [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2693), + [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(284), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4290), + [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(636), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(424), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(308), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(245), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4113), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4000), + [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2693), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2852), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1622), + [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3079), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3081), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3096), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3097), + [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3567), + [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3573), + [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3574), + [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3575), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4005), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4006), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1166), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4352), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(257), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(487), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3485), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(923), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(861), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(714), + [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4399), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2201), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2951), + [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(860), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(920), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(919), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4362), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(333), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(855), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(911), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1213), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(252), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(488), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(410), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(347), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(226), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4256), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3872), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1213), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1214), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1622), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3079), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3081), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3096), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3097), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3600), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3601), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3602), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3603), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3911), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3886), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2512), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4281), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(295), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(544), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3493), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(721), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(720), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4115), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2193), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2912), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(719), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(718), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(717), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4113), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(374), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(716), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(715), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2374), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(250), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(546), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(419), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(376), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(218), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4109), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4105), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2374), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2375), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1623), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3301), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3314), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3313), - [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3309), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3583), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3584), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3585), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3586), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4100), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4094), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1163), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4369), - [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(252), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(626), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3477), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(685), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(640), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4234), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2193), - [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2912), - [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(639), - [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(681), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(680), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4396), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(373), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(631), - [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(678), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1182), - [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(297), - [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(628), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(395), - [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(354), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(221), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4416), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3925), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1182), - [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1183), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1623), - [2271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3301), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3314), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3313), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3309), - [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3592), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3593), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3594), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3595), - [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3872), - [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3867), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1305), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4351), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(266), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(559), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3492), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(961), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(970), - [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4283), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2193), - [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2912), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(971), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(972), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(901), - [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4400), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(324), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(942), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(941), - [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1315), - [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(275), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(573), - [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(411), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(357), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(220), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4209), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3869), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1315), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1380), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1623), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3301), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3314), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3313), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3309), - [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3642), - [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3637), - [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3636), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3632), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3901), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3871), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1305), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4351), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(266), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(559), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3492), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(943), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(949), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4283), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2193), - [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2912), - [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(950), - [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(959), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(963), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4400), - [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(324), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(966), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(713), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1315), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(275), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(573), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(411), - [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(359), - [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(280), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4209), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3869), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1315), - [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1380), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1623), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3301), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3314), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3313), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3309), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3642), - [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3637), - [2587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3636), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3632), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3901), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3871), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2505), + [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4400), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(222), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(538), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3488), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(619), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(631), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4183), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2201), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2951), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(638), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(646), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(662), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4383), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(377), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(719), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(848), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2351), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(270), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(535), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(416), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(368), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(258), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4377), + [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3939), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2351), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2374), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1622), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3079), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3081), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3096), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3097), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3656), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3659), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3652), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3640), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3926), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3928), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1328), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4175), + [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(242), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(520), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3486), + [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(909), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(908), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4333), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2201), + [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2951), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(905), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(902), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(881), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4172), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(349), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(822), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(821), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1322), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(224), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(518), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(394), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(316), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(278), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4382), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4071), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1322), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1398), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1622), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3079), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3081), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3096), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3097), + [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3612), + [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3611), + [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3610), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3597), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4108), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4110), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1166), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4352), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(257), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(487), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3485), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(923), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(861), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4399), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2201), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2951), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(860), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(920), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(919), + [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4362), + [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(333), + [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(855), + [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(911), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1213), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(252), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(488), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(410), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(347), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(226), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4256), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3872), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1213), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1214), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1622), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3079), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3081), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3096), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3097), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3600), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3601), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3602), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3603), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3911), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3886), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1328), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4175), + [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(242), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(520), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3486), + [2508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(677), + [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(679), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4333), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2201), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2951), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(683), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(732), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(769), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4172), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(349), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(772), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(774), + [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1322), + [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(224), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(518), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(394), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(384), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(239), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4382), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4071), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1322), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1398), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1622), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3079), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3081), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3096), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3097), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3612), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3611), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3610), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3597), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4108), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4110), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4261), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4158), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 39), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 38), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 38), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 38), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 39), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 39), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4097), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4235), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3962), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4253), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3284), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3239), [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3284), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3239), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4722), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4722), - [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3137), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(428), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4722), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), - [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), - [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), - [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3729), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4583), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4583), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4583), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3158), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(412), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3772), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 1), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4261), - [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4158), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 1), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 1), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), [5024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 38), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 95), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 95), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(444), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(632), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2208), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4448), - [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4375), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2494), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4448), - [6081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4375), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(391), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(640), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2303), + [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4514), + [6006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4360), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2497), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4514), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4360), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3342), + [6104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3352), [6107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 42), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 76), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 76), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 108), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 108), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 108), + [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 108), + [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 76), + [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 76), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 87), [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 113), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4336), - [6194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 132), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4220), + [6162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 113), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 132), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [6202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), [6210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3481), [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(577), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3795), - [6309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3795), - [6312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(226), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3792), - [6320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3792), - [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(240), - [6326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(391), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [6395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3531), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(65), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4191), - [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [6576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4519), - [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3256), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3035), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), - [6641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3478), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), - [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(398), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2951), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3683), - [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3666), - [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [6906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(420), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(401), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [6916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3953), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4210), - [6950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [6952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4220), - [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4231), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [7012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(756), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3657), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(361), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [7167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3354), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [7356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [7882] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [6215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(563), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat2, 2), SHIFT_REPEAT(3855), + [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat2, 2), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [6339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3842), + [6342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(234), + [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3841), + [6350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(281), + [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(406), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3519), + [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat2, 1), + [6437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(63), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [6470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(3855), + [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [6489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4535), + [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3127), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3035), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4279), + [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [6613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [6655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3491), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 1), + [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 1), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 1), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(4136), + [6779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [6781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(4142), + [6784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4178), + [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [6913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [6915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(409), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(334), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3356), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [6966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(436), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [6979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [7019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3888), + [7022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(515), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [7097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(399), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3673), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [7105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2958), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3551), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [7181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3677), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 1), + [7230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 1), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [7634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 1), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7902] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), + [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), }; #ifdef __cplusplus